Saturday, March 31, 2007
Monday, March 26, 2007
Mutil Tasking is stupid
clipped from www.nytimes.com
|
Friday, March 23, 2007
Thursday, March 22, 2007
Tuesday, March 20, 2007
FIRST Robotics
clipped from gizmodo.com
|
Monday, March 19, 2007
JTable Size Columns
TableColumn column = null;
for (int i = 0; i < 5; i++) {
column = table.getColumnModel().getColumn(i);
if (i == 2) {
column.setPreferredWidth(100);
} else {
column.setPreferredWidth(50);
}
}
Friday, March 16, 2007
Works for me ...
clipped from www.codinghorror.com
|
Wednesday, March 14, 2007
Tuesday, March 13, 2007
Monday, March 12, 2007
I was famous once
clipped from www.linuxjournal.com
|
Friday, March 9, 2007
Thursday, March 8, 2007
Calendar Sync
Wednesday, March 7, 2007
Tasers are bad ....
Tasers: More Dangerous Than We Thought?
CrunchGear did an investigation into the safety of tasers, and what they discovered is a bit troubling. Despite the fact that Taser International just loves zapping reporters to get themselves on the news, they also sue the pants off of anyone who does studies on the safety of their devices and gets results they don't like.
It turns out that getting tased might, surprise surprise, be bad for the ticker. So think twice before sasstalking officer friendly next time you're out causing trouble, OK? –Adam Frucci
The Trouble With Tasers - What The Manufacturer Doesn't Want You To Know [CrunchGear]
Kill a process in VB .Net
Dim myProcesses As Process() = Process.GetProcessesByName("QTPro")One note on this is that the process name is the name without the extension. Eventhough through task manager it list the process name as QTPro.exe I had to use QTPro
Dim myProcess As Process
For Each myProcess In myProcesses
myProcess.Kill()
Next myProcess
Libby found guilty
For Cheney, Political Toll May Follow Libby Verdict
Dick Cheney’s critics, and even some of his supporters, say the vice president has been diminished by the proceedings.
Sounds like a good idea .... until you think about it
This sounds like a good idea on paper, but would you really want it on your car. If my car alarm malfunctioned while I was doing 60 mph it would be annoying but not the end of the world. If this new Fog Alarm malfunctions Im going to crash and burn. Its neat but I would never ever put it on my car.
Tuesday, March 6, 2007
Folder Share
Here is what I like:
- Fast (this thing doesn't slow my machine down at all)
- Real Time
- Cross platform (I love my mac)
- The UI leaves a lot to be desired
- Didn't complain when my mac couldn't connect (firewall issue)
Monday, March 5, 2007
The lamest thing about GMail
So go forth and save ye GMail searches
Adding Persistent Searches to Gmail #
If you haven't already, install the excellent greasemonkey Firefox extension.
Open up this user script (in Firefox).
From the "Tools" menu, select "Install User Script.." and confirm all of the various prompts.
Go to your Gmail account (some refreshing may be necessary).
There should now be a "Searches" box on the left size, below the "Labels" and "Invite a friend" ones.
Clicking on a search executes the saved query. To refresh result counts, click on the refresh icon in the upper right corner.
Use the "Edit searches" link to customize your persistent searches.
As a bonus feature, all threads now have a "Toggle font" link which switches the message font to a fixed size one - great for reading source code.
Shutdown Windows with a text message
Shutdown Windows with a text message
Basically you setup a rule in outlook to look for say a keyword in the subject line of an email. Then you select run application as the action for when that keyword is found.