Protein Production
293FT, 293E, CHO

Truly Functional Protein
95% Purity
1-10 mg in 2 weeks

GeneExpressoMax™
293Expresso™

Transfection Reagents
* 90% Efficiency
* 95% Viability
* No sera interference
* Simple protocol
* High-throughput
* Only $98/ml

Baculovirus
Functional Protein
95% Purity
Fast turnaround
1-10 mg from Sf9 cells

Adenovirus, AAV
& Lentivirus

ORF or shRNA
* High Titer
* Cre, FLP, ΦC31
* Protein Kinases
* Transcription Factors
* Luciferases, GFP, RFP
* Protein Production
* Stable Cell Line


Excellgen

Archive for August, 2007

A better way to make very short URL for MediaWiki

There are many articles on various web sites talking about shortening URL for mediawiki, but most of time, it does not work if you follow their instruction. Hours have passed by and you got so frustrated: we just need something simple and work. Afer hours of trials, I got the following to work:

1, In your http.conf file, under virtual host section add the following:

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^(.+)$ /index.php?title=$1 [L,QSA]

2, In your LocalSettings.php file change

$wgArticlePath = "$wgScript?title=$1";

to

$wgArticlePath = "/$1";

So it will be:

$wgScriptPath = "";
$wgScript = "$wgScriptPath/index.php";
$wgArticlePath = "/$1";

3, Restart apache:

apachectl restart

Tags:

Comments

August 26, 2007 at 7:01 am ·

A better way to make very short URL for MediaWiki

There are many articles on various web sites talking about shortening URL for mediawiki, but most of time, it does not work if you follow their instruction. Hours have passed by and you got so frustrated: we just need something simple and work. Afer hours of trials, I got the following to work:

1, In your http.conf file, under virtual host section add the following:

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^(.+)$ /index.php?title=$1 [L,QSA]

2, In your LocalSettings.php file change

$wgArticlePath = "$wgScript?title=$1";

to

$wgArticlePath = "/$1";

So it will be:

$wgScriptPath = "";
$wgScript = "$wgScriptPath/index.php";
$wgArticlePath = "/$1";

3, Restart apache:

apachectl restart

Tags:

Comments

August 26, 2007 at 6:05 am ·