Difference between revisions of "Home"

From Robert-Depot
Jump to: navigation, search
Line 1: Line 1:
 
[[Classes]]
 
[[Classes]]
 +
 
[[Projects]]
 
[[Projects]]
 +
 
[[Teaching]]
 
[[Teaching]]
 +
 
[[Video Tools]]
 
[[Video Tools]]
 +
 
[[Linux Commandline Stuff]]
 
[[Linux Commandline Stuff]]
  
Line 297: Line 301:
 
</code>
 
</code>
 
*here is a tar of a sample project with library included.  built from pocketsphinx API example: [[File:Pocketsphinx-osx.tar]]
 
*here is a tar of a sample project with library included.  built from pocketsphinx API example: [[File:Pocketsphinx-osx.tar]]
 +
 +
== back to home ==
 +
 +
[[Home | <<< back to Wiki Home]]

Revision as of 10:00, 16 May 2012

Classes

Projects

Teaching

Video Tools

Linux Commandline Stuff

Teaching Resources

potential classes

Advanced Video Processing

Language Processing for Art

workshops

Language Processing and Self-Representation

Reference

dig lit, writing

other

NLP

Fabrication

fabrication and rapid prototyping


Proposals

EMPAC

DAC 2009

Compact Space W2010

Conferences

Krysta Now

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

MediatedCultures @ Kansas State

http://mediatedcultures.net/mediatedculture.htm

Networked Individualism

http://en.wikipedia.org/wiki/Barry_Wellman

social dimensions

LCD hacks

DIY Projector from LCD panel

Lense hacks

Scanner cameras

DOF adapters

Vision

Translating - assistant in language learning. 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 [2]
  • forum [3]
  • microsoft CAB SDK [4]
  • WinISO [5]
  • from make magazine [6]

Corn Fed Nation

Related Links

cellulite

corn fed nation

car games

lcd tv

Graphic Design Service

E-Ink Facemask

Performance

Semantic Web

Graphing

Misc

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

Classes


GCC Stuff

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

back to home

<<< back to Wiki Home