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
| network: | |
| - public_url: bytwon.drave.dev | |
| owner: jvtrudel | |
| nodes: | |
| - name: bytwon | |
| ip: 10.0.0.17 | |
| public_key: C1X5j76r8SlMlud5VSegPShEQ6SfskYbjcCcaNbto36 | |
| - name: pike | |
| ip: 10.0.0.19 | |
| port: 9090 |
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 | |
| # compilateur c/c++, etc (build-essentials) | |
| # cmake | |
| # git | |
| # qt | |
| # boost | |
| # eigen | |
| # autre chose ? |
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 | |
| # work on OSX 10.11.6 | |
| # get format known format | |
| known=`iconv -l | tr , "\n"` | |
| known=(${known}) | |
| for file in `pwd`/* ; do | |
| # step 1: get a tuple (fileName, encoding) | |
| tmp=`file -I ${file} |tr -s " " | sed "s/=/ /g"| sed "s/:/ /g" |cut -d" " -f1,5` ; |