-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 0dfa365
Showing
3 changed files
with
172 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,169 @@ | ||
<html> | ||
<head> | ||
<title>Bogdan Agafonov's CV</title> | ||
<!-- Latest compiled and minified CSS --> | ||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"> | ||
<!-- Optional theme --> | ||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap-theme.min.css"> | ||
<!-- Latest compiled and minified JavaScript --> | ||
<link rel='stylesheet' href="./styles/main.css"> | ||
<script src="https://code.jquery.com/jquery-2.1.3.min.js"></script> | ||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<div class="row"> | ||
<h1 class='name page-header'> | ||
Bogdan Agafonov | ||
/ | ||
<small class='position'> | ||
Full-Stack Web Developer | ||
</small> | ||
</h1> | ||
</div> | ||
<div class="row"> | ||
<div class="col-md-6"> | ||
<h2>Bio</h2> | ||
<div class="row"> | ||
<div class="col-md-4"> | ||
<img class='face img-circle thumbnail' src='./images/photo.png'> | ||
</div> | ||
<div class="col-md-8"> | ||
<table class='table'> | ||
<tr> | ||
<td>Age</td> | ||
<td id='age'>25</td> | ||
</tr> | ||
<tr> | ||
<td>City</td> | ||
<td>Moscow</td> | ||
</tr> | ||
<tr> | ||
<td>Marital Status</td> | ||
<td>Single, no kids</td> | ||
</tr> | ||
<tr> | ||
<td>Birth Date</td> | ||
<td>19.06.1989</td> | ||
</tr> | ||
<tr> | ||
<td>Education</td> | ||
<td>MAI'13 (Robotics)</td> | ||
</tr> | ||
</table> | ||
</div> | ||
</div> | ||
<h2>Contacts</h2> | ||
<div class="row"> | ||
<ul> | ||
<li>Email: <a mailto="[email protected]">[email protected]</a></li> | ||
<li>Skype: bob1shh</li> | ||
<li>Mobile: +79265033022</li> | ||
</ul> | ||
</div> | ||
<h2>Experience</h2> | ||
<div class="row"> | ||
<table class="table"> | ||
<tr> | ||
<td>02 '14 - ... </td> | ||
<td> | ||
<h4>Nectarin <small>Developer</small></h4> | ||
<p> | ||
Ruby on Rails, full-stack | ||
</p> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td>05 '12 - 02 '14</td> | ||
<td> | ||
<h4>Megafon OJSC <small>Engineer</small> | ||
</h4> | ||
<p> | ||
Linux engineering, Web development (perl, later Ruby on Rails) | ||
</p> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td>06 '11 - 05 '12</td> | ||
<td><h4>Plus Communications <small>Support Engineer</small></h4> | ||
<p> | ||
HelpDesk, Field Engineering (got CCNA those days) | ||
</p> | ||
</td> | ||
</tr> | ||
</table> | ||
</div> | ||
</div> | ||
<!-- {{{ Skils and stuff --> | ||
<div class="col-md-6"> | ||
<h2>Skills</h2> | ||
<table class="table"> | ||
<tr> | ||
<td>Front End</td> | ||
<td> | ||
<ul> | ||
<li>HTML5</li> | ||
<li>CSS3</li> | ||
<li>Slim</li> | ||
<li>Sass</li> | ||
<li>JavaScript</li> | ||
<li>CoffeeScript</li> | ||
<li>AngularJS</li> | ||
<li>ReactJS</li> | ||
<li>Bootstrap</li> | ||
</ul> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td>Back End</td> | ||
<td> | ||
<ul> | ||
<li>Ruby on Rails 3.2+</li> | ||
<li>Ruby 1.9.3+</li> | ||
<li>MySQL</li> | ||
<li>Memcached</li> | ||
<li>PostgreSQL</li> | ||
</ul> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td>Testing</td> | ||
<td> | ||
<ul> | ||
<li>Rspec</li> | ||
<li>Minitest</li> | ||
<li>Cucumber</li> | ||
<li>Capybara</li> | ||
</ul> | ||
</td> | ||
</tr> | ||
<tr> | ||
|
||
<td>Tools</td> | ||
<td> | ||
<ul> | ||
<li>Vim</li> | ||
<li>Tmux</li> | ||
<li>MacOS X</li> | ||
<li>Linux</li> | ||
</ul> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td>Interested in</td> | ||
<td> | ||
<ul> | ||
<li>OOP</li> | ||
<li>Functional Programming</li> | ||
<li>Product Design</li> | ||
<li>Agile Techniques</li> | ||
</ul> | ||
</td> | ||
</tr> | ||
</table> | ||
</div> | ||
<!-- }}}--> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.position, { | ||
float:right; | ||
} |