Changes

Home

442 bytes removed, 17:19, 13 May 2011
GCC Stuff
</code>
*here is a tar of a sample project with library included. built from pocketsphinx API example: [[File:Pocketsphinx-osx.tar]]
 
=== finding things with ls and grep ===
* find this filename in a recursive search and show previous 30 lines of result:
<code>ls -laR . | grep -b30 "scale_signal.o" </code>
 
=== forwarding localhost mysql to a remote machine ===
* do this to connect to 192.168.0.39 for instance:
<code>ssh -f -L 3306:localhost:3306 rtwomey@192.168.0.39 sleep 10</code>
*tunnelMySql.sh:
<code>
 
ssh -fNg -L 3306:localhost:3306 rtwomey@192.168.1.191
</code>