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
ffmpeg -y -r 25 -s 1280x1024 -f x11grab -i :0.0+0,0 -vcodec libvpx ~/screen.webm | |
ffmpeg -y -r 25 -s 1280x1024 -f x11grab -i :0.0+0,0 -vcodec libx264 -vpre lossless_ultrafast ~/screen.mp4 |
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
# "-fflags +genpts" - add this to regenerate packet timestamps (in case of error "Can't write packet with unknown timestamp") | |
./ffmpeg -fflags +genpts -i "/media/nfs/Nostromo/video/Japan Sinks (Nihon Chinbotsu) 1973 - WMV/NihonChinbotsu_1973.wmv" -acodec copy -vcodec copy ~/Desktop/NihonChinbotsu_1973.mkv |
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
# CA-bundle -> Public Cert. | |
openssl verify -CAfile ~/your-ca-bundle.crt ~/your-cert.crt |
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
0 PCMU/8000 | |
0 PCMU/8000/1 | |
2 G721/8000 | |
2 G721/8000/1 | |
2 G726-32/8000 | |
2 G726-32/8000/1 | |
3 GSM/8000 | |
4 g723/8000 | |
4 G723/8000 | |
4 G723/8000/1 |
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
set terminal png | |
set output "output.png" | |
plot "~/feat.txt" u 1:2 with lines t 'Number of Features in Fedora' ; set xlabel "Release number" ; set ylabel "Features number" ; set xrange [6:20] ; set yrange [10:100] ; set xtics 1 ; set datafile separator "," | |
replot |
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
yum remove sendmail | |
yum remove Net* | |
yum install vim-enhanced ssmtp fvwm xorg-x11-server-Xorg rxvt-unicode firefox git | |
yum install xorg-x11-drv-evdev xorg-x11-drv-intel | |
yum install net-tools avahi nss-mdns mc | |
yum install xorg-x11-xdm |
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
$ sudo yum install cifs-utils samba-client | |
$ smbclient -L 192.168.100.1 | |
Enter petro's password: <press enter for empty password> | |
Domain=[TIHON] OS=[Windows 7 Ultimate 7601 Service Pack 1] Server=[Windows 7 Ultimate 6.1] | |
Sharename Type Comment | |
--------- ---- ------- | |
ADMIN$ Disk Удаленный Admin | |
Bin.Win32 Disk | |
C$ Disk Стандартный общий ресурс |
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
rpmbuild -bs erlang.spec --define '%el6 1' |
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
work ~: gnuplot | |
gnuplot> set autoscale | |
gnuplot> plot "results.sched_default" every::15000::50000 using 2 with lines , "results.sched_high" every::15000::50000 using 2 with lines , "results.sched_low" every::15000::50000 using 2 with lines | |
gnuplot> replot |
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
* "real" build | |
fedpkg clone mypackage | |
cd mypackage | |
koji-ppc build rawhide "$(fedpkg giturl)" | |
* scratchbuild: | |
koji-ppc build --scratch rawhide /path/to/yourpkg.src.rpm |