<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ptocheia.net</title>
	<atom:link href="http://ptocheia.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://ptocheia.net</link>
	<description>Android Hell is a Real Place</description>
	<lastBuildDate>Sun, 07 Mar 2010 22:36:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Social Icons Font Set</title>
		<link>http://ptocheia.net/2010/03/07/social-icons-font-set/</link>
		<comments>http://ptocheia.net/2010/03/07/social-icons-font-set/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 22:29:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[social media]]></category>

		<guid isPermaLink="false">http://ptocheia.net/?p=361</guid>
		<description><![CDATA[<p>So there&#8217;s all these websites that have little square icons allowing you to RSS the site, link the site to another site, etc.. I&#8217;d been reading about <a href="http://ptocheia.net/2010/03/07/social-icons-font-set/"  >&#187;&#187;</a>]]></description>
			<content:encoded><![CDATA[<p>So there&#8217;s all these websites that have little square icons allowing you to RSS the site, link the site to another site, etc.. I&#8217;d been reading about CSS&#8217;s ability to include a font in your stylesheet using @font-face, expanding the number of fonts you can see on a web page beyond just the standard set. I was thinking it would be neat to have an RSS symbol that was a font character rather then an image, so I downloaded <a href="http://fontforge.sourceforge.net/">FontForge</a>. At some point in all of this I decided to convert a bunch of the most often used social networking icons into font characters, 26 in all. Useful for embedding into websites, or just for dumping into Photoshop to make your own icon images. Check them out!</p>
<div id="socialicons">
	<a href="#" title="rss" id="rss">A</a><a href="#" title="blogger" id="blogger">B</a><span id="flickr"><a title="flickr" href="#">C</a></span><a href="#" id="delicious" title="delicious">D</a><a href="#" id="digg" title="digg">E</a><a href="#" id="facebook" title="facebook">F</a><a href="#" id="google" title="google">G</a><br />
<a href="#" id="openid" title="openid">H</a><a href="#" id="linkedin" title="linkedin">I</a><a href="#" id="netvibes" title="netvibes">J</a><a href="#" id="lastfm" title="lastfm">L</a><a href="#" id="myspace" title="myspace">M</a><a href="#" id="newsvine" title="newsvine">N</a><br />
<a href="#" id="skype" title="skype">O</a><a href="#" id="picasa" title="picasa">P</a><a href="#" id="aim" title="aim">Q</a><a href="#" id="reddit" title="reddit">R</a><a href="#" id="stumbleupon" title="stumbleupon">S</a><a href="#" id="tweet" title="twitter">T</a><a href="#" id="technorati" title="technorati">U</a><br />
<a href="#" id="sharethis" title="sharethis">V</a><a href="#" id="wordpress" title="wordpress">W</a><a href="#" id="friendfeed" title="friendfeed">X</a><a href="#" id="yelp" title="yelp">Y</a><a href="#" id="yahoo" title="yahoo">Z</a><a href="#" id="email" title="email">K</a>
</div>
<p>I used CSS3 to spice them up. These are not meant to be a font set in and of itself, but more of my playing with CSS to explore the possibilities. Also, if you are viewing this in IE or an older browser, the icons may look a bit bland.</p>
<p>There is a lot that you can do with &#8220;box-shadow&#8221; involving layering shadows of different offsets, radius widths, and colors. I was particularly happy with how the LastFM icon came out. </p>
<p>I really wish there was a means of using CSS to apply shading directly on top of text. As I know of no way to do this, I had to figure out other means for icons that require multiple colors. The Picasa logo uses 5 different colors in the logo on a white background, so I instead made a 5-colored background using box-shadow and placed a white logo on top of that. This has it&#8217;s limitations, though, as I couldn&#8217;t quite get the green background segments of the Newsvine icon to look as they should. </p>
<p>There&#8217;s no way to outline text using CSS, but you can create an outline using by layering multiple &#8220;text-shadow&#8221; elements together, offsetting them in all directions around your text character. I used this on the AIM, Yelp, and Netvibes icon. This isn&#8217;t a perfect method, as you can tell by the jagged edges on the AIM icon. It works quite well on 90 degree angles, though, as you can see from the Netvibes icon.</p>
<p>The biggest pains were the Flickr and Delicious icons. Delicious is simple in that it just uses two squares, but it&#8217;s two differently colored squares. So I made one solid and the other comprised of lines, and hoped for the best. It&#8217;s still a little odd looking as it currently is. The Flickr icon is the same situation, but with circles instead. Most of the icons exist as just link html, but this one is a link within a span tag. I set the font character to be a blue, and then the link&#8217;s left margin to be a negative value, meaning you only see one of the dots. I used &#8220;text-shadow&#8221; to create the pink circle on it&#8217;s right. Incidentally, this is the only one I couldn&#8217;t figure out an IE CSS hack for, so it&#8217;s not quite usable in IE if you want the Flickr icon in it&#8217;s multi-colored glory. StumbleUpon was also a pain, and one I still don&#8217;t have looking quite right.</p>
<p>These icons are not all that ideal right now, and here&#8217;s why: First off, IE does not support CSS3 tags like text-shadow and box-shadow. Meaning that, though these are for the most part functional in IE, they&#8217;re not all that pretty. Also, not every browser supports @font-face right now. If this entire post is confusing to you, as all you see in the icons above is the alphabet, you&#8217;re probably using one of those browsers. I look forward to all of these things being adopted by the browsers that currently don&#8217;t support them, which will hopefully be sooner then later. </p>
<p><a href="http://www.varoper.com/fonts/socialicons/socialicons.html">View a page with just these icons on them</a>, or <a href="http://www.varoper.com/fonts/socialicons/SocialIcons.rar">download a zipped file of the HTML, CSS, and fonts for these icons</a>. Or, you can <a href="http://openfontlibrary.org/media/files/ptocheia/438">download just the font from the Open Font Library</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ptocheia.net/2010/03/07/social-icons-font-set/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On Writing, Designing, Games, and Beer</title>
		<link>http://ptocheia.net/2010/02/26/on-writing-designing-games-and-beer/</link>
		<comments>http://ptocheia.net/2010/02/26/on-writing-designing-games-and-beer/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 17:57:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[amazon breakthrough novel award]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[peggle nights]]></category>
		<category><![CDATA[site building]]></category>

		<guid isPermaLink="false">http://ptocheia.net/?p=357</guid>
		<description><![CDATA[<p>So I had this dream last night where I was a character in some Bleach episode, and I was trying to build PDFs out of CNC router <a href="http://ptocheia.net/2010/02/26/on-writing-designing-games-and-beer/"  >&#187;&#187;</a>]]></description>
			<content:encoded><![CDATA[<p>So I had this dream last night where I was a character in some Bleach episode, and I was trying to build PDFs out of CNC router parts. This sums up my last couple of weeks pretty well.</p>
<p>The website is launched, though there are still things that need to be done to it before it is finished. Still, I now have the time to get back to working on my other projects. I&#8217;m about halfway done with the font I&#8217;m working on. I now have piecemeal Drupal modules that I would like to clean up and stick on their site. I also again had the revelation that my professional website looks bad and needs a makeover. I get that revelation on a regular basis. This is good in that I&#8217;m constantly a.) learning more about design and programming and b.) upgrading the website to reflect that knowledge, but is a pain because this is a chunk of work to have to do on a regular basis. Am also thinking of shifting it into Drupal, to give me another Drupal site and to give me more Drupal experience. The site is just straight PHP right now, before that it was built with the ever popular duo of M4 + shell scripts. Which made me feel pretty cool to have a site built in them, but was not all that applicable to the job direction I was trying to go in. Oh yeah, I also have my super-cool new site idea that I wanna build and launch at some point. And there&#8217;s still converting the rest of the php into classes at Writaur.com. And making a version of Storypath that uses gamebook/rpg character elements.</p>
<p>Apparently none of this was as important to get done as beating Peggle Nights yesterday. It&#8217;s a free download if you create an account at PopCap games and say &#8220;yes&#8221; to getting a newsletter. Not nearly as exciting as Oasis, but it&#8217;s still pretty fun, and is apparently effective at distracting me from the pile of things I have to do. I&#8217;ve still got most of the &#8220;Challenge&#8221; levels to beat, so it will pose as a potential distraction for awhile to come, I suspect.</p>
<p>I made it to the second round in the Amazon Breakthrough Novel Contest! The first round was where they read your 300 word pitch for your novel. 1000 people get to go on to the second round, and as they accept only 5000 entries, and the Young Adult category was a new one for this year, there&#8217;s a good chance I was accepted for my lack of typos and misspellings. Still, I was in the top 20%, so that&#8217;s good. The 2nd round is where they read the first 3000-5000 pages of my story. I really hope the style of the novel won&#8217;t be a hindrance &#8211; as it&#8217;s a &#8220;Choose your own adventure&#8221; style book, and the contest requirements said it had to be the first 3000-5000 words, so they will be reading a rather disjointed story indeed. </p>
<p>And on a final note, tonight will involve beer. Apparently the Coors factory is about 15 minutes away from where we live, and a coworker of Drew&#8217;s invited us to go take the tour. Seems that they&#8217;re very generous with their free samples, and the end of the tour involves being able to try up to three of their products. We still need to determine the &#8220;Who&#8217;s driving?&#8221; strategy of all of this, hopefully the factory is near enough to downtown Golden, CO, that we can stroll around and sober up a bit. The best part about Colorado is that, were we ambitious, there is a path about a 10 minute&#8217;s walk away from where we live that we could bike on to this factory. It&#8217;s a 9 mile ride, which I don&#8217;t think is bad at all, but Drew might have difficulty with. Still, we&#8217;ve got a stationary bike that he&#8217;s been using, so maybe come Springtime we can try the ride and see how it goes.</p>
]]></content:encoded>
			<wfw:commentRss>http://ptocheia.net/2010/02/26/on-writing-designing-games-and-beer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Work, Dollars, Anime, Etc.</title>
		<link>http://ptocheia.net/2010/02/17/work-dollars-anime-etc/</link>
		<comments>http://ptocheia.net/2010/02/17/work-dollars-anime-etc/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 18:06:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Random Babble]]></category>
		<category><![CDATA[anime]]></category>
		<category><![CDATA[bleach]]></category>
		<category><![CDATA[jobs]]></category>
		<category><![CDATA[liberty]]></category>
		<category><![CDATA[revolutionary girl utena]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://ptocheia.net/?p=355</guid>
		<description><![CDATA[<p>Work:
 Teleconference yesterday, for the ultimate goal of getting this website launched in a week. Not fully finished, mind you, but finished enough to function. I&#8217;m currently <a href="http://ptocheia.net/2010/02/17/work-dollars-anime-etc/"  >&#187;&#187;</a>]]></description>
			<content:encoded><![CDATA[<p><strong>Work</strong>:<br />
 Teleconference yesterday, for the ultimate goal of getting this website launched in a week. Not fully finished, mind you, but finished enough to function. I&#8217;m currently working on making php generate a PDF form based on products selected + other stuff, what once seemed impossible is now at the &#8220;persnickety&#8221; level. This means that I for the most part understand what&#8217;s going on, there&#8217;s a bunch of fiddly things for me to do, and there&#8217;s the occasional out of left field error to work through. </p>
<p>So once this project is done, I can get dollars. And add this to my resume, and talk about all the Drupal modules I&#8217;ve built. In theory, this might make someone else want to hire me? We&#8217;ll see about that.</p>
<p>I&#8217;ve got a fabulous idea for a new website. It will involve cute food, it should be relatively easy to execute, and it will give me something to design as well as something to build with Drupal. I think I&#8217;ll have a better shot with getting development jobs if I hunker down and focus on a specific area, and at this point I&#8217;m liking how Drupal works and would like to get as proficient in it as possible. </p>
<p><strong>Dollars</strong>!<br />
Oh wait, that&#8217;s related to work, hah! Liberty does not give me many dollars. However, I am currently wearing a bra I can usually only wear in the summer, which is good. For those who are not me and/or don&#8217;t gain weight like me, this means that Liberty is saving me from the winter weight gain I always get. I really like working there, too. Some people get really excited seeing me out there with my sign. And surprisingly, it&#8217;s really rare to get obscene gestures. Usually every other time I&#8217;m out there, someone will flick me off. Once in every 8 hour timespan is acceptable, I suppose.</p>
<p>I blame Liberty for my cold. My never-ending cold, which remains at a low-grade &#8220;headache plus weird nose&#8221; status. See, it&#8217;s those free cookies. I cannot resist eating the cookies, and neither can all those disease-ridden children that come in attached to their parents. Liberty has an excellent set-up for people with kids: a little table with coloring books, other books, etc. plus those darn cookies.. And I&#8217;m sure I ate a cookie which was already touched by some germy kid. Le sigh. </p>
<p><strong>Anime</strong>!<br />
We finished the first season of Bleach. Definitely mixed feelings on it. I really like Chad and wanted to see more episodes where he was the focus. I wanted to see more background development on the characters &#8211; like the fact that Rukia is 40+ years old and stuck in this teenager&#8217;s body in a strange world. All we got about this was her not being able to stick a straw in a juice box. I really wanted to learn more about her situation. I mean, maybe it comes later, but at this point she&#8217;s not even on Earth anymore, so I&#8217;m not sure of the likelihood of this. I also don&#8217;t like the Hollows. Sometimes they stand around and talk to Ichigo and others in cunning ways, sometimes they stand around and make grunting noises like animals. Also, they like standing and waiting patiently while the main characters have dramatic conversation. Does not make sense. Anyhow, we may come back to Bleach later on, but for now we&#8217;ve moved on to other stuff.</p>
<p>Started watching Revolutionary Girl Utena last night, watched the first two episodes. I&#8217;m lost for a lot of it, but that&#8217;s pretty normal. It&#8217;s got some pretty interesting stuff going on so far (not the least is the song in the middle of both episodes singing about trilobytes, the Apocalypse, etc). </p>
<p>In other news, I need a tea vat with a drinking tube that just follows me around everywhere, it would be magical.</p>
]]></content:encoded>
			<wfw:commentRss>http://ptocheia.net/2010/02/17/work-dollars-anime-etc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Whereupon I talk about being aimless and sick some more</title>
		<link>http://ptocheia.net/2010/02/13/whereupon-i-talk-about-being-aimless-and-sick-some-more/</link>
		<comments>http://ptocheia.net/2010/02/13/whereupon-i-talk-about-being-aimless-and-sick-some-more/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 05:25:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Random Babble]]></category>
		<category><![CDATA[Estha]]></category>
		<category><![CDATA[illness]]></category>
		<category><![CDATA[Valentine's Day]]></category>

		<guid isPermaLink="false">http://ptocheia.net/?p=353</guid>
		<description><![CDATA[<p>Still sick. It&#8217;s weird, it started off like a normal cold &#8211; slight headache and scratchy throat growing into full blown cold. I had a few days <a href="http://ptocheia.net/2010/02/13/whereupon-i-talk-about-being-aimless-and-sick-some-more/"  >&#187;&#187;</a>]]></description>
			<content:encoded><![CDATA[<p>Still sick. It&#8217;s weird, it started off like a normal cold &#8211; slight headache and scratchy throat growing into full blown cold. I had a few days of that, and then I woke up one morning and realized that I felt better. Not all the way better, though, and this is now day two that I feel that same as I did that morning. I&#8217;ve got my full-blown appetite again, no sore throat, but I&#8217;m stuck with a light stuffy nose, phlegm, and a headache that just won&#8217;t leave me. Not enough to really call it &#8220;sick&#8221; anymore, but just enough to be annoying. I&#8217;ve had this sort of thing last for a week or more in the past, and I&#8217;d rather not have that happen this time around. Now that I&#8217;ve added a blue-collar job to my repertoire, we&#8217;ll see how that effects the sickness. I&#8217;ve got a 4 hour shift with Liberty tomorrow, and I&#8217;m hoping (quite illogically, I&#8217;m sure) that with that long stretch of aerobic activity, the pseudo-sickness will realize that it has no place in my body any longer and will leave it for good.</p>
<p>Incidentally, I&#8217;m alone for the weekend. Had some plans for the whole V-day thing with Drew, involving going to some Cajun place whereupon I would gorge on shrimp, along with me making him something chocolatey and delicious. Alas, Drew has flown back to Richmond for Neil&#8217;s funeral, and shalnt return until Monday night. Being as I am poor and work Sunday, I stayed here. Estha needs company anyhow, and she entertains me nonstop with her pooping antics. I will spend a romantic Valentine&#8217;s day with her, playing with strings and pretending that when she meows, it&#8217;s because she&#8217;s telling me she loves me, not because her food bowl is almost empty. She doesn&#8217;t bother to finish the food first, she must preemptively let me know that she will need more food in the near future, and then she finishes it. Her definition of &#8220;empty&#8221; is when she can actually see the bottom of the bowl, even if the bowl&#8217;s edges are still crowded with food.</p>
<p>I&#8217;ve got entirely too many things to do but still managed to waste away my Saturday. I finally beat Airport Mania, and spent some time on i-sketch.net. Pictionary is a magical thing. Tomorrow will also be spent romantically wrangling some data into an attractive PDF layout. I found a class that lets me do it in PHP, it just looks to be a bit of a pain from my current standpoint. But, it must be done. </p>
<p>In other news, I like dance music. Good, high quality wiggly-waggly dance music. I must find more to help the days ooze by like buttah.</p>
]]></content:encoded>
			<wfw:commentRss>http://ptocheia.net/2010/02/13/whereupon-i-talk-about-being-aimless-and-sick-some-more/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gaming, Misc Projects, Jobs, and Media (a.k.a. I Suck At Making Relevant Post Titles)</title>
		<link>http://ptocheia.net/2010/02/04/gaming-misc-projects-jobs-and-media-a-k-a-i-suck-at-making-relevant-post-titles/</link>
		<comments>http://ptocheia.net/2010/02/04/gaming-misc-projects-jobs-and-media-a-k-a-i-suck-at-making-relevant-post-titles/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 00:12:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Clothing]]></category>
		<category><![CDATA[Creations]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[anime]]></category>
		<category><![CDATA[bleach]]></category>
		<category><![CDATA[Chick-fil-a]]></category>
		<category><![CDATA[chocolate]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[evangelion]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[jobs]]></category>
		<category><![CDATA[Oasis]]></category>
		<category><![CDATA[sewing]]></category>

		<guid isPermaLink="false">http://ptocheia.net/?p=351</guid>
		<description><![CDATA[<p>My current site project right now involves bunches of icons, and I wish I had more time for it. I&#8217;m also trying to get myself in gear <a href="http://ptocheia.net/2010/02/04/gaming-misc-projects-jobs-and-media-a-k-a-i-suck-at-making-relevant-post-titles/"  >&#187;&#187;</a>]]></description>
			<content:encoded><![CDATA[<p>My current site project right now involves bunches of icons, and I wish I had more time for it. I&#8217;m also trying to get myself in gear with the Amazon Breakthrough Novel contest. I&#8217;ve never written a pitch before and it&#8217;s a tough slog at this point. My writing tendencies are entirely too stream-of-consciousness for their own good, and I need to focus more on a decent packaged whole when I write. In other news, I&#8217;ve eaten Mexican food every day this week except yesterday.</p>
<p>I finally beat Oasis on Insane. Were this 2004, when the game actually came out, it would likely be much more exciting. Nonetheless, Oasis has provided me with months of gameplay, and was totally worth the $6 I paid for it. On a similar note, rumors have it that a version of Civilization will be coming to Facebook this June. Aside from my occasional Scrabble obsession (and whenever someone flings a Pathwords invite at me), I&#8217;m not a big Facebook gamer. Yoville got tedious, and I haven&#8217;t logged into my account in months now. There&#8217;s a bunch of others (Mafia Wars, Farmville, etc.) I signed up for, played once, and then promptly forgot about. I think a problem with these games is that they&#8217;re mostly about doing the same thing over and over to acquire more stuff and build your character. None of which is all that interesting to me. One thing that is immensely interesting, however, is Civilization. </p>
<p>Job prospects = still slow. Didn&#8217;t get the job I interviewed for this past Friday. They might have a temporary use for me for a project that may or may not happen, however, which would be nice. I&#8217;d like to get more hours at Liberty, as though the pay is meager, it&#8217;s actually pretty fun to jump around by the side of the road all day long. Also, I don&#8217;t think I&#8217;ve ever felt this healthy in the middle of winter before. </p>
<p>I wish another Chick-fil-a would open up out here. This is because I want to do another First 100. Preferably without the blizzard this time around. I also really just want to eat chicken constantly, because it is so freaking good. </p>
<p>I finished reading &#8220;Jonathan Norrell &#038; Mr. Strange&#8221; by Susanna Clarke recently. It was fabulous, a very British early 1800&#8217;s take on magicians and magic, quite long and involving with quirky characters, I highly recommend it. I&#8217;m currently reading &#8220;Nature Girl&#8221; by Carl Hiaasen, which is quite funny. </p>
<p>Finished watching Evangelion. Apparently the ending was poorly executed due to budget issues, and I thus need to see a movie called &#8220;The End of Evangelion&#8221; for proper fulfillment. I really liked the concept behind the ending, and we can hopefully get our paws on the movie sometime soon. Started watching Bleach, am enjoying it but with mixed feelings. The more it veers away from the &#8220;I need to kill this giant Hollow&#8221; plots, the more I like it. </p>
<p>Oh yeah, I totally scored some free fabric off of Craigslist. Giant bag, some scraps and some decent-sized pieces. I&#8217;ve got a pair of black shorts with a drawstring that never really fit me right, and I&#8217;ve got this great idea to convert it into a skirt, adding some fabric to the bottom in ruffles or something. I&#8217;ve got plenty of fabric to do this, now it&#8217;s simply the matter of locating said shorts. There&#8217;s this black hole that follows me sometimes, and likes eating things I&#8217;d prefer not to have eaten. I picked up a tank top from Old Navy with the final dregs of my gift card, and as a tank top it&#8217;s entirely too long, but with some fabric on the bottom it would make an awesome dress. I need to find a fabric really similar to the tank top&#8217;a fabric to execute this, however. Now, once I have made these items, I need to find or create circumstances where I would actually wear a skirt or a dress. Pants are just such a nice default, but it&#8217;s a shame that I keep making all of this crap and never wear it anywhere for the most part.</p>
<p>Oh yeah, crispy chocolate in my near future. Old Towne Arvada is having some sort of chocolate festival, whereupon I will enter items into their cookie contest and, with any luck, will win a giant pile of chocolate. Which would be good timing, as our Christmas chocolate is slowly running out!</p>
]]></content:encoded>
			<wfw:commentRss>http://ptocheia.net/2010/02/04/gaming-misc-projects-jobs-and-media-a-k-a-i-suck-at-making-relevant-post-titles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My life as a statue</title>
		<link>http://ptocheia.net/2010/01/26/my-life-as-a-statue/</link>
		<comments>http://ptocheia.net/2010/01/26/my-life-as-a-statue/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 22:13:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Random Babble]]></category>
		<category><![CDATA[Chick-fil-a]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[jobs]]></category>
		<category><![CDATA[statue of liberty]]></category>

		<guid isPermaLink="false">http://ptocheia.net/?p=345</guid>
		<description><![CDATA[<p>I&#8217;ve found employment. Not the employment I was really expecting to find, mind you, but employment nonetheless. Indeed, I am now one of those people that dresses <a href="http://ptocheia.net/2010/01/26/my-life-as-a-statue/"  >&#187;&#187;</a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve found employment. Not the employment I was really expecting to find, mind you, but employment nonetheless. Indeed, I am now one of those people that dresses up as the Statue of Liberty and dances around at the side of the road, trying to convince you to go get your taxes done at Liberty Tax. Part time, $8 an hour. But it works for now. </p>
<p>Here&#8217;s the thing: it&#8217;s pretty freaking disillusioning to spend large quantities of your time applying (and failing to get) jobs. Eventually you start wondering what the point is in the first place. My veeery sllooowly moooving job building the router site is, well, slow. Doesn&#8217;t take up a huge amount of time. And, I need money. Even if I&#8217;m earning a rather paltry sum, at least I&#8217;m earning something. There&#8217;s also the fact that winters are infamous for making me lazy and get no exercise. So, it&#8217;s like I&#8217;m getting paid to go to a gym/club. In theory, I&#8217;m also boosting my confidence, by waving at complete strangers and having them wave back. There&#8217;s the occasional middle finger, but for the most part (when people respond, at least), people are friendly and some downright bizarrely happy to see me. It&#8217;s also pretty fun to wear a costume. I would take on a job as a Chick-Fil-A cow in a heartbeat, incidentally.</p>
<p>I also find it easier to organize my time when it&#8217;s broken up into chunks. Now that Drew is at work all day, my day stretches before me like a vast plain, all to be spent in front of the computer doing *something*, in theory, that will propel me to the next job, or give me another thing to slap on the ole resume. With this part-time job, I *have* to get work done in the alloted time available. Also, dancing around for several hours in a row makes it much easier to sit in front of the computer for long stretches of time. I&#8217;m rather restless for the most part, and like to wander around, and the fact that I eat more then my fair share of sugar during the day does nothing to ameliorate this tendency. So, being exhausted helps with this. And, if things go well, I&#8217;ll be super-toned by springtime!</p>
<p>And that&#8217;s that. Here are other things going on in my life right now, in list form:</p>
<ul>
<li style="list-style-type: circle;">Have more or less gotten the hang of Drupal hooks. Am looking forward to trimming up my new shiny module and maybe getting it published on the Drupal site.</li>
<li style="list-style-type: circle;">Have decided that, as we don&#8217;t have friends out here in Denver yet, it&#8217;s time to start watching more anime. I never saw Evangelion, so we just started watching that last night. And will apparently need to finish watching it very soon as well, as I&#8217;ve now got Bleach sitting at the library waiting to be picked up.</li>
<li style="list-style-type: circle;">We&#8217;ve been eating free Chick-Fil-A for several months now, at least once a week. We thought we&#8217;d get sick of it at some point, but no. I still crave it as much as ever.</li>
<li style="list-style-type: circle;">Did you know you can stick slices of tofu in the toaster? It&#8217;s pretty neat.</li>
<li style="list-style-type: circle;">At some point, I need to get a phone with decent web-browsing capabilities. I mean, how am I supposed to make sure websites are designed to look good on mobile browsers if I don&#8217;t even have a mobile browser in which to look at them?</li>
<li style="list-style-type: circle;">I got all extravagant recently and bought a cactus for $3.50. It&#8217;s succulent and adorable. There&#8217;s the best shop ever in Manitou Springs with a greenhouse-type room filled with cacti/cactuses/cactodes of all shapes and sizes. When I go in there it&#8217;s like I go into a pet shop. Even better, actually, because pet shops make me sad. I feel for the plight of those poor Betas trapped in those teeny little glass bowls.</li>
<li style="list-style-type: circle;">Grilled cheese sandwiches are the Fruit of the Gods.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://ptocheia.net/2010/01/26/my-life-as-a-statue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Job stuff, rabid illness, etc.</title>
		<link>http://ptocheia.net/2010/01/20/job-stuff-rabid-illness-etc/</link>
		<comments>http://ptocheia.net/2010/01/20/job-stuff-rabid-illness-etc/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 00:28:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Random Babble]]></category>
		<category><![CDATA[cramps]]></category>
		<category><![CDATA[illness]]></category>
		<category><![CDATA[jobs]]></category>

		<guid isPermaLink="false">http://ptocheia.net/?p=343</guid>
		<description><![CDATA[<p>So here&#8217;s the job situation: I have picked up a temporary job working at Liberty Tax to tide me over until I (hopefully) hear back from the <a href="http://ptocheia.net/2010/01/20/job-stuff-rabid-illness-etc/"  >&#187;&#187;</a>]]></description>
			<content:encoded><![CDATA[<p>So here&#8217;s the job situation: I have picked up a temporary job working at Liberty Tax to tide me over until I (hopefully) hear back from the Census people (apparently it might be a bit of time, I&#8217;m hopeful though as I scored 100% on the test), and that will tide me over until either the freelance web stuff picks up or I can land a more permanent web job. I am moving forward on my current Drupal project, though, went to a meeting last week and checked out some CNC routers. Once that&#8217;s done, I&#8217;ve got a giant list of side projects to work on portfolio-building until I can land something else.</p>
<p>And, I&#8217;m sick. Came down with it yesterday. Might be cold or flu, not really sure. Headache, fever, chills, fatigue, sore throat, occasional cough. And I threw up today. Feels really weird to have things in my stomach. I think that my stomach&#8217;s weakening with age. I didn&#8217;t use to have stomach queasiness with illness, but lately I&#8217;ve gotten that. Also, in the last few years I&#8217;ve started experiencing queasy stomach after roller coaster rides. No good at all! Also no good is my period this time around. It&#8217;s really awful to have bad cramps while also sick. I&#8217;m still playing around with giving myself doses of zinc to help out. I wish zinc didn&#8217;t make me nauseas, and I need to drill into my skull that 15 minutes of nausea for a few days is a lot better then days of devastating pain. </p>
<p>Oh, and that avocado contest I entered? I did not win. Well, I did win a cookbook and a t-shirt, both of which should come in the mail at some point, but no dollars. It&#8217;s all good, though, I felt like I learned a great deal of Flash, which is something.</p>
]]></content:encoded>
			<wfw:commentRss>http://ptocheia.net/2010/01/20/job-stuff-rabid-illness-etc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using CSS3 text-shadow to create fun text effects</title>
		<link>http://ptocheia.net/2010/01/13/using-css3-text-shadow-to-create-fun-text-effects/</link>
		<comments>http://ptocheia.net/2010/01/13/using-css3-text-shadow-to-create-fun-text-effects/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 20:06:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://ptocheia.net/?p=303</guid>
		<description><![CDATA[<p>So I&#8217;ve been playing around with new CSS3 tags, and I just realized a fun effect you can make doing text-shadow. If you set the color of <a href="http://ptocheia.net/2010/01/13/using-css3-text-shadow-to-create-fun-text-effects/"  >&#187;&#187;</a>]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;ve been playing around with new CSS3 tags, and I just realized a fun effect you can make doing text-shadow. If you set the color of your text the same as your background color, you can create an outline effect. The following uses &#8217;style=&#8221;font-size: 24px; color: #000; text-shadow: 0px 0px 5px #e82aff;&#8217;.</p>
<div style="padding: 8px; background-color: #000;">
<p style="font-size: 24px; color: #000; text-shadow: 0px 0px 5px #e82aff;">Yay for text!!!</p>
</div>
<p>Or, even better, offset either of the first two values in text-shadow enough, and you can completely remove the text and only have the glowing shadow left:</p>
<div style="padding: 8px; background-color: #000;">
<p style="font-size: 24px; padding-bottom: 30px; font-family: Georgia, serif;color: #000; text-shadow: 0px 20px 3px #54ff00;">Glowing is fun!</p>
<p style="font-size: 24px; padding-bottom: 30px; font-family: Georgia, serif;color: #000; text-shadow: 0px 20px 5px #fff;">Especially when it&#8217;s super fuzzy!</p>
</div>
<p>&#8220;Glowing is fun!&#8221; uses this:  font-size: 24px; padding-bottom: 30px; font-family: Georgia, serif;color: #000; text-shadow: 0px 20px 3px #54ff00;</p>
<p>&#8220;Especially when it&#8217;s super fuzzy!&#8221; uses this: font-size: 24px; padding-bottom: 30px; font-family: Georgia, serif;color: #000; text-shadow: 0px 20px 5px #fff;</p>
<p>How about using multiple shadows to make an outline?</p>
<div style="padding: 8px; background-color: #000;">
<p style="font-size: 24px; font-weight: bold;text-decoration: blink; padding-bottom: 30px; font-family: Georgia, serif; color: #000; text-shadow: 0px 20px 1px #000, 0px 20px 3px #fff;">Fuzzy outline?</p>
</div>
<p>&#8220;Fuzzy outline?&#8221; uses this: font-size: 24px; font-weight: bold;text-decoration: blink; padding-bottom: 30px; font-family: Georgia, serif; color: #000; text-shadow: 0px 20px 1px #000, 0px 20px 3px #fff;</p>
<p>How about some Matrix-style text?</p>
<div style="padding: 8px 8px 35px 8px; background-color: #000;">
<p style="font-size: 20px; line-height: 24px; letter-spacing: 40px; font-family: Courier, serif; color: #000; text-shadow: 18px 3px 4px #fff, 51px 14px 2px #fff, 90px 8px 3px #fff, 20px 2px 2px #1cf200, 33px 24px 9px #1cf200, 52px 0px 4px #1cf200, 89px 5px 4px #1cf200, -19px 19px 3px #88fa98, 54px 15px 7px #88fa98, 73px 19px 4px #88fa98, -7px 5px 7px #329d42, 88px 9px 4px #329d42, 18px 29px 2px #329d42, 70px 5px 5px #329d42; 16px 5px 9px #329d42;">1 0 0 1 0 <br /> 0 1 0 0 1<br /> 0 0 1 1 1<br /> 1 1 0 1 0<br /> 1 0 0 0 1<br /> 0 0 1 0 1<br /> 1 1 1 1 0<br /> 0 1 0 0 1</p>
</div>
<p>The code for this baby is as follows:</p>
<p>&lt;p style=&#8221;font-size: 20px; line-height: 24px; letter-spacing: 40px; font-family: Courier, serif; color: #000; text-shadow: 18px 3px 4px #fff, 51px 14px 2px #fff, 90px 8px 3px #fff, 20px 2px 2px #1cf200, 33px 24px 9px #1cf200, 52px 0px 4px #1cf200, 89px 5px 4px #1cf200, -19px 19px 3px #88fa98, 54px 15px 7px #88fa98, 73px 19px 4px #88fa98, -7px 5px 7px #329d42, 88px 9px 4px #329d42, 18px 29px 2px #329d42, 70px 5px 5px #329d42; 16px 5px 9px #329d42;&#8221;&gt;1 0 0 1 0 &lt;br /&gt; 0 1 0 0 1&lt;br /&gt; 0 0 1 1 1&lt;br /&gt; 1 1 0 1 0&lt;br /&gt; 1 0 0 0 1&lt;br /&gt; 0 0 1 0 1&lt;br /&gt; 1 1 1 1 0&lt;br /&gt; 0 1 0 0 1&lt;br /&gt;&lt;/p&gt;</p>
<p>Incidentally, if you are using Internet Explorer (or Firefox pre-3.1), you probably don&#8217;t see any shadow effects, and in fact just see a lot of black all of the boxes above. Unfortunately, this means that unless you feel like adding some CSS hacks to add a font-color just for IE, text-shadow isn&#8217;t at useful as it could be. Hopefully IE will start supporting text-shadow sometime soon. </p>
]]></content:encoded>
			<wfw:commentRss>http://ptocheia.net/2010/01/13/using-css3-text-shadow-to-create-fun-text-effects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The long drive back from Tennessee</title>
		<link>http://ptocheia.net/2010/01/05/the-long-drive-back-from-tennessee/</link>
		<comments>http://ptocheia.net/2010/01/05/the-long-drive-back-from-tennessee/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 18:25:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Adventures]]></category>
		<category><![CDATA[Random Babble]]></category>
		<category><![CDATA[misc]]></category>
		<category><![CDATA[BBQ]]></category>
		<category><![CDATA[christmas]]></category>
		<category><![CDATA[driving]]></category>
		<category><![CDATA[hotels]]></category>
		<category><![CDATA[kansas!]]></category>
		<category><![CDATA[really long road trips]]></category>

		<guid isPermaLink="false">http://ptocheia.net/?p=301</guid>
		<description><![CDATA[<p>So, last Wednesday night we ended up leaving for Nashville at about 2 in the morning. Errr, we left for Nashville early Thursday morning (somehow, it doesn&#8217;t <a href="http://ptocheia.net/2010/01/05/the-long-drive-back-from-tennessee/"  >&#187;&#187;</a>]]></description>
			<content:encoded><![CDATA[<p>So, last Wednesday night we ended up leaving for Nashville at about 2 in the morning. Errr, we left for Nashville early Thursday morning (somehow, it doesn&#8217;t seem to be the next day until the sun actually starts rising). I drove first shift, and got to see a fabulous sunrise in Kansas before attempting to conk out in the folded down backseat of Drew&#8217;s car. There&#8217;s enough room for a person to stretch out and sleep, but it doesn&#8217;t work so well when the car is driving and I&#8217;m used to a glorious mattress. We got to Nashville at 11:00 central time. Unfortunately for us, most of the people there were East Coast elitists, so they had just finished watching the ball drop when we went inside, declared it a new year, and went to bed. New Year&#8217;s Central Time went unnoticed, and we were conked out in bed by the time Mountain Time New Years happened. </p>
<p>Now here&#8217;s something I&#8217;m curious about: New York has the ball drop and all, but what about the other time zones? Seems to be that Chicago should have a ball drop for the Central time zone, Denver for the Mountain time zone, and I suppose Seattle for the Pacific time zone. Don&#8217;t let New York get all the glory! I&#8217;d suggest more southern cities, but it seems that people have this idea that the holidays should be all gobbed up with snow, even though many parts of the US don&#8217;t see snow around the holidays at all. However, I&#8217;m open to a ball drop in <insert name of big southern city here>.</p>
<p>We were there 2.5 days, whereupon I received stuff and ate stuff and hung out with Drew&#8217;s relations. We decided to split up the drive back into two parts, and ended up getting a motel room in Topeka after having eaten some incredibly delicious BBQ in Missouri earlier. I need to either make or get ahold of some St. Louis style BBQ sauce, as it&#8217;s really good. I&#8217;m a sucker for some sweet and smoky. We might have driven further that night, but at some point the roads got slushy, then icy, and it would have been a waste. It&#8217;s interesting to observe weather driving west. It was really cold in Nashville with no snow, bitterly cold in Topeka with bunches of snow, and the further west we drove across Kansas the warmer it got, and it&#8217;s gonna hit close to 50 in Denver today. </p>
<p>Incidentally, next time we&#8217;ve got this kind of distance to go, we&#8217;re gonna try to fly instead. Driving is fun if you aren&#8217;t really familiar with the route so much, but we&#8217;ve both seen the 430 mile stretch on I-70 across Kansas waaay more then we need to at this point. </p>
<p>And here&#8217;s a few thoughts on hotels. I like nicer hotels, but only if someone else is totally covering it. As Drew and I were splitting the tab, we stayed at a Motel 6. In terms of cheap hotels/motels, it often seems better to choose chains over non-chains. With non-chains it&#8217;s questionable as to how livable the room will actually end up being. However, it doesn&#8217;t matter much for that chain if whoever stays there thinks it sucks, as they&#8217;re just passing through and so repeat business isn&#8217;t too much of a concern. So, if they&#8217;re sheisty or lazy, they can get away with lower standards. However, staying at a chain place, there&#8217;s a possibility that you&#8217;ll continue to visit their other locations when you travel. Thus, the Motel 6 was as bare-bones as the price suggested, but had the benefit of being appropriately clean and not being sketchy.</p>
<p>We got back last night around 8:30, and Estha was super glad to see us. We now have giant piles of crap sitting everywhere which we should probably deal with at some point. Also, so much junk food. My goal is to not eat it all today. Incidentally, my New Year&#8217;s resolution is to not gain too much weight. Screw losing weight. And screw not gaining weight. I&#8217;ve accepted the fact that, every winter, I put on lbs. Conversely, every summer, I lose those lbs. All I want is to not gain so many lbs that my bras stop fitting, as that is a royal pain. Mind you, I&#8217;ve got summer bras and winter bras for this precise purpose, but when I start outgrowing the winter bras things start getting really pissy for me. </p>
<p>Anyhow, we scored a giant bag of miniature candy (kisses and teeny Reeses cups and such), which pleases the little Martha Stewart part of me as it means we have stuff to put in our candy dish for the next month or so. Incidentally, we decided that we&#8217;re gonna keep our Christmas tree and lights up until the beginning of February. See, I get depressed in the winter. I think the excitement of the holidays helps, but January is generally pretty bleak. So, I shall experiment with leaving bonus Xmas light cheer up, to see if that combats seasonal affective disorder type issues. </p>
<p>And on a final note, today is Drew&#8217;s and my 4 year anniversary, yay! Unfortunately, Drew is currently passed out in bed with whatever disease he picked up on this trip. We&#8217;ll be hitting the Macaroni Grill later for anniversary dinner, whereupon I will gorge myself on sea life and exciting beverages. Until then, I will hang out with Drupal and try to figure out what the heck to get Drew for our anniversary that he hasn&#8217;t already received over this long holiday season.</p>
]]></content:encoded>
			<wfw:commentRss>http://ptocheia.net/2010/01/05/the-long-drive-back-from-tennessee/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Watch out for little rubber thingies when you change your oil</title>
		<link>http://ptocheia.net/2009/12/30/watch-out-for-little-rubber-thingies-when-you-change-your-oil/</link>
		<comments>http://ptocheia.net/2009/12/30/watch-out-for-little-rubber-thingies-when-you-change-your-oil/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 02:37:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[misc]]></category>
		<category><![CDATA[car stuff]]></category>

		<guid isPermaLink="false">http://ptocheia.net/?p=299</guid>
		<description><![CDATA[<p>So we attempted to change Drew&#8217;s oil yesterday. I couldn&#8217;t get the up-until-now-machine-screwed-in oil plug off, but he could, so that was alright. The oil filter was <a href="http://ptocheia.net/2009/12/30/watch-out-for-little-rubber-thingies-when-you-change-your-oil/"  >&#187;&#187;</a>]]></description>
			<content:encoded><![CDATA[<p>So we attempted to change Drew&#8217;s oil yesterday. I couldn&#8217;t get the up-until-now-machine-screwed-in oil plug off, but he could, so that was alright. The oil filter was located in a godawful place behind a bunch of various car innards such that I really needed a few extra joints to reach it properly. Our new wrench is also a pale comparison to the wrench I used to use. Again, Drew managed to get back to it and wrench it off. He also put the new filter on, tightening it as much as he could with his hand. I screwed the oil plug back in, it didn&#8217;t go in as smoothly as mine usually does, but seemed to tighten ok.</p>
<p>Drew starts the car, and there&#8217;s a &#8220;bloop&#8221; noise and gushing&#8230;then dripping. A bunch of oil slowly oozed out of the car. As it was getting on towards dusk and we had no idea what was going on, we stopped for the night. The internet mentioned a few possibilities, with a few curses thrown in the direction of Jiffy Lube and their ilk. I was able to snake my hand in from the top and grab the oil filter, and it seemed tight enough. Today, I peered under the car and tried to make out where the oil plug was. I couldn&#8217;t see it, and, reaching around amongst the oily patches, I thought I felt a hole with oil around it (neglecting to realize that the entire freaking underside of the car had oil on it at this point). </p>
<p>So we headed over to Advance Auto, where, along with dumping the old oil, we pick up some new oil plus an oil plug. In this fabulous overcast 30some degree weather with the parking lot still partially covered in snow (and the remainder now covered in motor oil, unfortunately), we rolled the car back onto the ramps. I get underneath, and the plug&#8217;s still there. Looking up, I can also see that the oil definitely came from the filter. However, I can&#8217;t seem to tighten it any more with my hand. So Drew gets under the car, and can&#8217;t tighten it any further, either. So then we switch tactics, and he removes the oil filter altogether. Oil filter looks fine. Then I decide to stick my hand down where the oil filter used to be, and poke around to look for any funny business. After I&#8217;d grown a few new joints in my forearm, I manage to get my hand into where the filter goes&#8230;and pull out a twisted little rubber ring, left behind from the last filter. Hooray!</p>
<p>Drew screws the oil filter back in, saying that it screwed in both tighter and easier then the last time. And the car is fine, now. Which is good, as that would have put a serious damper in our upcoming trip otherwise. Now all we have to go is go get a bunch of kitty litter and some newspapers to take care of the mess we left in the parking lot!</p>
]]></content:encoded>
			<wfw:commentRss>http://ptocheia.net/2009/12/30/watch-out-for-little-rubber-thingies-when-you-change-your-oil/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
