Skip to content

Commit 676ec94

Browse files
committed
jekyll imported my old mephisto blog plus my wordpress for 9 years of blog recovery!
0 parents  commit 676ec94

File tree

295 files changed

+4235
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

295 files changed

+4235
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
_site
2+
_import
3+
.DS_Store

404.html

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3+
4+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
5+
<head>
6+
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
7+
<title>Not Found, Sketch</title>
8+
<meta name="author" content="Corey Donohoe" />
9+
10+
<!-- syntax highlighting CSS -->
11+
<link rel="stylesheet" href="/css/syntax.css" type="text/css" />
12+
13+
<!-- Homepage CSS -->
14+
<link rel="stylesheet" href="/css/screen.css" type="text/css" media="screen, projection" />
15+
16+
<!-- Typekit -->
17+
<script type="text/javascript" src="http://use.typekit.com/pow1ejt.js"></script>
18+
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
19+
20+
<!-- Jquery -->
21+
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript"></script>
22+
</head>
23+
<body>
24+
25+
<div class="site">
26+
<div class="title">
27+
<a href="/">atmos.org</a>
28+
<a href="/about.html">about</a>
29+
<a href="/posts.html">posts</a>
30+
<a href="http://github.com/atmos">code</a>
31+
<a href="http://flickr.com/photos/atmos">photos</a>
32+
<a href="http://tumblr.atmos.org">tumblr</a>
33+
<a href="http://twitter.com/atmos">twitter</a>
34+
</div>
35+
</div>
36+
37+
<div class="home">
38+
<h3>No dice, maybe try google?</h3>
39+
</div>
40+
41+
<div class="footer">
42+
<div class="contact">
43+
<p>
44+
Corey Donohoe<br />
45+
A hacker at <a href="http://engineyard.com">Engine Yard</a><br />
46+
47+
</p>
48+
</div>
49+
</div>
50+
</div>
51+
</body>
52+
</html>

CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
www.atmos.org

README.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
This is the data for my blog
2+
============================
3+
4+
This is the combination of two older blog dumps that I have from 2000 - 2009. all of my atmos.org posts combined! It needs some design love, I'll get to that later. :)
5+
6+
It is automatically transformed by Jekyll into a static site whenever I push this repository to GitHub.
7+
8+
License
9+
=======
10+
The following directories and their contents are Copyright Corey Donohoe. You may not reuse anything therein without my permission:
11+
12+
* _posts/
13+
* images/
14+
15+
All other directories and files are MIT Licensed. Feel free to use the HTML and CSS as you please. If you do use them, a link back to http://github.com/atmos/jekyll would be appreciated, but is not required.

_config.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
destination: ./_site
2+
auto: false
3+
lsi: false
4+
server_port: 4000
5+
pygments: true
6+
markdown: maruku
7+
permalink: date
8+
maruku:
9+
use_tex: false
10+
use_divs: false
11+
png_dir: images/latex
12+
png_url: /images/latex

_layouts/default.html

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3+
4+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
5+
<head>
6+
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
7+
<title>{{ page.title }}</title>
8+
<meta name="author" content="Corey Donohoe" />
9+
10+
<!-- syntax highlighting CSS -->
11+
<link rel="stylesheet" href="/css/syntax.css" type="text/css" />
12+
13+
<!-- Homepage CSS -->
14+
<link rel="stylesheet" href="/css/screen.css" type="text/css" media="screen, projection" />
15+
16+
<!-- Typekit -->
17+
<script type="text/javascript" src="http://use.typekit.com/pow1ejt.js"></script>
18+
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
19+
20+
<!-- Jquery -->
21+
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript"></script>
22+
</head>
23+
<body>
24+
25+
<div class="site">
26+
<div class="title">
27+
<a href="/">atmos.org</a>
28+
<a href="/about.html">about</a>
29+
<a href="/posts.html">posts</a>
30+
<a href="http://github.com/atmos">code</a>
31+
<a href="http://flickr.com/photos/atmos">photos</a>
32+
<a href="http://tumblr.atmos.org">tumblr</a>
33+
<a href="http://twitter.com/atmos">twitter</a>
34+
</div>
35+
</div>
36+
37+
{{ content }}
38+
39+
<div class="footer">
40+
<div class="contact">
41+
<p>
42+
Corey Donohoe<br />
43+
A hacker at <a href="http://engineyard.com">Engine Yard</a><br />
44+
45+
</p>
46+
</div>
47+
</div>
48+
</div>
49+
</body>
50+
</html>

