View work.txt
This file contains 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
https://github.com/Mitsos101/plan9front/pull/1 | |
Installation, on 9front: | |
git/clone https://github.com/Mitsos101/plan9front plan9front-oauth | |
cd plan9front-oauth | |
git/branch oauth | |
bind sys/include /sys/include | |
@{cd sys/src/libauth && mk install} | |
@{cd sys/src/cmd/auth && mk install} |
View loop.jl
This file contains 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
for i in 1:(length(samples) - 1) | |
if (samples[i + 1] - samples[i]) < 500 | |
deleteat!(samples, i:i+1) | |
end | |
end |
View mfctosvm.sh
This file contains 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
cat *.mfc >> svm.input | |
awk '{for(i=1;i<=NF;++i) $i=i":"$i}1' svm.input > tmp.input && mv tmp.input svm.input && rm -f tmp.input | |
sed -i -e 's/^/+1 /' svm.input |