Navigation

Search

Categories

On this page

Beauty and the Geek
Google Search from a batch script
Women Suck
Teaching HTML

Archive

Blogroll

Disclaimer
The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.

RSS 2.0 | Atom 1.0 | CDF

Send mail to the author(s) E-mail

Total Posts: 120
This Year: 1
This Month: 0
This Week: 0
Comments: 40

Sign In
Pick a theme:

# Tuesday, May 31, 2005
Tuesday, May 31, 2005 10:55:55 AM (Mountain Daylight Time, UTC-06:00) ( )

I'm sorry, but this is new reality TV stuff is just plain sad.

http://www.thewb.com/Shows/GenericShow/0%2c11116%2c228773%2c00.html.

I happen to be a geek. Yes, I would rather spend a night at home than humping some hottie's leg on the dancefloor at the local bar while consuming vast amounts of booze to make the demoralizing social experience seem more like a normal humanitarian mating ritual. Lets face it. People who write code are usually more comfortable with a keyboard than a conversation with a flesh-and-blood woman. Why? Usuaully because the ones we've had contact with don't hold our interest near as well as the latest technical marvel of online gaming or release of Visual Studio. That should say something about both sides...
Facts and highly biased opinions aside, I really think every geeky guy (including self) is a pretty decent catch for a lot of reasons. As such, they are completely capable of finding attractive women who will find their geekiness attractive all on their own without the need of being paraded around like a bunch of circus freeks.

Geeks are real, and they have feelings, sometimes many more times in depth than a 'normal' person. I for one find this kind of thing reminscent of the archetypal classes we were put in during the highschool years. Come on, this is prime-time Television. Think of something original!

Comments [1] | | # 
# Saturday, May 28, 2005
Saturday, May 28, 2005 4:08:35 PM (Mountain Daylight Time, UTC-06:00) ( General )

This is a batch script I made for running a Google Search. It supports up to 9 words which are space-delimited. For reference, it went in my %USERPROFILE% directory and is named gs.bat. Any other location which is in your %PATH% is also acceptable, I happen to use that directory because it's quick to get to. Just open the Run dialog box. ( + R) and type .  (thats a period)

The syntax is pretty easy,

gs word1 (word2 word3 word[n])

gs.bat
@echo off
IF [%1]==[] (GOTO Syntax) ELSE (GOTO Run)
:Run
SET QUERY=
IF NOT (%1)==() SET QUERY=%1
IF NOT (%2)==() SET QUERY=%QUERY%+%2
IF NOT (%3)==() SET QUERY=%QUERY%+%3
IF NOT (%4)==() SET QUERY=%QUERY%+%4
IF NOT (%5)==() SET QUERY=%QUERY%+%5
IF NOT (%6)==() SET QUERY=%QUERY%+%6
IF NOT (%7)==() SET QUERY=%QUERY%+%7
IF NOT (%8)==() SET QUERY=%QUERY%+%8
IF NOT (%9)==() SET QUERY=%QUERY%+%9
start http://www.google.com/search?q=%QUERY%
GOTO End
:Syntax
ECHO You must specify at least one word to search for
ECHO gs word1 word2 wordN
pause
:End
SET QUERY=%MYTEMP%
:EOF
Comments [0] | | # 
# Friday, May 20, 2005
Friday, May 20, 2005 12:09:17 PM (Mountain Daylight Time, UTC-06:00) ( )

Men, have you ever had a conversation with a woman and they start out like so,

You're a great guy and you do (insert generality here) really well. I've really enjoyed getting to know you (in this way).
HOWEVER, I'm seeing someone else. I have been since, (insert date while we were still getting to know eachother), and we recently (insert event which made them more serious).

OK, may I first say, women are manipulative bitches. With VERY VERY few exceptions to that rule. More so than I think men are. I think at some point, every woman is given a version of 'Art of War by SunTzu' retrofitted for making men believe that they are getting somewhere closer to a relationship, and then whammy, you didn't see my assassin squad sneak into your capital. Your president and senators are now all dead, your goverment is chaos and we win. Thanks for playing, now run along.

In all fairness, there has been an apt term coined to catagorize the slime of men in the same way. Player. To be fair, I hate both genders of Players, and if the world was according the Jeremy, then we would have some way of exacting somewhere near equivacable amounts of physical pain on these people they deem necessary to inflict upon us in emotional areas.

So, in closing, I would like to give a very big one-fingered solute to the women I’ve had dealings with this month who aren’t even worthy of repeating their names.

Comments [0] | | # 
# Thursday, May 05, 2005
Thursday, May 05, 2005 2:15:31 PM (Mountain Daylight Time, UTC-06:00) ( General )
I am teaching someone some simple HTML. While they’re really anxious to do useful things, it would be like throwing an infant into the deep end of the pool. Thus, we start with simple exercises, in order to have a firm grasp on the basics.
The example looks like this.

RED

BLUE

YELLOW

C O L O R S

GREEN


The code is really pretty simple, but lets not put the whole thing in our mouth at once. Remember what mother said, take small bites, and chew each one 30 times.

<table height="600" cellspacing="0" cellpadding="0" width="600" align="center" border="0">

Start with a table tag. Zero the borders, give it a width. No spacing, no padding, give it a height, and make the table align center to it's parent.

<col align="middle" width="200">
<col align="middle" width="200">
<col align="middle" width="200">

We're going to have 3 columns, and we want each one to be a set width. 1/3 of 600 is 200.

<tr>
<td bgcolor="#FF0000" colspan="2"><h3><font color="#FFFFFF">RED</font></h3></td>
<td bgcolor="#0000FF" rowspan="2"><h3><font color="#FFFFFF">BLUE</font></h3></td>
</tr>

Row one has two cells, one two columns wide, then another two rows tall. Make the background color of each appropriate, using short-cut style hex notiation #RED_GREEN_BLUE (two numbers each, 0-F, single number means two of the same). After that, we're going to make the font larger using the h3 tag, and a color using the font tag with a color attribute. No CSS yet, this is BASIC HTML.

<tr>
<td bgcolor="#FFFF00" rowspan="2"><h3><font color="#FFFFFF">YELLOW</font></h3></td>
<td bgcolor="#000000"><h3>
<font color="#FF0000">C</font>
<font color="#FF6600">O</font>
<font color="#FFFF00">L</font>
<font color="#00FF00">O</font>
<font color="#0000FF">R</font>
<font color="#9900CC">S</font>
</h3></td>
</tr>

Another row bites the dust. We need a cell that is two rows tall again, and then just a single column, single row cell. Then comes the fun part, wrap each letter in a color, like the rainbow. It helps to have a color chart for this. Maybe Visibone?

<tr>
<td bgcolor="#00FF00" colspan="2"><h3><font color="#FFFFFF">GREEN</font></h3></td>
</tr>
</table>

Finish it up with the last cell, two columns wide. Don't forget to close the table tag! Congratulations, now you have a pretty finished product. You have used the table, tr, td, col, h3, and font tag. Play around with the values in the attributes and see how pretty or ugly you can make it.

Comments [0] | | #