The UI could definitely be improved.
This file contains hidden or 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
Physics | |
HC Verma Concept of Physics Part 1. | |
HC Verma Concept of Physics Part 2. | |
IIT JEE Physics by D.C. Pandey. | |
Problems in General Physics by I.E. Irodov. | |
Physics for IIT JEE by Resnick, Halliday, Walker. | |
Problems in Physics by S.S. Krotov. | |
Chemistry |
This file contains hidden or 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
import lxml.etree | |
import lxml.html | |
def beautify(html): | |
parser = lxml.etree.HTMLParser( | |
strip_cdata=True, | |
remove_blank_text=True | |
) |
This file contains hidden or 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
import csv | |
import cStringIO | |
import codecs | |
import glob | |
import json | |
import requests | |
def fetch_jsons(): | |
url = ('https://summerofcode.withgoogle.com/api/program/current/project/' |
This file contains hidden or 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
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 |
This file contains hidden or 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
[6:48 pm] <Guest25582> http://oortr.com/YmU5NT | |
[6:48 pm] <valorie> rather than pasting a random link, why not say what it is, Guest25582? | |
[6:48 pm] <Guest25582> Allah is doing | |
[6:48 pm] <Guest25582> sun is not doing Allah is doing | |
[6:48 pm] <Guest25582> moon is not doing Allah is doing | |
[6:48 pm] <meflin> this channel is about GSOC | |
[6:48 pm] <Guest25582> stars are not doing Allah is doing | |
[6:48 pm] <valorie> please stay on topic or leave, Guest25582 | |
[6:48 pm] <Guest25582> planets are not doing Allah is doing | |
[6:48 pm] <valorie> pfff |
This file contains hidden or 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
""" | |
Socket Relay | |
Takes in data from one end, and sends out to another. | |
""" | |
import socket | |
host = '0.0.0.0' |