Archives

Opportunities

Conferences

Proposals

Ideas

Krysta Now

American Industry

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

social dimensions

Camera Hacks

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

E-Ink Facemask

Performance

Semantic Web

Graphing

MedTech

Map-Reduce

Massive Data Storage: the cloud

Misc

Online Culture

Forensic Photoshop

HCI Rich Guidance

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
  • combine files with lipo

lipo -create -output libsphinxbase.a libsphinxbase.x86_64.a libsphinxbase.i386.a
lipo -create -output libpocketsphinx.a libpocketsphinx.x86_64.a libpocketsphinx.i386.a