Memo for myself someday.
http://www.typescriptlang.org/Tutorial/
- Thinkpad X201s
- Ubuntu 12.04.1 LTS
| # Practicing call to DPLA and getting data from it, then displaying results via html | |
| import webbrowser | |
| from operator import itemgetter | |
| import requests | |
| f=open('result.html', 'w') | |
| # Make an api call and store the response. | |
| url = "https://api.dp.la/v2/items?q=penguins&api_key=aefc7b2874411888e4e06b515935c19c" |
| import os | |
| import json | |
| import tarfile | |
| import urllib.request | |
| import easygui | |
| import configparser | |
| user_docsets_url = 'https://dashes-to-dashes.herokuapp.com/docsets/contrib' | |
| app_title = 'Download Zeal user docsets' |
| // Bonfire: Exact Change | |
| // Author: @p1xt | |
| // Challenge: http://www.freecodecamp.com/challenges/bonfire-exact-change | |
| // Learn to Code at Free Code Camp (www.freecodecamp.com) | |
| function drawer(price, cash, cid) { | |
| var change = []; | |
| var types = ['PENNY', | |
| 'NICKEL', | |
| 'DIME', |
Memo for myself someday.
http://www.typescriptlang.org/Tutorial/