Skip to content

Instantly share code, notes, and snippets.

View emre's full-sized avatar
🎯
Focusing

Emre Yılmaz emre

🎯
Focusing
View GitHub Profile
@emre
emre / sakirt.py
Created June 1, 2011 21:56 — forked from mengu/sakirt.py
Sakirt
from cemaat import Sakirt
from random import randint
sakirt = Sakirt()
sakirt.meslek = "yazilimci" if randint(1,10) % 2 == 0 else "sistemci"
sakirt.save()
@emre
emre / proxy.php
Created August 16, 2010 12:32 — forked from hmert/proxy.php
just experimantal
<?php
class ProxyRouterException extends Exception {}
class ProxyRouter {
public $url;
public function __construct($url) {
$this->url = $this->_control_url($url);