-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.Rmd
134 lines (111 loc) · 3.88 KB
/
index.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
---
title : Curriculum
subtitle :
framework : revealjs # {io2012, html5slides, shower, dzslides, ...}
highlighter : highlight.js # {highlight.js, prettify, highlight}
hitheme : tomorrow #
mode : selfcontained # {standalone, draft}
revealjs:
theme: default
previewLinks: "true"
---
<link rel="stylesheet" href="/assets/font-awesome-4.1.0/css/font-awesome.min.css">
```{r preparecode, echo=FALSE, cache=FALSE}
library(ggplot2)
library(knitr)
```
# Bram Jans
### Rails Developer
*Looking for a new challenge!*
<a href="https://github.com/bramj" target="_blank">
<img width="80px" src="/assets/img/bram.jpg" />
</a>
<p style="font-size:0.5em;font-style:italic;">Use the arrow keys on your keyboard or in the lower right corner for navigation</p>
--- &vertical
# Education
<br />
<p>
<a href="#" class="navigate-down"><i class="fa fa-angle-down fa-3x"></i></a>
</p>
***
### [2010–2011] Master of Engineering - Computer Science
- University of Leuven, Cum Laude
- Specialization Software Engineering and Artificial Intelligence
- Thesis: Construction and evaluation of databases of narrative event chains
- 5 months exchange at Autonomous University of Barcelona, Spain
***
### [2006–2009] Bachelor of Informatics
- University of Leuven
--- &vertical
# Projects
<br />
<p>
<a href="#" class="navigate-down"><i class="fa fa-angle-down fa-3x"></i></a>
</p>
***
## DataCamp
<div class="projects">
<a href="https://www.datacamp.com" target="_blank" class="mask">
<img src="/assets/img/datacamp_screenshot.png" />
<div class="caption">
<h3 style="color:#4D4D4D">Interactive learning platform</h3>
<ul>
<li>Interactive environment for learning R</li>
<li>I did development for the DataCamp backend, a RESTful API in Ruby on Rails</li>
<li>The backend interacts with an Angular.js front end and connects to R servers in the cloud</li>
<li>Hosting on Heroku and Amazon AWS (EC2, S3, RDS, etc.)</li>
</ul>
</div>
</a>
</div>
***
## Rdocumentation
<div class="projects">
<a href="http://www.rdocumentation.org" target="_blank" class="mask">
<img src="/assets/img/rdocs_screenshot.png" />
<div class="caption">
<h3 style="color:#4D4D4D">R documentation aggregator</h3>
<ul>
<li>Rails app that maintains documentation of R packages</li>
<li>Automatically updates the documentation by connecting to an R server on EC2</li>
<li>Websolr indexation for fast full-text searches</li>
<li>Hosted on Heroku</li>
</ul>
</div>
</a>
</div>
--- &vertical
# Skills
<br />
<p>
<a href="#" class="navigate-down"><i class="fa fa-angle-down fa-3x"></i></a>
</p>
***
### Technical
```{r skills-plot, fig.height=4, fig.width=10, fig.align = 'center', results='asis', echo = FALSE, cache = FALSE}
df = data.frame(c("Ruby (on Rails)", "SQL", "HTML/CSS", "R", "Javascript"), c(8, 7, 6, 6, 5))
colnames(df) = c("language", "score")
d = ggplot(data=df, aes(x=language, y = score, fill = score))
d = d + geom_bar(position="dodge",stat="identity") + coord_flip()
d = d + theme(axis.text.x = element_text(size=24, family="Helvetica"),axis.text.y = element_text(size=24), axis.title.x=element_blank(), axis.title.y=element_blank())
d = d + theme(
panel.background = element_rect(fill = "transparent",colour = NA), # or theme_blank()
panel.grid.minor = element_blank(),
panel.grid.major = element_blank(),
plot.background = element_rect(fill = "transparent",colour = NA)
)
d
```
<p>
<small>Also: Git, Heroku, Amazon (EC2, S3, RDS, etc.), Linux, Python, Node.js</small>
</p>
### Non-technical
<small>Dutch (native) - English (advanced) - Spanish (advanced) - French (intermediate)</small>
---
## Contact
#### [email protected]
<a href="https://github.com/bramj" target="_blank">
<i class="fa fa-github fa-2x"></i>
</a>
<br />
<small>Presentation made with [slidify](http://slidify.org) and [reveal.js](http://lab.hakim.se/reveal-js/#/)</small>