-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
450 lines (449 loc) · 17.2 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
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
<!DOCTYPE html>
<html>
<head>
<title>Personal Site</title>
<meta content='width=device-width, initial-scale=1.0' name='viewport'>
<link href='css/bootstrap.css' media='all' rel='stylesheet' type='text/css'>
<link href='css/site.css' media='all' rel='stylesheet' type='text/css'>
<script src='http://code.jquery.com/jquery.js' type='text/javascript'></script>
<script src='js/bootstrap.min.js' type='text/javascript'></script>
<!-- Image Picker -->
<link href='http://rvera.github.com/image-picker/image-picker/image-picker.css' media='all' rel='stylesheet' type='text/css'>
<script src='http://rvera.github.com/image-picker/image-picker/image-picker.min.js' type='text/javascript'></script>
</head>
<body>
<div class='container'>
<div class='row'>
<div class='span2'>
<img class='img-circle' src='https://secure.gravatar.com/avatar/a13f1d33b6dc5ec4baf5d549da5a74d6?s=200'>
</div>
<div class='span10'>
<h1>
Hi there!
</h1>
<p class='lead'>
Thanks for stopping by. Here you'll find some of the personal projects I've worked on over the years.
</p>
<div class='row'>
<div class='span3'>
<p>
Maybe you were looking for my professional information?
You can check my linkedin profile. It's not very thorough but the basic
information is there.
</p>
</div>
<div class='span2'>
<a href='http://www.linkedin.com/in/rodvera/'>
<img class='thumb' src='img/linkedin2.png'>
</a>
</div>
<div class='span3'>
Or maybe you were looking for my github profile.
</div>
<div class='span2'>
<a href='http://github.com/rvera'>
<img class='thumb' src='http://octodex.github.com/images/original.jpg'>
</a>
</div>
</div>
</div>
</div>
<div class='project'>
<div class='row'>
<div class='span12'>
<h2>Image Picker</h2>
</div>
</div>
<div class='row'>
<div class='span8'>
<p class='desc'>
Image Picker is a simple jQuery plugin that transforms a select element into a more
user-friendly graphical interface. I found myself using 'select' form elements a lot despite
not really liking them that much; They don't either present all the available options in
a good way nor are very user friendly on mobile devices (radio buttons are not better either).
This plugin was created to solve both of these problems, so far it works great and seems
to well received by the web developer community.
</p>
<h3>Check it out!</h3>
<p>
<select class='image-picker'>
<option data-img-src='http://placekitten.com/400/150' value='1'>Cute Kitten 1</option>
<option data-img-src='http://placekitten.com/150/150' value='2'>Cute Kitten 2</option>
<option data-img-src='http://placekitten.com/100/150' value='3'>Cute Kitten 3</option>
<option data-img-src='http://placekitten.com/450/151' value='4'>Cute Kitten 4</option>
</select>
<script>
jQuery("select.image-picker").imagepicker({
hide_select: false,
});
</script>
</p>
</div>
<div class='span4'>
<div class='see_more well'>
<h3>Want to see more?</h3>
<ul class='link_list'>
<li>
<a href='http://rvera.github.com/image-picker/'>
Visit the project page
</a>
</li>
<li>
<a href='https://github.com/rvera/image-picker'>
View on Github
</a>
</li>
</ul>
<a class='btn btn-success' href='https://github.com/rvera/image-picker/archive/master.zip'>
Download it
</a>
</div>
</div>
</div>
</div>
<div class='project'>
<div class='row'>
<div class='span12'>
<h2>EDIPS: an Easy to Deploy Indoor Positioning System</h2>
</div>
</div>
<div class='row'>
<div class='span8'>
<p class='desc'>
I'm what you might call a prehistoric mobile developer. I used to develop
applications for the Java Micro Edition, Blackberry and Windows Mobile platforms
in a time when those platforms where actually relevant.
EDIPS is the offspring of the knowledge I had with my passion at the time for
indoor positioning systems. I'd love to work on a similar project now, the technology
is much closer to the point of making a tool like this a reality.
</p>
<p class='desc'>
While similar applications exists, none of them are very practical when it comes to
actually deploying them in the real world. EDIPS sacrifices some accuracy in order to
actually make the initial deployment as fast as possible.
</p>
</div>
<div class='span4'>
<div class='see_more well'>
<h3>Want to see more?</h3>
<ul class='link_list'>
<li>
<a href='http://dl.acm.org/citation.cfm?id=1969442'>
ACM Link
</a>
</li>
</ul>
<a class='btn btn-success' href='downloads/edips.pdf'>
Download the paper
</a>
</div>
</div>
</div>
<div class='row'>
<div class='span12'>
<h3>Screens</h3>
<ul class='thumbnails'>
<li class='span3'>
<div class='thumbnail'>
<a href='img/edips2.png'>
<img src='img/edips2.png'>
</a>
</div>
</li>
<li class='span3'>
<p class='muted'>
The app builds a manet with the current users in the area and
shares your position with them.
</p>
</li>
<li class='span3'>
<div class='thumbnail'>
<a href='img/edips1.png'>
<img src='img/edips1.png'>
</a>
</div>
</li>
<li class='span3'>
<p class='muted'>
The app takes advantage of the motion sensors on the device and communicates
to other users whether you are standing still or moving around. It also uses this
information to make better guessings about your current position.
</p>
</li>
</ul>
</div>
</div>
</div>
<div class='project'>
<div class='row'>
<div class='span12'>
<h2>Radios Chile</h2>
</div>
</div>
<div class='row'>
<div class='span8'>
<p class='desc'>
While living in the US I couldn't help but to feel a little homesick, combine that with
a friend who wanted to learn Ruby on Rails and Radios Chile was born.
</p>
<p class='desc'>
On the back end, the app is constantly crawling the radio streams in order to extract the
metadata from them and update the current artist/song being played. The front end is updated
with a mix of AJAX and PJAX in order to not load the whole page with every update and
avoid reloading the external music playing libraries.
</p>
</div>
<div class='span4'>
<div class='see_more well'>
<h3>Want to see more?</h3>
<ul class='link_list'>
<li></li>
</ul>
<a class='btn btn-success' href='http://radio.chilerocks.org/'>
Listen Online
</a>
</div>
</div>
</div>
<div class='row'>
<div class='span12'>
<h3>Screens</h3>
</div>
</div>
<div class='row'>
<div class='span6'>
<a href='img/radios_chile.png'>
<img src='img/radios_chile.png'>
</a>
</div>
<div class='span6'>
<p class='muted'>
While listening, the information for every station is constantly updated with
the metadata from each stream. Sadly some stations don't update the metadata as
much as we hoped, some don't even have metadata at all!
</p>
</div>
</div>
</div>
<div class='project'>
<div class='row'>
<div class='span12'>
<h2>Quiin</h2>
</div>
</div>
<div class='row'>
<div class='span8'>
<p class='desc'>
Quiin is a command line utility built in Ruby that monitors background processes
and captures its exit code along with stdout and stderr output. This information is
stored by Quiin and is accessed through the embedded Sinatra app.
</p>
<p class='desc'>
It was built as a proof of concept for a very specific project and has not been maintained
in a very long time.
The code is public in case it's of use to anyone else. If I ever have the need to
built a similar tool I'd love to clean up the code and gemify it.
</p>
</div>
<div class='span4'>
<div class='see_more well'>
<h3>Want to see more?</h3>
<ul class='link_list'>
<li>
<a href='https://github.com/rvera/quiin'>
View on Github (abandoned)
</a>
</li>
</ul>
<a class='btn btn-success' href='https://github.com/rvera/quiin/archive/master.zip'>
Download it
</a>
</div>
</div>
</div>
<div class='row'>
<div class='span12'>
<h3>Screens</h3>
</div>
</div>
<div class='row'>
<div class='span4'>
<a href='img/quiin.png'>
<img src='img/quiin.png'>
</a>
</div>
<div class='span2'>
<p class='muted'>
The main screen of the embedded Sinatra app shows the latests jobs and warns you if
any of them have failed.
</p>
</div>
<div class='span4'>
<a href='img/quiin2.png'>
<img src='img/quiin2.png'>
</a>
</div>
<div class='span2'>
<p class='muted'>
This is an example of a failed job. It shows the output along the exit code.
</p>
</div>
</div>
</div>
<div class='project'>
<div class='row'>
<div class='span12'>
<h2>Jumping Cat Adventures</h2>
</div>
</div>
<div class='row'>
<div class='span8'>
<p class='desc'>
JCA a game I made a long time ago for my sisters; they were the best QA testers I ever had, seriously.
It's a game that while challenging doesn't punish you, in fact you can't even die in the game at all.
One of the most novel aspects of the game is that it employs a very simplistic one button contol method;
just point in the direction where you want to jump and hold the mouse button, the
longer you hold it the stronger the jump will be.
</p>
<p class='desc'>
The game was built using GameMaker so it only works on Windows. It should
still work on modern machine but can't say for sure. Haven't used a Windows
machine in a long, long time.
</p>
<p class='desc'>
I did all of the programming and my girlfriend at the time helped
me with the pixel art. We even won a contest with this game but I'm still waiting
for my first place prize. The sponsoring game company never gave it to me (if someone
from Wanako Studios/Behaviour Santiago is reading this, it's never too late!)
</p>
</div>
<div class='span4'>
<div class='see_more well'>
<h3>Want to see more?</h3>
<ul class='link_list'>
<li>
<a href='http://www.youtube.com/watch?v=0Ucfzr1oi98'>
See the trailer
</a>
</li>
<li>
<a href='http://web.ing.puc.cl/~iic3686/juegos2006-2.html'>
1st prize winner!
</a>
</li>
</ul>
<a class='btn btn-success' href='downloads/JumpingCat.exe'>
Download it
</a>
</div>
</div>
</div>
<div class='row'>
<div class='span12'>
<h3>It even has a trailer!</h3>
</div>
</div>
<div class='row'>
<div class='span8'>
<p>
<iframe width="620" height="480" src="http://www.youtube.com/embed/0Ucfzr1oi98" frameborder="0" allowfullscreen></iframe>
</p>
</div>
<div class='span4'>
<blockquote>
<p>"So awesome!"</p>
<small>
<cite>My youngest sister</cite>
</small>
</blockquote>
<blockquote>
<p>"I love it."</p>
<small>
<cite>My other sister</cite>
</small>
</blockquote>
<blockquote>
<p>"Meh. (but secretly loves it)"</p>
<small>
<cite>My older, teenager, sister</cite>
</small>
</blockquote>
</div>
</div>
</div>
<div class='small_projects'>
<div class='row'>
<div class='span12'>
<h2>Other small projects</h2>
</div>
</div>
<div class='row'>
<div class='span6'>
<div class='small_project'>
<img class='thumb img-rounded img-polaroid' src='img/matrimonio.png'>
<h3>Wedding Invitation</h3>
<p class='desc'>
This is a small Heroku app that I made over a weekend to send,
manage and track the invitations to my wedding.
</p>
<p>
<a class='btn btn-success' href='http://rodrigoysara.herokuapp.com/invitacion/2e957f20-7530-012f-dbc1-12313926dced'>
View an example
</a>
</p>
</div>
</div>
<div class='span6'>
<div class='small_project'>
<img class='thumb img-rounded img-polaroid' src='img/chalk_noir.png'>
<h3>Chalk Noir</h3>
<p class='desc'>
This is a small proof of concept game that I made while learning C++,
OpenGL and SDL. Among the myriad of unfinished games I've made over the years
I actually like this one a lot so I kept it around instead of just deleting it.
</p>
<p>
<a class='btn btn-success' href='downloads/chalk_noir.rar'>
Download
</a>
</p>
</div>
</div>
</div>
<div class='row'>
<div class='span3'></div>
<div class='span6'>
<div class='small_project'>
<img class='thumb img-rounded img-polaroid' src='img/crazybuzz.png'>
<h3>Crazy Buzz</h3>
<p class='desc'>
This small J2ME game was the electronic equivalent of the Hot Potato game.
It sounds like an awful idea to play it with our current smarthphones but back then
Nokia used to build them like a brick.
</p>
<p>
<a class='btn btn-success' href='downloads/crazybuzz.jar'>
Download
</a>
</p>
</div>
</div>
<div class='span3'></div>
</div>
</div>
<div class='footer'>
</div>
</div>
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-39155024-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>