Archive for October, 2013

Kinect linux install

Tuesday, October 29th, 2013

allg http://forum.processing.org rev by http://ramsrigoutham.com/2012/07/08/getting-started-with-kinect-on-ubuntu-12-04-openni-nite-simpleopenni-and-processing/ ^^^ benutzte OpenNI Version OpenNI_NITE_Installer-Linux32-0.27.zip

hdparm zum Festplatten runterfahren

Thursday, October 24th, 2013

hdparm -C /dev/sda1

Steuere ssh fern

Thursday, October 24th, 2013

http://pexpect.readthedocs.org/en/latest/

Proxy Python ssh Script zUm mutt EmAil!ng

Thursday, October 24th, 2013

http://oreilly.com/pub/h/5232

How to RIP Audio-CD´s von der Kommandozeile

Tuesday, October 22nd, 2013

http://www.maketecheasier.com/rip-cds-at-command-line/

xterm in debian mit copy & paste in das x clipboard

Tuesday, October 22nd, 2013

in die ~/.Xresources : XTerm*VT100.translations: #override : select-end(PRIMARY, CLIPBOARD, CUT_BUFFER0) You can test it with an xterm: xterm -xrm ‘XTerm*VT100.translations: #override : select-end(PRIMARY, CLIPBOARD, CUT_BUFFER0)’ xrdb ~/.Xresources noch ins .xinitrc

12 V grow led für Chillie etc

Sunday, October 20th, 2013

Sorte: zb. Trinidat Skorpion http://www.youtube.com/watch?v=JCqRWX6tu8o http://learn.adafruit.com/li-ion-and-lipoly-batteries

youtube files downloadedn und konvertieren

Sunday, October 20th, 2013

http://www.convertfiles.com/ YouTube downloader mit zieldatei des neuen mit Opus Format formates>>

lsof zeigt dir offene NEtZVerbindungen

Saturday, October 12th, 2013

lsof -i sudo lsof -i -P und allgemein zu lsof ein tutorial http://danielmiessler.com/study/lsof/

grep von Dateien mit Datei & ZeilenAnzeige

Tuesday, October 8th, 2013

grep -n -H “google” *.php for i in $(ls *.php); do grep -n –with-filename “google” $i; done; find . -name “*.php” -print | xargs grep -n “searchstring” find ./*.php -exec grep -l ‘google’ {} \;