This file contains 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
- Mail Server Installation | |
Postfix, SASL, Dovecot | |
http://vpsshell.co.uk/index.php/centosrhel-mail-server-postfix-dovecot-with-smtp-auth-tlsssl/ | |
OpenDKIM | |
http://www.howtoforge.com/set-up-dkim-domainkeys-identified-mail-working-with-postfix-on-centos-using-opendkim | |
SPF | |
http://kb.mediatemple.net/questions/658/How+can+I+create+an+SPF+record+for+my+domain%3F#gs |
This file contains 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
#!/usr/bin/env python | |
# usage: python sonklot.py <url> | |
# example: python sonklot.py https://soundcloud.com/ardosebastian/how-deep-is-your-love-cover-by | |
import urllib | |
import sys | |
import json | |
import os | |
def report(count, blockSize, totalSize): |
This file contains 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
#!/usr/bin/env python | |
import argparse | |
import sys | |
import socket | |
import fcntl | |
import struct | |
import time | |
import multiprocessing | |
import urllib2 |
This file contains 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
#!/usr/bin/python | |
# Captcha breaker for ziddu | |
# Need tesseract-ocr installed | |
# Need PIL and pytesser module installed | |
# usage: | |
# $ python ziddu.py ziddu.jpeg | |
# Tesseract Open Source OCR Engine v3.02.02 with Leptonica | |
# captcha: pswx5 |
This file contains 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
package main | |
import ( | |
"fmt" | |
"log" | |
"io/ioutil" | |
"net/http" | |
"encoding/xml" | |
"sync" | |
"encoding/json" |
This file contains 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
package main | |
import ( | |
"github.com/ChimeraCoder/anaconda" | |
"fmt" | |
"log" | |
"net/url" | |
"strings" | |
"sort" | |
"regexp" |
This file contains 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
#!/usr/bin/env python | |
import urllib | |
import urllib2 | |
import json | |
import oauth2 as oauth | |
class Lebaran: | |
def __init__(self): | |
# twitter access key |
This file contains 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
package main | |
import ( | |
"fmt" | |
"log" | |
"io/ioutil" | |
"net/http" | |
"encoding/json" | |
"regexp" | |
"strings" |
This file contains 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
#!/usr/bin/env python | |
# only need a few minutes if I calm down | |
# aaarrrgggh | |
string = raw_input() + " " | |
texts = list(string) | |
final_texts = "" | |
x = 0 | |
for num in xrange(len(texts)-1): | |
if texts[num] != texts[num+1]: |
This file contains 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
// Scraping implementation using channels | |
// go run scrap.go | |
package main | |
import ( | |
"fmt" | |
"io/ioutil" | |
"net/http" | |
"os" | |
"sync" |
OlderNewer