Creating Tiles in Photoshop

Creating nice-looking tiles in Photoshop is the easiest thing in the world.

Tiles: Overlay

Continue reading "Creating Tiles in Photoshop"

Amadeus ExpressionEngine Theme

Amadeus Screenshot

I was bored yesterday. ;-)

Download Amadeus ExpressionEngine theme

Free Template: Amadeus

Amadeus Screenshot

The template validates XHTML 1.0 Strict and CSS 2.0 Strict. Very, very simple; so simple, in fact, it didn't even require a separate stylesheet for IE 6. But who said simple had to be ugly?

Anyhow: here's the linkie to the template

Deleting Items From the System Preferences Pane

I noticed that my preferences pane was getting cluttered with applications; some of these applications, mind you, have been uninstalled far back. So I did some sleuthing today to try to figure out how to get rid of them. It turned out to be super-simple: control+clicking on the application icon gives you the option of removing it from the preferences pane. Doh!

How to get all users and computers in a domain via C#

I was playing around with Active Directory and C# today. I don't pretend to understand anything yet, but you don't need to know anything about Active Directory or LDAP to do stuff against it with C#.

To start with, the classes we're interested in are found in the following namespaces:

System.DirectoryServices;
System.DirectoryServices.ActiveDirectory;

Continue reading "How to get all users and computers in a domain via C#"

How to send e-mail as someone else from Gmail

Suppose you set up your email account (person@domain.com) so that all its e-mails get forwarded to your Gmail account. It's really easy to get Gmail to send a reply to any e-mail you received to this account as that account.

That is: the "From" field for any reply will be "person@domain.com" instead of "person@gmail.com."

Continue reading "How to send e-mail as someone else from Gmail"

TextInfo: ToTitleCase, ToLower, ToUpper

ToTitleCase(), ToLower(), ToUpper() results

I was poking around the .NET framework yesterday and came across these three methods in the TextInfo class:

string text = "this is a test string";

System.Globalization.TextInfo info = new System.Globalization.CultureInfo("en-US", false).TextInfo;

// First letter of every word is capitalized.
System.Console.WriteLine(info.ToTitleCase(text));

// Lowercase all letters
// System.Console.WriteLine(info.ToLower(text));

// Uppercase all letters
// System.Console.WriteLine(info.ToUpper(text));

info = new System.Globalization.CultureInfo("de-DE", false).TextInfo;

System.Console.ReadLine();

Nice. :-)

Natheless ExpressionEngine Theme

Download Natheless here

Released under Creative Commons as usual.

Enjoy!

2 of 17 pages  <  1 2 3 4 >  Last »

On the Side