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 December, 2009

Search files containing a particular text string (keywords) in Linux (Ubuntu)

Search for "Ski resort" in a directory and sub-directory

$ grep -H -r "Ski resort" /home/innovita


Search
"Ski resort" in a current directory and sub-directory


$ grep -H -r "Ski resort" .

Tags:

Comments

December 30, 2009 at 12:19 pm ·

Where to Find Magento Email Template files, How to edit Email Templates

All template files are located in

app/locale/en_US/template/email.

1, Upload a new logo to

images/logo_email.gif

2, Change any file with *new.html

alt=”Magento” –> alt=”InnoVita”

3, Change any file with confirmation.html

 Demo Store –>  InnoVita

4, Change email and phone number

 dummyemail@magentocommerce.com –>me@my.com
magento@varien.com –>me@my.com
(555) 555-0123

5, To make sure you have changed everything
 

cd  /home/xxx/webapps/app/locale/en_US/template/email
cat *.html |grep Demo
cat *.html |grep 555
cat *.html |grep magento

cd sales
cat *.html |grep Demo
cat *.html |grep 555
cat *.html |grep magento

Tags:

Comments

December 29, 2009 at 11:25 pm ·

How to Generate Self-signed SSL Certificate from GoDaddy for your web server

1, Login to your server and issue these commands:

openssl genrsa -des3 -out innovita.key 2048
openssl req -new -key innovita.key -out innovita.csr

2, Upload csr file to GOoDaddy website to generate certificate files. Download the zip file to your server and unzip it.

3, use this command to remove password so apache will start automatically without asking for password.

openssl rsa -in innovita.key -out innovita.key.insecure
innovita.key innovita.key_w_password
cp innovita.key.insecure innovita.key

4, Configure ssl.conf file, add these lines:

SSLCertificateFile /home/innovita/ssl/innovitainc.com.crt
SSLCertificateKeyFile /home/innovita/ssl/innovita.key
SSLCertificateChainFile /home/innovita/ssl/gd_bundle.crt

5, Restart Apache

Apachectl restart

Tags:

Comments

December 28, 2009 at 11:40 am ·