<< >>
justin = { main feed , music , code , askjf , pubkey };recent comments
search
[ present ... 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 ... past ]
April 11, 2011
Music
freeform jam with louie


April 9, 2011
a little ditty

Here's a sparse musical improv I made with a friend.

Comment...


April 6, 2011
Music
louie - 1 -- [18:02]
louie - 2 -- [12:53]
louie - 3 -- [26:53]
louie - 4 -- [23:39]


March 30, 2011
Music
freeform jam with louie


March 28, 2011
Music
freeform jam with justins and alex and and and guy


March 21, 2011
beautiful ground

I love this song, and this version is particularly good:


Oh and this one too:


2 Comments


March 20, 2011
Music
easy-time-cruncho


March 9, 2011
Music
freeform jam with louie


March 8, 2011
another one

funny days (the internet), includes samples from this video.

Recordings:

funny days

Comment...


March 7, 2011
a little ditty

rainy sad sunday -or- notes written in pencil. I did some lyrics which were a bit crap, so I left them out of this mix. Space harmonica ftw.

1 Comment


March 6, 2011
Music
rainy sad sunday


March 1, 2011
Music
freeform jam with louie


February 23, 2011
Music
freeform jam with louie and in and greenpoint


February 13, 2011
Unauthorized Addition

I recorded some drums to the audio from this video, and sent it to the author, but the author hasn't responded, and to the best I can tell, hasn't listened to the mp3. So I'm posting it here:

Chris Jeffries - I think I'm Alive (drums added).

My preference for what happens is:

  1. the original author notices and does not mind.
  2. the original author does not notice
  3. the original author notices and minds
  4. the original author does not notice and minds

That is all.


2 Comments


January 20, 2011
subway advertising


After seeing this ad, I had a lot of questions for HSBC:

First, would it still be 100,000 Euros after the fantastic gold market crash of 2011, which would have to happen once it was known that all of the gold from beneath the ocean was now available?

Having sorted that, suppose you did give everyone on earth 100,000 Euros. I can imagine so many scenarios:

  • "Can I buy your 1988 Ford Fiesta for $20,000?" .. "No, I don't need any more money, I need my car".
  • Someone in the jungle with nothing to do with their money.
  • Who in their right mind would keep their minimum wage job if they have the equivalent of 20,000 hours of work in the bank?
Would it change anything in a meaningful way? Those in moderate credit card debt would probably be helped greatly, and those with a moderate (but not insane amount) of money would be hurt.

OK I've wasted enough time on this. Carry on.

6 Comments


December 20, 2010
Music
hello broadway


December 19, 2010
Joy, from Perl

I've recently started using Perl for text wrangling instead of PHP -- it started after much of my PHP included a lot of preg_replace and preg_match calls, which got me wondering...

There's a certain satisfaction I get from perl that I don't really get from other languages. There's something about the density that makes it quite readable, at least for the author. Here's a script I wrote to automatically add a new build configuration, based on an existing build configuration, with some modifications, to a given .dsp (VC6 project file):

    
    #!/usr/bin/perl
    $sp = "Win32 Release";
    $np = "Win32 Nitpicker";
    $spd="Release";
    $npd="Nitpicker";
    $spdir="/Release/";
    $npdir="/Nitpicker/";
    $libfile = "../../nitpicker/libcmt_nitpick.lib";
    while (<>)
    {
      chomp;
      s/\r$//;
      s/\n$//;
       
    
      print $_ . "\r\n";
      if (/^!ELSEIF .*$sp".*$/ || /^!IF .*$sp".*$/)
      {
        s/^!IF/!ELSEIF/;
        s/$sp/$np/;
        @nc = ($_);
        while (<>)
        {
          chomp;
          s/\r$//;
          s/\n$//;
          if (/^!/)
          {
            my $tmp=$_;
            foreach (@nc)
            {
    	  s/$spd/$npd/g;
    	  s/$spdir/$npdir/g;
    	  if (/^# ADD BASE CPP/)
    	  {
    	    s/\/Z\S *//;
    	    s/\/YX *//;
    	    s/\/FR *//;
    	    s/\/FD *//;
    	    s/$/ \/FR \/FD \/Zi/;
    	  }
              if (/^# ADD CPP/)
    	  {
    	    s/\/Z\S *//;
    	    s/\/M\S *//;
    	    s/\/O\S *//;
    	    s/\/FR *//;
    	    s/\/FD *//;
    	    s/$/ \/FR \/FD \/Zi \/MT \/Ot \/Og \/D "DEBUG_TIGHT_ALLOC"/;
    	  }
    	  if (/^# ADD LINK32/)
    	  {
    	    s/^# ADD LINK32 /# ADD LINK32 $libfile /;
    	    s/\/debug *//;
    	    s/\/out:/\/nodefaultlib:"LIBCMT" \/out:/;
    	    s/$/ \/debug/;
    	  }
    	  if (/^# ADD BASE LINK32/)
    	  {
    	    s/\/debug *//;
    	    s/\/map *//;
    	    s/\/dll /\/dll \/debug /;
    	    s/$/ \/fixed:no/;
    	  }
              print $_ . "\r\n";
            }
            print $tmp;
            last;
          }
          print $_ . "\r\n";
          push(@nc,$_);
        }
      }
      if (/^!MESSAGE.*$sp".*$/ || /^# Name ".*$sp" *$/)
      {
        s/$sp/$np/;
        print $_ . "\r\n";
      }
    }
    
In case anybody is interested, Nitpicker is something we've been working on that is similar to Electric Fence or other memory debuggers, but better suited for our workflow/design/etc. We'll probably GPL it once it matures.

6 Comments


December 13, 2010
Watching this



2 Comments


December 7, 2010
Music
freeform jam with brennewt


December 4, 2010
Music
freeform jam with newtchrtodd


December 3, 2010
Music
freeform jam with chr


December 1, 2010
Music
freeform jam with brennewt


November 30, 2010
Note to self

If you want to make PNG files bigger (and thus compress better in solid bzip2/lzma 7z/installers):

for a in `find . -name \*.png` ; do pngcrush -f 0 -m 1 -l 0 -force $a $a.tmp ; mv $a.tmp $a ; echo $a ; done


1 Comment


November 19, 2010
A video from last night:

I had a wonderful time.


Apologies for the lousy video quality, and the rough audio mix.

6 Comments


November 18, 2010
So excited...

(and here is the video for a song I mentioned in a previous post):


4 Comments


November 5, 2010
Missing England

They do train stations right. Bleh.

1 Comment


October 31, 2010
these days, disk is fast

Just made a synthetic test to generate 128 .WAV files (large, to avoid staying in cache) that when summed, produce a nice clean sine wave, and when any are missing, produce noise. REAPER seems to have no problem playing them all at once, at least on my fast laptop or desktop, with Win7 x64. Mmmm. It's only 18MB/sec, even.

Comment...


October 31, 2010
An incredible bargain!



3 Comments


October 31, 2010
Emotions

Happy


Sad*



* but feeling good?

P.S. I love you, allpress.



2 Comments


[ present ... 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 ... past ]
search : rss : recent comments : Copyright © 2024 Justin Frankel