apple goofs up airport update

8 April 2008

The new mac airport update breaks most audio programs. We now get nasty crackling and CPU spikes.

Solution: turn airport off when making muzak.
or revert the airport update: http://www.ableton.com/forum/viewtopic.php?t=88815&postdays=0&postorder=asc&start=0&sid=63b29a6140f11d35ef1b64db664f3cb5

and the thing is this is the first time in 5 months that my airport has worked with our apartment's WLAN. I've had a cable running down the hall and I can't shut my door.

george clinton has two houses : one for music, one for business.


  1. 1 101256 says...

    Hmm. It figures that stuff like this happens. Intentional?? Who knows for sure…
    I just upgraded to a macbook pro and hooked up (bought) ableton live 7, and sure enough, glitchy-ness ensues.

    I always like to check up on crucial-systems every now and again and am happy to see that the important info seems to find its way through it.
    Thanks for the much needed tip!

    -101256

  • more posts in Super Collider
    • on laptops, controllers, musicianship, post-musicianship

      Sam Pluta published an article about computer based music, information theory and human control: http://www.newmusicbox.org/article.nmbx?id=5614 and then we discussed it and I posted the following to the list, so I wanted to preserve it here because it collects some of my long-standing thoughts and experiences about controllers and live computer based music. sometimes I've gotten a bunch of controllers (a few too many) and then found that it was distracting to the music. instead of it being about music it ...

    • how to set up a local svn repository (for SC)

      How to create and maintain a local SVN repository for your private work. If you are just working locally, you don't have to run an svn server at all. Its much easier than I thought. ( this is mainly a post about working with supercollider packages. if you just want to know how to set up a local svn repository then I'll cut to the chase: svn import ~/Documents/SC3docs/felix-imported file:///Users/crucial/svn/sc/trunk/felix -m "initial felix import" then check out a working copy: ...

    • super collider links

      SuperCollider2 runs only on Mac OS9. It is now available for free from http://audiosynth.com SuperCollider3 is open source, and runs on OS X and Linux. http://sourceforge.net/projects/supercollider/ browse CVS tree http://cvs.sourceforge.net/viewcvs.py/supercollider/SuperCollider3/ sc-users mailing list info http://www.create.ucsb.edu/mailman/listinfo/sc-users sc-users archives http://www.create.ucsb.edu/pipermail/sc-users/ http://news.gmane.org/gmane.comp.audio.supercollider.user sc-dev mailing list info http://www.create.ucsb.edu/mailman/listinfo/sc-dev sc-dev archives http://www.create.ucsb.edu/pipermail/sc-dev/ http://del.icio.us/tag/supercollider search sc user lists archives:

    • UncoupledUsefulThings

      These are old SC2 packages. UncoupledUsefulThings * alterations to common classes: none * requires packages: none All classes here are uncoupled to any other classes in any other package. :DefaultLibrary:aaa CrucialLibrary:UncoupledUsefulThings BeatClock.sc BeatClock2 BeatClock Clip.sc Wrap Fold Blend Clip Include.sc Include Require TaskIfPlaying Library3.sc MultiLevelIdentityDictionary Library3 Looper.sc Looper MonoSpawn.sc MonoSpawn EnvdSpawn NaN.sc NaN NumChannels.sc IsValidUGenInput Mono NumChannels PathName.sc PathName Position.sc Position QuantizedScheduler.sc QuantizedScheduler ReTrigger.sc ReTrigger Enveloper Enveloper2 Impulsar ReTrigger2 Splay.sc Splay Tempo.sc Tempo XFader.sc XFader XFader4

    • Full index for Super Collider
  • more posts in tech notes
    • django has two classes called ValidationError

      There is one in django.core.exceptions and one in django.forms.util Using that space age IDE Eclipse I have to say I'm enjoying how much time I've saved just going shift-command-O to organize and resolve all of my imports.  But today I've just lost a few hours due to my ok-ing the wrong class. Quite mysterious it was, I raised a ValidationError (core exceptions one) in my form's clean() and watched as the try: except ValidationError: in django's full_clean() completely ignored my ...

    • GDAL fails to build: `.rodata' can not be used when making a shared object; recompile with -fPIC

        libtool: link: g++ -shared -nostdlib /usr/lib/gcc/x86_64-linux-gnu/4.4.1/../../../../lib/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.4.1/crtbeginS.o .libs/libgdal.la.lnkscript  -L/usr/local/lib /usr/local/lib/libgeos_c.so /usr/local/lib/libgeos.so /usr/local/lib/libexpat.so -L/usr/lib -lpq -lrt -ldl /usr/lib/libcurl.so -lssl -lcrypto -lz -L/usr/lib/gcc/x86_64-linux-gnu/4.4.1 -L/usr/lib/gcc/x86_64-linux-gnu/4.4.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.4.1/../../.. -lstdc++ -lm -lc -lgcc_s /usr/lib/gcc/x86_64-linux-gnu/4.4.1/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/4.4.1/../../../../lib/crtn.o         -Wl,-soname -Wl,libgdal.so.1 -o .libs/libgdal.so.1.13.2 /usr/bin/ld: /usr/local/lib/libz.a(crc32.o): relocation R_X86_64_32 against `.rodata' can not be used when making a shared object; recompile with -fPIC /usr/local/lib/libz.a: could not read symbols: Bad value collect2: ld returned 1 exit status make[1]: *** [libgdal.la] Error 1 make[1]: Leaving directory `/home/crucial/tmp/gdal-1.6.2' ...

    • installing MySQLdb on Ubuntu (mysql-python)

      MySQLdb is the python support bindings for MySQL.  Not that the name would lead you to beleive that. Its sourceforge page calls it http://sourceforge.net/projects/mysql-python/ which makes more sense. you need setuptools, which you usually already have:     sudo aptitude install python-setuptools You need MySQL-devel to compile, but its not called that, its called: libmysql++-dev on Ubuntu     sudo apt-get install libmysql++-dev download MySQLdb itself from:     http://sourceforge.net/projects/mysql-python/     # the version you download will be more recent     tar xfz ...

    • postgres login as admin user postgres

      When installing postgres a user will be created named 'postgres' with a password of '!!' which means "cannot login".  But yet you need to login as that in order to run psql (the postgres db shell) to create other users and to create database templates. The solution is to first log yourself in as root (in your normal shell): su root (enter password...) then you will no longer be subject to password checks and you can login in as user ...

    • Full index for tech notes
  • more posts in currently
    • Video Art by satellites and turtles : its the new Auteur Theory

      POV video from STS-124.  No film director or composer could make anything this epic. Even Stanley Kubrick would tone it down or try to resolve it to edits and angles. The adrenaline builds, and at 2 minutes your mind beings to blow. The ending is truly beautiful, don't miss it. A camera gets lost in Aruba on November 11, 2009. A turtle finds it on January 15, 2010, films this refreshing shoegazer video and becomes a YouTube celebrity. The camera ...

    • Dubstep has peaked

      Google Trends "dubstep"   But soon the vuvuzela will be forgotten about, right ?

    • You are now entering the Republic of South Africa

      From Jozi and Cape Town, South Africa 2010 Lloyd is from Zimbabwe and lives and works in George, SA.  Every 3 months he goes home.  His wife works in the US embassy and might go to India next year.  He's trying to build his house, brick by brick, so eventually when he moves back he'll have some place to retire in. We chatted a bunch during the night bus.  Lloyd is from Zimbabwe and lives and works in George, SA. ...

    • Murungu in Baghdad

      I must admit that while I walked across the bridge to Zimbabwe Bob Marley started playing in my head. Sunny, windy, I'm smiling to myself. But they wouldn't let me in because the visa sticker is too big for the remaining space in my passport. I walked back to Zambia; they wouldn't let me in unless Zim stamped a denial. Back to Zim. Self-important immigration guy is on break, lady wants to gossip with friends and not listen to confusing ...

    • Full index for currently

Solar Life Raft Ingredients

Timeblind
Format: Digital
Release date: 4th January 2010
Available at
  • coltan and cassiterite Timeblind

The unmixed ingredients from Rupture and Shadetek’s Solar Life Raft. Including two tracks by me: Coltan and Cassiterite and Space Cadet (which came out on last year’s 12” on Version)

I’ve been waiting/yearning for Coltan and Cassiterite to come out for much of last year. I was about to release it myself just to relieve my own tension waiting for it. Anyway, its on a good home: The Agriculture and the reviews have been great so far.

The title refers to two of the minerals that are mined in the Democratic Republic of Congo and are components in portable electronics like cel phones. Its one of the unfortunate driving forces behind continuing warfare among the militias in the Rwanda/DRC border area.

Avail at boomkat: http://➯.ws/⚥ SLR in 320kMP3 and Flac