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 urllib2 | |
| fname = 'paper_icons.html' | |
| handle = open(fname, 'r') | |
| images = list() | |
| count = 0 | |
| for line in handle: | |
| line = line.rstrip() | |
| tags = line.split() |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| __author__ = 'muribe' | |
| """ | |
| Little utility that I cooked up to convert numbers between binary, hex, and decimal. | |
| If a MAC address in the following format is entered: | |
| 00-11-8a-2d-ff-ff | |
| It returns the following binary: |
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
| # Silly little program to calculate my grades in Coursera's | |
| # Programming for Everybody (Python) | |
| __author__ = 'clamytoe' | |
| from bs4 import BeautifulSoup | |
| # global variable to hold all of the grades | |
| class_grades = dict() | |
| def parse_quiz(): |
NewerOlder