To build the site install the pageup python package:
$ virtualenv venv
$ source venv/bin/activate
$ pip install pageup
[...]
$ pageup build
| venv/ |
Welcome to the homepage of Elijah Caine.
[ pop ] on irc.freenode.net.
[ elijahcainemv@gmail ] by email.
[ President of the OSU Linux Users Group (LUG) ]
[ Developer at the OSU Open Source Lab (OSL) ]
[ Free Software Supporter ]
[ Open Source Contributor ]
Here is a picture of my face. Say hi if you see me.
Recently I attended OSBridge in Portland, OR. My favorite presentation had to be HTTP Can Do That?! presented by Sumana Harihareswara. I learned that a really mediocre way to communicate as a spy is by changing the capitalization/non-capitalization of your HTTP headers since HTTP is non-case-sensitive.
Mah Blerg needs some serious TLC but it works.
The GitHub Page where I put 95% of my code.
If you saw a talk I did, you can see my slides here.
I did a cool project called HuRandom about human perception of random numbers.
I post all of my videos to YouTube.
I also run a Book Club for my LUG community.
LicenseCheck is a cool little website that goes through your GitHub repositories and tells you to license the ones that are unlicensed.
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Elijah Caine</title> | |
| <link rel='stylesheet' type='text/css' href='style.css'> | |
| <link rel="icon" href="favicon.ico" /> | |
| <script> | |
| (function() { | |
| if(window.innerWidth <= 320){ | |
| document.getElementById("main").classList.add('one'); | |
| document.getElementById("main").classList.remove('two'); | |
| document.getElementById("main").classList.remove('three'); | |
| } else if(window.innerWidth <= 770){ | |
| document.getElementById("main").classList.remove('one'); | |
| document.getElementById("main").classList.add('two'); | |
| document.getElementById("main").classList.remove('three'); | |
| } else { | |
| document.getElementById("main").classList.remove('one'); | |
| document.getElementById("main").classList.remove('two'); | |
| document.getElementById("main").classList.add('three'); | |
| }; | |
| alert('ah'); | |
| }).call(this) | |
| </script> | |
| </head> | |
| <body> | |
| <div id='main' class='three'> | |
| <div class="document" id="elijah-caine"> <h1 class="title">Elijah Caine</h1> <p>Welcome to the homepage of Elijah Caine.</p> <hr class="docutils" /> <div class="section" id="here-s-a-quick-rundown-of-who-i-am"> <h1>Here's a quick rundown of Who I am:</h1> <p><em>[ pop ]</em> on irc.freenode.net.</p> <p><em>[ elijahcainemv@gmail ]</em> by email.</p> <p>[ <a class="reference external" href="http://lug.osuosl.org/">President of the OSU Linux Users Group (LUG)</a> ]</p> <p>[ <a class="reference external" href="http://osuosl.org/">Developer at the OSU Open Source Lab (OSL)</a> ]</p> <p><em>[ Free Software Supporter ]</em></p> <p><em>[ Open Source Contributor ]</em></p> <div class="figure align-center"> <img alt="profile_pic.png" src="profile_pic.png" style="height: 300px;" /> </div> <p>Here is a picture of my face. Say hi if you see me.</p> </div> <hr class="docutils" /> <div class="section" id="news"> <h1>News</h1> <p>Recently I attended OSBridge in Portland, OR. My favorite presentation had to be <a class="reference external" href="http://opensourcebridge.org/sessions/1433">HTTP Can Do That?!</a> presented by <a class="reference external" href="http://www.harihareswara.net/">Sumana Harihareswara</a>. I learned that a really mediocre way to communicate as a spy is by changing the capitalization/non-capitalization of your HTTP headers since HTTP is non-case-sensitive.</p> </div> <hr class="docutils" /> <div class="section" id="here-are-some-links-to-the-things-i-do"> <h1>Here are some links to the things I do:</h1> <p><a class="reference external" href="http://elijahcaine.me/resume.pdf">I have a resume</a>.</p> <p><a class="reference external" href="http://blog.elijahcaine.me/">Mah Blerg</a> needs some serious TLC but it works.</p> <p>The <a class="reference external" href="https://github.com/elijahcaine/">GitHub Page</a> where I put 95% of my code.</p> <p>If you saw a talk I did, you can see my <a class="reference external" href="http://slides.elijahcaine.me/">slides here</a>.</p> <p>I did a cool project called <a class="reference external" href="http://hurandom.elijahcaine.me/">HuRandom</a> about human perception of random numbers.</p> <p>I post all of my videos to <a class="reference external" href="https://www.youtube.com/user/Homeworkbad/">YouTube</a>.</p> <p>I also run a <a class="reference external" href="http://elijahcaine.me/reading/">Book Club</a> for my LUG community.</p> </div> <hr class="docutils" /> <div class="section" id="here-are-some-links-to-things-i-appreciate"> <h1>Here are some links to things I appreciate:</h1> <p><a class="reference external" href="http://licensecheck.edunham.net/">LicenseCheck</a> is a cool little website that goes through your GitHub repositories and tells you to license the ones that are unlicensed.</p> </div> </div> | |
| <h5>This page built with <a href="https://github.com/ElijahCaine/pageup">PageUp</a></h5> | |
| </div> | |
| </body> | |
| </html> |
| * { | |
| margin 0px; | |
| padding: 0px; | |
| color: black; | |
| font-family: 'Lucida Console', Monaco, monospace; | |
| } | |
| h1 { | |
| font-size: 25px; | |
| } | |
| .title { | |
| font-size: 50px; | |
| } | |
| .three { | |
| -webkit-column-count: 3; /* Chrome, Safari, Opera */ | |
| -moz-column-count: 3; /* Firefox */ | |
| column-count: 3; | |
| } | |
| .two { | |
| -webkit-column-count: 2; /* Chrome, Safari, Opera */ | |
| -moz-column-count: 2; /* Firefox */ | |
| column-count: 2; | |
| } | |
| .one { | |
| -webkit-column-count: 1; /* Chrome, Safari, Opera */ | |
| -moz-column-count: 1; /* Firefox */ | |
| column-count: 1; | |
| } | |
| a { | |
| font-weight: 600; | |
| } | |
| .figure { | |
| text-align: center; | |
| } |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>{{ title }}</title> | |
| <link rel='stylesheet' type='text/css' href='style.css'> | |
| <link rel="icon" href="favicon.ico" /> | |
| <script> | |
| (function() { | |
| alert(' '); | |
| if(window.innerWidth <= 320){ | |
| document.getElementById("main").classList.add('one'); | |
| document.getElementById("main").classList.remove('two'); | |
| document.getElementById("main").classList.remove('three'); | |
| } else if(window.innerWidth <= 770){ | |
| document.getElementById("main").classList.remove('one'); | |
| document.getElementById("main").classList.add('two'); | |
| document.getElementById("main").classList.remove('three'); | |
| } else { | |
| document.getElementById("main").classList.remove('one'); | |
| document.getElementById("main").classList.remove('two'); | |
| document.getElementById("main").classList.add('three'); | |
| }; | |
| alert('ah'); | |
| }).call(this) | |
| </script> | |
| </head> | |
| <body> | |
| <div id='main' class='three'> | |
| {{ content }} | |
| <h5>This page built with <a href="https://github.com/ElijahCaine/pageup">PageUp</a></h5> | |
| </div> | |
| </body> | |
| </html> |