My Writings. My Thoughts.
Using Military Technology in Tornado Research
// September 23rd, 2008 // No Comments » // random, tech
So, I had a thought while trying to fall asleep the other day. If you’ve ever watched the movie Twister, you’d know that they were trying to gather data on tornadoes by dropping a delivery device in the path of a tornado and hoping it would hit it to lift sensors up into the body of the tornado to gain some insight on how it works.
So, here’s my thought: Why not use some military technology to make it a bit easier? If the military has the ability to hit a specific window of a building with a smart bomb, why can’t we use that same principle to get close enough to a tornado to drop a payload into it? And not just a bomb, how about modify one of those cluster bombs to drop hundreds of the probes into a tornado.
Get someone on the ground with a laser targeting device and point it at the tornado (hoping that the debris would provide enough reflectivity to get a signal), while simultaneously using GPS to track it. Get some kind of aircraft to fly over the storm, drop the bomb into the storm at the targeted tornado. Do this, and before the bomb hits (50ft or so above ground) have it detonate and spread the sensors into the storm.
Might be a little safer than running into the path of a storm, dropping something in it’s path, and trying to make it out of the way before you get creamed by the tornado.
I wasn’t really going anywhere with this, just writing down my random thoughts.
Simple Way to Modify Menu Items with jQuery
// September 16th, 2008 // No Comments » // javascript, tech
I came across this website the other day using some really ingenious css that would change the state of a menu item as you hover over it with the mouse, while also changing the states of all other items in the menu that are not hovered. Pretty interesting. I’ve been so hooked on jQuery lately that I was curious to see if I could throw something together quickly that accomplished the same feat. It was actually a lot easier than I thought it would be.
$(function(){
$("#menu li").hover(function() {
$(this).addClass("hover");
$("#menu li").not(".hover").addClass("nothover");
},function(){
$(this).removeClass("hover");
$("#menu li").not(".hover").removeClass("nothover");
});
});
Basically, I made it so that when the list item “li” contained in the “#menu” container is hovered over with the mouse, a class of “hover” is added to that item, while every list item not hovered in that set gets a class of “nothover”. Now, once the user’s mouse exits the list item, it removes both the “hover” and “nothover” classes. Simple, eh?
From here you could easily make the CSS markup for each event and state, and duplicate what the previous website did with just CSS.
Here is an example. Right click and ‘save as’ to save the source code.
Something to be Excited About
// September 15th, 2008 // No Comments » // exercise, habits, smoking
So, I’ve done it.
I’ve quit smoking.
It’s only been two weeks and I have to say it was very difficult at first, but now I barely think twice about it.
I honestly can’t believe it’s taken me this long. I’ve been smoking for long enough to have forgotten how summer smells like, how the start of fall smells like, how a cool breeze laden with the smell of cut grass smells like, and most of all, how the crisp, low humidity air smells like being blown through your house with the windows open. I honestly feel like, for the first time in five years, I have my sense of smell back.
For the years I’ve been smoking, I have had kind of an “on/off” switch for smell. I knew when things were smelly, or when there wasn’t much of a smell at all. Now the cornucopia of excitement that tantalizes my nose is almost too much to bear! I relish the smell of peeling an orange and the new, almost unfamiliar tastes they give me fill me with an overwhelming sense of happiness. When I eat, I seem to only have to eat half of my usual portion and I feel satisfied. Honestly, my appetite has gone up a lot since quitting, but I don’t feel much like I have to eat more, just the pleasure I get from food has doubled.
You ask how I got through the cravings? Simple! I didn’t have enough money on me or in an accessible bank account to get another pack. I made sure I filled my tank before quitting (gas stations and fill-ups are the worst for me), and never had any cash laying around at home, nor did I take anything but my keys and I.D. to class.
Here’s a suggestion if you think you might have a problem with even leaving your credit cards around for use: freeze them in a block of ice and leave them in the freezer. Now, if that craving hits you, you’ll have to claw your way through a couple inches of ice to get to a money source.
On top of the benefit of quitting, I’ve started working out. That feeling of wellbeing plus my sense of smell returning has been almost too much to bear.
If you or anyone you know wants to quit, now is the time. Give them a couple days and some time outdoors and you’d be hard pressed not to quit with this method. Of course the key is you have to want to quit for it to work.
Still Alive – Jonathan Coulton, Played on a Ukulele
// September 13th, 2008 // No Comments » // music, random, video, youtube
This has to be my absolute favorite song off of the game Portal, and it’s re-done using a ukulele. Awesome.
(via Wonderland)
Subscribing to Specific User Blogs on MySpace
// September 10th, 2008 // No Comments » // MySpace, RSS
Keeping up with people on the web had become extremely easy with the advent of RSS. Now we can use the same technology used to keep up with all the popular blogs, but with your own friends!
Log In
First, we’re going to need to log-in to MySpace. Point your favorite browser to MySpace.com and enter your username and password. Next, we’ll need to find a person who blogs in MySpace to follow. My suggestion would be your girlfriend or another close friend who will be amazed at your attentiveness to what they’ve been blogging about. Go down to your “Friend Space” and select the friend you wish to follow. Select their blog page and look in the top right hand corner for the “rss” link. 
Subscribe
I’ve had some issues with just clicking on the link and it adding to my RSS reader, so if you have problems you’ll want to right click and copy the link. Now all that’s left is adding that subscription into your favorite flavor of RSS reader.
Enjoy!
Subscribing to RSS feeds in Facebook
// September 9th, 2008 // No Comments » // Facebook, RSS
Keeping up with all your friends on Facebook can get to be a real chore, expecially when you have to log into your account just to check out what’s going on. Why can’t I just grab any new content in something that I use every day, such as an RSS reader? Well, you can! Today, I’ll outline how to create an RSS feed in Facebook and subscribe to it in your favorite RSS reader.
First, you’re going to want to log into your facebook account. From here you can go to your posted news page via http://www.new.facebook.com/posted.php.
Enter this into your browser's address bar.
Scroll down and look on the right column to right click on the link labeled “My Friends’ Posted Items” and copy the url.
Next, we’ll open up your favorite RSS reader (in my case, Google Reader) and add a new subscription using the copied text.
Now you can sit back and check in on all your friends from the comfort of your favorite RSS reader, making it much easier to keep up on everything going on with your friends.




