Skip to content

Category Archives: Activities

9:28 PM google maps + twitter channel on super tuesday (primaries)

05-Φεβ-08

Rather impressive: http://tinyurl.com/3caoag
And it is via twittervision: http://twittervision.com/

Do we need new (information browsing) interfaces?

04-Φεβ-08

Ordering information in a website is a nightmare, no matter how many domains you have, no matter what CMS you use. Technologies are so complex that a tree structure is hardly sufficient as principle for ordering and navigation. Perhaps dynamically generated pages that change according to the perspective of the user (project oriented, hardware […]

disabling excerpts (clipping) in plaintxtBlog theme

04-Φεβ-08

Kind reply from Scott, author of plaintxtBlog.
edit the follow theme files: archive.php, category.php, tag.php.
Change the lines with the_excerpt()
<?php the_excerpt('<span class="more-link">'.__('More&hellip;', 'plaintxtblog').'</span>') ?>
to the_content(), like so:
<?php the_content('<span class="more-link">'.__('More&hellip;', 'plaintxtblog').'</span>') ?>
(I am putting this here because I have not yet created a category in the wikis for web dev stuff)

11:43 AM overtweet: http://www…

03-Φεβ-08

11:43 AM overtweet: http://www.gapingvoid.com/history76156.jpg

11:30 AM created twitter feed …

03-Φεβ-08

11:30 AM created twitter feed from earlab blog via twitterfeed.com

Notes from yesterday’s session w. Dakis + Alex

03-Φεβ-08

Specification of the task:

- Play one buffer
- Start at a random position in the buffer
- Playback at a randomly specified constant rate
- Loop when reaching end of buffer
- Reset the start position and rate of playback at any moment

- The buffer receives input from a live source in real time
- It has a duration size […]

The script we tried with dakis+alex

02-Φεβ-08

/* (IZ 2007-10-27) {
Play a selected buffer with single - shot playbuf SynthDef, triggering it multiple times at random interval and random rates, random starting point and random duration, within controllable range parameters.
 
b = Buffer.read(Server.local, "./sounds/a11wlk01.wav");
 
(
a = SynthDef("playbuf_segment", { |
  out = 0,
  bufnum = 0,
  startPos = 0,
  duration = 1,
  rate = 1,
  amp […]