Archive for November, 2007

Shorter nested IF statements in Excel

Tuesday, November 27th, 2007 Posted in Programming, Tricks | No Comments »

This code checks to see if A1 equals the letters K, H or L. Instead of using: [code lang="html"]=IF(A1="K",TRUE,IF(A1="H",TRUE,IF(A1="L",TRUE,FALSE)))[/code] You can use: [code lang="html"]=IF(OR(A1="K",A1="H",A1="L"),TRUE,FALSE)[/code] As you can see, it's a lot shorter and makes a lot more sense. Especially if you need to add more ...

Easy stylesheets with basic PHP

Wednesday, November 14th, 2007 Posted in Programming, Tricks | No Comments »

Create a file called stylesheet.php and link to it in you're page. Then play with this code: [code lang="php"] BODY { background: ; color: #000000; margin: 0px; } [/code]

Find cool things to listen to with Last.fm

Tuesday, November 13th, 2007 Posted in Tips | No Comments »

www.last.fm - has a player that plays random music based on what you search for, and shows lots of info about who's playing so you can go find more music by them.