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
| <!doctype html> | |
| <html> | |
| <head> | |
| <title>Colorfytnis</title> | |
| <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,600,700' rel='stylesheet' type='text/css'> | |
| <style type="text/css"> | |
| body{ | |
| min-width: 300px; | |
| min-height: 100px; | |
| overflow-x: hidden; |
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
| { | |
| "manifest_version": 2, | |
| "name": "Pictalicious", | |
| "description": "Get the perfect pallete right from this webpage picture. Pictaculous knows what colors to use with an image.", | |
| "version": "1.0", | |
| "permissions": [ | |
| "<all_urls>" | |
| ], |
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 sys | |
| import urllib | |
| import re | |
| import random | |
| from lxml import etree | |
| class Downloader(): | |
| ''' | |
| Class to retreive HTML code | |
| and binary files from a |
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 smtplib | |
| from subprocess import call | |
| from getpass import getpass | |
| from email.header import Header | |
| from email.mime.text import MIMEText | |
| # global variables | |
| script_names = ["C", "C++", "Java", "Python", "Ruby"] | |
| paths = ["c/", "cpp/", "java/", "python/", "ruby/"] |
NewerOlder