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 May, 2006

How to block an abusive bot such as ShopWiki using iptables firewall

You can use the following shell script to block an abusive bot, such as ShopWiki,

#!/bin/sh
#/sbin/route add -host $1 reject
iptables -I INPUT -s $1 -j DROP
iptables -L -n

save this script as block_ip.sh

to block bad IP, execute the shell script:

block_ip.sh 64.92.164.138

This will block the bad guy from 64.92.164.138.

Tags:

Comments (1)

May 9, 2006 at 9:55 pm ·