('v')
( ) "Birdie" by Susie Oviatt
~/'~'~~
<div style="font-size: 11px; line-height: 13px; color: #330000; margin-top: 20px; font-family: Courier, mono; "> _ ('v') ( ) "Birdie" by Susie Oviatt ~/'~'~~ </div>
_ ('v') ( ) "Birdie" by Susie Oviatt ~/'~'~~
I have an image I'm trying to make so I thought I'd share some of what I've found. Some of the classic tutorials are by the following artists: Susie Oviatt
By Marcus du Sautoy
Professor of mathematics at the University of Oxford
Professor du Sautoy set out to find out the real himOver the last few months I have been on an extraordinary journey to find out what makes me "me".
I have had my brain scanned, tricked, electrocuted, drugged in a plethora of different experiments in my attempt to find out what it is that gives me the feeling that there is someone inside my head.
Science calls it the search for consciousness. I call it the search for "me".
I was not always aware of myself as a human being separate from those around me.
But at what point does this self-awareness kick-in?
So super pleased to give a shout out to Adam and NYC Resistor, home of the Bartending Robot. I found this video today trying to be inspired about my own card design. It isn't going to be nearly this clever.
If you are in New York you should check them out. I really enjoyed going to the Arduino Hacklab there before I moved.
Devanagari
Learning the Consonants
Master html Worksheet 1a html Worksheet 1b html Worksheet 2 html DOC Worksheet 3 html
Special thanks to the many wonderful teachers in my life, especially those at Jivamukti Yoga in NYC, Yogaworks in LA and the Yoga Studies Institute everywhere.
Additional References: Teach Yourself Beginner's Hindi Script by Rupert Snell (ISBN: 0071419845)
Teach Yourself Sanskrit by Michael Coulson (ISBN: 0071426663)
Manorama ( http://www.sanskritstudies.org/ )
Avashy.com Hindi Script Tutor ( http://www.avashy.com/hindiscripttutor.htm )
So a friend just bought his first copy of Patanjali's Yoga Sutras... "with full-on Sanskrit squiggles" and I remembered a time when I thought I was going to learn all those squiggles... I slightly updated the page and here it is... maybe I'll remotivate
Made them in Apple's Pages (http://www.apple.com/iwork/pages/), using an English keyboard with the "Keyboard Viewer" installed...in case anyone cares...
Radiolab
Friday, November 14, 2008
pulpolux/flickrCCChoice
We turn up the volume on the voices in our heads and try to make sense of the babble. On a journey around the country to understand how emotion and logic interact to guide us through our options, we ponder how we get through the million choices and decisions we make every day. Forget free will, some important decisions could come down to a steaming cup of coffee.
One of my favorite episodes of one of my favorite podcasts... having a hard time making decisions today so seems like a good thing to post!
Yay! Interactive Telecommunications Program alumna whose work I happen to adore... Congratulations!
See also her site: http://www.camilleutterback.com/
Great daily practice...
Heard about this site through Bust Magaizine: http://www.bust.com/
Freeland
Okay, once again, thank you Jason Bentley.
The album COPE™ may not even make it to a wishlist...
void loop() { delay(2000); // time to switch over to serial mode if (i < 1) { // do it only once for (b=0; b<64; b ++) { commandByte = b + B10000000; // add the latch command Serial.print("colorArray["); Serial.print(b, DEC); Serial.print("] = B"); Serial.print(commandByte, BIN); Serial.println(";"); } } i++; }
Just a heads up, this works because I added the 1 onto the left edge of the command byte by adding the actual value of B10000000 to the variable NOT by trying to tack a "B10" on to it on with Serial.print before. Why not? 63 prints out as 111111, 6 characters, but 23 is 10111, 5 characters. You can't just paste numbers to left edge with text and expect the value to be correct when you copy the printout. Writing your own program is way more time consuming for a non-numeric situation like writing out UP OFF DOWN and ON for the Synoptic Lab style code - In case you don't remember those lines look like: docolor(DOWN, DOWN, UP,128/(2*SPULSE),1); You'd start with something like the below, but I haven't tested it. void permutate(int n_options, int r_times) { int n; int r; for (r=0; r<r_times; r ++) { for (n=0; n<n_options; n ++) { Serial.print(r, DEC); Serial.print(" : "); Serial.print(n, DEC); Serial.print(" | "); } Serial.println(); } Serial.println(); }
I just borrowed Math is Fun's permutations and combinations calculator (below). They generated the list and with a bit of find and replace magic in BBEdit I got the code I needed. Oh, and for those of you who are curious and don't care about having a pre-written array the following function does work, and is what the attached video is of. void playAll() { int b; for (b=0; b<64; b ++) { nextColor = colorArray[b]; nextCommand = nextColor + B10000000; // latch it doColor2(nextCommand); } }
<div class="posterous_bookmarklet_entry">