Skip to content

Instantly share code, notes, and snippets.

This is a remote course where you'll be learning on a remote classroom with a real teacher, real classmates and real assignments. The estimated duration of the course is 6 weeks, attending 2 classes per week, 2 hours per class.

We're going to do two courses. One for beginners who want to learn "how to program" and other for novice programmers who want to master advanced concepts and web programming. Check the contents bellow.

Attention: Please check the schedule section for details before applying

Apply now: http://goo.gl/forms/PzlAanzDYf

What are we doing

@jaxbot
jaxbot / gist:54eaeac526c4e161e4c7
Last active August 29, 2015 14:18
PyCon WiFi auto-j'accepte

Here's how to automatically log in to the WiFi at PyCon. Dumping out a few different methods here, check back for updates!

Chrome

  1. Install Tampermonkey
  2. Add this script:
// ==UserScript==
// @name         Pycon auto j'accept
// @namespace http://your.homepage/
@bradley-holt
bradley-holt / calendar-of-tech-events.md
Last active December 22, 2015 20:28
A collection of community tech events in the greater Burlington area.
@exit99
exit99 / Auto-Dave
Last active March 1, 2016 19:35
Automating Dave's Job
import time
import urllib2
from datetime import datetime
def do_dave():
while 10 < datetime.now().hour < 15:
time.sleep(5)
urllib2.urlopen('http://www.reddit.com/')
@erezsob
erezsob / tld-list.json
Last active July 10, 2017 13:04
All Top-Level-Domains as single level objects in one JSON file
{
".ac": "Ascension Island",
".ad": "Andorra",
".ae": "United Arab Emirates",
".af": "Afghanistan",
".ag": "Antigua and Barbuda",
".ai": "Anguilla",
".al": "Albania",
".am": "Armenia",
".an": "Netherlands Antilles",
@robmiller
robmiller / gist:5849541
Last active December 13, 2018 16:37
Quickly add Tim Pope's ctags generation scripts to all Git-controlled directories under the current one, so that you don't need to recreate your repositories.
# I love tpope's solution to ctags regeneration[1]; he creates
# a template from which all Git repositories take their default hooks,
# and then uses these hooks to regenerate ctags.
#
# [1]: http://tbaggery.com/2011/08/08/effortless-ctags-with-git.html
#
# It's an elegant solution, but what do you do about repositories that
# already exist? The template will only apply to newly cloned or newly
# initialised repositories.
#
@tayiorbeii
tayiorbeii / vimeo_downloader.py
Created February 24, 2017 17:18
Usage: `python vimeo_downloader.py http://...master.json optional_name.mp4` modified from https://gist.github.com/alexeygrigorev/a1bc540925054b71e1a7268e50ad55cd
import requests
import base64
from tqdm import tqdm
import sys
master_json_url = sys.argv[1]
base_url = master_json_url[:master_json_url.rfind('/', 0, -26) + 1]
resp = requests.get(master_json_url)
content = resp.json()
addEventListener("fetch", event => {
event.respondWith(handleRequest(event.request));
});
/**
* Multiplex requests to a fixed list of destinations.
*
* It is intentional that we only support rewriting the incoming request URL to
* that of the destination. Everything else on the request is untouched.
*
@jbspeakr
jbspeakr / top-level-domains.json
Created January 6, 2013 10:05
all Top-Level-Domains (TLD) and their corresponding countries/ generics in JSON
[
{
"model": "dmakr.domain",
"pk": 1,
"fields": {
"tld": "aero",
"country": "Air transport"
}
},{
"model": "dmakr.domain",
from flask import Flask, send_from_directory
import random
app = Flask(__name__)
# Path for our main Svelte page
@app.route("/")
def base():
return send_from_directory('client/public', 'index.html')