First commit

master
J. Fernando Sánchez 9 years ago
commit 8edc177252

1
.gitignore vendored

@ -0,0 +1 @@
node_modules

@ -0,0 +1,4 @@
from nginx
EXPOSE 80
ADD . /usr/share/nginx/html/

@ -0,0 +1,29 @@
import bibtexparser
from bibtexparser.customization import *
import json
with open("resume-nobib.json") as r:
resume = json.load(r)
with open('ref.bib') as bibtex_file:
parser = bibtexparser.bparser.BibTexParser()
parser.customization = convert_to_unicode
bibtex_str = bibtex_file.read()
bib_database = bibtexparser.loads(bibtex_str)
pubs = []
for entry in bib_database.entries:
pub = {}
if "booktitle" in entry:
pub["publisher"] = journal(entry["booktitle"])
if "year" in entry:
pub["releaseDate"] = entry["year"]
if "author" in entry:
pub["authors"] = author(entry["author"])
if "abstract" in entry:
pub["summary"] = author(entry["abstract"])
pub["name"] = entry["title"].replace("{","").replace("}","")
pubs.append(pub)
resume["publications"] = pubs
with open("resume.json", "w") as out:
json.dump(resume, out, indent=2)

@ -0,0 +1,26 @@
import requests
import codecs
print("#"*5 + " XML")
resp = requests.post('https://europass.cedefop.europa.eu/rest/v1/document/extraction',
headers={ "Content-Type": "application/pdf"},
data= open("cv.pdf", "rb")
)
print resp
print resp.text
with codecs.open("cv.xml", "w", encoding="utf-8") as f:
f.write(resp.text)
print("### File written")
print("#"*5 + " JSON")
resp = requests.post('https://europass.cedefop.europa.eu/rest/v1/document/to/json',
headers={ "Content-Type": "application/xml"},
data= open("cv.xml", "rb")
)
print resp
print resp.text
with codecs.open("cv.json", "w", encoding="utf-8") as f:
f.write(resp.text)
print("### File written")

File diff suppressed because it is too large Load Diff

BIN
me.jpg

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

