The following debugging information was generated by Atom Beautify
on Mon Jan 02 2017 02:25:54 GMT-0400 (AST)
.
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 bash | |
# Configure | |
DOC_NAME="DOC NAME" | |
DOC_ID="DOC ID" | |
TOKEN="MY_TOKEN" | |
READ_SPEED=170; | |
URL="https://docs.google.com/document/export?format=txt&id=${DOC_ID}&token=${TOKEN}, https://docs.google.com/document/d/${DOC_ID}/edit" | |
DOWNLOAD_DIR="audio_books" |
The following debugging information was generated by Atom Beautify
on Mon Jan 02 2017 02:37:27 GMT-0400 (AST)
.
The following debugging information was generated by Atom Beautify
on Tue Jan 03 2017 00:56:20 GMT-0400 (AST)
.
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
Fonte: http://gohorseprocess.wordpress.com | |
1- Pensou, não é XGH. | |
XGH não pensa, faz a primeira coisa que vem à mente. Não existe | |
segunda opção, a única opção é a mais rápida. | |
2- Existem 3 formas de se resolver um problema, a correta, a errada e | |
a XGH, que é igual à errada, só que mais rápida. |
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
// lmutracker.mm -- Provides lux measurement using MacBook Ambient Light Sensor | |
// | |
// clang -o lmutracker lmutracker.mm -framework IOKit -framework CoreFoundation | |
// | |
// Adaptation of code originally posted at https://bugzilla.mozilla.org/show_bug.cgi?id=793728 | |
// by Reuben Morais. Modified by Ken Keiter <[email protected]> to output a single *lux* value | |
// and exit, rather than repeating measurements on the sensor's arbitrary scale. | |
#include <mach/mach.h> | |
#include <math.h> |
The following debugging information was generated by Atom Beautify
on Wed Mar 29 2017 17:33:12 GMT+0300 (Jerusalem Daylight Time)
.
The following debugging information was generated by Atom Beautify
on Thu Apr 20 2017 03:35:36 GMT-0400 (Eastern Daylight Time)
.
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
// With async/await support | |
const fs = require('fs') | |
const jwt = require('jwt-simple') | |
const pem_file = '/path/to/github.pem' // the absolute path to your Application Pem Certificate issued by GitHub | |
const integration_id = 0 // GitHub Application Integration ID | |
const installation_id = 0 // once installed on an organization. The Organization Integration ID | |
const expire_seconds = 60 // number of seconds the jwt token expires (max ~600 but not designated by GitHub) | |
const slug = 'owner/repo' // name of repo for demo purposes | |
const privateKey = fs.readFileSync(pem_file) |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000