Back to top

Technology

Broadly defined "technology" e.g. software, water pumps

Laptop Sleeve for 17" Dell Inspiron E1705 and 9400/9300

I wanted a sleeve for my Dell Inspiron E1705 (which is basically the same machine as the Inspiron 9300/9400) but couldn't find many good reviews online. Some said it would fit in XYZ sleeve and others would say it wouldn't fit in the same sleeve. So, I traveled to a few local computer supply shops and found several things. First, OfficeMax/OfficeDepot suck for laptop sleeves. They have lots of briefcases.

Category: 
People Involved: 
timeline: 

MySQL - Drop all Tables in a Database Using a Single Command Line Command

Let's say you need to drop all tables in a mysql database. How do you do that?

You could use a gui, but that's not fun.

You're a shell jockey so you want a commandline:

 mysql -u uname dbname -e "show tables" | grep -v Tables_in | grep -v "+" | \
gawk '{print "drop table " $1 ";"}' | mysql -u uname dbname

(that's all one line, but if I do it as a line then it screws up my theme - go figure).

This assumes that you are running in passwordless mode. See "man mysql" for tips on how to pass in passwords in another manner.

What this does is

Category: 
People Involved: 
timeline: 

radio spectrum in trouble - sign the moveon petition now! or not.

I was recently sent a link to this petition from MoveOn.org and asked what I thought about it. I'll quote a section from the petition:

Use the public airwaves for the public good, or turn them over to big companies who will stifle competition, innovation, and the wireless Internet revolution. We're urging the FCC to mandate that whoever wins the auction cannot stifle competition and innovation.

First, I generally dislike MoveOn.org because they water down the issue into platitudes so that you have to agree with their position in the petition. Who wants to support anticompetitive regulations? Who wants to stifle innovation? Obviously I should be in favor of their position, right? But they water down the issue in such a way that you can't research it either the issue or their actual position. What is the issue? What is their actual position on the issue?

I don't know so, here's what I have to say in broader terms.

Researching Geek Topics and Spectrum Use

When it comes to geek topics, the place that has the best articles, news, and commentary weighing boths sides is generally slashdot. I went to their page for Communications Articles which shows this was discussed exactly zero times over the last 30 articles which goes back to December of 2006. So, not discussed at all. MoveOn doesn't scoop slashdot. So this is apparently unimportant to slashdot which means I don't care either.

Category: 
People Involved: 
timeline: 

linux screen cheat sheet

Let's say that you are running a command on a linux shell and it's taking a long time. Further, you need to disconnect your session to get on the bus or your session gets disconnected because your net connection is flakey.

Screen to the rescue

Imagine if you could just disconnect from your shell session and then reconnect. Well, you can :)

People Involved: 
timeline: 

Pages

Subscribe to RSS - Technology