I hereby claim:
- I am AlexandreRio on github.
- I am alexrio (https://keybase.io/alexrio) on keybase.
- I have a public key whose fingerprint is ABC1 A030 CC0A D4FD F752 0D5A DBD4 DB8F FA5A DD70
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| LIB="$HOME/SINTEF/lib-arduino/" | |
| TMP="/tmp/" | |
| for testFile in `find . -name 'test_*.thingml'`; do | |
| compilerThingML.sh -t testconfigurationgen -s $testFile --options arduino > /dev/null | |
| done | |
| cd _arduino |
| /usr/bin/ano preproc --source-dir src -o .build_ano/uno/src/ard_cep.cpp src/ard_cep.ino | |
| Searching for Arduino lib version file (version.txt) ... /usr/share/arduino/lib/version.txt | |
| Detecting Arduino software version ... 1.0.6 (1.0.6) | |
| /usr/bin/avr-gcc -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=106 -DARDUINO_ARCH_AVR | |
| -ffunction-sections -fdata-sections -g -Os -w | |
| -I/usr/share/arduino/hardware/arduino/cores/arduino | |
| -I/usr/share/arduino/hardware/arduino/variants/standard | |
| -I/usr/share/arduino/hardware/arduino/cores/arduino | |
| -I/usr/share/arduino/hardware/arduino/cores/arduino/avr-libc |
| #!/bin/bash | |
| # requirements: ano, picocom, dmenu... | |
| LIB="$HOME/SINTEF/lib-arduino/" | |
| SOURCE=`find $PWD -name '*.pde' | xargs ls -1t | dmenu -l 10` | |
| if [ -z $SOURCE ] ; then | |
| echo "Canceling build" | |
| else |
I hereby claim:
To claim this, I am signing this object:
| #On fedora __git_ps1 is not in git_completion.sh | |
| if [ -f /usr/share/git-core/contrib/completion/git-prompt.sh ]; then | |
| . /usr/share/git-core/contrib/completion/git-prompt.sh | |
| fi | |
| function set_bash_prompt { | |
| PS1="\[$IGreen\]\u \[$Blue\]\w \[$Color_Off\]$(__git_ps1 '(%s)') > " | |
| } | |
| PROMPT_COMMAND=set_bash_prompt |
| #!/bin/bash | |
| #License CC-BY-NC-SA for the code. | |
| #This script converts all flac files in a directory into 320kpbs mp3 files, and then move them into another directory, | |
| #set as the first argument. The occurences of words Flac and FLAC will be replace in the name of the working director.y | |
| #considering wd is /path/nameOfDirectory-FLAC, the new directory will be $1/nameOfDirectory-mp3. | |
| #Needs 1 parameter : the path to save the directory containing the mp3 files. | |
| if [ $# -eq 1 ]; then | |
| currentPath=`pwd` | |
| currentFolder=${currentPath##*/} |
| #!/bin/bash | |
| #License CC-BY-NC-SA for the code. | |
| #This script converts all flac files in a directory into 320kpbs mp3 files, and then move them into another directory, | |
| #set as the first argument. The occurences of words Flac and FLAC will be replace in the name of the working director.y | |
| #considering wd is /path/nameOfDirectory-FLAC, the new directory will be $1/nameOfDirectory-mp3. | |
| #Needs 1 parameter : the path to save the directory containing the mp3 files. | |
| if [ $# -eq 1 ]; then | |
| currentPath=`pwd` | |
| currentFolder=${currentPath##*/} |
| #!/bin/bash | |
| for i in {0..255} ; do | |
| printf "\x1b[38;5;${i}mcolour${i}\n" | |
| done |
| #!/bin/bash | |
| read "$@" <&0; | |
| grep From: | | |
| sed 's/>//g' | | |
| cut -d '<' -f 2 >> ~/.mail_config/filters/spamer.list 2>&1 |