SEO Inc – Search Engine Optimization Company
Dclick Ads – Another Quick Start Up Advertising Site
The Lazy Developer’s Way to Rounded Corners in CSS – Rounded Corner Generators
The Secret of Cancelling and Stopping Events using JavaScript
Introduction
Back when I was doing my internship we had a major problem we were trying to solve. The project involved creating a web based terminal emulator using AJAX. Well, it was a little bit more specific than that. It was basically duplicating a specific application in the browser window.
Problem
Sounds all well and good except that this application made heavy use of F Keys, e.g. (F10, F5, F1, etc). Needless to say this would not really be viable in a browser since F1 would call up help, F5 would refresh and F10 would send the cursor to the menu. We had already written a nice enough key handler that worked rather well, with the exception of these F Keys.
JavaScript Solution
After a lot of hacking around I found a way to stop the browser from calling up and propagating those events. My code was, for lack of a better word, nasty; but it did work. It involved a lot of IE/Mozilla workarounds. I recently came across some cleaner code, so here you go:
Google Picasa Typo
Finally Graduating – I’m Done
The day has finally come. Well, it’s tomorrow, but you know what I mean. I am done, done, done, done, done! Words cannot express the joy and elation I feel right now. Throughout the semester I knew this day was coming. I mean, how could I not graduate. But there were just things that made it rather difficult to be happy about. Every time I mention graduation to someone we have the same conversation:
- Person: So you’re graduating in December?
- Me: Yep.
- Person: So you must be really excited, huh?
- Me: I guess so.
- Person: So what are you going to do afterwards?
- Me (Thinking): How the hell should I know? Do you have a rich uncle that owns a company and is willing to give me a job? Because I sure haven’t been successful on the millions of interviews I’ve gone to. Shoot, I guess I’m going to end up working in the mall selling women’s shoes or something.
- Me (Actual response): I’m not sure. I guess try to find a job.
JavaScript Reflection – Wet Floor Effect
LightBox, LightBox2 and LightBox Plus
Yes, I know I’m a bit late with this, but I still had to give you the run down.
Originally created by Lokesh Dhakar
Lightbox JS is a simple, unobtrusive script used to overlay images on the current page. It’s a snap to setup and works on all modern browsers.
Have you ever gone to a website and seen this nice lil' thing they do when you click on a thumbnail and it pops up a larger image in the same browser window? That’s LightBox. I’ve seen it before and I haven’t given it a lot of thought. I just naturally assumed that it would take too much time to implement, so I left it alone. Oh was I wrong.