This is a nice article on employing CSS to make text looking buttons.
Tuesday, December 22, 2009
Saturday, December 19, 2009
Capturing Music Streams
Is there a way that I can save down the music I'm listening too from an Internet stream?
If you use WinAmp, you can use a tool called Streamripper that will save the music down even when you're not listening.
I do this when I know I'm going to be traveling. I'll start this up the night before and stream some music to disk and transfer it to my iPod.
Once I've listened to the stream, I usually just delete the music to make room for more, random music.
Enjoy.
Posted by
Curtis Keisler
at
8:39 AM
0
comments
Links to this post
Labels: Utilities
Friday, December 18, 2009
Force IE8 to IE7 Compatibility Mode
Is there a way that I can force IE8 users to enter IE7 compatibility mode when they hit my website so that I don’t have to change my working IE7 site?
Yes. There is. Details are on this Microsoft blog.
Essentially, there are two ways to implement this:
- On a per-site basis, add a custom HTTP header
X-UA-Compatible: IE=EmulateIE7
- On a per-page basis, add a special HTML tag to each document, right after the <head> tag
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
I hope that works for you. I understand from some that even with this setting, you might have to tweak a few things.
Enjoy!
Posted by
Curtis Keisler
at
10:32 AM
0
comments
Links to this post
Wednesday, December 16, 2009
Cute Icons / Glyphs
Where can I find some cute icons that I can quickly use on my website free of charge?
Here you go . . . FAMFAMFAM.
Enjoy.
Posted by
Curtis Keisler
at
7:54 AM
0
comments
Links to this post
Labels: Design
Thursday, December 10, 2009
Can’t Access Database After a Restore
I can’t access my SQL Server database after a restore from a SQL Server authentication account.
This happens when you restore a database from a different server. You need to update the database with the appropriate keys for the users on your server; they are still the ids from the old server.
In the database, you can execute this
EXEC sp_change_users_login 'Auto_Fix', 'UserNameHere'
Posted by
Curtis Keisler
at
10:31 AM
0
comments
Links to this post
Labels: SQL
Wednesday, December 9, 2009
DW20.exe is Using 100% CPU
A process named DW20.exe is using 100% of my CPU on my web server and I can’t figure out what is causing it?
This is Microsoft’s error reporting tool (Dr. Watson). If you need to fix the problem immediately, feel free to kill the process when it appears. Your web server will start functioning fine after the process is dead.
In the long run, you can turn it off by following the instructions found here and just turning it off instead of on. By default, it is turned on.
Posted by
Curtis Keisler
at
11:48 AM
0
comments
Links to this post
Labels: Fix, Tips and Tricks
Thursday, December 3, 2009
Quick UML Sequence Diagrams
I wish I had a quick, easy way to create UML sequence diagrams.
This web site
http://www.websequencediagrams.com/
is great generating quick sequence diagrams for documentation or brainstorming.
Posted by
Curtis Keisler
at
9:21 AM
0
comments
Links to this post
