Rather impressive: http://tinyurl.com/3caoag
And it is via twittervision: http://twittervision.com/
-
Σελίδες
Κατηγορίες
-
Meta
-
RSS Links
Rather impressive: http://tinyurl.com/3caoag
And it is via twittervision: http://twittervision.com/
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 […]
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…', 'plaintxtblog').'</span>') ?>
to the_content(), like so:
<?php the_content('<span class="more-link">'.__('More…', '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.gapingvoid.com/history76156.jpg
11:30 AM created twitter feed from earlab blog via twitterfeed.com
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 […]
/* (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 […]