-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
111 lines (104 loc) · 5.93 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
<!DOCTYPE HTML>
<html>
<head>
<title>Reg3x's</title>
<link href="fonts/font-awesome-4.2.0/css/font-awesome.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<!-- Nav -->
<nav id="nav">
<ul>
<li id="navinit"><a href="#who"><i class="fa fa-user"></i><br>Who</a></li>
<li><a href="#work"><i class="fa fa-sitemap"></i><br>Work</a></li>
<li><a href="#tools"><i class="fa fa-cubes"></i><br>Tools</a></li>
<li><a href="http://modernblog.herokuapp.com/"><i class="fa fa-book"></i><br>Blog</a></li>
<li id="contact"><a href="http://eepurl.com/baHgHb"><i class="fa fa-envelope"></i><br>Contact</a></li>
</ul>
</nav>
<!-- Home -->
<div class="wrapper" >
<article id="who" class="container">
<div id="logo">
<!-- <img src="images/me.jpg" width="50%" height="50%"/> -->
</div>
<div id="name">
<h1>Hi I'm Diego Aguilera</h1>
<p>Software Programmer</p>
</div>
<div id="social">
<ul>
<li> <a href="https://plus.google.com/+DiegoAguilera"><i class="fa fa-google-plus-square fa-4x google-plus-color"></i></a></li>
<li> <a href="http://ve.linkedin.com/in/diegoaguilera"><i class="fa fa-linkedin-square fa-4x linkedin-color"></i></a></li>
<li> <a href="http://twitter.com/reg3x"><i class="fa fa-twitter-square fa-4x twitter-color"></i></a></li>
<li> <a href="http://facebook.com/diego.aguilera"><i class="fa fa-facebook-square fa-4x facebook-color"></i></a></li>
</ul>
</div>
</article> <!-- Home-->
</div>
<!-- Tools -->
<div class="wrapper" >
<article id="work" class="container">
<header>
<h1>I've worked in ...</h1>
</header>
<div class="box">
<h1>Pikapay</h1>
<a href="http://www.pikapay.com"><img src="images/icons/pikapay.png"/></a>
<h3>Front End QA Tester</h3>
<p>UI Cross Platform Compatibility Testing (Mobile/Desktop) Defect/Bug Tracking for a BitCoin payment project. </p>
</div>
<div class="box">
<h1>Emi Group</h1>
<a href="http://www.emi-ve.com"><img src="images/icons/EMI.png"/></a>
<a href="http://www.emipowertek.com"><img src="images/icons/emipowertek.png"/></a>
<h3>Application Engineer</h3>
<p>Motion control applications programmed in a privative enviroment developed by LENZE products.</p>
</div>
<div class="box">
<h1>Cnti</h1>
<a href="http://www.cnti.gob.ve"><img src="images/icons/cnti.png"/></a>
<h3>Software Engineer</h3>
<p>Developer of the Venezuelan Public Administration's Operative System <a href="http://canaima.softwarelibre.gob.ve">'Canaima GNU/Linux'</a>.</p>
</div>
</article>
<article id="tools" class="container">
<header>
<h1>My preferred tools ...</h1>
<div class="box">
<h1>Python</h1>
<a href="http://www.djangoproject.com"><img src="images/logos/django.png"></a>
<h3>Django Developer</h3>
<p>Web Projects Built with consistent class based views, REST apis and test driven development. there are a lot of useful packages around Django community that can fit in a lot of common requirement making development quite fast. Django is right now the web framework I use the most </p>
</div>
<div class="box">
<h1>JavaScript</h1>
<a href="http://angularjs.org"><img src="images/logos/angular.png"></a>
<a href="http://nodejs.org"><img src="images/logos/node.png"></a>
<a href="http://jquery.com"><img src="images/logos/jquery.png"></a>
<h3>JavaScript Everywhere</h3>
<p>FrontEnd design through AngularJS and FrontEnd testing with CasperJS, NodeJS as Non-Blocking I/O Server. Consider this as my second most important language and I'm ready to try/implement any other JavaScript Library/Framework out there.</p>
</div>
<div class="box">
<h1>Backend</h1>
<a href="http://postgresql.org"><img src="images/logos/postgre.png"></a>
<a href="http://mongodb.org"><img src="images/logos/mongo.png"></a>
<a href="http://elasticsearch.org"><img src="images/logos/elasticsearch.png"></a>
<h3></h3>
<p>Both PostgreSQL and MongoDB are my preferred database management systems and I like to use ElasticSearch as Search Engine for my backends</p>
</div>
<div class="box">
<h1>Deployment</h1>
<a href="http://heroku.com"><img src="images/logos/heroku.png"></a>
<a href="http://travis-ci.org"><img src="images/logos/travis.png"></a>
<a href="http://bower.io"><img src="images/logos/bower.png"></a>
<h3></h3>
<p>I use to deploy applications using Heroku and as continuous integration service I choose TravisCI. I manage packages with Bower </p>
</div>
</header>
</article>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>