Skip to content

Instantly share code, notes, and snippets.

View mallyvai's full-sized avatar
🐕
Reading this? Tweet me a dog photo

Vaibhav Mallya mallyvai

🐕
Reading this? Tweet me a dog photo
View GitHub Profile
@mallyvai
mallyvai / listbm.py
Created November 27, 2010 07:20 — forked from gps/listbm.py
#!/usr/bin/env python
"""
listbm.py
Created by Gopal Sharma on 2010-11-26.
Copyright (c) 2010 Gopal Sharma and Vaibhav Mallya. All rights reserved to this version, and all previous versions, of this file.
"""
import random
import time
@mallyvai
mallyvai / py_list_notes.txt
Created November 27, 2010 07:04
Python List implementation and notable functions
"""
py_list_notes.txt
Created by Vaibhav Mallya on 2010-11-26.
Copyright (c) 2010 Vaibhav Mallya. All rights reserved, to this version, and all previous versions, of this file.
"""
http://svn.python.org/projects/python/trunk/Objects/listobject.c
Function: static PyObject * list_slice(PyListObject *a, Py_ssize_t ilow, Py_ssize_t ihigh)
latex paper.tex
bibtex paper
latex paper.tex
latex paper.tex
function XHConn()
{
var xmlhttp, bComplete = false;
try { xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); }
catch (e) { try { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); }
catch (e) { try { xmlhttp = new XMLHttpRequest(); }
catch (e) { xmlhttp = false; }}}
if (!xmlhttp) return null;
this.connect = function(sURL, sMethod, sVars, fnDone)
{