_layouts/post.html

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: default
3+
---
4+
<div id="post">
5+
{{ content }}
6+
</div>
7+
8+
<div id="related">
9+
<h2>Related Posts</h2>
10+
<ul class="posts">
11+
{% for post in site.related_posts limit:3 %}
12+
<li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ post.url }}">{{ post.title }}</a></li>
13+
{% endfor %}
14+
</ul>
15+
</div>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: post
3+
title: So Freakin Busy
4+
---
5+
Redid my webcam with <a href="http://www.linuxbrit.org/camE/">camE</a> now, looks a little nicer, gonna get image overlay on it eventually. The next 3 days are gonna suck. I have tons of shit to do. I woke up to the joy of explaining a ms word 97 install to one of my dad's co-workers on 3 way while my dad shouted bits of genius like, "click on the cd on your desktop!" So now I've got 4 hours of sleep under my belt, I need to go conquer school, and do this access database shit. There is a good portion of work left to due on it, and it's being presented tommorow morning, HAH. I might start adding more links to make these updates a little more useful to those than myself, but haven't had the browsing time lately. If you haven't already seen <a href="http://www.garson.org/~gnea/radiskull/">The Radiskull</a> he's pretty dope, you need flash for it, but it works with my flash player in linux with Netscape 4.75. I think Gnea redid them so they'd be linux compatible, as the main site doe
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: post
3+
title: Caffeine and Nicotine
4+
---
5+
I am a caffeine and nicotine based lifeform right now. Sleep is a friend I dearly miss. It's only like 3am, but today has been <B>VERY</B> long. I'm on the conclusion to my philosophy paper which is due in a few hours. I got all my database stuff done for the other day. Programs handed in in my CS class. Math quizzes taken. I think I am currently sitting on 1 day to relax before I have a plethora of shit to do again. Thanks to <a href="http://www.nothingkillsfaster.com">Niekze</a> I can now receive email at this domain, which is a big bonus. Gotta get back to work on the paper, but I should have some new things this weekend for the site as I plan to devote some time to it. Peace.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: post
3+
title: Change is Good
4+
---
5+
I played with <a href="http://www.linuxbrit.org/gom/">gom</a> and <a href="http://www.pablotron.org/projects/rollover">Rollover</a> last night and came up with the navbar to the left. Some of the new things aren't rendering properly in Netscape, it renders much nicer in IE and Mozilla cause I'm using CSS now. If you're using Netscape might I suggest picking up a copy of a nightly build of <a href="http://ftp.mozilla.org/pub/mozilla/nightly/latest/">Mozilla</a> because it's a little more upto date than Netscape, and newer features render properly. Now I'm debating toying with things some more or finding something else to do. If I've broken anything in the process lemme know. Now that I have the layout done, I guess I should start filling it with content....

_posts/2000-11-2-a-beginning.markdown

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: post
3+
title: a Beginning
4+
---
5+
I'm 21 today. In the US that means I can legally buy and consume alcohol. I plan on abusing this privelidge for a while. I've been working on learning shit as I go, so the layout may change from time to time with what I'm learning. School is killing me right now, it's keeping me busy as hell. This page is documentation of what I'm doing and learning at the current time. For the time being please don't bitch about broken links or criticize me cause honestly, I don't care. Hope you find something useful here.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: post
3+
title: Why am I still Awake?
4+
---
5+
More sleepless nights. I guess I underestimated my physics workload and noticed at around midnight there was no way in hell I was gonna get it done. So once again I stayed up all night finishing shit I should have started way earlier. I think this whole college thing is just bloating you up with shit to do, see how much of it you can get done, and break you in to be a slave in the rat race. I could be wrong though. I just started messing with cgi stuff and perl cause I want a more dynamic way for me to update this page than hacking the index.html everytime. It's like 7am and I don't wanna do these last two physics problems, and I have a test in physics in 4 hours. Only 4 more classes till <a href="http://everything2.com/index.pl?node=NODE+Thanksgiving">Thanksgiving</a> break though.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
layout: post
3+
title: I learned PERL, sorta
4+
---
5+
6+
I sat down earlier this evening with a book, and started playing with <a href="http://www.perl.com">Perl</a> and with my limited knowledge of <a href="http://www.pgsql.com">PgSQL</a>. I ended up with the dynamic webpage thing I wanted. It's referencing a database now and creates the updates, you're reading now, automatically for me. It's much nicer than having to edit an index.html file everytime I wanna add a link or something. The windows on my screen are starting to move because I'm still kinda fucked up from not sleeping earlier this week. Tommorow however is a holiday. I'd like to take this time to wish everbody a nice Thanksgiving, and well, that's it. I need to sleep. You might wanna check <a href="/images/daemon_1.jpg">this</a> out though, it's a BSD daemon made from legos, I got a kick outta it.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: post
3+
title: Beautiful Rainy Day
4+
---
5+
It rained today, and this being a holiday I got to sit around and goof off all day. Someone showed me <a href="/images/one-big-lanparty.jpg">this</a> last night, and well, that's a shitload of people. I added the Old News section to the web because I plan on continuing to update things, and this page will only show the 8 most recent things I added. Old News will keep everything available and it's done from the database too, so that is the first page I didn't put an ounce of effort into the actual html. I've been getting my sparc ready to become my webserver, but I'm not completely sure I'll be able to get everything working off the bat so that may have to wait. I'm prolly gonna kick it the rest of the weekend and code an upcoming project for my CS class. Peace.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: post
3+
title: Cracked Out and On a Mission
4+
---
5+
Everyone should be cracked out and on a mission. Just find something you wanna do, get all excited about it, and do it. Thanksgiving break has been pretty fun. I got to play with my new Sparc10 and it's almost ready to become my NAT box to run this webserver. I got crazy drunk on Beale street last night and chatted with a hooker(Nothing happened) while I waited for my friend(the designated driver) to get up off the street, and out of his vomit he was lying in. Got to toy with my web page a little, looked at my next CS project, I've got some issues on how to go about things but should be fine.
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: post
3+
title: Random Shit
4+
---
5+
Let's see, I'm not super busy right now, but I wanna get this CS project outta the way. I met this kid <a href="http://darius.dynodns.net">Darius</a> who got me onto the idea of perl and sql, we had an idea about a clock thing, but I have to hold off until Christmas break from school before I could sit down to learn C and then Imlib2 which is what I think we're gonna use for it. <B>Big Ups</B> to <a href="http://www.mobindustries.net">mobrep</a> for finally getting his GED, took ya long enough. <a href="/images/geogarmy.jpg">This</a> is for anyone who's ever been lost before. I'm goin back to my pathetic attempts at coding.

