Skip to content

Instantly share code, notes, and snippets.

View Rambhooshan's full-sized avatar

Rambhooshan Tiwari Rambhooshan

  • Bengaluru
View GitHub Profile
@tsiege
tsiege / The Technical Interview Cheat Sheet.md
Last active April 20, 2024 16:52
This is my technical interview cheat sheet. Feel free to fork it or do whatever you want with it. PLEASE let me know if there are any errors or if anything crucial is missing. I will add more links soon.

ANNOUNCEMENT

I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!






\

@joelewis
joelewis / tancet.py
Created May 23, 2013 18:39
A python script to launch a series of requests to tancet result servers, to fetch me my register number which I lost. It's gonna try all possible combinations of numbers matching my DOB, and writes to matches.txt if a match is found. Warning: This might be a form of brute force attack, combined with DOS attack, except that annauniv.edu is not de…
import urllib
import urllib2
import bs4
startreg = 11161667
endreg = 11170000
for i in range(startreg, endreg):
istr = str(i)
soup = bs4.BeautifulSoup(urllib2.urlopen(urllib2.Request('http://www.annauniv.edu/cgi-bin/786786786/cet1.pl',urllib.urlencode ({'regno' : i, 'dob' : '14-09-1991' }))).read())