From 3bfb81562156605a659aee89e7276d4c0645e7fc Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Wed, 23 Sep 2015 15:09:56 -0500 Subject: [PATCH] WIP: Creating an interactive, HTML version of my resume. --- html-interactive/index.html | 176 +++++++++++++++++++++++++++++++++++ html-interactive/resume.scss | 13 +++ 2 files changed, 189 insertions(+) create mode 100644 html-interactive/index.html create mode 100644 html-interactive/resume.scss diff --git a/html-interactive/index.html b/html-interactive/index.html new file mode 100644 index 0000000..4588c15 --- /dev/null +++ b/html-interactive/index.html @@ -0,0 +1,176 @@ + + + + + Jonathan Bernard - Full Stack Developer + + + + +
+

Jonathan Bernard

+

jdbernard@gmail.com

+

(512)777-1602

+
+ + + + + +
+
+

Programming Languages

+ Java + Groovy + .NET + C/C++ + SQL + HTML5 + CSS3 + SCSS + JavaScript + EcmaScript6 + PHP + Erlang + BASH Script + Visual Basic + Perl + Lisp + XML + Visual FoxPro +
+ +
+

Server-Side Technologies

+ JSP + ASP.NET + Jersey + Grails + Apache httpd + Apache Tomcat + nginx + Jetty + Glassfish + YAWS + Hazelcast + Spring Framework +
+ +
+

Databases & Persistence

+ +

Relational

+ PostgreSQL + Oracle + MS Sql Server + MySQL + H2 + HSQLDB + SqlLite + Access + +

No-SQL

+ Mnesia + LevelDB + KyotoCabinet + CouchDB + MongoDB + +

ORM/Access Layers

+ JPA + Hibernate + Spring Data +
+ +
+

Web Technologies

+ HTTP + REST + SOAP + Ajax + WebSockets + +
+ +
+

Front-End Frameworks, Libraries, & Principles

+ jQuery + Backbone.js + Underscore.js + Mustache.js + Handlebars.js + Progressive Enhancement + Responsive Design + User Experience Design +
+ +
+

Classical Application Technologies

+ Swing + Windows Presentation Foundations (WPF) + WinForms + Griffon + Windows COM +
+ +
+

Development Tools

+

Editors/IDEs

+ VI(m) + Eclipse + NetBeans + VisualStudio + Appcelerator Titanium Studio + UNIX Command Line + +

Source Control

+ Git + Mercurial + Subversion + Fossil + CVS + +

Build Tools

+ Gradle + Apache Maven + Apache Ant + GNU Make + Apache Ivy +
+ +
+

Applied Cryptography & Security

+ Symmetric Ciphers + Asymmetric Ciphers + Public Key Infrastructure (PKI) +
+ +
+

Smart Cards

+ ISO 7816 - Identification Cards + ISO 14443 - Contactless IC Cards -- + Proximity Cards +
+ +
+

Operating Systems (use & administration)

+ Linux (esp. Ubuntu, Debian, and Red Hat -based + distros.) + OpenBSD + Windows +
+
+ +
+
+ +
+
+ + + diff --git a/html-interactive/resume.scss b/html-interactive/resume.scss new file mode 100644 index 0000000..bcb5f05 --- /dev/null +++ b/html-interactive/resume.scss @@ -0,0 +1,13 @@ +// Simple HTML5 reset. Not comprehensive but sufficient. +* { + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; + margin: 0; + padding: 0; } + +article,aside,details,figcaption,figure, +footer,header,hgroup,menu,nav,section { + display:block; } + +