- This is Not a Science Book: A Smart Art Activity Book
- This is Not a Maths Book: A Smart Art Activity Book
- This Book Thinks You're a Scientist
- Professor Astro Cat's Atomic Adventure
- Professor Astro Cat'S Frontiers of Space
- Do Nice, Be Kind, Spread Happy: Acts of Kindness for Kids
- Curiositree: Natural World: A Visual Compendium of Wonders from Nature
- Mad about monkeys
- Smart about sharks
- Animalium: Welcome to the Museum
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
source "https://rubygems.org" | |
gem "httparty" | |
gem "geocoder" | |
gem "slack-poster" |
Taught by Brad Knox at the MIT Media Lab in 2014. Course website. Lecture and visiting speaker notes.
- Power to the People: The Role of Humans in Interactive Machine Learning by Knox, Cakmak, Kulesza, Amershi, and Lau
- A Few Useful Things to Know about Machine Learning by Domingos
- Machine Learning that Matters by Wagstaff
- Beyond Concise and Colorful: Learning Intelligible Rules by Pazzani et al.
- [Designing Games with a Purpose] (https://www.cs.cmu.edu/~biglou/GWAP_CACM.pdf) by von Ahn and Dabbish
- [Human Model Evaluation in Interactive Supervised
No soy un experto crítico gastronómico pero estos sitios me gustan:
- Gugelhof (Alsaciano) https://foursquare.com/v/gugelhof/4adcda74f964a5207f4521e3
- Max & Moritz https://foursquare.com/v/wirtshaus-max-und-moritz/4af30e0ff964a52028ea21e3
- Imbiss 204 https://foursquare.com/v/imbiss-204/4be4465a2468c928ba85fe42
- Der Butt (Pescado, está en Potsdam) https://foursquare.com/v/der-butt/4e1705b6c65be9c55e8a79f1
- Schwarzwaldstuben https://foursquare.com/v/schwarzwaldstuben/4adcda72f964a5204b4521e3
- Die Henne https://foursquare.com/v/die-henne/4adcda77f964a520254621e3
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
#!/bin/bash | |
# | |
# This version uses September 2017 august stretch image, please use this image | |
# | |
if [ "$EUID" -ne 0 ] | |
then echo "Must be root" | |
exit | |
fi |
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
#Adapted from https://gist.github.com/cantino/d1a63045fbfe5fc55a94 | |
module ContactList | |
class GoogleContactsApi | |
MAX_RESULTS = "250" | |
attr_reader :client | |
def initialize(client, auth) | |
@client = client |
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
/* | |
* @fileoverview Program to free the content in kindle books as plain HTML. | |
* | |
* This is largely based on reverse engineering kindle cloud app | |
* (https://read.amazon.com) to read book data from webSQL. | |
* | |
* Access to kindle library is required to download this book. | |
*/ | |
// The Kindle Compression Module copied from http://read.amazon.com application |
Most active GitHub users (git.io/top)
The count of contributions (summary of Pull Requests, opened issues and commits) to public repos at GitHub.com from Tue, 20 Jan 2015 16:48:39 GMT till Wed, 20 Jan 2016 16:48:39 GMT.
Only first 1000 GitHub users according to the count of followers are taken. This is because of limitations of GitHub search. Sorting algo in pseudocode:
githubUsers
.filter(user => user.followers > 539)
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
#!/usr/bin/env ruby | |
# Usage: | |
# | |
# => brew install imagemagick | |
# => gem install anki2 kramdown rmagick image_optim image_optim_pack | |
# => chmod +x ./anki.rb | |
# => ./anki.rb questions.md | |
require 'rubygems' |