In many tech conferences, attendees are invited to rate the talk and/or the speaker from 1 to 5 stars. This type of ratings is interesting but has a few drawbacks.
The discussion started as a twitter thread with this french proposition.
In many tech conferences, attendees are invited to rate the talk and/or the speaker from 1 to 5 stars. This type of ratings is interesting but has a few drawbacks.
The discussion started as a twitter thread with this french proposition.
| const fs = require('fs'); | |
| function walk(root) { | |
| const files = []; | |
| const dirs = [root]; | |
| while (dirs.length) { | |
| const dir = dirs.shift(); | |
| const dircontent = fs.readdirSync(dir).map(file => path.join(dir, file)); | |
| const [newDirs, newFiles] = partition(dircontent, file => fs.statSync(file).isDirectory()); | |
| files.push(...newFiles); |
| #notepad++ | |
| indent XML : CRLT + ALT + SHIFT + B | |
| #eclipse | |
| ##code | |
| CTRL + espace : completion | |
| CTRL + 1 : correcton auto | |
| CTRL + SHIFT + O : organize import | |
| CTRL + SHIFT + F : formatter le code | |
| CTRL + I : indenter |
| mvn -Dmaven.test.skip | |
| mvn dependency:resolve | |
| mvn dependency:tree : arbre | |
| mvn install:install-file -Dfile=as3corelib.swc -DgroupId=com.adobe -DartifactId=as3corelib -Dversion=0.93 -Dpackaging=swc -DgeneratePom=true -DcreateChecksum=true | |
| #compiler src/test/java car compile tout court ne fait que src/main/java | |
| mvn test-compile | |
| mvn versions:set -DnewVersion=1.2.3-SNAPSHOT |