-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
321 lines (281 loc) · 11.5 KB
/
index.html
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Carol Castillo</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/portfolio.css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/css?family=Raleway|Roboto+Slab" rel="stylesheet">
<link rel="stylesheet" href="fonts/academicons-1.8.0/css/academicons.css"/>
<script src="js/d3.v2.min.js" type="application/javascript"></script>
<style>
.bar {
fill: #39A1A6;
}
.axis {
font-size: 13px;
}
.axis path,
.axis line {
fill: none;
display: none;
}
.label {
font-size: 13px;
}
</style>
</head>
<body>
<!-- Navigation -->
<nav id="header-nav" class="navbar navbar-default">
<div class="container">
<div class=navbar-header>
<div class="navbar-brand">
<a href="#header"></a>
</div>
<button type="button" class="navbar-toggle collapsed visible-xs" data-toggle="collapse" data-target="#collapsable-nav" aria-expanded="false">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div id="collapsable-nav" class="collapse navbar-collapse">
<ul id="nav-list" class="nav navbar-nav">
<li><a href="#portfolio">Portfolio</a> </li>
<li><a href="#about">About me</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
<!-- Header -->
<header id="header">
<div class="header-wrap">
<div class="container">
<div class="row">
<div class="col-xs-12 text-center">
<div class="info-block">
<div class="info-bg">
<h1>Carol Castillo</h1>
<h2>Web Developer</h2>
</div>
<div class="row">
<a href="https://github.com/hedonazur" class="btn-social btn-outline"><i class="fa fa-fw fa-github"></i></a>
<a href="https://twitter.com/hedonazur" class="btn-social btn-outline"><i class="fa fa-fw fa-twitter"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- Skills -->
<section>
<div class="container">
<h1 class="text-center">Software Skills</h1>
<div id="graphic"></div>
<script>
var data = [{"name": "D3.js", "value": 70}, {"name":"Scrapy", "value": 80}, {"name": "Python", "value": 85}, {"name":"jQuery", "value": 70}, {"name": "CSS", "value": 75}, {"name": "HTML", "value": 70} ];
//set up svg using margin conventions - we'll need plenty of room on the left for labels
var margin = {
top: 15,
right: 100,
bottom: 15,
left: 180,
};
var width = 950 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom,
barHeight = height / data.length;
var svg = d3.select("#graphic").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
var x = d3.scale.linear()
.range([0, width])
.domain([0, d3.max(data, function (d) {
return d.value;
})]);
var y = d3.scale.ordinal()
.rangeRoundBands([height, 0], .1)
.domain(data.map(function (d) {
return d.name;
}));
//make y axis to show bar names
var yAxis = d3.svg.axis()
.scale(y)
//no tick marks
.tickSize(0)
.orient("left");
var gy = svg.append("g")
.attr("class", "y axis")
.call(yAxis)
var bars = svg.selectAll(".bar")
.data(data)
.enter()
.append("g")
//append rects
bars.append("rect")
.attr("class", "bar")
.attr("y", function (d) {
return y(d.name) + 28;
})
.attr("x", 30)
.attr("height", barHeight-62)
.attr("width", 0)
//function (d) {return x(d.value); });
.transition()
.delay(function (d, i) { return i*150; })
.attr("x", function (d, i) { return barHeight - 45; })
.attr("width", function (d) { return x(d.value); });
//add a value label to the right of each bar
bars.append("text")
.attr("class", "label")
//y position of the label is halfway down the bar
.attr("y", function (d) {
return y(d.name) + y.rangeBand() / 2 + 4;
})
//x position is 3 pixels to the right of the bar
.attr("x", function (d) {
return x(d.value) + 53;
})
.text(function (d) {
return d.value;
});
</script>
</div>
</section>
<!-- Portafolio -->
<section id="portfolio">
<div class="container" >
<h1 class="text-center">My work</h1>
<div class="row">
<div class="col-xs-6 col-sm-offset-2 col-sm-4 portolio-item">
<div>
<h2>Sibperu</h2>
<p>This is database of peruvian diversity with genetic, geographic and taxonomic information.
I programm the main page and improve the taxonomic index. I also extracted data and images for the database </p>
<li><h6>Scrapy Django Python HTML</h6></li>
</div>
</div>
<div class="col-xs-6 col-sm-4 portolio-item">
<a href="http://sibperu.org/" target="_blank">
<img src="img/sibperu.png" class="img-responsive thumbnail" alt="weather app"/>
</a>
</div>
</div>
<div class="row">
<div class="col-xs-6 col-sm-offset-2 col-sm-4 portolio-item">
<a href="https://manolo.rocks/statistics/" target="_blank">
<img src="img/manolo_statistics2.png" class="img-responsive thumbnail" alt="marie curie"/>
</a>
</div>
<div class="col-xs-6 col-sm-4 portolio-item">
<div>
<h2>Manolo.rocks/statistics/</h2>
<p>An interactive graph to explore the Manolo database. It shows the most common visitors to some public peruvian organizations as the congress, the Ministry of Health, Transportation, Environment, etc.</p>
<li><h6>D3.js Django Python</h6></li>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-6 col-sm-offset-2 col-sm-4 portolio-item">
<div>
<h2>Game of thrones quote generator</h2>
<p>It extracts random quotes from an API then it can be tweeted. This is an excercice
from Freecodecamp.</p>
<li><h6>JQuery HTML CSS</h6></li>
</div>
</div>
<div class="col-xs-6 col-sm-4 portolio-item">
<a href="https://codepen.io/hedonazur/full/oxKNvw/" target="_blank">
<img src="img/quotes_generator.png" alt="random quotes generator" class="img-responsive thumbnail" /></a>
</div>
</div>
<div class="row">
<div class="col-xs-6 col-sm-offset-2 col-sm-4 portolio-item">
<a href="https://hedonazur.github.io/marie_curie_porfolio/" target="_blank">
<img src="img/marie_curie.png" class="img-responsive thumbnail" alt="marie curie"/>
</a>
</div>
<div class="col-xs-6 col-sm-4 portolio-item">
<div>
<h2>Tribute page of Marie Curie</h2>
<p>Marie Curie accomplishments and timeline portrayed as the portfolio of an actress/model.</p>
<li><h6>HTML CSS bootstrap </h6></li>
</div>
</div>
</div>
<br>
<br>
<br>
</div>
</section>
<!-- About -->
<section id="about">
<div class="row">
<div class="col-sm-6 col-sm-offset-3 col-md-4 col-md-offset-4 about-block about-bg">
<h1 class="text-center">About me</h1>
<br>
<p>Hello! I am a Biologist/Entomologist. I was studing tropical wasps for my Master's degree on Environmental Sciences in Finland. My publications are <a href="https://scholar.google.com.pe/citations?user=mKBcu6QAAAAJ&hl=en" target="_blank">here</a></p>
<p>My experience with programming was using R for data analisis. Now I'm learning front end development on Freecodecamp and Django.</p>
<p>I can create or improve your website using HTML5, CSS, and JavaScript or help you scraping other websites. I currently contribute to some freelance projects on GitHub and GitLab.</p>
</div>
</div>
</section>
<!-- Contact -->
<section id="contact">
<div class="container">
<div class="powr-form-builder" id="3e6b51f2_1470519267"></div>
</div>
</section>
<!-- Footer -->
<footer class="text-center">
<div class="footer-above">
<div class="container">
<div class="row">
<div class="footer-col col-md-12">
<h3>Around the Web</h3>
<ul class="list-inline">
<li>
<a href="https://twitter.com/hedonazur" class="btn-social btn-outline"><i class="fa fa-fw fa-twitter"></i></a>
</li>
<li>
<a href="https://gitlab.com/hedonazur" class="btn-social btn-outline"><i class="fa fa-gitlab"></i></a>
</li>
<li>
<a href="https://github.com/hedonazur" class="btn-social btn-outline"><i class="fa fa-fw fa-github"></i></a>
</li>
<li>
<a href="https://www.freecodecamp.com/hedonazur" class="btn-social btn-outline"><i class="fa fa-fw fa-fire "></i></a>
</li>
<li>
<a href="https://www.researchgate.net/profile/Carol_Castillo" class="btn-social btn-outline"><i class="ai ai-researchgate ai-1x"></i></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="footer-below">
<div class="container">
<div class="row">
<div class="col-lg-12">
Coded by Carol Castillo 2016
</div>
</div>
</div>
</div>
</footer>
<!-- jQuery (Bootstrap JS plugins depend on it) -->
<script src="js/jquery-1.11.3.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/script.js"></script>
<!--contact form script -->
<script src="//www.powr.io/powr.js" external-type="html"></script>
<script src="https://use.fontawesome.com/9c2022d1e2.js"></script>
</body>
</html>