I’m learning Numerical Analysis right now and a friend of mine found some really nice PS files by dr Marian Bubek ( http://www.icsr.agh.edu.pl/~mownit/mownit.html ). I was really happy to see some *.ps but some people from my fellow students started complaining that they’d rather have pdf’s and not ghostscript files (who knows why they’d do..?). [...]
Tags:
coding,
cool,
freedom,
gnu,
gnu/linux,
hack,
hacking,
linux,
open source,
shell,
terminal,
tip,
trick,
tricks,
wget
A simple yet usefull command-line-fu I made up: #list all internet active apps $ netstat -lantp | grep -i establ | awk -F/ '{print $2}' | sort | uniq firefox java pidgin thunderbird-b Lookup this command at CommandLineFu Thanks to HarimaKenji for fixing a little issue with this command. —update— CommandLineFu user submited a [...]
Tags:
coding,
gnu,
gnu/linux,
linux,
open source,
terminal,
trick,
tricks
I recently had to migrate a big website – about 5GB – to a new server. That could take a while to do, right? Well, maybe if you did it like that (the not smart way): Thanks goodness I’m not really keen on doing stuff the slow “not_smart” way, and the new server is a [...]
Tags:
coding,
hack,
linux,
open source,
shell,
terminal,
trick,
web dev
Tym razem małe polecenie włączające zewnątrzny plik mp3 (z ogg zadziała tak samo): #poniższe polecenie bierze plik old.avi, i łącząc go z sound.mp3 (zachowując jego codec audio) tworzy plik new.avi mencoder old.avi -o new.avi -ovc copy -oac copy -audiofile sound.mp3 #analogicznie możemy wziąć plik audio w innym formacie i przetworzyć go np na mp3, wtedy [...]
Tags:
hack,
linux,
mencoder,
open source,
trick,
tricks
Skoro była taka seria z wgetem, to przyszedł czas na to samo z mencoderem. mencoder to program do ogólnie pojętej obróbki plików video. Jeżeli korzystasz z jakiegoś okienkowego programu do modyfikowania wideo pod linuksem, z dużym prawdopodobieństwem jest on nakładką na mencodera :> Dzisiejszy temat to obracanie całego filmu: mencoder -ovc lavc -vf rotate=1 -oac [...]
Tags:
coding,
guide,
hack,
linux,
mencoder,
trick