[ Launch: test ] fa690f7a753ee057e5926299b6fd97f2 by clemsos[ Launch: test ] 4653053 by enjalot[ Launch: test ] 4652017 by enjalot[ Launch: test ] 4582399 by enjalot
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
license: mit |
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
license: mit |
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
<!-- | |
* Basic Genetic algorithm | |
* JS/ES6 | |
* | |
* by @clemsos, with the help of Nature of Code | |
--> | |
<button onclick="start()">START</button> | |
<button onclick="stop()">STOP</button> | |
<button onclick="init()">INIT</button> |
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
//data (pass your color | |
var c20 = d3.scale.category20c(); | |
var colors = d3.range(20).map(function(i){ return c20(i) }); | |
var selectedColor = "black"; | |
var h = 100, | |
w = 400, | |
colorOpened = false, | |
paddingX = 10 | |
radius = 10; |
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
# #!/bin/bash | |
GITBOOK_REP=$1 | |
SUMMARY_FILE="SUMMARY.md" | |
echo $OUTPUT_FILE | |
if [ -d "$GITBOOK_REP" ]; then | |
echo "Entering directory '$GITBOOK_REP'..." | |
cd $GITBOOK_REP |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
<style id="jsbin-css"> | |
div { | |
width : 17px; | |
height: 19px; | |
color : white; |
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
#!/bin/bash | |
PDF_IN="LS58_Presentation_FR_EN.pdf" | |
BASENAME_OUT="junkware" | |
PAGE_START=2 | |
PAGE_END=2 | |
for ((i=$PAGE_START; i<=$PAGE_END; i++)); | |
do |
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
#!/bin/bash | |
# USAGE : | |
# | |
# chmod +x run_tests.sh | |
# ./run_tests.sh # run all tests | |
# ./run_tests.sh xxx.py # run a single test | |
# | |
test_dir=`pwd`/tests |
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
#!/bin/bash | |
w2l -config ./w2l-config.xml chapitre-xxx.odt chapters/chapitre-xxx.tex |