Difference between revisions of "Home"

From Robert-Depot
Jump to: navigation, search
(Current)
(Current)
Line 4: Line 4:
  
 
[[Convex Mirror]]
 
[[Convex Mirror]]
 +
 +
[[Solipsist]]
  
 
[[Kate]]
 
[[Kate]]
Line 14: Line 16:
  
 
[[Drawing Machine]]
 
[[Drawing Machine]]
 
[[Solipsist]]
 
  
 
[[Worldpicture]]
 
[[Worldpicture]]

Revision as of 09:00, 4 April 2013

Current

Seashell Radio

Convex Mirror

Solipsist

Kate

Drawing As A Mode of Apprehension

Goyas Black Roberts Daughter

Dissertation

Drawing Machine

Worldpicture

Saccade

Puppetry

Teaching

Useful

OpenCV

Raspberry Pi

GRBL

Okidata Microline 320 Turbo

DIY Binaural Mics

BeagleBone

Video Tools

Linux Commandline Stuff

Setting Up Festival TTS

Compiling MegaHAL on OS X

Shot Detection

Solipsist Development

Jess

PCB Fabrication

Projects?

Projects

cmptrs

Computer Names

Formal Opportunities

Conferences

Proposals

EMPAC

DAC 2009

Compact Space W2010

Ideas

Krysta Now

Krysta Now

American Industry

The Rest

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

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

back to home

<<< back to Wiki Home