Some exercises from the Falsy Values workshops.
The good parts:
- HTTP server and client in same script
- Express cookies example
- Express routing example
- Express error handling
- Express middlewares example
- Simple HTTP proxy
| #!/usr/bin/env bash | |
| # Gives you file-by-file change stats between two archives. | |
| # Assuming your two archives are original.tar.gz and modified.tar.gz in | |
| # the curent directory. | |
| # I know that there is a tool called diffstat for this very purpose, | |
| # and git probably uses it internally as well. I wanted to demo the | |
| # git-diff --stat command. | |
| #!/usr/bin/env python | |
| # trac-post-commit-hook | |
| # | |
| # This version trac-post-commit-hook has a few customizations. | |
| # | |
| # 1. fix/fixes/fixed commands set status to 'testing' instead of closed. | |
| # | |
| # 2. Added a new command to create new versions. Any commit message with | |
| # a pattern 'tagging version VERSION_NUMBER' or 'tagged version |
| /** | |
| * CSS to add section numbers to top-level headings in | |
| * a Google Docs (or any HTML) document. | |
| * | |
| * See <http://www.w3.org/TR/CSS2/generate.html> for | |
| * more details. | |
| */ | |
| body { | |
| counter-reset: section; | |
| } |
Some exercises from the Falsy Values workshops.
The good parts:
| We deeply regret to inform you that we will not be able to deliver your | |
| subscription copy of the February 11th issue of The Economist. | |
| This issue includes a special report on Pakistan and features a map | |
| showing the disputed territories. India does not allow us to show the | |
| current effective border, requiring us instead to show only its | |
| territorial claims. As a result, the issue has been seized by the Indian | |
| customs authorities. | |
| We apologise sincerely for any inconvenience this may cause. We will be |
| $('select.bit-rate').each(function() { $(this).find('option:first').attr('selected', 'selected'); }); |
| color[] colors = { color(85, 98, 112), color(78, 205, 196), | |
| color(199, 244, 100), color(255, 107, 107), | |
| color(196, 77, 88) | |
| }; | |
| float rot = 0; | |
| int colorIndex = 0; | |
| void setup() { | |
| frameRate(26); | |
| size(325, 200, P3D); |
| { | |
| "name": "your-app-name", | |
| "version": "0.0.1", | |
| "private": true, | |
| "dependencies": { | |
| "http-proxy": "0.8.x", | |
| "connect": "2.3.x" | |
| } | |
| } |
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <style></style> | |
| <body> | |
| <h2>Transitioning numbers</h2> | |
| <h3 data-value="0" id="the-number">0</h3> | |
| <input type="number" value="0" id="new-number" step="100" /> |
;; Customise deft to remove file-vars from the title line. ;; ;; I use ‘markdown-mode with deft usually, but for some longform files, ;; I prefer using ‘org-mode. ;; ;; The easiest way to do this is to use a file variable like so: ;; ;; -*- mode: org; -*- ;; ;; in the first line of the file. This makes the file open in ‘org-mode