- Rémi Prévost (added 2012/01/27)
- Simon Prévost (added 2012/01/27)
- Vincent Roy-Chevalier (added 2012/01/27)
- Louis-André Labadie (added 2012/01/27)
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
var MoonInfo = function(day, month, year) { | |
var n0 = parseInt( "0" ); | |
var f0 = parseFloat( "0.0" ); | |
var AG = f0; // Moon's age | |
var DI = f0; // Moon's distance in earth radii | |
var LA = f0; // Moon's ecliptic latitude | |
var LO = f0; // Moon's ecliptic longitude | |
var Phase = " "; | |
var Zodiac = " "; |
Cette liste est liée au talk "Tout est trop implicite" donné le 25 juin 2013 au OpenCode
- Universal Principles of Design – William Lidwell et al.
- Typography for Laywers – Matthew Butterick
- Understanding Comics – Scott McCloud
- Voice and Tone – Mailchimp team ?
- The Art of Game Design – Jesse Schell
- The Shape of Design – Frank Chimero
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
[s3] | |
calling_format = boto.s3.connection.OrdinaryCallingFormat |
I hereby claim:
- I am l-a on github.
- I am lalabadie (https://keybase.io/lalabadie) on keybase.
- I have a public key whose fingerprint is 1911 7AE1 FC8C 4757 137C E3EA 2C7E 6C83 9BB2 EB80
To claim this, I am signing this object:
I hereby claim:
- I am l-a on github.
- I am lalabadie (https://keybase.io/lalabadie) on keybase.
- I have a public key whose fingerprint is 1911 7AE1 FC8C 4757 137C E3EA 2C7E 6C83 9BB2 EB80
To claim this, I am signing this object:
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
module.exports = { | |
config: { | |
// borderColor: '#555', | |
fontSize: 13, | |
fontFamily: '"Input", "DejaVu Sans Mono", "Lucida Console", monospace', | |
cursorShape: 'UNDERLINE', // `BEAM` for |, `UNDERLINE` for _, `BLOCK` for █ | |
// custom css to embed in the main window | |
css: ` | |
.tab_tab { |
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
func fizzBuzz (size: Int) { | |
// An array can be declared like this | |
var list: Array<Int> = [] | |
// Alternatively, you can instantiate: | |
// var list = [Int]() | |
// This array creation is oddly slow in Playgrounds (try it with size: 400). | |
// Then again, I shouldn't need *two* loops for a fizzbuzz. |
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
import canvasSketch from "canvas-sketch"; | |
import randomPalette from "../helpers/goodPalette"; | |
import SimplexNoise from "../helpers/simplex"; | |
import random from "../helpers/random"; | |
// In inches | |
const width = 8, | |
height = 8; | |
// Random inputs |
OlderNewer