Skip to content

Instantly share code, notes, and snippets.

View kaivalyar's full-sized avatar

Kai kaivalyar

View GitHub Profile
@kaivalyar
kaivalyar / pseudocode-exploration.txt
Last active March 16, 2017 07:06
Checking aima-pseudocode for 4th edition
... AimaCode/aima-pseudocode $ # I ran the following command from the aima-pseudocode directory:
... AimaCode/aima-pseudocode $ cat md/*.md | grep -i aima4
... AimaCode/aima-pseudocode $
... AimaCode/aima-pseudocode $ # the output was blank - the word aima4 has not been used anywhere
... AimaCode/aima-pseudocode $
... AimaCode/aima-pseudocode $ # i then checked for aima3:
... AimaCode/aima-pseudocode $ cat md/*.md | grep -i aima3
## AIMA3e
## AIMA3e
.
@kaivalyar
kaivalyar / question.c
Created March 13, 2017 19:50
Simulation to explain answer to pointers question
#include <stdio.h>
int main () {
int c[3] = {4, 5, 6}; // an array is basically a pointer to the first element
void *d = c; // cast int* to void*
d += 1; // increment the void pointer
printf("%08x\n", *((int *)d));
}
Project Title Student Display Name Organization Name Mentors
Key mapping GUI Tomasito665 Mixxx DJ Software RJ Ryan, Ferran Pujol Camins
YAPDNS system64 The Honeynet Project Pietro Delsante, Fedele Mantuano, Andrea De Pasquale
FFv1 P frame support sdolganov FFmpeg Reynaldo Verdejo, michaelni
coala: Integrating coala with the Eclipse IDE Sheikh Araf Python Software Foundation Harsh Dattani, Lasse Schuirmann (sils1297), AbdealiJKothari
User interfaces for Tracker Dilushi Sustainable Computing Research Group ( SCoRe ) Dinith Minura, Namal Jayasuriya, Rumesh
File Support izgzhen Mozilla Manishearth
KolibriOS. Development of TLS/SSL library DenisKarpenko KolibriOS Jeffrey A., Pathoswithin
IPFS friendly & distributed version of Amber skbly7 Berkman Center for Internet and Society Genève
Cache layer for jpf-nhandler Jayton Java Pathfinder Team franck, Nastaran, Cyrille Artho
import csv
import cStringIO
import codecs
import glob
import json
import requests
def fetch_jsons():
url = ('https://summerofcode.withgoogle.com/api/program/current/project/'