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 October, 2008

How to edit mediawiki navigation sidebar

Append /MediaWiki:Sidebar to your web site’s URL, e.g.,

http://www.innovitacorp.com/MediaWiki:Sidebar

then click edit tab.

Tags:

Comments

October 27, 2008 at 11:55 am ·

How to install TrixBox CE v2.4 and up

1, Download it from https://www.trixbox.com.
2, Burn a CD from iso image
3, Install Trixbox on an old PC
4, Login to the server using username/password: root/mysecret
5, Change DHCP to Static IP address:

system-config-network.

Name: eth0
Device: eth0
Static IP: 192.168.1.10
Netmask: 255.255.255.0
Default gateway IP: 192.168.1.1

6, add DNS nameservers:

cd /etc/sysconfig/networking/profiles/default
vi resolv.conf

add the following lines:

nameserver 192.168.1.1
nameserver 71.252.0.12

7, restart network and do a ping test

service network restart
ping www.labsupplymall.com

8, configure trixbox: http://192.168.1.10, username: maint, password: password.

Tags:

Comments

October 26, 2008 at 10:33 pm ·

How to Reset or Crack Windows Password

Tools you can try:

1, ophcrack:
2, Trinity Rescue Kit

Tags:

Comments

October 25, 2008 at 7:30 pm ·

Quick and Easy Way to Backup Linux Directories to Another Server

If you want to backup all directories under /home directory on server A to another server (server B), use the following script for automated batch backup:


#!/bin/bash

cd /home
for dir in $( ls )
do
if [ -d "$dir" ]; then
#echo $dir
tar czvf /disk2/$dir.tar.gz $dir
scp -P 22 /disk2/$dir.tar.gz backup@serverB.com:/backup
rm -rf /disk2/$dir.tar.gz
fi
done

You need to have a /disk2 directory for temporary tar.gz files.

You should create a public-private key pairs on server A and copy public key to server B, so you don’t need to enter password for automated backup (cron job).

Tags:

Comments

October 22, 2008 at 8:36 pm ·

Disable WordPress Post Revisions Tracking

Find wp-config.php file in your blog root directory, and add this line:

define(’WP_POST_REVISIONS’, false);

Tags:

Comments

October 21, 2008 at 7:47 pm ·

Next Page » Next Page » Next »