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
#!/bin/bash | |
lspci -nn | grep 280 | |
cd /tmp && git clone http://github.com/lwfinger/rtlwifi_new.git && cd rtlwifi_new | |
make | |
sudo modprobe -rv rtl8188ee | |
sudo make install | |
sudo modprobe -v rtl8188ee |
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
sudo apt-get install build-essential linux-headers-generic git dkms | |
git clone http://github.com/lwfinger/rtlwifi_new.git | |
cd /path/to/rtlwifi_new | |
make | |
sudo modprobe -rv rtl8188ee | |
sudo make install | |
sudo modprobe -v rtl8188ee |
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
split mp3 in 30 min parts with silence adjust and 30 secs overlapping | |
mp3splt -t 30.00 -a -O 00.30 -o @a/@t/@t_@n Merlin.und.die.Flügel.der.Freiheit.mp3 |
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
function transformToJsTimestamp(ts) { | |
return ts * 1000; | |
} | |
// later | |
nga.field('create_time', 'datetime').map(transformToJsTimestamp) |