_posts/2000-11-5-debian-shit.markdown

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: post
3+
title: Debian Shit
4+
---
5+
Got my little how-to on getting <a href="/enlightenment.html">Enlightenment</a> up and running from cvs off a default Debian 2.2 install. It's in the docs section. School....
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: post
3+
title: Election Day
4+
---
5+
I didn't vote today. I'm well, lazy. I did find <a href="http://www.h2k.net/post/panels/keynote.mp3"> this</a> on <a href="http://slashdot.org">Slashdot</a> the other day. Jello Biafra has some interesting views on some things. He seems pretty paranoid and shit, but brings up some interesting stuff. It's kinda lengthy, but definately worth a listen.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: post
3+
title: Nautilus Review
4+
---
5+
<a href="http://www.pablotron.org">Pabs</a> from enlightenment put his <a href="http://www.pablotron.org/reviews/nautilus-PR2/">review</a> of Nautilus up. Which is pretty funny and honest to the kinds of criticisms you'd prolly have if you tried it. It's definately frightened me away from giving it a try, thought I hadn't really considered it. Lots of screenshots and stuff so you can see what to expect if you really must try it
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: post
3+
title: School is almost done
4+
---
5+
"It's as good as it gets, or as bad as you make it." Just a little quote I heard today in a song. I have one week till exams start. Then a nice month off for Christmas break. This weekend will entail getting my CS project done. I've got the core of the problem solved just one more thing to implement and I'm done. If I get it done before sometime tommorow night I may toy with the design of the page, but for now I'm content with it. <a href="http://www.openbsd.org">OpenBSD 2.8</a> has been officially released even though it's been on the ftps since late wednesday night. If you don't know what OpenBSD is, it's a great BSD distribution it's free, well organized, runs on a bunch of architectures, is secure on the install, and runs great provided it's not your desktop machine. That's it for now, I'll have updates this weekend.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: post
3+
title: 2 down 2 to go
4+
---
5+
Two exams yesterday went rather well, I haven't studied for my CS final which is today, but I should do fine on it. Added a script to add pixmaps to the random backgrounds that are chosen in Eterms it's <a href="/files/add-pic.sh">here</a>. Installed e17 the other day, got it working <a href="/shots/atmos-e17-12-12-00.png">here</a>, it's functioning but not very far into development yet. Gonna hopefully start getting to mess with C this weekend and learn how to build useful things. Who knows....
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: post
3+
title: Exams are Done
4+
---
5+
I am so glad all my exams are done, I'll finally get some time to do a few things I've wanted to for a while. a friend showed me <a href="/pics/bush-crack.jpg">this</a> which is pretty funny. I'm prolly gonna start putting timestamps on the page over break because I'll have more browsing time over break. Also might do a forum style thing for people to bitch, discuss ideas, argue or whatever, I'm not sure when I'll get around to it, but it may happen.
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: post
3+
title: 1Ghz Athlon
4+
---
5+
I picked up a 1Ghz AMD Thunderbird today, for 180$, which I think was well worth the cash. I cashed in my change jar I've had for a few months, got 70$ from that, and 100$ from selling an older setup to a friend and I can think of this upgrade as essentialy free. It's a huge increase in performance and I'm diggin it, turned out to be as simple as unplugging my Duron, and throwing the new CPU in my current motherboard. Here's my <a href="/pics/athlon-cpuinfo.png">cpuinfo</a>. I played frisbee in the rain today with my brother and my dog for about an hour and had a blast, I didn't even mind getting soaked.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: post
3+
title: I love being a bum
4+
---
5+
School being done for a few weeks is a wonderful gift, I get to sleep late, actually spend some time browsing, check out the source of the projects I'm interested in, or not do a damn thing if I see fit. Few things I've found today are <a href="http://www.userlocal.com/interviews/cantrell121800/cantrell1.shtml">this</a> interview with David Cantrell of the <a href="http://www.slackware.com">Slackware Linux</a> project, I used slack for a while, and really liked it, seems like they're doing cool things in their camp so it's cool to hear. Today I got <a href="http://www.xfree86.org">XFree86</a> working outta cvs and the how-to will be in the docs section later on tonight. a few hours after I did that though, XFree-4.0.2 was released and currently the servers are full so check the <a href="http:/www.xfree86.org/MIRRORS.shtml">mirrors</a> if you want the source/binaries.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: post
3+
title: Quiet Societal Misfit
4+
---
5+
The header is a quote from a Last Emporer track, you do the math. Got tipped off to a hilarious Windows Whistler <a href="http://www.somethingawful.com/jeffk/WHISTLARWINDOWS2010/index.htm">review</a>, and to <a href="http://web2.airmail.net/gandolf/you.htm">some guy</a> who needs your help. It's 6am, and I'm going to sleep
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: post
3+
title: Pointer Hell
4+
---
5+
I'm <B>REALLY</B> enjoying my last CS assignment for the semester. It's a pointer problem, and I'm getting pretty sick of it. I am actually making descent progress, it's just frustrating at times. I played with <a href="http://www.muhri.net/skipstone">Skipstone</a> for a while last night, and can't get it to compile against M18 or the <a href="http://www.mozilla.org">Mozilla</a> cvs. I get undefined references, the joy of doing things from source I suppose. If you haven't seen Skipstone before it's a lightweight browser written in <a href="http://www.gtk.org">GTK</a> using the gecko engine mozilla runs on. I have however managed to get a binary working, and it's running really well. So I may use this for everyday browsing for a while.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: post
3+
title: Learning as I go
4+
---
5+
So this clock idea is sort of coming together, I've got a screenshot up <a href="/shots/atmos-12-22-2000.png">here</a> and you can see it using the grunge ttf font in the bottom left corner. There is still a lot of work I'd do to it before I would put it up for download and it's not the most impressive piece of software you've ever seen. However I think it's useful, and I've learned quite a few things from building such a simple app. When completed I want it to render truetype fonts, allow the user to specify the time format, font, background(or transparent), and possibly a few other things via an rc file. I'd like to wish <a href="http://darius.dynodns.net">Allen</a> a quick recovery because his appendix randomly burst on him, he's doing a similar project right now using evas. Just when you thought all the election bullshit was over someone sent me <a href="/pics/election.gif">this</a>, and oh yeah, I am a Jenius, with a capital J.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: post
3+
title: Merry Christmas 2000
4+
---
5+
Christmas 2000 is upon us, and I'd like to wish everyone a Merry Christmas and a Happy New Year. I'd also like wish a happy birthday to my friend Ben who's birthday is today, he's 21, hopefully we can convince him to come drink beer with us sometime. I'd also like to wish my mom a happy birthday, her's was on the 23rd. With greetings outta the way, I've got my clock thing working to the point where I'm somewhat happy with it, it'll be available later this afternoon when do a bit of tiding up with the makefile and stuff. It's prolly not the most efficient thing ever written, but it does what I wanted it to do and hopefully one or two other people will find it useful as well. My brother's friend tipped me off onto mullet websites today, and we laughed for a while over <a href="http://www.mulletsgalore.com">Mulletsgalore</a>. It's 4:30 am by my clock right now, and I know my brothers will have us up early so I'm aiming for some sleep right now, gnight

0 commit comments

Comments
 (0)