This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
VteObject.py:172 | |
""" | |
self.vte.set_colors( | |
Gdk.color_parse(ConfigManager.get_conf('color-text')), | |
Gdk.color_parse(ConfigManager.get_conf('color-background')), | |
[]) | |
""" | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:80> | |
ServerAdmin webmaster@localhost | |
DocumentRoot /var/www/public | |
<Directory /> | |
Options FollowSymLinks | |
AllowOverride All | |
</Directory> | |
<Directory /var/www/public> | |
Options Indexes FollowSymLinks MultiViews |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from mechanize import Browser | |
url = "http://xss.progphp.com/" | |
forms = [] | |
br = Browser() | |
br.set_handle_robots(False) | |
br.addheaders = [('User-agent', 'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.1) Gecko/2008071615 Fedora/3.0.1-1.fc9 Firefox/3.0.1')] | |
page = br.open(url) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[buildout] | |
parts = | |
django | |
extensions = mr.developer | |
auto-checkout = * | |
versions = versions | |
eggs = | |
ipcalc | |
django-mongodb-engine | |
tailer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
gender = ['Erkek','Kadin'] | |
age = random.randint(16,30) | |
ayakkabi = random.randint(35,45) | |
sac = ['Kahve','Kumral','Siyah','Kizil','Sari'] | |
kilo = random.randint(60,85) | |
film = ['Aksiyon','Dram','Macera','Korku','Gerilim','Ask'] | |
muzik = ['Rock','Metal','Arabesk','Pop','R&B','Rap'] | |
hobi = ['Spor yapmak','Kitap okumak','Hikaye yazmak','Aileme vakit ayirmak','Bilgisayar oyunlari','Televizyon izlemek','Fotografcilik'] | |
print "Cinsiyet: ",gender[random.randint(0,1)] |
NewerOlder