Skip to content

Instantly share code, notes, and snippets.

View jbeluch's full-sized avatar

Jonathan Beluch jbeluch

View GitHub Profile
666727 5016db92c4aadeeae0d757aa666696 5016db95e4b0ceedd31751a3666694 5016db99c4aabafa0104b6cc666691 5016db9ce4b0638a81be401e666686 5016dba0e4b03d2929a1ad4f666640 5016dba384ae3ecc9e01a280666573 5016dba7e4b0638a81be4034666526 5016dbaac4aadeeae0d75922666329 5016dbad84ae3ecc9e01a3eb666263 5016dbb1c4aabafa0104b7c5666235 5016dbb5e4b0638a81be4055666165 5016dbb884ae3ecc9e01a401666124 5016dbbcc4aadeeae0d75949666060 5016dbbfc4aadeeae0d7594d665903 5016dbc2c4aabafa0104b84f665839 5016dbc6e4b03d2929a1ad73665825 5016dbc984ae3ecc9e01a455665803 5016dbcde4b03d2929a1ad77665775 5016dbd084ae3ecc9e01a5a1665742 5016dbd484ae3ecc9e01a5a4665710 5016dbd7c4aadeeae0d75978665434 5016dbdbc4aabafa0104b86a665428 5016dbdec4aadeeae0d7598e665354 5016dbe2c4aadeeae0d75992665336 5016dbe5e4b0638a81be4086664910 5016dbe984ae3ecc9e01a5d6664874 5016dbed84ae3ecc9e01a5d9664754 5016dbf0e4b0638a81be409c664662 5016dbf3e4b0ceedd3175320664594 5016dbf7e4b0ceedd3175326664582 5016dbfae4b0638a81be40b1664554 5016dbfee4b0ceedd3175329664254 5016dc01e4b0638a81be40be6
#!/usr/bin/env python
from xbmcswift import Plugin, download_page
from BeautifulSoup import BeautifulSoup as BS, SoupStrainer as SS
from urlparse import urljoin
from resources.lib.getflashvideo import YouTube
import re
__plugin_name__ = 'Academic Earth'
__plugin_id__ = 'plugin.video.academicearth'
# Copyright 2011 Jonathan Beluch.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
#!/usr/bin/env python
from xbmcswift import Plugin, download_page
from BeautifulSoup import BeautifulSoup as BS, SoupStrainer as SS
from urlparse import urljoin
import re
__plugin_name__ = 'Academic Earth'
__plugin_id__ = 'plugin.video.academicearth'
plugin = Plugin(__plugin_name__, __plugin_id__)
#!/usr/bin/env python
from xbmcswift import Plugin, download_page
from BeautifulSoup import BeautifulSoup as BS, SoupStrainer as SS
from urlparse import urljoin
import re
__plugin_name__ = 'Academic Earth'
__plugin_id__ = 'plugin.video.academicearth'
plugin = Plugin(__plugin_name__, __plugin_id__)
#!/usr/bin/env python
from xbmcswift import Plugin, download_page
from BeautifulSoup import BeautifulSoup as BS, SoupStrainer as SS
from urlparse import urljoin
from resources.lib.getflashvideo import YouTube
import re
__plugin_name__ = 'Academic Earth'
__plugin_id__ = 'plugin.video.academicearth'
#!/usr/bin/env python
from xbmcswift import Plugin, download_page
from BeautifulSoup import BeautifulSoup as BS, SoupStrainer as SS
from urlparse import urljoin
import re
__plugin_name__ = 'Academic Earth'
__plugin_id__ = 'plugin.video.academicearth'
plugin = Plugin(__plugin_name__, __plugin_id__)
#!/usr/bin/env python
from xbmcswift import Plugin, download_page
from BeautifulSoup import BeautifulSoup as BS, SoupStrainer as SS
from urlparse import urljoin
import re
__plugin_name__ = 'Academic Earth'
__plugin_id__ = 'plugin.video.academicearth'
plugin = Plugin(__plugin_name__, __plugin_id__)
import XMonad
import XMonad.Hooks.FadeInactive
import XMonad.Config.Gnome
import XMonad.Hooks.ManageDocks
import qualified Data.Map as M
import XMonad.Util.EZConfig(additionalKeys)
import qualified XMonad.StackSet as W
import XMonad.Hooks.ManageHelpers
import XMonad.Layout.NoBorders
@jbeluch
jbeluch / getfacebookidsfromemail.py
Created June 29, 2011 03:03
Get facebook ids for a list of email addresses.
#!/usr/bin/env python
'''A simple script for finding facebook profile ids for a given list of email
addresses.
Requires eventlet to be installed.
$ pip install eventlet
Also, currently requires a list of contacts exported from Google contacts.
Choose the outlook format and name the file 'contacts.csv' in this dir.'''