@ -0,0 +1,106 @@
@conference{maia14,
author = "S{\'a}nchez-Rada, J. Fernando and Iglesias, Carlos A. and Coronado, Miguel",
abstract = "Online services are no longer isolated. The release of public APIs and technologies such as web hooks are allowing users and developers to access their information easily. Intelligent agents could use this information to provide a better user experience across services, connecting services with smart automatic behaviours or actions. However, agent platforms are not prepared to easily add external sources such as web services, which hinders the usage of agents in the so-called Evented or Live Web. As a solution, this paper introduces an event-based architecture for agent systems, in accordance with the new tendencies in web programming. In particular, it is focused on personal agents that interact with several web services. With this architecture, called MAIA, connecting to new web services does not involve any modification in the platform.",
address = "Warsaw, Poland",
booktitle = "Proceedings of 2014 IEEE/WIC/ACM International Conference on Intelligent Agent Technology",
keywords = "event, agent architecture, web hook",
month = "August",
organization = "IAT",
publisher = "IEEE Computer Society Press",
title = "{MAIA}: {A}n {E}vent-based {M}odular {A}rchitecture for {I}ntelligent {A}gents",
year = "2014",
}
@conference{eurosentiment-demo,
author = "S{\'a}nchez-Rada, J. Fernando and Gabriela Vulcu and Iglesias, Carlos A. and Paul Buitelaar",
abstract = "Sentiment and Emotion Analysis strongly depend on quality language resources, especially sentiment dictionaries. These resources are usually scattered, heterogeneous and limited to specific domains of application by simple algorithms. The EUROSENTIMENT project addresses these issues by 1) developing a common language resource representation model for sentiment analysis, and APIs for sentiment analysis services based on established Linked Data formats (lemon, Marl, NIF and ONYX) 2) by creating a Language Resource Pool (a.k.a. LRP) that makes available to the community existing scattered language resources and services for sentiment analysis in an interoperable way. In this paper we describe the available language resources and services in the LRP and some sample applications that can be developed on top of the EUROSENTIMENT LRP.",
booktitle = "ISWC 2014 Posters {\&} Demonstrations Track",
editor = "Matthew Horridge, Marco Rospocher, Jacco van Ossenbruggen",
keywords = "eurosentiment",
pages = "145-148",
title = "{EUROSENTIMENT}: {L}inked {D}ata {S}entiment {A}nalysis",
url = "http://ceur-ws.org/Vol-1272/paper_116.pdf",
volume = "1272",
year = "2014",
}
@conference{es3lod14,
author = "Gabriela Vulcu and Paul Buitelaar and Sapna Negi and Bianca Pereira and Mihael Arcan and Barry Coughlan and S{\'a}nchez-Rada, J. Fernando and Iglesias, Carlos A.",
abstract = "We present a methodology for legacy language resource adaptation that generates domain-specific
sentiment lexicons organized around domain entities described with lexical information and
sentiment words described in the context of these entities. We explain the steps of the methodology
and we give a working example of our initial results. The resulting lexicons are modelled as Linked
Data resources by use of established formats for Linguistic Linked Data (lemon, NIF) and for linked
sentiment expressions (Marl), thereby contributing and linking to existing Language Resources in
the Linguistic Linked Open Data cloud.
",
address = "Reykjavik, Iceland",
booktitle = "th International Workshop on EMOTION, SOCIAL SIGNALS, SENTIMENT {\&} LINKED OPEN DATA, co-located with LREC 2014,",
keywords = "domain lexion, sentiment analysis",
month = "May",
organization = "LREC2014",
title = "{G}enerating {L}inked-{D}ata based {D}omain-{S}pecific {S}entiment {L}exicons from {L}egacy {L}anguage and {S}emantic {R}esources",
year = "2014",
}
@mastersthesis{clave,
author = "S{\'a}nchez-Rada, J. Fernando",
abstract = "This project aims to introduce an event-based architecture for intelligent agents, inaccordance with the new tendencies in the Evented Web.The reason for this change is that agent communication is no longer suitable for theinmense amount of data generated nowadays and its nature. At least, not for their usein evolving scenarios where data sources interact without previous conguration. This isexactly what the precursors of the Live Web envision, and it is beginning to show in the newgeneration of evented applications, which enable customized interactions and a high level ofcommunication between dierent services.The proposed architecture shown in this document, called Maia, is based on a centralpiece or event router, which controls the ow of information/events to and from the connectedentities. These entities can be either event-aware agents or simply data sources andsubscribers. Thus giving a higher exibility than current technologies and easing the developmentof advanced systems by not requiring the complexity associated with agent systemsin all of the nodes.To demonstrate the feasibility and capabilities of the Maia architecture, a prototype hasbeen implemented which is also explained in detail in this document. It is based on the eventdrivenI/O server side JavaScript environment Node.js for the event routing components,and adapted Jason BDI agent platform as an example of a subscribed multi-agent system.Using this prototype, the benets of using Maia are illustrated by developing a personalagent capable of booking train tickets and that combines access to services, linked data andcommon sense reasoning.",
keywords = "agents, web hooks",
school = "ETSIT-UPM",
title = "{D}esign and {I}mplementation of an {A}gent {A}rchitecture {B}ased on {W}eb {H}ooks",
year = "2012",
}
@conference{ftt14,
author = "S{\'a}nchez-Rada, J. Fernando and Torres, Marcos and Iglesias, Carlos A. and Roberto Maestre and Raquel Peinado",
abstract = "Sentiment analysis has recently gained popularity in the financial domain thanks to its capability to predict the stock market based on the wisdom of the crowds. Nevertheless, current sentiment indicators are still silos that cannot be combined to get better insight about the mood of different communities. In this article we propose a Linked data approach for modelling sentiment and emotions about financial entities. We aim at integrating sentiment information from different communities for providers, and complements existing initiatives such as FIBO. The approach has been validated in the semantic annotation of tweets of several stocks in the Spanish stock market, including its sentiment information.",
booktitle = "Second International Workshop on Finance and Economics on the Semantic Web (FEOSW 2014)",
keywords = "linked data, semantic, finance, sentiment analysis, emotions",
title = "{A} {L}inked {D}ata {A}pproach to {S}entiment and {E}motion {A}nalysis of {T}witter in the {F}inancial {D}omain",
url = "http://nadir.uc3m.es/feosw2014/proceedings.html",
year = "2014",
}
@conference{onyx2013,
author = "S{\'a}nchez-Rada, J. Fernando and Iglesias, Carlos A.",
abstract = "There are several different standardised and widespread formats to represent emotions. However, there is no standard semantic model yet. This paper presents a new ontology, called Onyx, that aims to become such a standard while adding concepts from the latest Semantic Web models. In particular, the ontology focuses on the representation of Emotion Analysis results. But the model is abstract and inherits from previous standards and formats. It can thus be used as a reference representation of emotions in any future application or ontology. To prove this, we have translated resources from EmotionML representation to Onyx.
We also present several ways in which developers could benefit from using this ontology instead of an ad-hoc presentation. Our ultimate goal is to foster the use of semantic technologies for emotion Analysis while following the Linked Data ideals.",
address = "Torino, Italy",
booktitle = "Proceedings of the First International Workshop on Emotion and Sentiment in Social and Expressive Media: approaches and perspectives from AI (ESSEM 2013)",
month = "December",
organization = "AI*IA, Italian Association for Artificial Intelligence",
pages = "71-82",
publisher = "CEUR-WS",
title = "{O}nyx: {D}escribing {E}motions on the {W}eb of {D}ata",
volume = "1096",
year = "2013",
}
@conference{ldl2013,
author = "Paul Buitelaar and Mihael Arcan and Iglesias, Carlos A. and S{\'a}nchez-Rada, J. Fernando and Carlo Strapparava",
abstract = "In this paper we describe the specification of a
model for the semantically interoperable represen-
tation of language resources for sentiment analysis. The model integrates lemon, an RDF-based model for the specification of ontology-lexica
(Buitelaar et al. 2009), which is used increasingly for the representation of language resources as Linked Data, with 'Marl', an RDF-based model for the representation of sentiment annotations (Westerski et al., 2011; S{\'a}nchez-Rada et al., 2013).",
address = "Pisa, Italy",
booktitle = " 2nd Workshop on Linked Data in Linguistics (LDL-2013): Representing and linking lexicons, terminologies and other language data. Collocated with the Conference on Generative Approaches to the Lexicon",
editor = "Christian Chiarcos, Philipp Cimiano, Thierry Declerck, John P. McCrae",
keywords = "sentim",
month = "September",
pages = "1-8",
publisher = "Association for Computational Linguistics",
title = "{L}inguistic {L}inked {D}ata for {S}entiment {A}nalysis",
year = "2013",
}
@conference{ATS14,
author = "Jordi Atserias and Marieke van Erp and Isa Maks and Germ{\'a}n Rigau and S{\'a}nchez-Rada, J. Fernando",
address = "Reykjavik, Iceland",
booktitle = "Proceedings of Come Hack with OpeNER!” workshop at the 9th Language Resources and Evaluation Conference (LREC14)",
pages = "5",
publisher = "European Language Resources Association (ELRA)",
title = "{E}uro{L}ove{M}ap: {C}onfronting feelings from {N}ews",
year = "2014",
}

@ -0,0 +1,149 @@
{
"basics": {
"name": "J. Fernando Sánchez",
"label": "Researcher",
"picture": "http://balkian.es/theme/img/me.jpg",
"email": "jfsanchezrada@gmail.com",
"phone": "",
"website": "http://jfernando.es",
"summary": "",
"location": {
"address": "",
"postalCode": "",
"city": "Madrid",
"countryCode": "ES",
"region": "Madrid"
},
"profiles": [
{
"network": "Twitter",
"username": "balkian",
"url": "http://twitter.com/balkian"
},
{
"network": "linkedin",
"username": "balkian",
"url": "linkedin.com/in/jfsanchezrada"
},
{
"network": "Github",
"username": "balkian",
"url": "http://github.com/balkian"
}
]
},
"work": [
{
"company": "GSI UPM",
"position": "Researcher - PhD Student",
"website": "http://www.gsi.dit.upm.es",
"startDate": "2013-01-01",
"endDate": "",
"summary": "The Ingelligent Systems Group is a research group at Universidad Politécnica de Madrid (UPM)",
"highlights": [
"Semantic Technologies",
"Sentiment Analysis",
"Ontologies and vocabularies: Marl, Onyx"
]
},
{
"company": "GSI UPM",
"position": "Undergraduate researcher",
"website": "http://www.gsi.dit.upm.es",
"startDate": "2008-06",
"endDate": "2012-12",
"summary": "",
"highlights": [
"Web services: Node.js, Python, PHP, JSP/J2EE...",
"Semantic technologies: rdflib, easy-rdf, Protegé",
"Event middleware and messaging: XMPP, developed Maia"
]
}
],
"volunteer": [
{
"organization": "EESTEC",
"position": "Vice-Chairman for External Affairs",
"website": "http://eestec.net/",
"startDate": "2011-04",
"endDate": "2012-05",
"summary": "",
"highlights": [
"Established connections with other Student Associations",
"Helped found new Observers (Local Groups)",
"Carried out International Board duties"
]
},
{
"organization": "EESTEC",
"position": "IT Coordinator",
"website": "http://eestec.net",
"startDate": "2012-04",
"endDate": "2013-05",
"summary": "",
"highlights": [
"Coordinated the work of a small international IT Team",
"In charge of the administration of the IT infrastructure of EESTEC: Plone portal, Mailman mailing lists, etc."
]
},
{
"organization": "EESTEC",
"position": "Oversight Committee",
"website": "http://eestec.net",
"startDate": "2012-05",
"endDate": "2013-05",
"summary": "",
"highlights": [
" Supervised the work of the International Board"
]
}
],
"education": [
{
"institution": "Tecnical University of Madrid (UPM)",
"area": "Telecommunications Engineering",
"studyType": "Bachelor+Master",
"startDate": "2007-10",
"endDate": "2012-10",
"gpa": "",
"courses": [
"Computer Networks",
"Software Engineering",
"Web Technologies"
]
}
],
"awards": [],
"publications": [
{
"name": "An Event-based Modular Architecture for Intelligent Agents",
"publisher": "Proceedings of 2014 IEEE/WIC/ACM International Conference on Intelligent Agent Technology",
"releaseDate": "2014",
"website": "",
"summary": ""
}
],
"skills": [
{
"name": "Web Development",
"level": "Master",
"keywords": [
"HTML",
"CSS",
"Javascript"
]
}
],
"languages": [
{
"language": "Spanish",
"fluency": "Native speaker"
},
{
"language": "English",
"fluency": "Professional competency"
}
],
"interests": [],
"references": []
}

@ -0,0 +1,196 @@
{
"interests": [],
"basics": {
"website": "http://jfernando.es",
"picture": "http://balkian.es/theme/img/me.jpg",
"name": "J. Fernando S\u00e1nchez",
"profiles": [
{
"username": "balkian",
"url": "http://twitter.com/balkian",
"network": "Twitter"
},
{
"username": "balkian",
"url": "linkedin.com/in/jfsanchezrada",
"network": "linkedin"
},
{
"username": "balkian",
"url": "http://github.com/balkian",
"network": "Github"
}
],
"label": "Researcher",
"phone": "",
"location": {
"postalCode": "",
"city": "Madrid",
"region": "Madrid",
"countryCode": "ES",
"address": ""
},
"summary": "",
"email": "jfsanchezrada@gmail.com"
},
"skills": [
{
"keywords": [
"HTML",
"CSS",
"Javascript"
],
"name": "Web Development",
"level": "Master"
}
],
"work": [
{
"website": "http://www.gsi.dit.upm.es",
"startDate": "2013-01-01",
"endDate": "",
"highlights": [
"Semantic Technologies",
"Sentiment Analysis",
"Ontologies and vocabularies: Marl, Onyx"
],
"company": "GSI UPM",
"summary": "The Ingelligent Systems Group is a research group at Universidad Polit\u00e9cnica de Madrid (UPM)",
"position": "Researcher - PhD Student"
},
{
"website": "http://www.gsi.dit.upm.es",
"startDate": "2008-06",
"endDate": "2012-12",
"highlights": [
"Web services: Node.js, Python, PHP, JSP/J2EE...",
"Semantic technologies: rdflib, easy-rdf, Proteg\u00e9",
"Event middleware and messaging: XMPP, developed Maia"
],
"company": "GSI UPM",
"summary": "",
"position": "Undergraduate researcher"
}
],
"languages": [
{
"fluency": "Native speaker",
"language": "Spanish"
},
{
"fluency": "Professional competency",
"language": "English"
}
],
"awards": [],
"publications": [
{
"releaseDate": "2014",
"publisher": "Proceedings of 2014 IEEE/WIC/ACM International Conference on Intelligent Agent Technology",
"summary": "Online services are no longer isolated. The release of public APIs and technologies such as web hooks are allowing users and developers to access their information easily. Intelligent agents could use this information to provide a better user experience across services, connecting services with smart automatic behaviours or actions. However, agent platforms are not prepared to easily add external sources such as web services, which hinders the usage of agents in the so-called Evented or Live Web. As a solution, this paper introduces an event-based architecture for agent systems, in accordance with the new tendencies in web programming. In particular, it is focused on personal agents that interact with several web services. With this architecture, called MAIA, connecting to new web services does not involve any modification in the platform.",
"name": "MAIA: An Event-based Modular Architecture for Intelligent Agents",
"authors": "S{\\'a}nchez-Rada, J. Fernando and Iglesias, Carlos A. and Coronado, Miguel"
},
{
"releaseDate": "2014",
"publisher": "ISWC 2014 Posters {\\&} Demonstrations Track",
"summary": "Sentiment and Emotion Analysis strongly depend on quality language resources, especially sentiment dictionaries. These resources are usually scattered, heterogeneous and limited to specific domains of application by simple algorithms. The EUROSENTIMENT project addresses these issues by 1) developing a common language resource representation model for sentiment analysis, and APIs for sentiment analysis services based on established Linked Data formats (lemon, Marl, NIF and ONYX) 2) by creating a Language Resource Pool (a.k.a. LRP) that makes available to the community existing scattered language resources and services for sentiment analysis in an interoperable way. In this paper we describe the available language resources and services in the LRP and some sample applications that can be developed on top of the EUROSENTIMENT LRP.",
"name": "EUROSENTIMENT: Linked Data Sentiment Analysis",
"authors": "S{\\'a}nchez-Rada, J. Fernando and Gabriela Vulcu and Iglesias, Carlos A. and Paul Buitelaar"
},
{
"releaseDate": "2014",
"publisher": "th International Workshop on EMOTION, SOCIAL SIGNALS, SENTIMENT {\\&} LINKED OPEN DATA, co-located with LREC 2014,",
"summary": "We present a methodology for legacy language resource adaptation that generates domain-specific\nsentiment lexicons organized around domain entities described with lexical information and\nsentiment words described in the context of these entities. We explain the steps of the methodology\nand we give a working example of our initial results. The resulting lexicons are modelled as Linked\nData resources by use of established formats for Linguistic Linked Data (lemon, NIF) and for linked\nsentiment expressions (Marl), thereby contributing and linking to existing Language Resources in\nthe Linguistic Linked Open Data cloud.",
"name": "Generating Linked-Data based Domain-Specific Sentiment Lexicons from Legacy Language and Semantic Resources",
"authors": "Gabriela Vulcu and Paul Buitelaar and Sapna Negi and Bianca Pereira and Mihael Arcan and Barry Coughlan and S{\\'a}nchez-Rada, J. Fernando and Iglesias, Carlos A."
},
{
"releaseDate": "2012",
"summary": "This project aims to introduce an event-based architecture for intelligent agents, inaccordance with the new tendencies in the Evented Web.The reason for this change is that agent communication is no longer suitable for theinmense amount of data generated nowadays and its nature. At least, not for their usein evolving scenarios where data sources interact without previous con\u001cguration. This isexactly what the precursors of the Live Web envision, and it is beginning to show in the newgeneration of evented applications, which enable customized interactions and a high level ofcommunication between di\u001berent services.The proposed architecture shown in this document, called Maia, is based on a centralpiece or event router, which controls the \u001dow of information/events to and from the connectedentities. These entities can be either event-aware agents or simply data sources andsubscribers. Thus giving a higher \u001dexibility than current technologies and easing the developmentof advanced systems by not requiring the complexity associated with agent systemsin all of the nodes.To demonstrate the feasibility and capabilities of the Maia architecture, a prototype hasbeen implemented which is also explained in detail in this document. It is based on the eventdrivenI/O server side JavaScript environment Node.js for the event routing components,and adapted Jason BDI agent platform as an example of a subscribed multi-agent system.Using this prototype, the bene\u001cts of using Maia are illustrated by developing a personalagent capable of booking train tickets and that combines access to services, linked data andcommon sense reasoning.",
"name": "Design and Implementation of an Agent Architecture Based on Web Hooks",
"authors": "S{\\'a}nchez-Rada, J. Fernando"
},
{
"releaseDate": "2014",
"publisher": "Second International Workshop on Finance and Economics on the Semantic Web (FEOSW 2014)",
"summary": "Sentiment analysis has recently gained popularity in the financial domain thanks to its capability to predict the stock market based on the wisdom of the crowds. Nevertheless, current sentiment indicators are still silos that cannot be combined to get better insight about the mood of different communities. In this article we propose a Linked data approach for modelling sentiment and emotions about financial entities. We aim at integrating sentiment information from different communities for providers, and complements existing initiatives such as FIBO. The approach has been validated in the semantic annotation of tweets of several stocks in the Spanish stock market, including its sentiment information.",
"name": "A Linked Data Approach to Sentiment and Emotion Analysis of Twitter in the Financial Domain",
"authors": "S{\\'a}nchez-Rada, J. Fernando and Torres, Marcos and Iglesias, Carlos A. and Roberto Maestre and Raquel Peinado"
},
{
"releaseDate": "2013",
"publisher": "Proceedings of the First International Workshop on Emotion and Sentiment in Social and Expressive Media: approaches and perspectives from AI (ESSEM 2013)",
"summary": "There are several different standardised and widespread formats to represent emotions. However, there is no standard semantic model yet. This paper presents a new ontology, called Onyx, that aims to become such a standard while adding concepts from the latest Semantic Web models. In particular, the ontology focuses on the representation of Emotion Analysis results. But the model is abstract and inherits from previous standards and formats. It can thus be used as a reference representation of emotions in any future application or ontology. To prove this, we have translated resources from EmotionML representation to Onyx.\nWe also present several ways in which developers could benefit from using this ontology instead of an ad-hoc presentation. Our ultimate goal is to foster the use of semantic technologies for emotion Analysis while following the Linked Data ideals.",
"name": "Onyx: Describing Emotions on the Web of Data",
"authors": "S{\\'a}nchez-Rada, J. Fernando and Iglesias, Carlos A."
},
{
"releaseDate": "2013",
"publisher": "2nd Workshop on Linked Data in Linguistics (LDL-2013): Representing and linking lexicons, terminologies and other language data. Collocated with the Conference on Generative Approaches to the Lexicon",
"summary": "In this paper we describe the specification of a\nmodel for the semantically interoperable represen-\ntation of language resources for sentiment analysis. The model integrates \u2018lemon\u2019, an RDF-based model for the specification of ontology-lexica\n(Buitelaar et al. 2009), which is used increasingly for the representation of language resources as Linked Data, with 'Marl', an RDF-based model for the representation of sentiment annotations (Westerski et al., 2011; S{\\'a}nchez-Rada et al., 2013).",
"name": "Linguistic Linked Data for Sentiment Analysis",
"authors": "Paul Buitelaar and Mihael Arcan and Iglesias, Carlos A. and S{\\'a}nchez-Rada, J. Fernando and Carlo Strapparava"
},
{
"releaseDate": "2014",
"publisher": "Proceedings of Come Hack with OpeNER!\u201d workshop at the 9th Language Resources and Evaluation Conference (LREC\u201914)",
"name": "EuroLoveMap: Confronting feelings from News",
"authors": "Jordi Atserias and Marieke van Erp and Isa Maks and Germ{\\'a}n Rigau and S{\\'a}nchez-Rada, J. Fernando"
}
],
"references": [],
"education": [
{
"startDate": "2007-10",
"endDate": "2012-10",
"area": "Telecommunications Engineering",
"gpa": "",
"courses": [
"Computer Networks",
"Software Engineering",
"Web Technologies"
],
"institution": "Tecnical University of Madrid (UPM)",
"studyType": "Bachelor+Master"
}
],
"volunteer": [
{
"website": "http://eestec.net/",
"startDate": "2011-04",
"endDate": "2012-05",
"highlights": [
"Established connections with other Student Associations",
"Helped found new Observers (Local Groups)",
"Carried out International Board duties"
],
"summary": "",
"position": "Vice-Chairman for External Affairs",
"organization": "EESTEC"
},
{
"website": "http://eestec.net",
"startDate": "2012-04",
"endDate": "2013-05",
"highlights": [
"Coordinated the work of a small international IT Team",
"In charge of the administration of the IT infrastructure of EESTEC: Plone portal, Mailman mailing lists, etc."
],
"summary": "",
"position": "IT Coordinator",
"organization": "EESTEC"
},
{
"website": "http://eestec.net",
"startDate": "2012-05",
"endDate": "2013-05",
"highlights": [
" Supervised the work of the International Board"
],
"summary": "",
"position": "Oversight Committee",
"organization": "EESTEC"
}
]
}

Binary file not shown.
Loading…
Cancel
Save