brew install zsh zsh-syntax-highlighting git kubernetes-cli kubernetes-helm nvm yarn pyenv awscli watchman terraform pkg-config cairo pango libpng jpeg giflib librsvg anttweakbar freeimage exiftool imagemagick cocoapods vips ffmpeg gifsicle
This file contains 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
DROP TABLE IF EXISTS post CASCADE; | |
DROP ROLE IF EXISTS author; | |
DROP ROLE IF EXISTS visitor; | |
DROP ROLE IF EXISTS basic; | |
-- Create roles |
A Pen by Vincent Lecrubier on CodePen.
This file contains 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
{ | |
"accessors": { | |
"accessor_buffer_Bras#2_0": { | |
"bufferView": "bufferView_buffer_Bras#2_0", | |
"byteOffset": 0, | |
"byteStride": 32, | |
"componentType": 5126, | |
"count": 238, | |
"max": [ | |
3.200000047683716, |
This file contains 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
var fs = require('fs'); | |
function readFiles(dirname, onFileContent, onError) { | |
fs.readdir(dirname, function(err, filenames) { | |
if (err) { | |
onError(err); | |
return; | |
} | |
filenames.forEach(function(filename) { | |
fs.readFile(dirname + filename, 'utf-8', function(err, content) { |
If your job is on this list then... Yes they will, probably, one day...
- Sound effect designer https://www.youtube.com/watch?v=0FW99AQmMc8
- Doctor https://www.youtube.com/watch?v=EhZXDgG9oSk
- Digital video artist https://www.youtube.com/watch?v=SCE-QeDfXtA
- Copyist painter https://www.youtube.com/watch?v=UGAzi1QBVEg http://arxiv.org/pdf/1601.04589v1.pdf
- Truck driver https://www.youtube.com/watch?v=XZxZC0lgOlc
- Taxi driver https://www.youtube.com/watch?v=TsaES--OTzM
This file contains 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
;Nous déclarons 10 nombres entiers nommés a,b,c,...,i : | |
(declare-const a Int) | |
(declare-const b Int) | |
(declare-const c Int) | |
(declare-const d Int) | |
(declare-const e Int) | |
(declare-const f Int) | |
(declare-const g Int) | |
(declare-const h Int) | |
(declare-const i Int)</code> |
This file contains 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
for (var a = 1; a <= 9; a++) { | |
for (var b = 1; b <= 9; b++) { | |
for (var c = 1; c <= 9; c++) { | |
for (var d = 1; d <= 9; d++) { | |
for (var e = 1; e <= 9; e++) { | |
for (var f = 1; f <= 9; f++) { | |
for (var g = 1; g <= 9; g++) { | |
for (var h = 1; h <= 9; h++) { | |
for (var i = 1; i <= 9; i++) { | |
if (a + 13 * b / c + d + 12 * e - f - 11 + g * h / i - 10 == 66) { |