Illustrated Pearl Jam Posters

posted by on 2010.08.20, under visuals
20:

Maxx242

Jeff Soto

Artillary Design

Use your macbook trackpad as a multitouch device on Max 5

posted by on 2010.08.13, under Max/Msp/Jitter, Physical Computing, Sound
13:

I was looking for somekind of framework or script in order to use trackpad as multitouch device. At first I found TongSeng from TUIO. After a little googling, I came across with an external called Fingerpinger which was written for Max Msp Jitter. It’s free and opensource. You can download it from here. And it’s very easy to work with it.

Convert First Letter in String to Uppercase With AS3

posted by on 2010.08.10, under Action Script
10:
var Title : String = "bLoG";
Title = CapitalizeFirstLetter(Title);
//Ouput: Blog

function CapitalizeFirstLetter(Str:String):String
{
	var converted:String = (Str.substr(0,1).toUpperCase() + (Str.substr(1,Str.length)).toLowerCase());		

        return converted;
}

Redirecting domains to www with .htaccess file

posted by on 2010.08.02, under Solution Center
02:

If you have Linux server on your web site, you can easily redirect your “domain.com” to “www.domain.com” with .htaccess file. Every Linux based servers have .htaccess file. However, because of the “.”, it’s a hidden file. So, you can’t view unless you set your ftp client’s “view” property to “show invisible files”. You can turn on “show invisible files” with most of the ftp clients such as FileZilla, Transmit and etc…Even if you enable “show invisble files”, can’t you see the file? So there is an easy way. Just create by yourself in one of the text edit software such as Textedit or Notpad.

1- Open a blank document file with Notepad or Text Edit.

2-

Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^domain.com [nc]
rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc]

**change domain.com and www.domain.com with your domain name.

3- Save the file as .htaccess without any extension.

4- Upload the file to your server with your ftp client

that’s all. Now check your browser and it’ll work. If you type onto your browser “http://domain.com”, it will be redirected to “http://www.domain.com”

pagetop


Get Adobe Flash playerPlugin by wpburn.com wordpress themes