🔖🚧 Initial commit
This commit is contained in:
commit
da5dd153e3
10 changed files with 588 additions and 0 deletions
11
.gitignore
vendored
Normal file
11
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
_site
|
||||
.DS_Store
|
||||
.jekyll
|
||||
.jekyll-metadata
|
||||
.bundle
|
||||
.sass-cache
|
||||
Gemfile.lock
|
||||
node_modules
|
||||
package.json
|
||||
|
||||
_config.local.yml
|
||||
6
Gemfile
Normal file
6
Gemfile
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
source 'https://rubygems.org'
|
||||
gem 'github-pages'
|
||||
gem 'jekyll-github-metadata'
|
||||
gem 'jekyll-sitemap'
|
||||
gem 'jekyll-feed'
|
||||
gem 'jekyll-seo-tag'
|
||||
20
Makefile
Normal file
20
Makefile
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
export PATH := $(HOME)/bin:$(PATH):/usr/local/bin
|
||||
|
||||
POINT=$(shell echo $$((RANDOM%79+128512)) )
|
||||
EMOJI=$(shell printf '%x' $(POINT) )
|
||||
|
||||
all: deploy
|
||||
|
||||
build:
|
||||
true
|
||||
|
||||
stage: build
|
||||
bundle exec jekyll build -c '_config.yml,_config.local.yml'
|
||||
|
||||
serve: stage
|
||||
cd _site; php -S localhost:9090
|
||||
|
||||
deploy: build
|
||||
git add -A _posts _data archives
|
||||
git commit -m "[Add] `printf "\U$(EMOJI)"` `date`: `fortune -s -n 61 | tr '\n' ' ' | sed -r 's/[[:blank:]]+/ /g'`"
|
||||
git push origin master
|
||||
94
_config.yml
Normal file
94
_config.yml
Normal file
|
|
@ -0,0 +1,94 @@
|
|||
#
|
||||
# This file contains configuration flags to customize your site
|
||||
#
|
||||
|
||||
# Name of your site (displayed in the header)
|
||||
name: "Dan Jones"
|
||||
|
||||
# Short bio or description (displayed in the header)
|
||||
description: "Web developer, actor, all around good guy"
|
||||
|
||||
timezone: America/Chicago
|
||||
|
||||
# URL of your avatar or profile pic (you could use your GitHub profile pic)
|
||||
avatar: https://avatars3.githubusercontent.com/u/254662
|
||||
|
||||
#
|
||||
# Flags below are optional
|
||||
#
|
||||
|
||||
twitter:
|
||||
username: goodevilgenius
|
||||
|
||||
# Includes an icon in the footer for each username you enter
|
||||
author:
|
||||
name: Dan Jones
|
||||
from: Texas, USA
|
||||
dribbble:
|
||||
email:
|
||||
facebook: danjones
|
||||
flickr: goodevilgenius
|
||||
github: goodevilgenius
|
||||
instagram: goodevilgenius
|
||||
linkedin: danjones000
|
||||
pinterest:
|
||||
rss: https://pile.goodevilgenius.org/feed.xml # just type anything here for a working RSS icon
|
||||
twitter: goodevilgenius
|
||||
stackoverflow: users/367461/dan-jones # your stackoverflow profile, e.g. "users/50476/bart-kiers"
|
||||
youtube: # channel/<your_long_string> or user/<user-name>
|
||||
googleplus: +DanJones000 # anything in your profile username that comes after plus.google.com/
|
||||
|
||||
# Enter your Disqus shortname (not your username) to enable commenting on posts
|
||||
# You can find your shortname on the Settings page of your Disqus account
|
||||
disqus:
|
||||
|
||||
# Enter your Google Analytics web tracking code (e.g. UA-2110908-2) to activate tracking
|
||||
google_analytics:
|
||||
|
||||
# Your website URL (e.g. http://barryclark.github.io or http://www.barryclark.co)
|
||||
# Used for Sitemap.xml and your RSS feed
|
||||
url: https://projects.danielrayjones.com
|
||||
|
||||
# If you're hosting your site at a Project repository on GitHub pages
|
||||
# (http://yourusername.github.io/repository-name)
|
||||
# and NOT your User repository (http://yourusername.github.io)
|
||||
# then add in the baseurl here, like this: "/repository-name"
|
||||
baseurl: "/danielrayjones"
|
||||
|
||||
#
|
||||
# !! You don't need to change any of the configuration flags below !!
|
||||
#
|
||||
|
||||
permalink: /:year/:month/:title/
|
||||
|
||||
# The release of Jekyll Now that you're using
|
||||
version: v1.2.0
|
||||
|
||||
# Jekyll 3 now only supports Kramdown for Markdown
|
||||
kramdown:
|
||||
# Use GitHub flavored markdown, including triple backtick fenced code blocks
|
||||
input: GFM
|
||||
# Jekyll 3 and GitHub Pages now only support rouge for syntax highlighting
|
||||
syntax_highlighter: rouge
|
||||
syntax_highlighter_opts:
|
||||
# Use existing pygments syntax highlighting css
|
||||
css_class: 'highlight'
|
||||
|
||||
# Set the Sass partials directory, as we're using @imports
|
||||
sass:
|
||||
style: :expanded # You might prefer to minify using :compressed
|
||||
|
||||
# Use the following plug-ins
|
||||
gems:
|
||||
- jekyll-sitemap # Create a sitemap using the official Jekyll sitemap gem
|
||||
- jekyll-feed # Create an Atom feed using the official Jekyll feed gem
|
||||
- jekyll-seo-tag
|
||||
|
||||
# Exclude these files from your production _site
|
||||
exclude:
|
||||
- Gemfile
|
||||
- Gemfile.lock
|
||||
- LICENSE
|
||||
- README.md
|
||||
- CNAME
|
||||
- Makefile
|
||||
15
_layouts/default.html
Normal file
15
_layouts/default.html
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
{% seo %}
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/style.css" />
|
||||
<meta http-equiv="X-Clacks-Overhead" content="GNU Terry Pratchett" />
|
||||
</head>
|
||||
|
||||
<body {% if page.id %}id="page-{{ page.id }}"{% endif %}>
|
||||
<section class="entry-content">
|
||||
{{ content }}
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
||||
16
contact.html
Normal file
16
contact.html
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
layout: default
|
||||
---
|
||||
|
||||
<p>You can email me at <span id="33c12d8ca2a4cb0fc68b88df8329bf53"></span>
|
||||
<script type="text/javascript">
|
||||
var t=[122,-62,159,-127,231,-117,218,-116,177,-143,252,-155,260,-152,268,-157,215,-177,212,-163,211,-163,222,-184,219,-162,217,-158,196,-161,210,-161,209,-150,188,-153,207,-155,214,-176,211,-162,210,-162,221,-183,218,-161,216,-157,195,-160,209,-160,208,-149,187,-152,201,-153,206,-147,185,-150,199,-151,200,-141,179,-144,193,-145,201,-142,180,-145,194,-145,197,-138,176,-141,190,-140,189,-130,168,-133,190,-135,194,-156,191,-142,190,-136,195,-157,192,-143,192,-143,202,-164,199,-150,199,-151,210,-172,207,-158,206,-157,216,-178,213,-164,213,-160,219,-181,216,-164,218,-159,197,-162,219,-162,221,-183,218,-169,218,-169,228,-190,225,-176,224,-167,226,-192,254,-154,251,-141,205,-105,202,-92,197,-96,204,-90,187,-66,172,-61,171,-70,185,-139,238,-127,236,-176,223,-126,188];
|
||||
var toAppend = '';
|
||||
for (var i=1; i<t.length; i++)
|
||||
{
|
||||
toAppend+=String.fromCharCode(t[i]+t[i-1]);
|
||||
}
|
||||
document.getElementById('33c12d8ca2a4cb0fc68b88df8329bf53').innerHTML = toAppend;
|
||||
</script><noscript>Please enable JavaScript to see this field.</noscript>.
|
||||
|
||||
Or give me a call at <a href="tel:704-326-1626">704-326-1626</a>, or <a href="skype:goodevilgenius?call">on Skype</a>.</p>
|
||||
34
index.html
Normal file
34
index.html
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
---
|
||||
layout: default
|
||||
---
|
||||
|
||||
<p>Welcome to my website. My name is Dan Jones. I am a web developer and an actor, and I'd like to tell you a bit about myself.</p>
|
||||
|
||||
<section id="webdeveloper">
|
||||
<h2>Dan Jones, the Web Developer</h2>
|
||||
|
||||
<div class="caption" id="attachment_68" align="alignright" width="300"><a href="http://danielrayjones.blogs.goodevilgenius.org/files/2013/02/C64c_system.jpg"><img src="http://danielrayjones.blogs.goodevilgenius.org/files/2013/02/C64c_system-300x240.jpg" alt="Commodore 64C" width="300" height="240" class="size-medium wp-image-68" /></a> Commodore 64C<br />© <a href="http://commons.wikimedia.org/wiki/File:C64c_system.jpg">Bill Bertram</a></div>
|
||||
|
||||
<p>I was first exposed to computers as a child. My family had a Commodore 64, on which, as a ten-year old child, I would
|
||||
do my homework, play games, and make simple programs. I learned how to program in
|
||||
<a href="https://en.wikipedia.org/wiki/BASIC"><abbr title="Beginner's All-purpose Symbolic Instruction Code">
|
||||
BASIC</abbr></a>. It was then that I began to
|
||||
understand how computers could improve our day-to-day lives.</p>
|
||||
|
||||
<p>When we upgraded to a newer computer, we finally got the Internet (via <a href="https://en.wikipedia.org/wiki/Prodigy_(online_service)">Prodigy</a>) in our home. When I was 14, I got my first email address, and at 15, created my first website on <a href="https://en.wikipedia.org/wiki/GeoCities">GeoCities</a> (my site was in the <em>Silicon Valley</em> "neighborhood"). My site was essentially a blog before blogs existed.</p>
|
||||
|
||||
<p>Initially, I built the site using a <abbr title=" What You See Is What You Get ">WYSIWYG</abbr> editor (namely, <a href="https://en.wikipedia.org/wiki/Microsoft_FrontPage">MS FrontPage</a>), but with my programming background, I was interested in what made these pages into the pages I saw in my web browser. It wasn't long before I was hand-coding the site.</p>
|
||||
|
||||
<p>I learned <abbr title=" Hypertext Markup Language">HTML</abbr> to layout the site, <abbr title="Cascading Stylesheets ">CSS</abbr> to give it some style, and eventually JavaScript to make it dynamic. During that time, I had my own web design business. I only had client while in high school, but I gained skills necessary to work with others and to take another person's vision, and make it real.</p>
|
||||
|
||||
<p>When I entered college, I gained additional skills necessary to run enterprise websites. I learned PHP, for truly dynamic website. I learned SQL, to interact with databases. I also gained some experience with server administration by setting up and running my website on my own <abbr title=" Linux, Apache, MySQL, PHP">LAMP</abbr> server. I also gained experience with several platforms and frameworks.</p>
|
||||
|
||||
<p>Since that time, I've worked building websites for small businesses, educational organizations, and large media companies.</p>
|
||||
</section>
|
||||
|
||||
<section id="actor" class="hide">
|
||||
<h2>Dan Jones, the Actor</h2>
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
129
style.scss
Normal file
129
style.scss
Normal file
|
|
@ -0,0 +1,129 @@
|
|||
---
|
||||
---
|
||||
dl {
|
||||
& > dt + dd, & > dd + dd {
|
||||
padding-left: 1em;
|
||||
margin-bottom: 0;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
& > dt + dt, & > dd + dt {
|
||||
margin-top: 1em;
|
||||
}
|
||||
}
|
||||
|
||||
@media print {
|
||||
.noprint { display: none; }
|
||||
.site-header { display: none; }
|
||||
.hentry { margin-bottom: 0; }
|
||||
p, dl, ul, ol { margin-bottom: 1em; }
|
||||
}
|
||||
|
||||
@media screen {
|
||||
.printonly { display: none; }
|
||||
}
|
||||
|
||||
.hide { display: none; }
|
||||
|
||||
%resume {
|
||||
section {
|
||||
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
||||
padding-top: 1em;
|
||||
}
|
||||
}
|
||||
|
||||
#page-web {
|
||||
@extend %resume;
|
||||
|
||||
#workhistory {
|
||||
ul .tech {
|
||||
&::before { content: "("; }
|
||||
&::after { content: ")"; }
|
||||
}
|
||||
}
|
||||
|
||||
@media print {
|
||||
.site-title, .entry-title { display:none; }
|
||||
|
||||
h2 {
|
||||
font-size: 20px;
|
||||
margin-bottom: 0.25em;
|
||||
}
|
||||
|
||||
.entry-content {
|
||||
a {
|
||||
&:link::after, &:visited:after {
|
||||
content:" [" attr(href) "] ";
|
||||
color: gray;
|
||||
}
|
||||
}
|
||||
|
||||
#workhistory {
|
||||
ul .tech {
|
||||
display: block;
|
||||
&::before { content: ""; }
|
||||
&::after { content: ""; }
|
||||
}
|
||||
}
|
||||
|
||||
#summary {
|
||||
li {
|
||||
float: left;
|
||||
margin-right: 0.5em;
|
||||
list-style-type: none;
|
||||
width: 30%;
|
||||
|
||||
&:nth-child(3n + 1) {
|
||||
clear: both;
|
||||
}
|
||||
}
|
||||
|
||||
p:nth-child(3) {
|
||||
margin-bottom:0;
|
||||
}
|
||||
|
||||
ul {
|
||||
margin-top:0;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
&::after {
|
||||
content: " ";
|
||||
clear: both;
|
||||
display: block;
|
||||
}
|
||||
|
||||
& + section {
|
||||
margin-top: 1em;
|
||||
//clear:both;
|
||||
}
|
||||
}
|
||||
|
||||
ul {
|
||||
p { margin-bottom: .5em; }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#page-theater {
|
||||
@extend %resume;
|
||||
|
||||
#contact {
|
||||
display: table;
|
||||
width: 100%;
|
||||
|
||||
div {
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
|
||||
&:first-child {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
78
theater.html
Normal file
78
theater.html
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
---
|
||||
layout: default
|
||||
id: theater
|
||||
---
|
||||
|
||||
<h1>Dan Jones</h1>
|
||||
|
||||
<section id="contact">
|
||||
<div>
|
||||
<p>10117 Emerald Park Dr<br/>
|
||||
Houston, TX 77070</p>
|
||||
|
||||
<p>+1 (704) 326–1626<br/>
|
||||
dan@danielrayjones.com</p>
|
||||
|
||||
<p>Height: 6ft. • Weight: 222 lbs.<br/>
|
||||
Hair: Brown • Eyes: Blue</p>
|
||||
</div>
|
||||
|
||||
<div><a href="http://danielrayjones.blogs.goodevilgenius.org/files/2014/11/MyHeadshot.jpg"><img src="http://danielrayjones.blogs.goodevilgenius.org/files/2014/11/MyHeadshot-150x150.jpg" alt="Headshot" width="150" height="150" class="size-thumbnail wp-image-58" /></a></div>
|
||||
</section>
|
||||
|
||||
<section id="film">
|
||||
<h2>Film</h2>
|
||||
<table><tbody>
|
||||
<tr><th scope="row">My Seducer, Myself</th><td>Lead</td><td>Flaming Skunk Productions (2008)</td></tr>
|
||||
<tr><th scope="row">Delilah</th><td>Thomas – Supporting</td><td>oogaFilms (2008)</td></tr>
|
||||
<tr><th scope="row">The Plumber and the Princess</th><td>Koopa – Supporting</td><td>Flaming Skunk Productions (2008)</td></tr>
|
||||
<tr><th scope="row">Crosswalk</th><td>Priest – Supporting</td><td>oogaFilms (2007)</td></tr>
|
||||
<tr><th scope="row">A Walk in the Park</th><td>Crantz – Supporting</td><td>oogaFilms (2006)</td></tr>
|
||||
</tbody></table>
|
||||
</section>
|
||||
|
||||
<section id="theater">
|
||||
<h2>Theater</h2>
|
||||
<table><tbody>
|
||||
<tr><th scope="row">Corona</th><td>Colonel – Lead</td><td>University of Texas (2007)</td></tr>
|
||||
<tr><th scope="row">Marat/Sade</th><td>Male Nurse – Supporting</td><td>University of Texas (2007)</td></tr>
|
||||
<tr><th scope="row">Holes</th><td>Igor Barkov, Policeman – Supporting</td><td>University of Texas (2006)</td></tr>
|
||||
<tr><th scope="row">Two Donuts</th><td>Commandante Boots – Supporting</td><td>University of Texas (2005)</td></tr>
|
||||
<tr><th scope="row">Boom Town, Ghost Town</th><td>Neil – Lead</td><td>University of Texas (2005)</td></tr>
|
||||
<tr><th scope="row">A Company of Wayward Saints</th><td>Pantalone – Supporting</td><td>John B. Connally Theater (2000)</td></tr>
|
||||
<tr><th scope="row">It’s a Wonderful Life</th><td>Harry Bailey, Officer Bert – Supporting</td><td>John B. Connally Theater (1999)</td></tr>
|
||||
<tr><th scope="row">The Hunchback of Notre Dame</th><td>Pheobus de Chateaupers – Supporting</td><td>John B. Connally Theater (1998)</td></tr>
|
||||
<tr><th scope="row">The Life and Adventures of Nicholas Nickelby</th><td>Narrator, Lord Frederick Verisopht, Monsieur Folair, Landlord – Supporting</td><td>University of Texas (1998)</td></tr>
|
||||
<tr><th scope="row">A Doctor, In Spite of Himself</th><td>Sganarelle – Lead</td><td>Rober G. Cole Theater (1998)</td></tr>
|
||||
<tr><th scope="row">You’re a Good Man, Charlie Brown</th><td>Linus van Pelt – Supporting</td><td>Rober G. Cole Theater (1996)</td></tr>
|
||||
</tbody></table>
|
||||
</section>
|
||||
|
||||
<section id="internet">
|
||||
<h2>Internet</h2>
|
||||
<table><tbody>
|
||||
<tr><th scope="row"><a href="http://joestryker.com/">Joe Stryker</a></th><td>Joe Stryker – Lead<br />Co-Producer, Co-Writer, Co-Director</td></tr>
|
||||
</tbody></table>
|
||||
</section>
|
||||
|
||||
<section id="education">
|
||||
<h2>Education</h2>
|
||||
<dl>
|
||||
<dt>Bachelor of the Arts in Theater and Dance</dt>
|
||||
<dd>University of Texas</dd>
|
||||
<dd>University Honors</dd>
|
||||
<dd>2004 – 2008</dd><dd>Austin, TX</dd>
|
||||
<dt>High School Summer Theatre Program</dt>
|
||||
<dd>University of Texas</dd>
|
||||
<dd>Summer 1998</dd>
|
||||
<dd>Austin, TX</dd>
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
<section id="specialskills">
|
||||
<h2>Special Skills</h2>
|
||||
<ul>
|
||||
<li>Speak German</li>
|
||||
<li>Ride motorcycle</li>
|
||||
</ul>
|
||||
</section>
|
||||
185
web.html
Normal file
185
web.html
Normal file
|
|
@ -0,0 +1,185 @@
|
|||
---
|
||||
layout: default
|
||||
id: web
|
||||
---
|
||||
|
||||
<h1 id="danjones">Dan Jones</h1>
|
||||
|
||||
<section id="contact">
|
||||
|
||||
<p>10117 Emerald Park Dr • Houston, TX 77070<br/>
|
||||
+1 (704) 326-1626 • dan@danielrayjones.com<br/>
|
||||
<span class="noprint">http://danielrayjones.com/</span></p>
|
||||
|
||||
</section>
|
||||
|
||||
<section id="summary">
|
||||
<h2>Summary</h2>
|
||||
<p>Web developer with broad experience in both large (educational and commercial) and small(commercial) websites. Designed custom web applications from the ground up, and modified existing open-source applications to meet specific needs. Effective communicator, with experience researching and writing content for educational websites. Social media expertise maintaining Facebook and Twitter accounts for educational institution, and building Facebook applications.</p>
|
||||
|
||||
<p>Skills include:</p>
|
||||
<ul>
|
||||
<li>HTML</li>
|
||||
<li>CSS</li>
|
||||
<li>SASS (SCSS)</li>
|
||||
<li>JavaScript</li>
|
||||
<li>jQuery</li>
|
||||
<li>AJAX</li>
|
||||
<li>Angular.js</li>
|
||||
<li>React</li>
|
||||
<li>PHP</li>
|
||||
<li>MySQL</li>
|
||||
<li>Laravel</li>
|
||||
<li>Wordpress</li>
|
||||
<li>CodeIgniter</li>
|
||||
<li>Git</li>
|
||||
<li>Grunt</li>
|
||||
<li>Gulp</li>
|
||||
<li>node.js</li>
|
||||
<li>MongoDB</li>
|
||||
<li>Apache</li>
|
||||
<li>Linux</li>
|
||||
<li>Docker</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<section id="workhistory">
|
||||
<h2>Work History</h2>
|
||||
<p>Began building websites 14 years ago. Primarily self-taught.<br>
|
||||
<em class="noprint">Please note: some of the following links are outdated. I'm working on redirecting them to a functional cached version of each of these.</em></p>
|
||||
|
||||
<ul>
|
||||
<li><p><strong><a href="http://stdcheck.com/">Medology</a></strong><br/>
|
||||
<em>Senior Full-Stack Developer</em><br/>
|
||||
<em>2016 - present</em></p>
|
||||
<p>Full-stack development for multiple websites in the health industry, including <a href="https://www.stdcheck.com/">STDCheck</a>, <a href="https://www.healthlabs.com">HealthLabs</a>, <a href="https://www.utitreatment.com/">UTI Treatment</a>. <span class="tech">PHP, MySQL, Laravel, Eloquent, Javascript, jQuery, AngularJS, React</span></p>
|
||||
</li>
|
||||
<li><p><strong>University of Texas Coding Bootcamp</strong><br/>
|
||||
<em>Instructor</em><br/>
|
||||
<em>2016 - 2017</em></p>
|
||||
|
||||
<p>Taught Full-stack coding bootcamp. Six month program to introduce students to basics of full-stack <abbr title="Mean, Express, React, Node">MERN</abbr> development. <span class="tech">HTML, CSS, Javascript, jQuery, APIs, AJAX, Node, Express, MySQL, sequelize, MongoDB, mongoose, PHP, Laravel, Python, React, React-Native</span></p>
|
||||
</li>
|
||||
<li><p><strong><a href="http://servermonkey.com/">Server Monkey</a></strong><br/>
|
||||
<em>Back-end web developer</em><br/>
|
||||
<em>2015 - 2016</em><br/>
|
||||
|
||||
<p>Develop Magento-based eCommerce site <span class="tech">PHP, MySQL, Magento, XML, Javascript, jQuery</span></p>
|
||||
<ul>
|
||||
<li>Extend functionality of current site</li>
|
||||
<li>Modify existing site plugins to better fit workflow of sales team.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><p><strong>Hubbard Radio – WTOP/Federal News Radio</strong><br/>
|
||||
<em>Back-end web developer</em><br/>
|
||||
<em>2010 - 2015</em></p>
|
||||
<ul>
|
||||
<li><span class="project">Wordpress Closings Plugins</span> <span class="tech">Wordpress, PHP</span>
|
||||
<ul>
|
||||
<li>Wordpress plugin to display school, business, and government closings during inclement weather.</li>
|
||||
<li>Includes login system for schools to close schools without newsroom involvement</li>
|
||||
<li>Allows newsroom users to change/modify/delete school-created closings if necessary</li>
|
||||
<li>Permission system to give users specific rights to modify individual closings, all closings, or administer the system</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><p><span class="project">Two website redesigns [http://wtop.com/ and http://federalnewsradio.com/]</span> <span class="tech">Wordpress, HTML, CSS, Javascript, jQuery, PHP, MySQL, Memcache, etc.</span></p>
|
||||
<p>Took part in complete redesign of two separate websites, twice.</p></li>
|
||||
<li><p><span class="project"><a class="noprint" href="http://wtop.com/?sid=2185984&nid=719&node=1">NewsQ</a><span class="printonly">NewsQ</span></span> <span class="tech">PHP, MySQL, Memcache, HTML, CSS, Javascript, jQuery, SocialMedia</span></p>
|
||||
<ul>
|
||||
<li>Designed MySQL database to store data about social ranking of stories on website.</li>
|
||||
<li>Wrote application to fetch data from various social media sites (Facebook, Twitter, Digg, etc.) in order to rank stories according to popularity.</li>
|
||||
<li>Integrated into Memcache to reduce server load.</li>
|
||||
<li>Created front-end resources to display data.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="noprint"><p><span class="project">Sports Widget</span> <span class="tech">PHP, Memcache,
|
||||
HTML</span></p>
|
||||
<p>Wrote application to parse game time information for local sports teams. Integrated into existing
|
||||
front-end.</p></li>
|
||||
<li class="noprint"><p><span class="project"><a href="http://www.federalnewsradio.com/">Thrift Savings Plan
|
||||
Ticker</a></span> <span class="tech">PHP, Memcache, HTML</span></p>
|
||||
<p>Wrote application to parse savings plan data from government website, cache on our servers, and display on
|
||||
our website.</p>
|
||||
</li>
|
||||
<li class="noprint"><p><span class="project">Wordpress Importer</span> <span class="tech">PHP,
|
||||
Wordpress</span></p>
|
||||
<p>Created method for automatically importing new stories from a Wordpress-hosted blog into our site. The
|
||||
purpose was to make the story-creation process easier.</p></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><p><strong><a href="http://www.me.utexas.edu/">University of Texas – Mechanical Engineering
|
||||
Department</a></strong><br/>
|
||||
<em>Programmer/Services Assistant</em><br/>
|
||||
<em>2008 - 2010</em></p>
|
||||
<p>Maintained website, wrote news stories, and oversaw a number of projects to improve the
|
||||
website<span class="noprint">, including:</span></p>
|
||||
<ul class="noprint">
|
||||
<li><p><span class="project"><a href="http://www.me.utexas.edu/sdp/previousprojects.php">Senior Design Projects
|
||||
Database</a><span> <span class="tech">PHP, XHTML, HTML Forms</span></p>
|
||||
<p>Designed MySQL database to hold information about past Senior Design Projects. Built from scratch front-end
|
||||
to search database and display information.</p></li>
|
||||
<li><p><span class="project">“Intranet” site</span> <span class="tech">Wordpress, PHP</span></p>
|
||||
<p>Built Wordpress site to host department updates, and information specifically for faculty and staff. Created
|
||||
custom Wordpress theme to match theme of the main site.</p></li>
|
||||
<li><p><span class="project">Research Blogs</span> <span class="tech">Wordpress, PHP</span></p>
|
||||
<p>Built Wordpress MU site to host research blogs for faculty and graduate students.</p></li>
|
||||
<li><p><span class="project"><a href="http://www.me.utexas.edu/about/">About
|
||||
Section</a></span> <span class="tech">PHP, HTML, CSS, Writing</span></p>
|
||||
<p>Created entire section of website for recruiting purposes. Did extensive research.</p></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="noprint"><p><strong>Dinkin' Flicka Design</strong><br/>
|
||||
<em>Co-Founder</em><br/>
|
||||
<em>2008</em></p>
|
||||
<ul>
|
||||
<li><p><span class="project">V&S Construction</span> <span class="tech">PHP, HTML, CSS</span></p>
|
||||
<p>Designed and built from scratch website for local construction company. XHTML 1.0 with some
|
||||
Javascript. CSS2.</p></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="noprint"><p><strong>Jones Web Design</strong><br/>
|
||||
<em>Founder</em><br/>
|
||||
<em>2001-2002</em></p>
|
||||
<ul>
|
||||
<li><p><span class="project">Dave's Pest Control</span> <span class="tech">HTML, CSS, Javascript</span></p>
|
||||
<p>Designed and built from scratch website for local pest control company. XHTML 1.0 with some
|
||||
Javascript. CSS2.</p></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><p><strong>Freelance Projects<span class="printonly">, etc.</span></strong></p>
|
||||
<ul>
|
||||
<li><p><span class="project"><a href="http://wedding.danielrayjones.com/">Dan and
|
||||
Kali</a></span> <span class="tech">PHP, HTML, CSS, JavaScript</span></p>
|
||||
<p>Designed and built from scratch own wedding website. Some PHP/MySQL for reservations. JQuery for photo
|
||||
album. Some CSS3.</p></li>
|
||||
<li><p><span class="project"><a href="http://joestryker.com/">Joe Stryker</a></span> <span class="tech">Wordpress,
|
||||
AJAX, JavaScript, PHP, HTML, CSS</span></p>
|
||||
<p>Designed and built website for independent Internet show. Site is built with Wordpress, using a custom-built
|
||||
theme. Some PHP plugins built for the site. Built custom Ajax/DOM effects to improve viewability/response
|
||||
time.</p></li>
|
||||
<li class="printonly"><p><span class="project">V&S Construction</span> <span class="tech">PHP, HTML,
|
||||
CSS</span></p>
|
||||
<p>Designed and built from scratch website for local construction company. XHTML 1.0 with some
|
||||
Javascript. CSS2.</p></li>
|
||||
<li class="printonly"><p><span class="project">Dave's Pest Control</span> <span class="tech">HTML, CSS,
|
||||
Javascript</span></p>
|
||||
<p>Designed and built from scratch website for local pest control company. XHTML 1.0 with some
|
||||
Javascript. CSS2.</p></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<section id="codesamples">
|
||||
<h2>Code Samples</h2>
|
||||
<ul>
|
||||
<li><a href="https://github.com/goodevilgenius">GitHub</a></li>
|
||||
<li><a href="https://gist.github.com/goodevilgenius">GitHub Gists</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<section id="education">
|
||||
<h2>Education</h2>
|
||||
<dl><dt>Bachelor of the Arts in Theater and Dance</dt><dd>University of Texas</dd><dd>University Honors</dd><dd>2004 – 2008</dd><dd>Austin, TX</dd>
|
||||
<dt class="noprint">Undeclared Major</dt><dd class="noprint">Austin Community College</dd><dd class="noprint">President's Honor Roll</dd><dd class="noprint">2000 – 2001</dd><dd class="noprint">Austin, TX</dd></dl>
|
||||
</section>
|
||||
Loading…
Add table
Add a link
Reference in a new issue