Projects
Teaching
Video Tools
Linux Commandline Stuff
Bibliography
Proposals
EMPAC
DAC 2009
Compact Space W2010
Conferences
Krysta Now
Krysta Now
American Industry
- bethlehem steel corporation - http://memory.loc.gov/cgi-bin/ampage?collId=pphhphoto&fileName=pa/pa3300/pa3387/photos/browse.db&action=browse&recNum=0&title2=Bethlehem%20Steel%20Corporation,%20South%20Bethlehem%20Works,%20Iron%20Foundry,%20Along%20Lehigh%20River,%20North%20of%20Fourth%20Street,%20West%20o,%20Bethlehem,%20Northampton%20County,%20PA&displayType=1&itemLink=D?hh:4:./temp/~pp_URGI::@@@mdb=fsaall,brum,detr,swann,look,gottscho,pan,horyd,genthe,var,cai,cd,hh,yan,lomax,ils,prok,brhc,nclc,matpc,iucpub,tgmi,lamb,hec,krb
generative
- BlackBox is an applied research resource. The group’s parametric modeling and scripting expertise is focused primarily on two broad areas of interest: the search for the “optimal” (goal-oriented) and the search for the “novel” (explorational). http://www.som.com/content.cfm/services_blackbox
mediated cultures / digital ethnography
MediatedCultures @ Kansas State
http://mediatedcultures.net/mediatedculture.htm
Networked Individualism
http://en.wikipedia.org/wiki/Barry_Wellman
social dimensions
Camera Hacks
DOF adapters
Lense hacks
Scanner cameras
LCD hacks
DIY Projector from LCD panel
Vision
Vision
NLP
NLP
Book Formatting
Auto-generating Books
- render txt files to whole-page images
OS hacking
even better... sun virtualbox
virtual box
slipstream installers
slipstream windows install
live CDs
XP from USB stick
- article [1]
- forum [2]
- microsoft CAB SDK [3]
- WinISO [4]
- from make magazine [5]
Corn Fed Nation
Related Links
corn fed nation
E-Ink Facemask
Performance
Semantic Web
Graphing
visualization
decision making algorithms
MedTech
DIY ECG
other
Transcranial Magnetic Stimulation (TMS)
Electronic Muscle Stimulation (EMS)
MedTech
Map-Reduce
Massive Data Storage: the cloud
Massive Data Storage
Misc
AJAX versus traditional web design
Enabling OBEX with motorola Razr V3c
Online Culture
Forensic Photoshop
Articles
HCI Rich Guidance
- Oregon State University. "'Rich Interaction' May Make Computers A Partner, Not A Product." ScienceDaily 21 August 2009. 24 August 2009 [[6]]
Classes
GCC Hacks
forcing compile as 32bit, i386 on os x
- find occurrences of '-m64':
grep -r0 -e"x86_64" *
- replace occurrences of '-m64' with '-m32':
grep -l -r0 -e"-m64" * | xargs sed -i "" 's/-m64/-m32/g'
- replace occurrences of x86_64 with i386:
grep -l -r0 -e"x86_64" * | xargs sed -i "" 's/x86_64/i386/g'
compile pocketsphinx as universal static lib on OS X
- make x86_64 version of libsphinxbase:
cd sphinxbase-0.7
./configure
make
- copy resulting
libsphinxbase.a file from /sphinxbase-0.7/src/libsphinxbase/.libs/ to libsphinxbase.x86_84.a in temp directory
- make x86_64 version of libspocketsphinx:
cd pocketsphinx-0.7
./configure
make
- copy resulting
libpocketsphinx.a file from /pocketsphinx-0.7/src/libpocketsphinx/.libs to libpocketsphinx.x86_64.a file in temp directory
- make i386 versions of libsphinxbase:
export CFLAGS="-arch i386"
export LDFLAGS="-arch i386"
cd sphinxbase-0.7
make clean
./configure
make
- copy resulting
libsphinxbase.a file from /sphinxbase-0.7/src/libsphinxbase/.libs/ to libsphinxbase.i386.a in temp directory
- make i386 versions of libpocketsphinx:
cd pocketsphinx-0.7
make clean
./configure
make
- copy resulting
libpocketsphinx.a file from /pocketsphinx-0.7/src/libpocketsphinx/.libs to libpocketsphinx.i386.a file in temp directory
lipo -create -output libsphinxbase.a libsphinxbase.x86_64.a libsphinxbase.i386.a
lipo -create -output libpocketsphinx.a libpocketsphinx.x86_64.a libpocketsphinx.i386.a
back to home
<<< back to Wiki Home