Here is a picture of the John Honcock Center from my car.
During the course of the day I encounter lots of challenges, some of which take minutes to solve and others that take much longer. My goal for this section is to keep track of these challenges and their solutions. I will turn the longer ones into articles, while the shorter ones will stay as blog entries. You can expect topics to range from very specific programming challenges to broader topics like life.
Below is a list of the recent blog entries. You can also browse the blog by using the tags on the right side, or if you know what you are looking for then you can use the search box at the top right.
The phone system of US State Department National Visa Center is pretty bad. I have been trying to get a hold of a person to update the address for an approved visa but haven’t had any luck. The worst part is the fact is that instead of making you hold and put in a queue so the next available personnel can answer your questions they make you call them back! :-O So far I have called them several times over a 4-hour span but haven’t been able to get a hold of anyone. 🙁
Lately I have noticed that a poker spam bot keeps hitting my website almost every other day. Now it is starting to annoy me because I have to manually delete these comments, and thats just a pain. Luckily there is a captcha module available for drupal and I am currently working on setting it up. I think I will have to upgrade to drupal version 4.5.2 (currently I am running 4.5.0, I think). Let’s see how it all goes…
My job starts in March and right now I don’t have too much that remains on my plate till then (i.e. almost everything is optional, nothing required). So I have had a lot of time to think about things, things that I guess most of the people (including myself) don’t usually think about during their "normal" life because there is always something to do. The first thing that came to mind was, why live 😕 Don’t get me wrong, I am not a suicidal!
Lately I have had some time to think about life and its purpose so after spending some time thinking on mine today I decided to look around the internet and see what was out there. In my search I ended up at this site: Health, Wealth & Happiness. It has very interesting content, for starters checkout the article titled "How to Know What Your True Purpose in Life is." Also there is another interesting article titled "I want the Earth Plus 5%"; it does not have anything to do with the my original goal but it sure is quite interesting.
I am always looking for ways of making my "computing environment" better and more efficient. A friend of mine (Ryan Doom) pointed out how rarely we used the Caps Lock key suggesting that I should assign the backspace key to it. This sounded like a good idea because right now I have to reach so far out to get to the backspace key (top-…….-right-……-hand corner…) so I decided to give it a try… In order to assign the backspace key to the caps lock key in Microsoft Windows you have to modify a registry key. Don’t worry because SharpKeys can make this a breeze, with SharpKeys you don’t have to know either the key codes nor the HKEY_BLAH/BLAH/BLAH…
By now I have been using my keyboard with the new assignment for a few months and got really used to it. I had to revisit this a few days ago when I decided to try out linux much more thorougly than I had before. Doing this assignment in linux was a little more work because I had to modify the keyboard layout file for console and then do another reassignment for X. Below is what I did to accomplish these two tasks; I am using Arch Linux with the default QWERTY layout so you might have to do a few things differently depending on the distro that you prefer…
To change the default keyboard layout
cd
to /usr/share/kdb/keymaps/i386/qwerty
us.map.gz
to a new file myus.map.gz
myus.map.gz
using your favorite editor and change the line keycode 58 = Caps_Lock
to keycode 58 = BackSpace
/etc/rc.conf
and changing the line that says KEYMAP=us
to KEYMAP=myus
This will change the default layout for consoles, you can load the new layout immediately by running the command loadkeys myus
otherwise the default layout will be loaded when you restart the computer. Now to change the layout in X
.xmodmap
in your home directory with the following code! Swap Caps lock and backspace.
remove lock = Caps_Lock
keysym Caps_Lock = BackSpace
xmodmap ~/.xmodmap
. If not then start your favorite desktop environment and run that command.I presonally prefer KDE and am still working on finding the best way to automatically run the xmodmap command when KDE starts. So far I have created a file that runs this command in the ~/.kde/Autostart but that didn’t seem to work. I will do some more research and post an update once I get it figured out.
2005-04-28: You can easily install the keymap in debian using the install-keymap
command.
Since this website is now being hosted remotely I started thinking about alternate purposes for the box that was hosting it before. A few things that I came up with was a DVR and a FreeNX server. FreeNX is an X compression program that is supposed to let you remotely use X at a much faster rate than the current VNC, remote X, etc.
Finally my website is back online, what took so long? Well, firstly I was in the process of moving from Michigan to Wisconsin, a six hour drive and then I have been debating whether to host the website at home or get it hosted somewhere. Hosting at home would have costed me a 12 month commitment to a 1.5Mbps/512k DSL service and a few extra bucks, whereas by getting it hosted somewhere I can get 3Mbps service at home with no commitment (with a few ports blocked). I ended up not hosting the website at home because that seemed like the better option. Surely I won’t have as much control as I did before but after thinking about this I guess I won’t mind that too much (atleast for now).
Lately I have been very busy messing with Linux and setting up things here and there. I think I am getting much better at it and getting a hang of the whole deal. All of this has costed me quite some time and here is my justification for it: I am a computer scientist and this is a computer :). You might ask why not do all this on Windows? Bottomline, Windows is much easier. For the first timers setting up wireless in Linux can take quite some time (~four or five hours) but by the time you are finished you will know quite a lot about; how wireless internet works, terminology, etc. After my last experience I think I know whats going on and I can probably setup wireless in a few minutes. Note that your mileage will definitely vary because there are way too many variables. Oh well, on to the next task.