Eponymous
   



About
My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


contact

Subscribe
Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

Flavors
There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    27 Dec 2007

    Optical Illusion
    I saw this today. I thought it was interesting.

    [/musings] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    24 Aug 2016

    An Observation
    There is something satisfying about driving in a DeLorean while listening to The Clash's Live: From Here to Eternity.

    [/dmc] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    18 Jun 2016

    FreeBSD Unix on Dell Precision M4800
    I installed FreeBSD 10.3 on the laptop I recently acquired and almost eveything worked out of the box. The gigabit ethernet and wi-fi coards worked fine and by setting the BIOS to discrete graphics only, the nVidia Quadro was recognized.

    I installed the binary driver from nVidia, because they support FreeBSD because they're awesome like that. The nvidia-xconfig(1) program was useful to streamline the process of getting X.org to use the Quadro.

    There were a few things that did need some tewaking though. First there's the sound card. Because the quadro supports HDMI (in addition to VGA and DisplayPort), it includes an HDA-compliant sound card. This card is recognized before the primary HDA-compliant sound card in the machine, the one that's actually connected to the speakers.

    I did some research and there were some suggestions about using sysctl(8) to control soundcard GPIO pins to connect the nVidia sound device to the speackers but what ultimately worked was using sysctl(8) to change the default primary sound device to the dedicated card. There were a few ways to make this happen but the one I found that actually worked was to place sysctl(8) command lines in /etc/rc.local.

    First I found the device I wanted as the default:

    mforde@gaz:~> cat /dev/sndstat 
    Installed devices:
    pcm0:  (play) default
    pcm1:  (play)
    pcm2:  (play) 
    pcm3:  (play)
    


    Device pcm2 was the one I wanted so I added the following lines to /etc/rc.local
    sysctl hw.snd.default_unit=2
    sysctl hw.snd.default_auto=2
    


    Now when boot completes pcm2 is set to my default and sound "just works" and sndstat shows pcm2 as the default.

    I found ACPI support has some weirdness as ACPI support often does. What I found was that Suspend works from console, but resume doesn't... HOWEVER After I start X ACPI suspend and resume work just fine. Normally I prefer to boot into a console and only start X if I really need it, but because I want suspend and resume to work "by default" I've enabled X to start at boot by allowing the xdm console in /etc/ttys.

    But this had one last issue. See, when manually starting X, I added the -dpi 143 option to get graphics and text to be appropriately sized for my screen. XDM needed to know about this.

    This probably wasn't the best place to do it, but I edited /usr/local/lib/X11/xdm/XServers and modified the call to X(7) to add the -dpi 143 option. Now when Xdm loads at start up, the DPI is set correctly.

    The function keys for adjusting the screen brightness don't work; however, xbacklight(1) works just fine. Similarly the volume keys don't work but I can adjust the volume quite easily with aumix(1).

    I've submitted my dmesg output to NYCBUG's dmesgd repository.

    I suppose I've posted this for two reasons. The first is so I have a record of how I eventually got these little things working in case I have to do it again. The second is in case anyone has similar issues with their hardware; if they happen to stumble upon this, it might give them some hints.

    [/unix] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        

       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    16 Aug 2017

    Sometimes...
    Sometimes it's dificult to find a reason to continue.

    [/musings/self] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    05 Jan 2008

    Google blocks browsers
    Netmeister has an interesting blurb about experience with Google blocking various UserAgents.

    From the posting:

    For example, perl's LWP::UserAgent sets the agent string per default to
    "libwww-perl/#.#". Google apparently doesn't like that and will not
    return results to you. Setting it to something like "Mozilla/5.0 (X11;
    U; NetBSD i386; en-US; rv:1.8.1.3)" would work.
    
    Interestingly, they appear to whitelist agents, rather than blacklisting
    them.
    


    What was that about not being evil?

    [/musings] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    18 Jul 2008

    Yet Another Charity 5K
    On August 4th I will be participating in Hoboken's 17th Annual 5K Run/Walk Against Crime & Drugs.

    Some police officers told me about the run on Tuesday after I finished the Party With Purpose run. They said the money raised would be donated to various Veterans' organizations.

    This run in August will be the same course as this week's, a map of which can be found here. I enjoyed the course. It was rather flat (especially compared to the Lincoln Tunnel Run) and there was a nice breeze coming off the Hudson.

    I urge any and all of you who will be in the area to participate in the event. More information can be found at Active.com.

    [/musings] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    27 Dec 2007

    Optical Illusion
    I saw this today. I thought it was interesting.

    [/musings] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    07 Oct 2022


    I'm looking California and feeling Minnesota

    [/musings] [permanent link]

    29 Dec 2021

    Fireside Chat


    Tonight I signed up for the Fireside beta. They asked for all my social media accounts to prove I'm a human. The problem is, I don't have a twitter account, a facebook account, instagram, etc. Years ago I took the advice of numerous psychology studies and my own therapist's advice and got off the social media platforms. It was one of the best things I've ever done for my mental health.

    So hopefully this blog, though infrequently updated (and slightly broken since the last major perl update), will serve as proof to the people at Fireside that I am human and not a bot.

    It was the Astonishing Legends Podcast that led me to Fireside. It would be nice to use it for one of their interactive live chats sometime.

    [/musings] [permanent link]

    07 May 2020

    Bill Gates is Satan's Minion
    Bill Gates was Satan's minion, is Satan's minion, and always will be Satan's minion.

    [/musings] [permanent link]

    12 Mar 2018

    Take back your privacy
    Recent surveys have found that 76% of [the most visited] websites in the world cotain trackers from google and 24% contain trackers from facebook. This has been reported by CNBC, PC World, The Verge, Fortune, and Breitbart.

    Almost anywhere you go on the internet, they are following you, building a profile on you, and selling that information, your information, to the highest bidder. Even if you don't have a user account for google or facebook "services," they've built a profile of you using this surreptitiously collected data.

    It turns out there are some steps one can take to prevent these companies from following you wherever you go. It's not perfect, but it helps a lot. First, don't use Chrome. Second, install ad-blocker plugins for your browser. Third, use your firewall.

    It turns out Google and Facebook are large enough that they have their own Autonomous Systems (AS) composed of numerous subnets. Google owns AS 15169, while Facebook owns AS 32934. Using a little bit of shell, it's relatively easy to look up all the subnets owned by these companies.

    whois -h whois.radb.net -- '-i origin AS32934' | grep "^route:" | awk '{print $2;}'
    whois -h whois.radb.net -- '-i origin AS15169' | grep "^route:" | awk '{print $2;}'


    That's a lot of subnets. Because I have different operating systems on different computers and still want to block traffic to and from all those IP addresses, I've written some simple scripts to add rules to various firewalls. I have scripts for IPFW on FreeBSD, IPTables on Linux, and the Windows Firewall that should work from XP SP3 through Windows 10. I've only tested it on Windows 7 and Windows 10, and it worked in those.

    All of these scripts can be found in this directory. The IPFW and IPTables scripts are self-contained. For the Windows command shell batch files, the *ips.txt files are also needed.

    I have to say, the internet looks very different with these firewall rules in place. There are noticeably fewer advertisements and pages load faster. Embedded YouTube videos and Instagram photos don't appear. Sometimes the frame disappears, sometimes you get a "failed to connect" page appearing in a frame in the middle of a page. (Yes, these rules block YouTube and Instagram; they are owned by google and facebook and reside in the subnets owned by those companies.) On a relatively rare occasion, I come across a site using some sort of javascript or css or something hosted by a machine in one of those ASs and that will be blocked. Sometimes the site handles that gracefully, sometimes it stops being functional. A small price to take back your life.

    Update: Twitter has trackers on a decent amount of sites out there too, so I've added scripts to block Twitter's AS 13414 as well. Those scripts are in the same directories as the others.

    [/musings] [permanent link]

    17 Oct 2017

    St Michael, defend us in battle
    Crisis Magazine has a great piece about St Michael and the ongoing spiritual warfare in the world.

    [/musings] [permanent link]

    12 Oct 2017

    New PGP Key!
    So apparently Evil32 happened. Approximately 24,000 PGP keys were generated that had collisions with the 32-bit short IDs of existing keys. Then someone decided to use those conflicting keys to generate revocation certificates and upload them to the keyservers. Joy.

    Though my old keys still work, they were affected by this mass revocation of collsions. I have created a new key which can be found at http://skinnymf.com/~mforde/mforde.asc.

    On a related note, if anyone is interested in Key Signing Party, shoot me an email. I haven't been to one of those since college.

    [/musings] [permanent link]

    16 Aug 2017

    Sometimes...
    Sometimes it's dificult to find a reason to continue.

    [/musings/self] [permanent link]

    24 Dec 2016

    Merry Christmas
    While the holidays are supposed to be a joyous time, I know and understand how hard they can be for some people. If you're having a rough time over the next week or so and need someone to talk to, feel free to message me. If you're reading this blog, you likely know my email address or phone number.

    [/musings] [permanent link]

    13 Aug 2016

    What Year is This?!
    So this was my Saturday night....
    A bottle of Crystal Pepsi with Metallica's Ride the Lightning and
Joy Division's Unknown Pleasures vinyl records sitting on the hood of a
DeLorean Joy Division's Unknown Pleasures on a record player

    [/musings] [permanent link]

    08 Jun 2016

    Megapath sucks
    Speakeasy was by far the best ISP I ever dealt with. Freindly, and above all, knowledgeable. Since they have been purchased by Megapath then merged into Global Capacity, their tech support has been, frankly a bunch of idiots. Furthermore, their website routinely has "Service failed" errors that prevent you from logging in, changing passwords, and viewing account information.

    Today, after being unable to log in to the website due to "service failed" the tech support rep on the phoned didn't understand what a subnet mask or gateway address were. Eventually I just got her to read me "all three IP addresses" on the screen in front of her.

    But at this point my only other option is Verizon. So I'm sticking with Megapath.

    [/musings] [permanent link]

    25 May 2016

    Found this sitting in a tarball of my old home directory...

    
                                                                                                                                  
                                                                                                                                  
                  ..,,..  ..ttLLLLtt..  ..;;ii;;,,..;;ttGGLL;;....iiiiiiiiiiii..    ..iijjttttii..                                
          iiLLLLGGKKKKDDLLGG########GGLLDDWWWWWWKKKKKK######WWDDEEWW##WWWW##WWDDjjffDD##########LL..          ..;;..              
      ..ffWW########WWKK####KKjjttEE####WWGGGGEEGGDDDDGGjjttGGKKWWWWLLGGLLGG##########DDjjttttGG##GGffttiiiiffDDKKDDGGGGGGii      
      ff####GGffffttii;;ttLLiijjtt;;LLtt;;,,,,;;;;;;iittLLtt;;,,iiiiiitt;;;;ffGGGGLLtt;;iiii;;;;DDWW####WWWW####KKDDKKKKWWWWtt    
    ..EE##LL;;ttttLLttLLLLttff##WWGGjjffGGDDGGKKKKKKWW####WWDDGGDDDDWW##EEEEffttffLLffGGWWWWGG;;;;ttffjjffDDDDff;;;;;;iittKKWWii  
    ;;KKKKiittKK######WWWW######################################KKKKWW##WW##################WWKKDDffttjjjjiiiiiiLLEEGGDDiittWWLL  
    ..KK##ttGG######WWDDDDEEKKDDKKWWDDKKEEKKWWEEKKEEWW##WWKKWWEELLLLDDDDDDEEEEEEEEEEEEEEKK##########WW####KKWWKK########KKiiDDEEii
      DD##ffGG######EELLLLLLLLLLGGDDLLDDGGDDDDLLLLEE####WWGGGGLLLLLLLLLLLLLLLLLLLLLLLLDDKK######WW####KKKKKKWWWWKKKKWW####ttLLWWLL
      GG##LLLL##KKKKDDLLLLLLLLLLLLLLLLLLLLLLLLLLGGWW####WWLLDDLLLLLLLLLLLLLLLLLLLLLLGGKKWW######EEEEDDLLLLLLDDEEEELLEE####ffLLWWGG
      LL##GGjj##KKLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDKK####WWLLEEDDLLLLLLLLLLLLLLLLLLLLGGEEKK##WW##EELLLLLLLLLLLLDDDDLLKK##WWiiGGKKjj
      jj##GGiiWWWWGGLLLLLLLLLLLLLLLLLLLLLLLLLLLLDDKK####KKLLKKEELLLLLLLLLLLLLLLLLLLLLLLLKK##GG##EEDDDDLLLLLLLLLLLLLLKK##GG;;KKDD;;
      ii##EE;;DDWWGGLLLLLLLLLLLLGGLLLLLLLLLLLLLLLLKK####KKLLDDDDLLLLLLLLLLLLLLLLLLLLLLLLEE##ffWWKKEEEELLLLLLLLLLLLLLKKWWiijj##ff  
      ;;WWWWiiGGKKLLLLLLLLGGLLDDEEDDLLLLLLLLLLLLLLKK####KKDDGGLLLLLLLLLLLLLLLLLLLLLLLLLLDDWWttEEWWDDDDLLLLLLLLLLLLLLEEKKiiKKWW;;  
      ;;WW##ttGGWWGGLLLLLLEEDDEE##KKLLLLLLLLLLLLLLKK######WWEELLLLLLLLLLLLLLLLDDDDGGGGDDKKWWiiLLWWGGLLLLLLLLLLLLLLLLKKKKttWWLL    
      iiWWKKiiKK##DDLLLLLLEEEEWW##WWDDLLLLLLLLLLLLKKWW######EELLLLLLLLLLDDEEEEWWWWKKKKWW####ii;;KKDDLLLLLLLLLLLLLLDDWWKKffWWtt    
      ii##WWttWW##EELLLLLLDDEE######EELLLLLLLLLLLLKKDDEE####KKLLLLLLLLLLEE##################ii..KKEELLLLLLLLLLLLGGDD##DDffWWii    
      ;;WW##ttLL##KKLLLLLLLLEE##KK##KKLLLLLLLLLLDD##LLLLEEWWKKLLLLLLLLLLKK####WWKKffLLKKWWGG;;..EEKKLLLLLLLLLLLLDDEE##LLLLWWii    
      ..EE##LLiiWWKKLLLLLLGGKK##LLKKKKGGLLLLLLDDWW##ff;;iiKKKKLLLLLLLLLLKK##WWLLffttiijjLLiiffttGG##DDLLLLLLLLDDEEKK##ffLLKKii    
        LL##KKiiKKWWGGLLLLLLKK##ttGGWWDDLLLLLLEE####tt;;,,EEKKDDLLLLLLLLEE##########WWWWWWttGGGGttWWWWDDLLLLLLGGGGKK##ffGGKK;;    
        iiWW##ttGGWWDDLLLLGGWWKK;;GGWWDDLLLLLLEE##KKiiGG;;KKKKDDLLLLLLLLGGEEWW##KKEEDDDDKKttKK##ttGG##DDLLLLLLLLGGWW##jjEEEE..    
          GG##GGttWWDDLLLLGGWWKKiiWWWWDDLLLLLLEE##GGttKKiiGG##EELLLLLLLLLLLLGGDDGGLLLLEEKKjjWW##ffLLWWGGLLLLLLLLGGWWWWjjKKGG      
          tt##EEttWWDDLLLLDDWW##WW####DDLLLLLLKK##ffLL##DDttWWWWDDLLLLLLLLLLLLLLLLLLLLKKKKjj####jjGGKKLLGGLLLLLLDD##KKttWWLL      
          ii##KKttKKDDLLLLGGWW####WW##EELLLLLLEE##jjGG####ttDDWWGGLLLLLLLLLLLLLLDDDDGGWWEEtt####ttKKWWLLLLLLLLLLDD##GGffWWtt      
          iiWWKKttWWEELLLLLLEEKKKKEEEEDDLLLLLLEE##ttEE####jjKKWWDDLLLLLLLLLLLLLLDDDDDDWWDDtt##WWttWW##DDLLLLLLLLEE##LLLLWWii      
          iiWWKKff##EELLLLLLLLLLLLLLLLLLLLLLLLEEWWttKK##KKttWW##EELLLLLLLLLLLLLLLLLLDD##GGtt##WWttWW##EELLLLLLLLEE##ttGGEE..      
          iiWWWWff##KKLLLLLLLLLLLLLLLLLLLLLLGGKKWWttWW##KK;;EE##EELLLLLLLLLLGGGGGGGGEE##GGtt##WWttKK##EELLLLLLLLEEWWttEELL        
          ;;WWKKff##KKGGGGLLDDLLLLLLGGLLLLLLDDWWKKtt####WWiiLL##EELLLLLLDDKKWWWWKKWW####ffff##WWttEEWWDDLLLLLLLLEEKKiiEELL        
          ;;WWKKjjWWKKLLLLDDWWEEDDEEKKDDLLLLDDWWKKjj######jjLL##EELLLLLLEE##############jjLL####ttGG##DDLLLLLLLLKKKKiiKKff        
          ;;WWWWttKKEELLLLEE####WW####KKGGLLDDWWDDjj######ffGG##EELLLLLLEE##LLLLLLWWWWKKiiGG####LLjj##DDLLLLLLLLKKEEttWWff        
          ;;KKWWiiEEDDLLLLWW############DDLLGGWWDDjj######GGff##KKLLLLLLEE##ttiiiitttt,,;;KK####DDtt##EELLLLLLLLKKDDttWWtt        
          ;;KKWWiiDDDDLLLLWWWWffff######EELLDD##GGff######KKttWW##DDLLLLEE##ffGGKKjj;;iiDD######KKjj##KKLLLLLLLLKKGGffWWii        
          ,,KK##iiDDEELLLLWWGG  iiffffWWDDLLEE##GGff########ttGG##EELLLLEE##ttLL####WWWW########KKtt##KKLLLLLLGGWWLLLLKK;;        
          ..KK##ttLLKKLLLLKKGG......ttKKGGLLEE##LLLL########GGtt##KKLLLLEEKK;;LL########WWKKWW##KKttWWWWDDLLLLDD##ffLLGG..        
          ..KK##jjLLWWGGLLKKKK;;ttttff##DDLLDDWWttGG########KKttWWKKGGLLDDKKiiEE##ffttttii..ttWWWWttKK##EELLDDKK##ttGGGG          
          ;;KK##ffLLWWGGLLKKEE;;LLGGtt##KKLLGGKKjjKK########WWttKKWWDDLLDDKKttKKEE..          GG##ffff##WWDDWW##EEiiEELL          
          ..DD##GGttWWDDLLEEGG..LLWWttKKKKGGEEKKjjWW##########ttGG##KKDDDDWWttEEDD..          tt##KKiiWW##WW####GGtt##ff          
            ff##KKiiWWDDGGEEGGiiWW##ttDDKKDDWWKKjj############ffLL####WWKK##ttDDEE..          ;;KK##ttLL######WWttLL##ii          
            ;;WWWWttKKWWKKKKGGjj####ttGGWWEEWWGGtt############LLLL##########ttKKDD              GG##EEiiDD####LL;;KKEE..          
            ..EE##ffLL##WW##GGtt####jjLL######LLtt############LLttWWGGKK##LLttWWLL              iiWW##ffff####ttGG##ff            
              LL##EEttGGLL##GGtt####LLttWWKK##ffLL##EEttttKK##DD;;ff;;ttEE;;GG##tt                ff##DDiiKKLLiiWWKK;;            
              tt####ttii;;KKffff####KKiiii;;GG;;LL##ii    iiWW##LL::  ;;tttt##DD..                ;;KKWWiiffiiGG##ff              
              ..KK##GGttiiii;;GG######DDLLii;;;;KKEE..      ff####DDLLii;;GGWW;;                  ..DD##LL..tt##KK;;              
                jj######GG..jj############GGiiDD##ff        ..LL######WWKK##GG                      ff##WWDDWW##tt                
                ..LL####WWGGWWWWffiittGGWW##WW##DD::          ..ffKKWWWWWWKKtt                      ,,DD######ff..                
                  ..ttEEWWWWDDii        ttEEKKGG;;                ..;;;;ii;;                          ;;ttffii..                  
                      ..ii;;..            ..;;..                                                                                  
                                                                                                                                  
    

    [/musings] [permanent link]

    21 Apr 2016

    Prince
    I'll never forget the day I started liking Prince's music. I was with my friend in his car headed somewhere. We were listening to K-Rock and they had a "listener playlist" where for about an hour, all the music had been selected by a listener and this listener was on the phone, talking with the DJ about his selections and introducing songs.

    The guy announced that the next song was from Prince. The DJ questioned this selection and he said, "No, this dude can shred. Just listen."

    And we laughed.

    And we listened.

    And Prince shredded.

    [/musings] [permanent link]

    20 Apr 2016

    It's been a while...
    It's been a while since I've had a substantial update here. I've been busy living life leaving little time to be writing about it; at least writing about it here.

    Work has been quite busy for a while now. Lots of projects, lots of deadlines, lots of extra hours. But there hasn't been any "mandatory seven day work weeks" like I had at that one job, and there isn't that expectation of "you can work from home so you are always expected to be working" I had at the last job. Plus, the work is a lot more interesting than anything I've done in years.

    Bernstein was right: money doesn't motivate me, interesting problems and the ability to tinker do.

    Yesterday the DeLorean rolled over to 16,000 miles. That's still about 1,000 miles a year I'm putting on it. I'd like to keep the mileage low, but she's just so much fun to drive. I've been asked by people at work to bring Aisling next week for Bring Your Child to Work Day. Apparently a lot of my co-workers have told their kids about the car and they want to see it.

    I ran my 29th half-marathon this past weekend. I'd like to get up to 32 this year. I'm also signed up for my 13th marathon this Autumn. I'm considering running number 14 a few weeks later.

    In addition to all of that taking up my time, I've also been volunteering with the Youth Ministry at a church in my diocese. That's been quite an amazing adventure. It's had a profound impact on my life and has certainly helped at least a few teens. It's been an honor to do the Lord's work. Maybe someday I'll publish some of the talks I've given. The In His Image talk seems to have resonated with a lot of people, certainly more so than some of the other talks.

    I guess that sums things up for now.

    [/musings] [permanent link]

    16 Feb 2016

    On Content "Management" Systems
    Wordpress is the new Typo3.

    Discuss amongst yourselves.

    [/musings] [permanent link]

    16 May 2015

    It was a good day...
    So today I woke up and watched an episode of Star Trek while I did some weight training and core work. Then I met my friend and her 5-month old baby for breakfast. That baby is so cute, and so happy too.

    After that I met another friend for a run in the Tourne where we met a fox on the Red Trail. When I got home from the run, I turned my lawn into an avant garde art installation and then took a shower.

    I took Ailsing out for a drive and on the way home she rolled over to 15,000 miles. I've had the DeLorean for about five years now, so I'm still averaging 1,000 miles per year. Not bad.

    A large part of a tree fell and missed my house by about 18 inches. So then I went and ran another Six miles during a National Weather Service tornado watch.

    Now I'm finishing up the day with a good movie and a glass of Monk's Blood.

    Today, I didn't even have to use my AK. It was a good day.

    [/musings] [permanent link]

    08 Apr 2015

    Cast Yourself

    "Cast yourself upon Him and be not afraid; He will not draw away and let you fall. Cast yourself without fear, He will receive you and heal you."

    -- Saint Augustine, Confessions: Book 8, Chapter 11

    [/musings] [permanent link]

    10 Mar 2015

    It's not stupid, it's advanced
    I opened the Windows 10 settings app, not to be confused with the control panel, and I selected "Windows Update." Next, I chose the "Advanced Options" and was greeted with this mess. I hope the next build fixes this problem, as well as the myriad of other issues plaguing the current Windows 10 preview release.

    Windows 10 Settings App, Windows Update, Advanced Options,
unusable

    [/musings] [permanent link]

    24 Oct 2014

    Initial Thoughts on Windows 10 -- UPDATED!
    I'm done with Microsoft for any platform that is not a telephone. Windows 10 attempts to "fix" the abomination that was windows 8 on the desktop, but just makes things worse.

    The "search" "app" that replaces the previous existing search feature really only sends a query to bing. I'm looking for a file somewhere in a subdirectory on my hard drive. I didn't want to search the web for 20141020*.txt. The UI looks like crap. Slapping a titlebar on top of the "modern" "apps" does not make them usable on the desktop. The start menu has returned, but it has never been this useless. And the ability to revert to the "classic" start menu, the behavior introduced in windows 95, and refined in win98 and Windows 2000, has been removed. I shouldn't be surprised by that given that Windows 7 also lacked the "classic" start menu. At least Windows 7 allowed a "Windows Classic" theme for the rest of the UI.

    Ever since Service Pack 3 for Windows XP, MS has been slowly and surely trying to make things "easier." However, what they deem "easier" often means removing features and behaviors I relied on to get work done. Windows 10 continues this tradition.

    I never really had a problem with Microsoft, I never avoided their software for ideological reasons. I believe in using the right tool for the job. Windows 10 is the wrong tool for any job.

    UPDATE!!!

    Using the Windows Update mechanism, MS pushed out a new build of Windows 10. This upgraded the installation from build 9841 to build 9860. After a lengthy download, installation, and a very long reboot, I was able to log in again, Only to be greeted by this:

    Windows 10 build 9860 Update breaks Windows Defender causing error
code 0x80070241

    And this lovely error when I tried to open the new "Notification Center":

    Windows 10 build 9860 Update Notification Center cannot find
explorer.exe

    Now isn't that special?

    [/musings] [permanent link]

    07 Oct 2014

    The Truth is Out There
    Tonight, I had the great fortune of joining a person who means the world to me at a book signing by Gillian Anderson and her co-author Jeff Rovin. Jeff has ghost-written/co-written several novels for and with Tom Clancy, and Gillian is AGENT DANA SCULLY!!!

    Gillian indicated that she modeled the main character as someone she would play in a cinematic version of the story, and Jeff mentions that, while not required reading, the novel is a spiritual sequel to Edgar Allan Poe's only novel, The Narrative of Arthur Gordon Pym of Nantucket.

    I'm going to put The Crytptonomicon on the back burner and put Poe's work and this new novel, A Vision of Fire at the front of my priority queue. Gillian Anderson and Jeff Rovin
    Gillian Anderson and Jeff Rovin

    [/musings] [permanent link]

    10 Oct 2013 15 Jul 2013

    Windows 8.1 in Virtual Box
    I was attempting to run the Windows 8.1 Preview in a VM using Sun's Oracle's Virtual Box on a Windows 7 host. I ran into a minor problem.

    The OS wouldn't boot. I received an error stating:

    Your computer needs to restart. Please hold down the power button. Error Code: 0x000000C4 Parameters: [redacted]

    Looking for the error code online led me to this article describing the issue and a fix. The key to fixing this was running the command:
    "c:\Program Files\Oracle\VirtualBox\VBoxManage.exe" setextradata "" VBoxInternal/CPUM/CMPXCHG16B 1

    The CMPXCHG16B is an instruction in 64-bit X86 processors that allows for atomic operations on octal words.

    [/musings] [permanent link]

    02 Apr 2013 02 Dec 2012

    Happy Birthday

    I'm starting to get used to celebrating my birthday at TBM concerts. This year it was about a week prior to my birthday at a show on December 1 held at New York's Gramercy Theatre.

    Along with the tickets, I had also purchased the "VIP package." This package included an autographed poster signed by all members of the band, a "VIP" laminate on a lanyard, and... the opportunity to meet the band prior to the show!

    You may be thinking, "But they stick around after shows and mingle with their fans anyway," and "You've already met them a few times!" Both are true. And even with this "VIP" package meet-and-greet, they still make time for all their fans after the show. What this provided was a somewhat quieter meeting in a more intimate setting.

    In fact the meeting was in a small lounge beneath the concert hall. Dim mood lighting, mirrors, and couches set the atmosphere. I spoke with Rainbow, Michael, and Nate first. Rainbow informed me his name was Michael also and made a joke about the "power of the three Mikes lighting the room." After a bit, they started moving me to Chibi who was sitting on a couch after injuring her knee during a show two nights prior. She tried to walk to me, but I told her not to. She said, "I'll meet you half way then."

    I gave her a get well card, knowing she had had surgery on her vocal chords about 8 weeks prior and recently injured her knee. Someone decided we needed a photo of that and she gave me the card back so I could give it back to her. I believe it was Owen who said, "Act natural and hold it for 30 seconds!"

    I asked Rainbow about writing "Unfamiliar" because both he and OE were given credit in the liner notes. He said it was mostly OE; OE started it and Rainbow had finished it. I said I wanted to thank them because it was a song that had taken on some greater meaning to me and I relayed a brief version of the story of the moment I recognized that. It turns out "Unfamiliar" is one of Chibi's favorite songs too.

    Every one of the bands that night were amazing. All, remarkably, were performing as duos. Creature Feature was a real fun band to see. Their music is heavily influenced by old horror movies which gives them a dark yet fun sound.

    Aesthetic Perfection put on a good performance. Their drummer is amazing and fun to watch. They heavily synth-based and while there was a dark tone to most of their songs, they still had fun and lightened things up with a Fine Young Cannibals cover.

    William Control was the only other act I had heard before the show (Thanks Last.fm!). He was great live and I'd love to see him again. He reminded me a little of Dommin in that Dean Martin meets Glen Danzig sort of way.

    The Birthday Massacre was great. They played a good mix including songs from every album. For most of the set Chibi was sitting on a speaker placed near center at the front of the stage, wearing a knee brace. She stood up and moved around occasionally, but not much. At one point Rainbow sat down on another speaker and stuck out one leg in a similar fashion to how Chibi was seated and laughed a little. It was easy to tell by their interaction here that Chibi and Rainbow are close.

    If you care (or even if you don't), their set list follows:
    • Night Shift
    • Down
    • Control
    • Always
    • Red Stars
    • Video kid
    • Lover's End
    • Forever
    • Pins and Needles
    • Happy Birthday
    • Alibis
    • Calling
    • In the Dark
    • Sleep Walking
    • Midnight
    • -- Encore --
    • Leaving Tonight
    • The Long Way Home
    • Blue


    The band did not leave the stage prior to the encore as they normally would. Chibi said, "This is the part of the show where we say thank you and leave and you clap and we come back out and play some more. But I'm not going to walk down those stairs anymore than I have to, so do you want to hear three more songs?"

    [/musings] [permanent link]

    07 Oct 2012

    Signs of the Apocalypse
    A friend told me this was from Glee. I found it amusing; thought I'd share.

    It's a fact that the book of Revelations predicted Twitter. It's one of the seven signs of the apocalypse; Along with porn, unexplainable weather anomalies, martian rovers, Barney Frank, the middle east and MSNBC. It's like Kirk Cameron said, "It's never too late, until it's too late."

    [/musings] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        

       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        

       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    31 Aug 2024

    Blosxom 2.2.0
    Apparently Blosxom development has been picked up again. There was a new release on 2024-02-03. Nice!

    [/unix] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    23 Jan 2008

    Best Buy Capitalizes on Actor's Death
    I stumbled upon this information today. The Best Buy in Mission Valley San Diego attempted to cash in on Heath Ledger's death mere hours after his passing. You can read all about it here.

    [/musings] [permanent link]

    22 Jan 2008

    Best Buy Charges Customers for Exchanges
    This weekend I witnessed a friend try to exchange an item at Best Buy. He had mistakenly purchased the full-screen version and wanted to exchange it for the wide-screen version. While he did not have his receipt, it still had the Best Buy sticker on the shrink wrap as well as the $19.99 price tag.

    The signs on the shelf indicated that the wide-screen version was also $19.99 and as of January 22, both versions are $19.99 on the Best Buy website.

    My friend waited online patiently for about 15 minutes to make his exchange. He handed the Blue Shirt both the full-screen version he had purchased and the wide-screen copy he picked up before going to the customer service line. The Blue Shirt asked if he had paid cash or credit and when my friend said credit, the Blue Shirt asked for his card.

    The Blue Shirt swiped the card and pushed a bunch of buttons then told my friend he'd have to pay $5.35 ($5 plus 7% sales tax) due to a "difference in price."

    When we questioned this "difference in price" we were told, "Wide-screen always costs more than full-screen."

    I am boycotting Best Buy and I urge others to do the same. This company has a long history of using underhanded tactics to increase profitability at the expense of its employees and its customers.

    [/musings] [permanent link]

    05 Jan 2008

    Google blocks browsers
    Netmeister has an interesting blurb about experience with Google blocking various UserAgents.

    From the posting:

    For example, perl's LWP::UserAgent sets the agent string per default to
    "libwww-perl/#.#". Google apparently doesn't like that and will not
    return results to you. Setting it to something like "Mozilla/5.0 (X11;
    U; NetBSD i386; en-US; rv:1.8.1.3)" would work.
    
    Interestingly, they appear to whitelist agents, rather than blacklisting
    them.
    


    What was that about not being evil?

    [/musings] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    07 May 2020

    Bill Gates is Satan's Minion
    Bill Gates was Satan's minion, is Satan's minion, and always will be Satan's minion.

    [/musings] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    12 Mar 2018

    Take back your privacy
    Recent surveys have found that 76% of [the most visited] websites in the world cotain trackers from google and 24% contain trackers from facebook. This has been reported by CNBC, PC World, The Verge, Fortune, and Breitbart.

    Almost anywhere you go on the internet, they are following you, building a profile on you, and selling that information, your information, to the highest bidder. Even if you don't have a user account for google or facebook "services," they've built a profile of you using this surreptitiously collected data.

    It turns out there are some steps one can take to prevent these companies from following you wherever you go. It's not perfect, but it helps a lot. First, don't use Chrome. Second, install ad-blocker plugins for your browser. Third, use your firewall.

    It turns out Google and Facebook are large enough that they have their own Autonomous Systems (AS) composed of numerous subnets. Google owns AS 15169, while Facebook owns AS 32934. Using a little bit of shell, it's relatively easy to look up all the subnets owned by these companies.

    whois -h whois.radb.net -- '-i origin AS32934' | grep "^route:" | awk '{print $2;}'
    whois -h whois.radb.net -- '-i origin AS15169' | grep "^route:" | awk '{print $2;}'


    That's a lot of subnets. Because I have different operating systems on different computers and still want to block traffic to and from all those IP addresses, I've written some simple scripts to add rules to various firewalls. I have scripts for IPFW on FreeBSD, IPTables on Linux, and the Windows Firewall that should work from XP SP3 through Windows 10. I've only tested it on Windows 7 and Windows 10, and it worked in those.

    All of these scripts can be found in this directory. The IPFW and IPTables scripts are self-contained. For the Windows command shell batch files, the *ips.txt files are also needed.

    I have to say, the internet looks very different with these firewall rules in place. There are noticeably fewer advertisements and pages load faster. Embedded YouTube videos and Instagram photos don't appear. Sometimes the frame disappears, sometimes you get a "failed to connect" page appearing in a frame in the middle of a page. (Yes, these rules block YouTube and Instagram; they are owned by google and facebook and reside in the subnets owned by those companies.) On a relatively rare occasion, I come across a site using some sort of javascript or css or something hosted by a machine in one of those ASs and that will be blocked. Sometimes the site handles that gracefully, sometimes it stops being functional. A small price to take back your life.

    Update: Twitter has trackers on a decent amount of sites out there too, so I've added scripts to block Twitter's AS 13414 as well. Those scripts are in the same directories as the others.

    [/musings] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    12 Oct 2017

    New PGP Key!
    So apparently Evil32 happened. Approximately 24,000 PGP keys were generated that had collisions with the 32-bit short IDs of existing keys. Then someone decided to use those conflicting keys to generate revocation certificates and upload them to the keyservers. Joy.

    Though my old keys still work, they were affected by this mass revocation of collsions. I have created a new key which can be found at http://skinnymf.com/~mforde/mforde.asc.

    On a related note, if anyone is interested in Key Signing Party, shoot me an email. I haven't been to one of those since college.

    [/musings] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    20 Dec 2007

    WTF?
    I'm used to guitarists mocking the bass and bassists. It doesn't bother me too much. But this... This irritated me. A lot.
    Today at work there was a group of people talking about Rock Band and Guitar Hero 3. None of them actually know how to play intstruments but they claim to be great at these games. They seem to believe this entitles them mock bassists.

    • "Oh man, bass is so easy. It's the guitar that's the hard part. Yeah, I'm on expert on the guitar."
    • "Yeah, bass is so stupid."
    • "So It's me, my brother, and my sister. I play guitar, he's on drums, and my sister sings."
      "what about bass?"
      "My friend just got Guitar Hero 3. I'll make him play bass."
      [Both laugh]
    • After making statements indicating this person believes he actually is better than Tom Morello, "After you make Tom Morello or Slash your bitch, they play bass for you."

    [/musings] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    30 Nov 2009

    Product Review: ASICS Cumulus-11
    This is the third installment of my running product reviews. Last time I said I'd discuss my "current running shoe" but my again I'm a liar. I'm still going to discuss the ASICS Cumulus-11, but it is no longer my current running shoe.

    I purchased the Cumulus-11 based on my love of the Cumulus-10, without really trying them. This turned out to be a mistake. The Cumulus-11 is a fine update to the Cumulus-10; however, the changes are better for some runners than others.

    The heel of the Cumulus-11 is noticeably firmer than that of the 10. Because of this change, I no longer get adequate compression and cushioning from these shoes. These shoes are not as firm as the Tailwinds previously reviewed either and are closer to the Cumulus-10 than to the Tailwinds. I never had the feeling of running in clogs with the Cumulus-11, but they were firm enough that old injuries were aggravated.

    The Cumulus-11 is still on store shelves (at least it was at Fleet Feet this past weekend) and should also be available on-line through retailers such as EastBay. I recommend this shoe to a runner who liked the feel of the Cumulus-10 but had issues with it being too soft.

    Next time, we'll discuss my current running shoe, the Nike Vomero+ 4. No really, I have three pairs of these to burn through, I'll be using them for a while.

    [/running/reviews] [permanent link]

    18 Sep 2009

    Product Review: ASICS Cumulus-10
    This is the second installment of my running product reviews. Last time I said I'd discuss my "current running shoe" but my training has turned me into a liar. I'm still going to discuss the ASICS Cumulus-10, but it is no longer my current running shoe.

    At this point, the Cumulus-10 can still be found, although supplies are limited. I recently tried to purchase a second pair of these and was unable to find them in my size. I could have had a 9.5 or a 12, but not the 10.5 I needed.

    When the Nike Tailwinds no longer provided adequate cushioning, I had to find a new shoe, one that would work for a lighter runner. After reading reviews online and in magazines, particularly Runner's World, I went over to Fleet Feet in Montclair and talked to the sales staff there.

    After trying on a few pairs, I decided on the Cumulus-10 but wanted to wait until after the Brooklyn Half Marathon, a week away, before breaking in new shoes. This is not what happened. Because of the lack of cushioning in the Tailwinds, I ended up with horrible shin splints during my lunch time run the day before Brooklyn. I called up fleet feet, asked them to hold a pair of the Cumulus-10s for me and I picked them up that evening. I ran in them for the first time the next morning in the Brooklyn Half.

    Those shoes were amazing. They were soft enough to provide the compression needed for good cushioning at my weight. And while they were soft, they weren't mushy either. The ASICS GEL cushioning system is in place in both the heel and the forefoot, providing ample shock absorption for heel strikes and mid- to fore-foot strikes.

    The toe box was slightly narrow, but starting the laces one hole up from the bottom provided enough extra space while keeping my foot firmly in place.

    The sole in the forefoot is wide; wider than the sole in the Tailwinds. This provides support for the foot during the toe-off portion of the stride.

    The Cumulus-10 served me well until I had put just under 600 miles on them. At that point the cushioning was worn down and not as effective as it once was. I retired them about a week after the NYC Half Marathon in August giving me about 12 weeks worth of running. In actuality, I should have retired them after about 10 weeks.

    I recommend the ASICS Cumulus-10 for lighter runners with normal to low arches. Left over stock of the Cumulus-10 can be found at EastBay's website for $69.99 (both men's and women's), although many sizes are unavailable at this time.

    Next time, we'll discuss my current running shoe, the ASICS Cumulus-11. I've been slacking a bit so I only have about 250 miles on this pair so far. Hopefully I'll post the review before I hit 500 miles and retire these.

    [/running/reviews] [permanent link]

    26 Aug 2009

    Product Review: Nike Tailwind 2008
    Welcome to a new feature on this blog. I'm going spend some time writing what I think of various running related items such as shoes, clothes, and energy gels.

    My first review is the Nike Tailwind 2008 running shoe. At this point, they're a little hard to find as they have been replaced by the Tailwind 2009. From what I've read about the 2009 edition, not much has changed so much of this should still be relevant.

    What first drew me to this running shoe was the Air Max cushioning. Like many Nikes, the heel contained the Air pockets. Unlike many other Nikes, these also had the Air Max cushioning in the forefoot.

    I tried them on and they were snug, but not too tight. Perfect. They were already on sale by time I was buying them. Even better.

    I ran about 400 miles in my first pair in about six months time, and replaced them with another pair which lasted about another four months. During this time the shoes served me well on treadmills as well as road and trail courses.

    These shoes, however, are best for heavier runners. The cushioning is very firm and needs extra weight to compress properly for maximum impact absorption. When I first started wearing the Tailwinds, I was about two months into my training and was about 210lbs. As I ran more, I lost more weight. At 180lbs the shoes were still quite good. At 160lbs they still provided adequate cushioning, although I started to feel my runs more.

    The Tailwinds served me well until I was under 140lbs. Below that and they feel like running in clogs.

    I recommend the Nike Tailwinds for heavier runners with normal to low arches. The men's Tailwind 2009 can be found on the EastBay website for $79.99 (99.99 for women's) as of this writing, making them a relatively affordable running shoe.

    Next time, we'll discuss my current running shoe, the ASICS Cumulus-10.

    [/running/reviews] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    24 Aug 2016

    An Observation
    There is something satisfying about driving in a DeLorean while listening to The Clash's Live: From Here to Eternity.

    [/dmc] [permanent link]

    13 Aug 2016

    What Year is This?!
    So this was my Saturday night....
    A bottle of Crystal Pepsi with Metallica's Ride the Lightning and
Joy Division's Unknown Pleasures vinyl records sitting on the hood of a
DeLorean Joy Division's Unknown Pleasures on a record player

    [/musings] [permanent link]

    09 Aug 2016

    He's Not Wrong...
    Over at Net Meister there's a nice peice entitled Things They Don't Teach You in School". A lot of what Jan has to say is spot-on observation and good advice.

    It's definitely worth a read.

    [/code] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    27 Feb 2011

    Why does tomorrow have to be Monday?
    Today I decided to be awesome. My friends decided to be awesome too. It was awesome.

    We packed up and drove down to Westfield and ran the CJRRC Hangover 5K. It was supposed to be held January 1, but was rescheduled multiple times due to the weather.

    I ran a PR today finishing in 19:22. I was 4th in my age group and 15th over all.

    My friends ran the race too, all except one who has a broken toe. Everyone was happy with their time and met their goals for the day, ranging from sub-25 to "eh, taking it easy, seeing how it goes..."

    After the race we went cycling. This was my first bike ride outside. I've been working with an indoor trainer for the last few weeks and this was the first time I had been on a bicycle, outside, actually moving, in about 16 or 17 years. My friends have been cycling longer and more recently than I have, so today's 17 mile ride was rather easy for them.

    I was freaking out quite a bit, but they calmed me down, gave me pointers, and just helped me out in general.

    As we rode, I got more comfortable with the bike and I realized comparing this bicycle to my last bicycle is like comparing my DeLorean to my old Mercury Sable. It takes a while to get used to the differences, but once you do it handles far better and offers more control.

    [/running] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    16 Aug 2017

    Sometimes...
    Sometimes it's dificult to find a reason to continue.

    [/musings/self] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    23 Jun 2008

    Demo -- Update
    Rskutins recorded his drum part and sent it to me via the wonders of TCP/IP netowrking. On Friday night I finally had enough time (and motivation) to start recording.

    I spent a lot of time fighting with ProTools. It repeatedly crashed. Often, when it didn't crash, it simply stopped recording and reported that an error had occurred. I'm remembering this for the ProTools rant that will be coming in the future.

    After 45 minutes I had recorded about 6 seconds of vocals and the 24 second bass line. The next block of Copious Free Time(TM) I have, I'll begin the rough mix of the three parts. Hopefully ProTools won't crash as often during that phase.

    With any luck, it'll be mixed in the next week or two.

    [/album] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    03 Nov 2014

    Things I love about vim

    • Tabbed interface in the 7.x line
    • Macro recording
    • Built-in sed
    • :make
    • Not needing to remember a thousand key combinations that require seventeen fingers to properly execute

    [/unix] [permanent link]

    24 Oct 2014

    Initial Thoughts on Windows 10 -- UPDATED!
    I'm done with Microsoft for any platform that is not a telephone. Windows 10 attempts to "fix" the abomination that was windows 8 on the desktop, but just makes things worse.

    The "search" "app" that replaces the previous existing search feature really only sends a query to bing. I'm looking for a file somewhere in a subdirectory on my hard drive. I didn't want to search the web for 20141020*.txt. The UI looks like crap. Slapping a titlebar on top of the "modern" "apps" does not make them usable on the desktop. The start menu has returned, but it has never been this useless. And the ability to revert to the "classic" start menu, the behavior introduced in windows 95, and refined in win98 and Windows 2000, has been removed. I shouldn't be surprised by that given that Windows 7 also lacked the "classic" start menu. At least Windows 7 allowed a "Windows Classic" theme for the rest of the UI.

    Ever since Service Pack 3 for Windows XP, MS has been slowly and surely trying to make things "easier." However, what they deem "easier" often means removing features and behaviors I relied on to get work done. Windows 10 continues this tradition.

    I never really had a problem with Microsoft, I never avoided their software for ideological reasons. I believe in using the right tool for the job. Windows 10 is the wrong tool for any job.

    UPDATE!!!

    Using the Windows Update mechanism, MS pushed out a new build of Windows 10. This upgraded the installation from build 9841 to build 9860. After a lengthy download, installation, and a very long reboot, I was able to log in again, Only to be greeted by this:

    Windows 10 build 9860 Update breaks Windows Defender causing error
code 0x80070241

    And this lovely error when I tried to open the new "Notification Center":

    Windows 10 build 9860 Update Notification Center cannot find
explorer.exe

    Now isn't that special?

    [/musings] [permanent link]

    07 Oct 2014

    The Truth is Out There
    Tonight, I had the great fortune of joining a person who means the world to me at a book signing by Gillian Anderson and her co-author Jeff Rovin. Jeff has ghost-written/co-written several novels for and with Tom Clancy, and Gillian is AGENT DANA SCULLY!!!

    Gillian indicated that she modeled the main character as someone she would play in a cinematic version of the story, and Jeff mentions that, while not required reading, the novel is a spiritual sequel to Edgar Allan Poe's only novel, The Narrative of Arthur Gordon Pym of Nantucket.

    I'm going to put The Crytptonomicon on the back burner and put Poe's work and this new novel, A Vision of Fire at the front of my priority queue. Gillian Anderson and Jeff Rovin
    Gillian Anderson and Jeff Rovin

    [/musings] [permanent link]

    26 Sep 2014

    Give My Love to the Princesses
    I was out and about and happened to run into these two lovely ladies who seemed to like the car.

    Elsa and Anna of Frozen with DeLorean Elsa and Anna of Frozen in DeLorean

    [/dmc] [permanent link]

    14 Aug 2014

    Resetting Vim
    On occasion while I'm coding, I'll mistype something and vim's code autoindenting will stop honoring my settings. Likely, I've done something stupid that has disabled or modifying the settings from the defaults I set in my .vimrc file.

    If (when) this happens, Vim can be reset without exiting the procces by going into command mode and typing

    :source $MYVIMRC
    

    This reloads the settings of the .vimrc file without forcing you to restart the process, thus losing your place in your code.

    [/unix] [permanent link]

    31 May 2014

    1401554904
    http://en.m.wikipedia.org/wiki/Amargasaurus

    ==================================================================
    This mobile text message is brought to you by AT&T

    [/mobile] [permanent link]

    28 Apr 2014

    Looking back...
    As I look back at code I wrote a decade ago as an undergrad, I often find lots of little things that can be done better. For instance, in one file I found that reversing the order in which two functions were called would have eliminated a half dozen conditionals from one of the functions and would have resulted in the same expected behavior, but with fewer lines of code and a lower cyclomatic complexity.

    [/code] [permanent link]

    07 Apr 2014

    1396881317
    Gear Tip: Dry Out Soggy Sneakers | Runner's World http://www.runnersworld.com/running-shoes/gear-tip-dry-out-soggy-sneakers?cm_mmc=F

    ==================================================================
    This mobile text message is brought to you by AT&T

    [/mobile] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    26 Jul 2010

    Damn, it feels good to be a gangsta..
    After I finished my run tonight, still in my soaked running gear, I walked directly to local grocery store for chocolate syrup and had the following conversation with the woman at the check out counter.

    her: Over ice cream or chocolate milk.
    me: Chocolate milk.
    her: Nothing hits the spot like a cold glass of chocolate milk.
    me: Especially after a long run.
    her: How far did you run tonight?
    me: Half marathon. My third in three days.
    her: God bless you. God bless you.

    Then, as I walked away she said, "Nice legs."
    "Thanks. I've worked hard for those."

    [/running] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    24 Dec 2016

    Merry Christmas
    While the holidays are supposed to be a joyous time, I know and understand how hard they can be for some people. If you're having a rough time over the next week or so and need someone to talk to, feel free to message me. If you're reading this blog, you likely know my email address or phone number.

    [/musings] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    24 Dec 2016

    Merry Christmas
    While the holidays are supposed to be a joyous time, I know and understand how hard they can be for some people. If you're having a rough time over the next week or so and need someone to talk to, feel free to message me. If you're reading this blog, you likely know my email address or phone number.

    [/musings] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    22 Apr 2011

    This makes me sick...
    This is why I was fat. I can't believe I used to eat this way... Although the Guinness Chocolate Pudding does sound good.

    [/musings/self] [permanent link]

    19 Apr 2011

    It's not magic, it's C.
    I love reading comments like

    /* These defined magically in the linker script. */
    I found that in the GNU Standard C Library implementation when GCC told me the the variables to which the comment referred were undefined. I guess that linker script isn't magic after all...

    [/code] [permanent link]

    18 Apr 2011

    25th Anniversary Lincoln Tunnel Challenge 5K
    Yesterday the Giraffes ran the Lincoln Tunnel Challenge to benefit Special Olympics New Jersey. It was the events 25th anniversary and the Giraffes' third anniversary.

    The weather was much nicer than the previous two years with far less rain than last year and a much milder temperature than the 90+ degrees of two years ago. In fact, the weather outside was ideal for running. The weather inside the tunnel was a few degrees warmer, but still in that ideal range.

    Before the race, I met up with my friend Bobby. He's an athlete who competes in the Special Olympics. We went to school together and were on the Cross Country and Track & Field teams in high school. Back then, he and I were almost always the last two runners to finish at the Cross Country meets. The difference between us was that I was a quitter and he never gave up.

    That first time I ran this race in 2008, I failed to meet my goal 31:26. When I saw Bobby after that race, it made me think back to Cross Country. His determination to never quit was one of the influences that kept me running after that day.

    Back to this year's race...
    After talking to Bobby, I met some other friends from my town who were running (but decided not to register as Giraffes... grrr...). They, as well as the other Giraffes, were running in the second wave at 8:45. It was getting close to the start of the 8:00AM wave, so I parted ways with them and took my place in the starting area. After the standard pre-race speeches, including the announcement that this year's race raised almost $180,000 for SONJ, the gun went off and the race began.

    After a few seconds in the tunnel, my watch lost satellite reception and continued using the footpod while searching for satellites. Because it went back into the open sky search mode, I couldn't see any sort of timing or pacing information on the display. I was running blind, so to speak. Having set a PR of 19:08 in the 5K last month and a previous best of 20:16 for this course, I was hoping to just break 20 minutes. The Lincoln Tunnel is essentially a "V" shape with the second and fourth quarters of the race being uphill.

    During the second half I caught up to another runner I had seen in Weehawken prior to the start of the race. As I approached, he sped up. I said to him, "You're going to make me work for this, aren't you?"

    He replied, "I don't like people passing me. And I'm trying to catch that guy," gesturing to another runner about 50 feet ahead of us.

    I said, "Okay" and started picking up the pace a bit, overtaking the runner who had been in front of us. And I kept going. I started to feel the lactic acid in my left calf. I decided to ignore it. The feeling subsided. As I neared the end of the tunnel, I could hear the announcer calling out the finishing times. I gave it everything I had left, and cross the finish line.

    I stopped my watch and saw my time at 18:57. I knew then there was the possibility I had broken 19 minutes, but it would be close. I'd have to wait for official results. But I was too excited, I had tell someone, so I text'ed a few friends.

    I reconnected with my friends from town and the other giraffes, and told them all to kick ass and chew bubblegum. I watched as their heat started and they all entered the tunnel. I went and picked up my blanket from the registration table and tried to keep warm while I waited and watched my friends finish. It brought a huge smile to my face to see each of them, and especially Bobby, cross the line.

    The Giraffes celebrated another race and another year with our traditional post-race brunch. And the waiting continued...

    The official results were posted late in the afternoon, while I was helping a friend prepare for the flooding we're experiencing for the second time in two months. A friend text'ed just before 5:00PM with

    18.55
    congrats
    
    It was two seconds faster than I thought. It was 13 seconds faster than my previous PR set only last month. I finally broke 19 minutes, and I did it on the same course on which I ran my first race three years ago. I took 16:56 off my time in those three years. I finished 9th in my age group and 33rd overall, and for the seventh time in nine races this year, I set a new PR.

    Damn, it feels good.

    [/running] [permanent link]

    10 Apr 2011

    Acceptance, or lack thereof...
    A few days ago I picked up some dumbbells that had been left out, they were 40lbs each and I lifted them with one hand each. Three years ago the most I could lift, with both arms combined and "lifting with the legs," was 43lbs (the weight of my computer).

    Last month, I ran a 5K in 19:08. Yesterday during a speed workout I ran my two fastest 100m ever, 17.9 seconds and 17.87 seconds. Today I ran a 10K at a 6:24 pace, finishing in under 40 minutes. I've set a new PR in every distance I've raced this year except the half marathon, and that race I set a new record for myself on that particular course.

    I've put lost 126 pounds of fat and gained 36 pounds of bone and muscle. My body keeps getting stronger and faster.

    And I still can't accept my body for what it is....

    [/musings/self] [permanent link]

    Scotland 10K 2011
    This morning I ran the NYRR Scotland 10K for the third year in a row. The first time it was cold and raining, and I had food poisoning from eating at the Macaroni Grill the night before. (The Giraffes had a team dinner the night before and 40% of us got sick.) I ran that race at a slower pace than the 15K race a few weeks prior.

    Last year, the morning of the race was unseasonably hot and I was dealing with an ITBS flare-up. I ran that one almost as slowly as the previous year.

    All of the other 10K's I've run were always sub-par compared to my 5K and 15K times. I had never felt like I had a good 10K race. I always felt like I let myself down; like I should be doing better.

    Until today...

    Today's Scotland 10K was the first time I had a good run at this distance. When I set out this morning, my goal was a 6:56 pace, one second per mile better than my PR. Central Park was a bit chilly at about 52 degrees with an overcast sky.

    My team made our plans for meeting afterward and we took our places in the corrals. The gun went off and I started running. As soon as I crossed the starting line I decided I wanted to see how fast I could do this, how fast I could run a 10K. I wanted to see if I could break 40.

    So I ran fast and hard, watching my pace a little too closely at times. After the first mile I was warm and debating whether or not to take off the arm warmers. I decided to wait until later in the race, as one side of the park is usually warmer than the other. At about 2.5 miles I had a weird cramping feeling in the ball of my right foot, but within a few hundred meters the high kicked in and the pain went away. At the halfway point I knew I'd be close to a 40 minute finish if I kept up the pace.

    I kept up the pace until the last mile, then I sped up. I was close to the goal. I was going to make it or die trying. Well, probably not die. More likely vomit or pull a muscle or re-injure the IT-band. But not one of those problems happened. What did happen was I crossed the finish line less than 40 minutes from the time I crossed the starting line.

    For the first time, I had felt good during and after a 10K. I ran the race I wanted and the race I needed. I accomplished what I set out to do and it felt awesome.

    The official results posted a few hours later put me at 39:46, a 6:24/mile pace. This is a faster pace than my current 5 mile and 4 mile PRs. I ran at a 67.5% AG performance rating and finished 318 of 8491.

    I'm pretty pleased with myself...

    [/running] [permanent link]

    08 Apr 2011

    1302293987
    Why do I run?

    --
    ==================================================================
    This mobile text message is brought to you by AT&T

    [/mobile] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    14 Jun 2009

    The new phone book is here!
    I am now officially 5% rockstar. At least I am according to the New York Times. I am now the proud owner of DeLorean #6291 manufactured in November of 1981.



    closed
doors open
doors

    [/dmc] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    20 Dec 2007

    WTF?
    I'm used to guitarists mocking the bass and bassists. It doesn't bother me too much. But this... This irritated me. A lot.
    Today at work there was a group of people talking about Rock Band and Guitar Hero 3. None of them actually know how to play intstruments but they claim to be great at these games. They seem to believe this entitles them mock bassists.

    • "Oh man, bass is so easy. It's the guitar that's the hard part. Yeah, I'm on expert on the guitar."
    • "Yeah, bass is so stupid."
    • "So It's me, my brother, and my sister. I play guitar, he's on drums, and my sister sings."
      "what about bass?"
      "My friend just got Guitar Hero 3. I'll make him play bass."
      [Both laugh]
    • After making statements indicating this person believes he actually is better than Tom Morello, "After you make Tom Morello or Slash your bitch, they play bass for you."

    [/musings] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    26 Jun 2009

    Sunset Classic 5M
    I got to meet Bill Rodgers tonight after the Sunset Classic 5M in Bloomfield. He was signing autographs after the race and actually spedning time talking to people. He spent a good 5 to 10 minutes with everyone, answering questions, giving advice, and just talking about running in general. He signed my race bib and we talked about the course and his diet. He really did put mayo on pizza. Hellman's. Had to be Hellman's. As he put it, "When you're burning 5000 calories a day, you're hungry." It was a pretty good race, I kept pace with the second place female finisher for almost the whole race, with number 3 not far behind. In the last 200 meters or so they both took off and I finshed a few seconds behind them. After the race I thanked the girl I had been running with for making me push myself a little harder than I planned, and congratulated her on her placing. I also made some new friends from work. I met most of the company's running team after the race and we talked about running and stuff. Most of them are in other divisions of the company so I had never seen them before tonight.

    [/running] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    31 Aug 2008

    Writing

    "You need strong emotion, whether it's fiery or depressed, an extreme state of mind. I think in any art form it's the case." -- Daniel Ash


    Maybe it's my lack of experience. Maybe it's my lack of talent. I tried to sit down and write music for the song known as Ravage in the new naming scheme, but I failed miserably. When I try to force it, like I did tonight, nothing comes out right. I have ideas, I can hear them in my head, but without that inspiration, without that emotion, nothing I produce sounds right.

    I've been too happy recently and it's destroyed my creativity. I get the urge, I have the inspiration, to write when I feel negative emotions. I need anger; I need depression. It is in dealing with these emotions that I am able to write.

    I have tried several times to force myself to feel this way. This usually buys me a few minutes in which I can write, but it often fails. Because the emotions are artificial, the results are mediocre at best.

    I find this situation to be quite frustrating. I want to move forward with this album, but without that inspiration I am unable to do anything.

    In the meantime, I'm slowly teaching myself to play guitar and, to a much lesser extent, a keyboard-style synthesizer. I've also been going through materials my music teacher friend gave me to learn some basic music theory. Hopefully once I find that needed inspiration, or find a way to work without being angry or depressed, this new knowledge will make things easier.

    [/album] [permanent link]

    29 Aug 2008

    NIN
    On August 27th, I attended the Nine Inch Nails concert in East Rutherford, NJ held at the arena. I think I enjoyed it.

    I ordered a pair of tickets through nin.com during the presale. Tickets went on sale at 5:00PM, I managed to get through by 5:05 and ended up with two tickets for Section 121, Row 8, opting not to purchase floor seats. I went with a friend with whom I've attended a number of concerts, including the Bauhaus/NIN show at PNC Arts Center in 2006.

    As per the terms of the nin.com presale, we had to pick up the tickets at the venue. Because of this fact, and the massive amount of pointless and unnecessary construction at the Meadowlands, we decided it would be best to get there early.

    My friend took the night off from work and I picked him up at his apartment after I got out of work. We grabbed a quick meal at a nearby Wendy's (which I'm still paying for...) and then headed over to the arena.

    We arrived around 5:30PM, about two hours before the show. We asked one of the security staff if the box office was open because we had tickets waiting at Will Call. He informed us that the box office opened several hours prior and we could pick up our tickets.

    We headed toward the box office and found a long line. We waited for a few minutes and noticed that the line had not moved at all. Figuring that a line for Will Call would be moving slightly faster than not-at-all, I went to investigate while my friend saved our place in line.

    After a short walk I found another line marked by a sign reading "NIN.COM PRESALE TICKET HOLDERS." I asked the event staff member near the line if that was the line to pick up the tickets. He explained the procedure to me.

    I went and got my friend from the other line and explained to him what the staff had just told me. He then waited outside while I walked into the box office, passing event staff who asked if I was picking up the presale tickets. Inside, another staff member indicated I could pick up the tickets on line 13 or 14. I picked up the tickets, went back outside and we got on line. The staff member who had explained the procedure to me came over to us, checked our tickets, and gave us wrist bands.

    A little while later, just before the gates were set to open, another staff member came down the line checking people's tickets. He looked at ours, cut off our wrist bands, and told us to skip the line and enter the arena through the box office lobby. It seems people with lower section tickets were let in while people with General Admission floor tickets remained on the line.

    Once inside the door, we waited on another line for about 30 seconds to have our tickets scanned for entry into the arena. On the other side of the turnstile, an escalator brought us up to the main floor. We walked around realizing we came in almost directly opposite our section. We stopped at one of the entry ways to have a look at the stage. The staff member at the entry asked to see our tickets. We told him we were on the other side but just wanted to take a quick look at the stage. He had no problem with this. I asked him if he new what time the opening act would be start and he replied, "7:30." I then asked if he knew what time Nine Inch Nails would go on. He took a piece of paper from his pocket, unfolded it, then said, "They'll be on from 8:40 to 10:55." I thanked him and we moved on. We found our section and went down to our seats.

    It turns out that row 8 is actually row 3. We were at the level of the stage and about a hundred feet away. We were angled enough to have a view of almost the entire stage (the lights on the stage right we facing away from us).

    After that we then decided to walk around for a while since we had quite a while until the openers started.

    I stopped and purchased an overpriced souvenir t-shirt at one of the merchandise stands. I should have gotten it a size smaller than I did. I'm still not used to not being overweight. We stopped at a concession stand and payed way too much for water, then did a few more laps around the arena. Finally we went back to our seats.

    At 7:30 the opening act, Does it Offend You, Yeah?, took the stage. They were pretty good. I enjoyed their music despite having heard only one song prior to that evening. It was hard to hear their vocals because the gain on the microphones seemed to be a lot lower than it should have been, especially while they were playing. They thanked the crowd for not booing. When the announced that their next song would be their last for the evening, people cheered. The guitarist quickly replied, "Thank you to all the people who cheered because they like us."

    I was fairly impressed by their set and wish it had been a little bit longer, maybe another song or two.

    At 8:45 Nine Inch Nails took the stage as 999,999 played. As soon as it ended, 1,000,000 started. The continued with a few more songs from The Slip. After Discipline, the band tore into March of the Pigs. The crowd exploded.

    The band made extensive use of three screens, which could be raised and lowered, throughout the night. During The Warning and Vessel, the screen to the front of the stage obscured most of the stage as the instruments used for the almost-acoustic Ghosts set were set up. Justin Meldal-Johnsen played a bass violin during the Ghosts set, which included a new rendition of Piggy.

    After that part of the evening's set, the front screen was used again to hide the stage as the instruments were removed during the next song, which featured an animation set to the music and live video of Trent Reznor being processed on-the-fly to distort his image. I think the only way to describe the processed video is to say it looked like white noise in the shape of a person's face.

    At the end of that song the screen turned completely blue. As Pinion played, the screen's lights were turned off in a rather unique way until the screen did little to obscure the band. The screen was raised quickly as the band tore into Wish, followed quickly by the classic Terrible Lie.

    The entire 31 song set, including the five song obligatory encore was about 2 hours and 15 minutes. It was an amazing show. The set highlighted the musical ability and range of the performers and featured songs from all of NIN's major releases. The visual element of the show was well thought out and very well executed, adding to the music rather than distracting from it.

    I took a few pictures using the low-res camera built into my phone. There is one of the stage, the foremost screen, and Trent during Hurt.

    Setlist:

    • 999,999
    • 1,000,000
    • Letting You
    • Discipline
    • March of the Pigs
    • Head Down
    • The Frail
    • Reptile
    • Closer
    • Gave Up
    • The Warning
    • Vessel
    • 5 Ghosts I
    • 17 Ghosts II
    • 19 Ghosts III
    • Ghosts Piggy
    • The Greater Good
    • Pinion
    • Wish
    • Terrible Lie
    • Survivalism
    • The Big Come Down
    • 31 Ghosts IV
    • Only
    • The Hand That Feeds
    • Head Like a Hole
    • - Encore -
    • Echoplex
    • God Given
    • The Good Soldier
    • Hurt
    • In This Twilight

    [/musings] [permanent link]

    26 Aug 2008

    JTHM

    There's nothing terribly wrong with feeling lost, so long as that feeling precedes some plan on your part to actually do something about it. Too often a person grows complacent with their disillusionment, perpetually wearing their "discomfort" like a favorite shirt. I can't say that I'm very pleased with where my life is just now... But I can't help but look forward to where it's going.

    -- Jhonen Vasquez, "Johnny the Homicidal Maniac: Director's Cut"

    [/musings] [permanent link]

    The DNC Hates Unix Users Pt 2
    Looking through this script, it appears that DNC is relying on Microsoft's Silverlight plugin. Currently, this browser plugin is supported for a limited selection of browsers on a limited selection of operating systems. A relatively complete list of supported platforms can be found here.

    Knowing full well how limited the support for this technology, the DNC still decided this was the best solution.

    I hope the RNC will use technologies that are more cross-platform than this. Currently the video available at their site is based on Flash. While Flash support is a bit shaky outside of Windows and Mac OS, it is supported in Unix.

    [/politics] [permanent link]

    25 Aug 2008

    The DNC Hates Unix Users
    Just confirming the Slashdot story (http://news.slashdot.org/news/08/08/25/229210.shtml):

    We're sorry, but the Democratic Convention video web site isn't compatible with your operating system and/or browser. Please try again on a computer with the following: Compatible operating systems: Windows XP SP2, Windows Vista, or a Mac with Tiger (OS 10.4) or Leopard (OS 10.5). Compatible browsers: Internet Explorer (version 6 or later), Firefox (version 2), or, if you are on a Mac, Safari (version 3.1) also works.


    My User Agent string is currently "Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.8.1.3) Gecko/20070527 Firefox/2.0.0.3"

    So not only does the Vice Presidential nominee want to expand the powers of the DMCA, the entire party wants to prevent Unix users from obtaining information.

    [/politics] [permanent link]

    18 Aug 2008

    FreeBSD 7 SATA Weirdness
    Over the weekend I installed the x86-64 build of FreeBSD 7 on my workstation, dib. I haven't had time yet to configure everything to my liking yet, but almost everything works.

    The one really annoying issue centers around a SATA DVD burner. When this device is attached to the primary SATA controller (ICH7), the system refuses to boot from the hard drive. It reports that no system disk has been found. I've tried all of the SATA settings options in the BIOS and none work.

    If I connect the SATA burner to the secondary Marvell "RAID" controller the system boots from the hard drive without issue. In Windows, this requires another driver (which for some reason installed a copy of apache along with it). Under FreeBSD 7; however, this second controller seems to be currently unsupported, leaving me with only the IDE burner available.

    I may spend the $20 and get another IDE burner and just forget about the SATA issue, but I really would like to know what the problem is. If any one has any idea why the system would fail to boot from a SATA hard drive when a SATA optical drive is attached, please email me and give me some insight into this issue. Maybe the Unix category wasn't the best for this. I spent more time discussing the hardware/BIOS weirdness than the installation or configuration of FreeBSD7. In fact, FreeBSD 7 isn't a very good title for this either. I'm going to change that.

    [/unix] [permanent link]

    15 Aug 2008

    A little less evil
    Another posting on Slashdot reports that YouTube (owned by Google) contacted the IOC concerning the take down notice recently filed. After being contacted, the IOC backed down. YouTube (owned by Google) restored the video.

    [/musings] [permanent link]

    12 Aug 2008

    Don't be evil?
    There's a story over on slashdot about the International Olympic Committee demanding YouTube (owned by Google) remove a video of a Free Tibet protest. Of course YouTube (owned by Google) removed the video immediately.

    The video of the protest was filmed in New York, because the protest was in New York near the Chinese Consulate. Last time I checked, which granted was a while ago, New York was in the United States. Also the last time I checked, we had the right to free speech in this country.

    Maybe I'm ignorant. Maybe I'm just dumb. To me, this sounds like the IOC and Google denying the protesters their freedom of speech.

    [/musings] [permanent link]

    Cuban Pete's
    Last night I went to dinner with some friends. After debating for a while, we finally decided on Cuban Pete's on Bloomfield Ave. in Montclair.

    We arrived and the restaurant was a little crowded, but the three of us were seated in the outdoor dining area rather quickly. The weather at the time was nice, with clear skies and a comfortable temperature in the mid- to upper-seventies; beautiful Autumn weather.

    We looked over the menus and made our decisions and then waited. And waited. And waited a little more. Eventually our waiter, Miguel, came over to the table and took our order. My one friend attempted to order the breaded steak. Miguel quickly said, "You don't want that. It's not very good." My friend took his advise and ordered something else instead. After Miguel took our order he quickly came back with our drinks.

    We then waited. And waited. And waited some more. After about 25 minutes, the tapas we had ordered as appetizers finally came out. We split orders of chicken empanadas, beef empanadas, fish fritatas, and goat cheese fritters. All of these were quite tasty in my opinion and only to make us hungrier. At this point we had arrived at the restaurant a little over an hour prior.

    As we waited for our entrees, the sun set and the air became rather cold for August. Eventually our food arrived. We were all very hungry at this point and starting to run short on time as well.

    The food was all quite good. One friend had a Cuban burger made from beef and pork served with potato sticks. He said he liked the burger a lot, but the roll left a lot to be desired. My other friend and I both ordered the marinated skirt steak. The steaks were served with rice, black beans, and fried plantains. All of the side dishes were good. I was less than thrilled with the plantains, but then again, I've never really liked plantains. My friend liked her plantains even less than I did. The steak was quite good and the best I've had in a very long time; however, it was the first steak I've had in several months.

    As we were finishing our meals, it began to rain. Apparently some clouds rolled in as the sun was setting. We quickly finished the last few bites and we ran inside. We got our bill from Miguel, paid, and headed back to the car while the rain was still just a drizzle.

    Overall, I enjoyed the evening. The food was good. Miguel was friendly. The service was a little slow. We were there for a good two hours, an hour and a half of that waiting for our meals. On yelp.com there's more details of other people's experiences at Cuban Pete's; a lot of them more opinionated than mine. Some people loved it, others hated it. I thought it was okay. I'd like to go there again, when I have three or four hours to sit and wait for food. I've heard good things about the paella there and I'd like to try it.

    [/musings] [permanent link]

    09 Aug 2008

    Revision Control
    One could argue that this should be filed under the Unix category, but this post is more about the album than it is about the Concurrent Versions System.

    Friday night I created a CVS repository on this server to manage album related files. After discussing it with rskutins, we agreed on several key points.

    First, with changes being made a little more frequently than before, it would be best to have some way to track what was going on, and to be able to roll back to a previous version if the changes don't quite work out. Second, we wanted to have a way to organize several files for each song, for instance, lyrics, notes, bass tabs, drum tabs, etc. Last, and maybe the most important reason for the reorganization, we wanted to move away from the numbering scheme that was in place. Each song was numbered from 0 to 17. This was fine until we realized 11 was likely to be the first track on the album.

    Now the album is stored in a CVS repository. This will keep a version history of each file, allow us to simultaneously work on parts of the album, and merge our changes.

    Within this repository we now have a tree structure where each song has its own directory. The directory will hold any and all files related to that song. In an effort to move away from the numbering scheme, an arbitrary naming convention was mutually agreed upon. The songs are now known by names such as Soundwave, Ravage, Frenzy, and Rumble.

    The album is starting to come together. I feel motivated to work on it and recently I've found myself inspired to write. Now if only I had time.

    Omlette listened to the Accidental Mix I posted (of the song now known as Soundwave) and gave me some feedback.

    It sounded ominous. I don't know how else to describe it since I'm not familiar w/ either artist. Oh wait. Were you mixing your own stuff?
    Ominous seems like it could be a good thing given the current direction of the album.

    If anyone else takes the time to listen to it, I'd appreciate any comments or suggestions. If you don't have it, my contact information is on this page.

    [/album] [permanent link]

    08 Aug 2008

    Another Demo Update
    Two weeks! Ha! It's been closer to two months.

    A few days ago I had some time so I sat down with the ProTools set up again. After considering some advice from jlight, I decided to record a second track of the bass line. I decided to use my Yamaha for the second track, as I had used my Fender for the original recording back in June. The two instruments have different characteristics in their sounds and the two playing together seems to add a "fullness" to the sound.

    So all I had to do was record 24 seconds of bass and put together a mix. This should take, what, 15 minutes? It took 45 just to record. Once again ProTools repeatedly crashed. When it wasn't crashing, it would report an error and stop recording. Does anyone know if there are updates for ProTools LE 7.1 that will fix this issue? As it stands now, I can't run ProTools for more than a few seconds without disabling multi-core support on my CPU. I have multiple processors. It is a multi-threaded application. It should run better... But I'll save this for that upcoming ProTools rant I keep promising.

    Anyway, after about an hour and fifteen minutes, I got two mixes complete. One of them was accidental and sounds, "interesting." The other is closer to what I had in mind. While I wait for feedback on the actual mix from certain people, everyone is free to enjoy the accidental mix found here.

    If anyone actually listens to it, I'd be happy to accept any comments and criticism.

    [/album] [permanent link]

    06 Aug 2008

    CS115
    A number of years ago, Stephen Bloom taught CS115 at Stevens Institute of Technology. Any one familiar with his teaching style is well aware of how "animated" he can be in class. In this particular course, one student made some recordings of the lectures.

    Copies circulated around campus, but over time these recordings became harder to find. In an effort to preserve a piece of history, I present to you The Bloom MP3s.

    [/musings] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    14 Aug 2014

    Resetting Vim
    On occasion while I'm coding, I'll mistype something and vim's code autoindenting will stop honoring my settings. Likely, I've done something stupid that has disabled or modifying the settings from the defaults I set in my .vimrc file.

    If (when) this happens, Vim can be reset without exiting the procces by going into command mode and typing

    :source $MYVIMRC
    

    This reloads the settings of the .vimrc file without forcing you to restart the process, thus losing your place in your code.

    [/unix] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    31 Aug 2008

    Writing

    "You need strong emotion, whether it's fiery or depressed, an extreme state of mind. I think in any art form it's the case." -- Daniel Ash


    Maybe it's my lack of experience. Maybe it's my lack of talent. I tried to sit down and write music for the song known as Ravage in the new naming scheme, but I failed miserably. When I try to force it, like I did tonight, nothing comes out right. I have ideas, I can hear them in my head, but without that inspiration, without that emotion, nothing I produce sounds right.

    I've been too happy recently and it's destroyed my creativity. I get the urge, I have the inspiration, to write when I feel negative emotions. I need anger; I need depression. It is in dealing with these emotions that I am able to write.

    I have tried several times to force myself to feel this way. This usually buys me a few minutes in which I can write, but it often fails. Because the emotions are artificial, the results are mediocre at best.

    I find this situation to be quite frustrating. I want to move forward with this album, but without that inspiration I am unable to do anything.

    In the meantime, I'm slowly teaching myself to play guitar and, to a much lesser extent, a keyboard-style synthesizer. I've also been going through materials my music teacher friend gave me to learn some basic music theory. Hopefully once I find that needed inspiration, or find a way to work without being angry or depressed, this new knowledge will make things easier.

    [/album] [permanent link]

    29 Aug 2008

    NIN
    On August 27th, I attended the Nine Inch Nails concert in East Rutherford, NJ held at the arena. I think I enjoyed it.

    I ordered a pair of tickets through nin.com during the presale. Tickets went on sale at 5:00PM, I managed to get through by 5:05 and ended up with two tickets for Section 121, Row 8, opting not to purchase floor seats. I went with a friend with whom I've attended a number of concerts, including the Bauhaus/NIN show at PNC Arts Center in 2006.

    As per the terms of the nin.com presale, we had to pick up the tickets at the venue. Because of this fact, and the massive amount of pointless and unnecessary construction at the Meadowlands, we decided it would be best to get there early.

    My friend took the night off from work and I picked him up at his apartment after I got out of work. We grabbed a quick meal at a nearby Wendy's (which I'm still paying for...) and then headed over to the arena.

    We arrived around 5:30PM, about two hours before the show. We asked one of the security staff if the box office was open because we had tickets waiting at Will Call. He informed us that the box office opened several hours prior and we could pick up our tickets.

    We headed toward the box office and found a long line. We waited for a few minutes and noticed that the line had not moved at all. Figuring that a line for Will Call would be moving slightly faster than not-at-all, I went to investigate while my friend saved our place in line.

    After a short walk I found another line marked by a sign reading "NIN.COM PRESALE TICKET HOLDERS." I asked the event staff member near the line if that was the line to pick up the tickets. He explained the procedure to me.

    I went and got my friend from the other line and explained to him what the staff had just told me. He then waited outside while I walked into the box office, passing event staff who asked if I was picking up the presale tickets. Inside, another staff member indicated I could pick up the tickets on line 13 or 14. I picked up the tickets, went back outside and we got on line. The staff member who had explained the procedure to me came over to us, checked our tickets, and gave us wrist bands.

    A little while later, just before the gates were set to open, another staff member came down the line checking people's tickets. He looked at ours, cut off our wrist bands, and told us to skip the line and enter the arena through the box office lobby. It seems people with lower section tickets were let in while people with General Admission floor tickets remained on the line.

    Once inside the door, we waited on another line for about 30 seconds to have our tickets scanned for entry into the arena. On the other side of the turnstile, an escalator brought us up to the main floor. We walked around realizing we came in almost directly opposite our section. We stopped at one of the entry ways to have a look at the stage. The staff member at the entry asked to see our tickets. We told him we were on the other side but just wanted to take a quick look at the stage. He had no problem with this. I asked him if he new what time the opening act would be start and he replied, "7:30." I then asked if he knew what time Nine Inch Nails would go on. He took a piece of paper from his pocket, unfolded it, then said, "They'll be on from 8:40 to 10:55." I thanked him and we moved on. We found our section and went down to our seats.

    It turns out that row 8 is actually row 3. We were at the level of the stage and about a hundred feet away. We were angled enough to have a view of almost the entire stage (the lights on the stage right we facing away from us).

    After that we then decided to walk around for a while since we had quite a while until the openers started.

    I stopped and purchased an overpriced souvenir t-shirt at one of the merchandise stands. I should have gotten it a size smaller than I did. I'm still not used to not being overweight. We stopped at a concession stand and payed way too much for water, then did a few more laps around the arena. Finally we went back to our seats.

    At 7:30 the opening act, Does it Offend You, Yeah?, took the stage. They were pretty good. I enjoyed their music despite having heard only one song prior to that evening. It was hard to hear their vocals because the gain on the microphones seemed to be a lot lower than it should have been, especially while they were playing. They thanked the crowd for not booing. When the announced that their next song would be their last for the evening, people cheered. The guitarist quickly replied, "Thank you to all the people who cheered because they like us."

    I was fairly impressed by their set and wish it had been a little bit longer, maybe another song or two.

    At 8:45 Nine Inch Nails took the stage as 999,999 played. As soon as it ended, 1,000,000 started. The continued with a few more songs from The Slip. After Discipline, the band tore into March of the Pigs. The crowd exploded.

    The band made extensive use of three screens, which could be raised and lowered, throughout the night. During The Warning and Vessel, the screen to the front of the stage obscured most of the stage as the instruments used for the almost-acoustic Ghosts set were set up. Justin Meldal-Johnsen played a bass violin during the Ghosts set, which included a new rendition of Piggy.

    After that part of the evening's set, the front screen was used again to hide the stage as the instruments were removed during the next song, which featured an animation set to the music and live video of Trent Reznor being processed on-the-fly to distort his image. I think the only way to describe the processed video is to say it looked like white noise in the shape of a person's face.

    At the end of that song the screen turned completely blue. As Pinion played, the screen's lights were turned off in a rather unique way until the screen did little to obscure the band. The screen was raised quickly as the band tore into Wish, followed quickly by the classic Terrible Lie.

    The entire 31 song set, including the five song obligatory encore was about 2 hours and 15 minutes. It was an amazing show. The set highlighted the musical ability and range of the performers and featured songs from all of NIN's major releases. The visual element of the show was well thought out and very well executed, adding to the music rather than distracting from it.

    I took a few pictures using the low-res camera built into my phone. There is one of the stage, the foremost screen, and Trent during Hurt.

    Setlist:

    • 999,999
    • 1,000,000
    • Letting You
    • Discipline
    • March of the Pigs
    • Head Down
    • The Frail
    • Reptile
    • Closer
    • Gave Up
    • The Warning
    • Vessel
    • 5 Ghosts I
    • 17 Ghosts II
    • 19 Ghosts III
    • Ghosts Piggy
    • The Greater Good
    • Pinion
    • Wish
    • Terrible Lie
    • Survivalism
    • The Big Come Down
    • 31 Ghosts IV
    • Only
    • The Hand That Feeds
    • Head Like a Hole
    • - Encore -
    • Echoplex
    • God Given
    • The Good Soldier
    • Hurt
    • In This Twilight

    [/musings] [permanent link]

    26 Aug 2008

    JTHM

    There's nothing terribly wrong with feeling lost, so long as that feeling precedes some plan on your part to actually do something about it. Too often a person grows complacent with their disillusionment, perpetually wearing their "discomfort" like a favorite shirt. I can't say that I'm very pleased with where my life is just now... But I can't help but look forward to where it's going.

    -- Jhonen Vasquez, "Johnny the Homicidal Maniac: Director's Cut"

    [/musings] [permanent link]

    The DNC Hates Unix Users Pt 2
    Looking through this script, it appears that DNC is relying on Microsoft's Silverlight plugin. Currently, this browser plugin is supported for a limited selection of browsers on a limited selection of operating systems. A relatively complete list of supported platforms can be found here.

    Knowing full well how limited the support for this technology, the DNC still decided this was the best solution.

    I hope the RNC will use technologies that are more cross-platform than this. Currently the video available at their site is based on Flash. While Flash support is a bit shaky outside of Windows and Mac OS, it is supported in Unix.

    [/politics] [permanent link]

    25 Aug 2008

    The DNC Hates Unix Users
    Just confirming the Slashdot story (http://news.slashdot.org/news/08/08/25/229210.shtml):

    We're sorry, but the Democratic Convention video web site isn't compatible with your operating system and/or browser. Please try again on a computer with the following: Compatible operating systems: Windows XP SP2, Windows Vista, or a Mac with Tiger (OS 10.4) or Leopard (OS 10.5). Compatible browsers: Internet Explorer (version 6 or later), Firefox (version 2), or, if you are on a Mac, Safari (version 3.1) also works.


    My User Agent string is currently "Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.8.1.3) Gecko/20070527 Firefox/2.0.0.3"

    So not only does the Vice Presidential nominee want to expand the powers of the DMCA, the entire party wants to prevent Unix users from obtaining information.

    [/politics] [permanent link]

    18 Aug 2008

    FreeBSD 7 SATA Weirdness
    Over the weekend I installed the x86-64 build of FreeBSD 7 on my workstation, dib. I haven't had time yet to configure everything to my liking yet, but almost everything works.

    The one really annoying issue centers around a SATA DVD burner. When this device is attached to the primary SATA controller (ICH7), the system refuses to boot from the hard drive. It reports that no system disk has been found. I've tried all of the SATA settings options in the BIOS and none work.

    If I connect the SATA burner to the secondary Marvell "RAID" controller the system boots from the hard drive without issue. In Windows, this requires another driver (which for some reason installed a copy of apache along with it). Under FreeBSD 7; however, this second controller seems to be currently unsupported, leaving me with only the IDE burner available.

    I may spend the $20 and get another IDE burner and just forget about the SATA issue, but I really would like to know what the problem is. If any one has any idea why the system would fail to boot from a SATA hard drive when a SATA optical drive is attached, please email me and give me some insight into this issue. Maybe the Unix category wasn't the best for this. I spent more time discussing the hardware/BIOS weirdness than the installation or configuration of FreeBSD7. In fact, FreeBSD 7 isn't a very good title for this either. I'm going to change that.

    [/unix] [permanent link]

    15 Aug 2008

    A little less evil
    Another posting on Slashdot reports that YouTube (owned by Google) contacted the IOC concerning the take down notice recently filed. After being contacted, the IOC backed down. YouTube (owned by Google) restored the video.

    [/musings] [permanent link]

    12 Aug 2008

    Don't be evil?
    There's a story over on slashdot about the International Olympic Committee demanding YouTube (owned by Google) remove a video of a Free Tibet protest. Of course YouTube (owned by Google) removed the video immediately.

    The video of the protest was filmed in New York, because the protest was in New York near the Chinese Consulate. Last time I checked, which granted was a while ago, New York was in the United States. Also the last time I checked, we had the right to free speech in this country.

    Maybe I'm ignorant. Maybe I'm just dumb. To me, this sounds like the IOC and Google denying the protesters their freedom of speech.

    [/musings] [permanent link]

    Cuban Pete's
    Last night I went to dinner with some friends. After debating for a while, we finally decided on Cuban Pete's on Bloomfield Ave. in Montclair.

    We arrived and the restaurant was a little crowded, but the three of us were seated in the outdoor dining area rather quickly. The weather at the time was nice, with clear skies and a comfortable temperature in the mid- to upper-seventies; beautiful Autumn weather.

    We looked over the menus and made our decisions and then waited. And waited. And waited a little more. Eventually our waiter, Miguel, came over to the table and took our order. My one friend attempted to order the breaded steak. Miguel quickly said, "You don't want that. It's not very good." My friend took his advise and ordered something else instead. After Miguel took our order he quickly came back with our drinks.

    We then waited. And waited. And waited some more. After about 25 minutes, the tapas we had ordered as appetizers finally came out. We split orders of chicken empanadas, beef empanadas, fish fritatas, and goat cheese fritters. All of these were quite tasty in my opinion and only to make us hungrier. At this point we had arrived at the restaurant a little over an hour prior.

    As we waited for our entrees, the sun set and the air became rather cold for August. Eventually our food arrived. We were all very hungry at this point and starting to run short on time as well.

    The food was all quite good. One friend had a Cuban burger made from beef and pork served with potato sticks. He said he liked the burger a lot, but the roll left a lot to be desired. My other friend and I both ordered the marinated skirt steak. The steaks were served with rice, black beans, and fried plantains. All of the side dishes were good. I was less than thrilled with the plantains, but then again, I've never really liked plantains. My friend liked her plantains even less than I did. The steak was quite good and the best I've had in a very long time; however, it was the first steak I've had in several months.

    As we were finishing our meals, it began to rain. Apparently some clouds rolled in as the sun was setting. We quickly finished the last few bites and we ran inside. We got our bill from Miguel, paid, and headed back to the car while the rain was still just a drizzle.

    Overall, I enjoyed the evening. The food was good. Miguel was friendly. The service was a little slow. We were there for a good two hours, an hour and a half of that waiting for our meals. On yelp.com there's more details of other people's experiences at Cuban Pete's; a lot of them more opinionated than mine. Some people loved it, others hated it. I thought it was okay. I'd like to go there again, when I have three or four hours to sit and wait for food. I've heard good things about the paella there and I'd like to try it.

    [/musings] [permanent link]

    09 Aug 2008

    Revision Control
    One could argue that this should be filed under the Unix category, but this post is more about the album than it is about the Concurrent Versions System.

    Friday night I created a CVS repository on this server to manage album related files. After discussing it with rskutins, we agreed on several key points.

    First, with changes being made a little more frequently than before, it would be best to have some way to track what was going on, and to be able to roll back to a previous version if the changes don't quite work out. Second, we wanted to have a way to organize several files for each song, for instance, lyrics, notes, bass tabs, drum tabs, etc. Last, and maybe the most important reason for the reorganization, we wanted to move away from the numbering scheme that was in place. Each song was numbered from 0 to 17. This was fine until we realized 11 was likely to be the first track on the album.

    Now the album is stored in a CVS repository. This will keep a version history of each file, allow us to simultaneously work on parts of the album, and merge our changes.

    Within this repository we now have a tree structure where each song has its own directory. The directory will hold any and all files related to that song. In an effort to move away from the numbering scheme, an arbitrary naming convention was mutually agreed upon. The songs are now known by names such as Soundwave, Ravage, Frenzy, and Rumble.

    The album is starting to come together. I feel motivated to work on it and recently I've found myself inspired to write. Now if only I had time.

    Omlette listened to the Accidental Mix I posted (of the song now known as Soundwave) and gave me some feedback.

    It sounded ominous. I don't know how else to describe it since I'm not familiar w/ either artist. Oh wait. Were you mixing your own stuff?
    Ominous seems like it could be a good thing given the current direction of the album.

    If anyone else takes the time to listen to it, I'd appreciate any comments or suggestions. If you don't have it, my contact information is on this page.

    [/album] [permanent link]

    08 Aug 2008

    Another Demo Update
    Two weeks! Ha! It's been closer to two months.

    A few days ago I had some time so I sat down with the ProTools set up again. After considering some advice from jlight, I decided to record a second track of the bass line. I decided to use my Yamaha for the second track, as I had used my Fender for the original recording back in June. The two instruments have different characteristics in their sounds and the two playing together seems to add a "fullness" to the sound.

    So all I had to do was record 24 seconds of bass and put together a mix. This should take, what, 15 minutes? It took 45 just to record. Once again ProTools repeatedly crashed. When it wasn't crashing, it would report an error and stop recording. Does anyone know if there are updates for ProTools LE 7.1 that will fix this issue? As it stands now, I can't run ProTools for more than a few seconds without disabling multi-core support on my CPU. I have multiple processors. It is a multi-threaded application. It should run better... But I'll save this for that upcoming ProTools rant I keep promising.

    Anyway, after about an hour and fifteen minutes, I got two mixes complete. One of them was accidental and sounds, "interesting." The other is closer to what I had in mind. While I wait for feedback on the actual mix from certain people, everyone is free to enjoy the accidental mix found here.

    If anyone actually listens to it, I'd be happy to accept any comments and criticism.

    [/album] [permanent link]

    06 Aug 2008

    CS115
    A number of years ago, Stephen Bloom taught CS115 at Stevens Institute of Technology. Any one familiar with his teaching style is well aware of how "animated" he can be in class. In this particular course, one student made some recordings of the lectures.

    Copies circulated around campus, but over time these recordings became harder to find. In an effort to preserve a piece of history, I present to you The Bloom MP3s.

    [/musings] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    31 Aug 2008

    Writing

    "You need strong emotion, whether it's fiery or depressed, an extreme state of mind. I think in any art form it's the case." -- Daniel Ash


    Maybe it's my lack of experience. Maybe it's my lack of talent. I tried to sit down and write music for the song known as Ravage in the new naming scheme, but I failed miserably. When I try to force it, like I did tonight, nothing comes out right. I have ideas, I can hear them in my head, but without that inspiration, without that emotion, nothing I produce sounds right.

    I've been too happy recently and it's destroyed my creativity. I get the urge, I have the inspiration, to write when I feel negative emotions. I need anger; I need depression. It is in dealing with these emotions that I am able to write.

    I have tried several times to force myself to feel this way. This usually buys me a few minutes in which I can write, but it often fails. Because the emotions are artificial, the results are mediocre at best.

    I find this situation to be quite frustrating. I want to move forward with this album, but without that inspiration I am unable to do anything.

    In the meantime, I'm slowly teaching myself to play guitar and, to a much lesser extent, a keyboard-style synthesizer. I've also been going through materials my music teacher friend gave me to learn some basic music theory. Hopefully once I find that needed inspiration, or find a way to work without being angry or depressed, this new knowledge will make things easier.

    [/album] [permanent link]

    29 Aug 2008

    NIN
    On August 27th, I attended the Nine Inch Nails concert in East Rutherford, NJ held at the arena. I think I enjoyed it.

    I ordered a pair of tickets through nin.com during the presale. Tickets went on sale at 5:00PM, I managed to get through by 5:05 and ended up with two tickets for Section 121, Row 8, opting not to purchase floor seats. I went with a friend with whom I've attended a number of concerts, including the Bauhaus/NIN show at PNC Arts Center in 2006.

    As per the terms of the nin.com presale, we had to pick up the tickets at the venue. Because of this fact, and the massive amount of pointless and unnecessary construction at the Meadowlands, we decided it would be best to get there early.

    My friend took the night off from work and I picked him up at his apartment after I got out of work. We grabbed a quick meal at a nearby Wendy's (which I'm still paying for...) and then headed over to the arena.

    We arrived around 5:30PM, about two hours before the show. We asked one of the security staff if the box office was open because we had tickets waiting at Will Call. He informed us that the box office opened several hours prior and we could pick up our tickets.

    We headed toward the box office and found a long line. We waited for a few minutes and noticed that the line had not moved at all. Figuring that a line for Will Call would be moving slightly faster than not-at-all, I went to investigate while my friend saved our place in line.

    After a short walk I found another line marked by a sign reading "NIN.COM PRESALE TICKET HOLDERS." I asked the event staff member near the line if that was the line to pick up the tickets. He explained the procedure to me.

    I went and got my friend from the other line and explained to him what the staff had just told me. He then waited outside while I walked into the box office, passing event staff who asked if I was picking up the presale tickets. Inside, another staff member indicated I could pick up the tickets on line 13 or 14. I picked up the tickets, went back outside and we got on line. The staff member who had explained the procedure to me came over to us, checked our tickets, and gave us wrist bands.

    A little while later, just before the gates were set to open, another staff member came down the line checking people's tickets. He looked at ours, cut off our wrist bands, and told us to skip the line and enter the arena through the box office lobby. It seems people with lower section tickets were let in while people with General Admission floor tickets remained on the line.

    Once inside the door, we waited on another line for about 30 seconds to have our tickets scanned for entry into the arena. On the other side of the turnstile, an escalator brought us up to the main floor. We walked around realizing we came in almost directly opposite our section. We stopped at one of the entry ways to have a look at the stage. The staff member at the entry asked to see our tickets. We told him we were on the other side but just wanted to take a quick look at the stage. He had no problem with this. I asked him if he new what time the opening act would be start and he replied, "7:30." I then asked if he knew what time Nine Inch Nails would go on. He took a piece of paper from his pocket, unfolded it, then said, "They'll be on from 8:40 to 10:55." I thanked him and we moved on. We found our section and went down to our seats.

    It turns out that row 8 is actually row 3. We were at the level of the stage and about a hundred feet away. We were angled enough to have a view of almost the entire stage (the lights on the stage right we facing away from us).

    After that we then decided to walk around for a while since we had quite a while until the openers started.

    I stopped and purchased an overpriced souvenir t-shirt at one of the merchandise stands. I should have gotten it a size smaller than I did. I'm still not used to not being overweight. We stopped at a concession stand and payed way too much for water, then did a few more laps around the arena. Finally we went back to our seats.

    At 7:30 the opening act, Does it Offend You, Yeah?, took the stage. They were pretty good. I enjoyed their music despite having heard only one song prior to that evening. It was hard to hear their vocals because the gain on the microphones seemed to be a lot lower than it should have been, especially while they were playing. They thanked the crowd for not booing. When the announced that their next song would be their last for the evening, people cheered. The guitarist quickly replied, "Thank you to all the people who cheered because they like us."

    I was fairly impressed by their set and wish it had been a little bit longer, maybe another song or two.

    At 8:45 Nine Inch Nails took the stage as 999,999 played. As soon as it ended, 1,000,000 started. The continued with a few more songs from The Slip. After Discipline, the band tore into March of the Pigs. The crowd exploded.

    The band made extensive use of three screens, which could be raised and lowered, throughout the night. During The Warning and Vessel, the screen to the front of the stage obscured most of the stage as the instruments used for the almost-acoustic Ghosts set were set up. Justin Meldal-Johnsen played a bass violin during the Ghosts set, which included a new rendition of Piggy.

    After that part of the evening's set, the front screen was used again to hide the stage as the instruments were removed during the next song, which featured an animation set to the music and live video of Trent Reznor being processed on-the-fly to distort his image. I think the only way to describe the processed video is to say it looked like white noise in the shape of a person's face.

    At the end of that song the screen turned completely blue. As Pinion played, the screen's lights were turned off in a rather unique way until the screen did little to obscure the band. The screen was raised quickly as the band tore into Wish, followed quickly by the classic Terrible Lie.

    The entire 31 song set, including the five song obligatory encore was about 2 hours and 15 minutes. It was an amazing show. The set highlighted the musical ability and range of the performers and featured songs from all of NIN's major releases. The visual element of the show was well thought out and very well executed, adding to the music rather than distracting from it.

    I took a few pictures using the low-res camera built into my phone. There is one of the stage, the foremost screen, and Trent during Hurt.

    Setlist:

    • 999,999
    • 1,000,000
    • Letting You
    • Discipline
    • March of the Pigs
    • Head Down
    • The Frail
    • Reptile
    • Closer
    • Gave Up
    • The Warning
    • Vessel
    • 5 Ghosts I
    • 17 Ghosts II
    • 19 Ghosts III
    • Ghosts Piggy
    • The Greater Good
    • Pinion
    • Wish
    • Terrible Lie
    • Survivalism
    • The Big Come Down
    • 31 Ghosts IV
    • Only
    • The Hand That Feeds
    • Head Like a Hole
    • - Encore -
    • Echoplex
    • God Given
    • The Good Soldier
    • Hurt
    • In This Twilight

    [/musings] [permanent link]

    26 Aug 2008

    JTHM

    There's nothing terribly wrong with feeling lost, so long as that feeling precedes some plan on your part to actually do something about it. Too often a person grows complacent with their disillusionment, perpetually wearing their "discomfort" like a favorite shirt. I can't say that I'm very pleased with where my life is just now... But I can't help but look forward to where it's going.

    -- Jhonen Vasquez, "Johnny the Homicidal Maniac: Director's Cut"

    [/musings] [permanent link]

    The DNC Hates Unix Users Pt 2
    Looking through this script, it appears that DNC is relying on Microsoft's Silverlight plugin. Currently, this browser plugin is supported for a limited selection of browsers on a limited selection of operating systems. A relatively complete list of supported platforms can be found here.

    Knowing full well how limited the support for this technology, the DNC still decided this was the best solution.

    I hope the RNC will use technologies that are more cross-platform than this. Currently the video available at their site is based on Flash. While Flash support is a bit shaky outside of Windows and Mac OS, it is supported in Unix.

    [/politics] [permanent link]

    25 Aug 2008

    The DNC Hates Unix Users
    Just confirming the Slashdot story (http://news.slashdot.org/news/08/08/25/229210.shtml):

    We're sorry, but the Democratic Convention video web site isn't compatible with your operating system and/or browser. Please try again on a computer with the following: Compatible operating systems: Windows XP SP2, Windows Vista, or a Mac with Tiger (OS 10.4) or Leopard (OS 10.5). Compatible browsers: Internet Explorer (version 6 or later), Firefox (version 2), or, if you are on a Mac, Safari (version 3.1) also works.


    My User Agent string is currently "Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.8.1.3) Gecko/20070527 Firefox/2.0.0.3"

    So not only does the Vice Presidential nominee want to expand the powers of the DMCA, the entire party wants to prevent Unix users from obtaining information.

    [/politics] [permanent link]

    18 Aug 2008

    FreeBSD 7 SATA Weirdness
    Over the weekend I installed the x86-64 build of FreeBSD 7 on my workstation, dib. I haven't had time yet to configure everything to my liking yet, but almost everything works.

    The one really annoying issue centers around a SATA DVD burner. When this device is attached to the primary SATA controller (ICH7), the system refuses to boot from the hard drive. It reports that no system disk has been found. I've tried all of the SATA settings options in the BIOS and none work.

    If I connect the SATA burner to the secondary Marvell "RAID" controller the system boots from the hard drive without issue. In Windows, this requires another driver (which for some reason installed a copy of apache along with it). Under FreeBSD 7; however, this second controller seems to be currently unsupported, leaving me with only the IDE burner available.

    I may spend the $20 and get another IDE burner and just forget about the SATA issue, but I really would like to know what the problem is. If any one has any idea why the system would fail to boot from a SATA hard drive when a SATA optical drive is attached, please email me and give me some insight into this issue. Maybe the Unix category wasn't the best for this. I spent more time discussing the hardware/BIOS weirdness than the installation or configuration of FreeBSD7. In fact, FreeBSD 7 isn't a very good title for this either. I'm going to change that.

    [/unix] [permanent link]

    15 Aug 2008

    A little less evil
    Another posting on Slashdot reports that YouTube (owned by Google) contacted the IOC concerning the take down notice recently filed. After being contacted, the IOC backed down. YouTube (owned by Google) restored the video.

    [/musings] [permanent link]

    12 Aug 2008

    Don't be evil?
    There's a story over on slashdot about the International Olympic Committee demanding YouTube (owned by Google) remove a video of a Free Tibet protest. Of course YouTube (owned by Google) removed the video immediately.

    The video of the protest was filmed in New York, because the protest was in New York near the Chinese Consulate. Last time I checked, which granted was a while ago, New York was in the United States. Also the last time I checked, we had the right to free speech in this country.

    Maybe I'm ignorant. Maybe I'm just dumb. To me, this sounds like the IOC and Google denying the protesters their freedom of speech.

    [/musings] [permanent link]

    Cuban Pete's
    Last night I went to dinner with some friends. After debating for a while, we finally decided on Cuban Pete's on Bloomfield Ave. in Montclair.

    We arrived and the restaurant was a little crowded, but the three of us were seated in the outdoor dining area rather quickly. The weather at the time was nice, with clear skies and a comfortable temperature in the mid- to upper-seventies; beautiful Autumn weather.

    We looked over the menus and made our decisions and then waited. And waited. And waited a little more. Eventually our waiter, Miguel, came over to the table and took our order. My one friend attempted to order the breaded steak. Miguel quickly said, "You don't want that. It's not very good." My friend took his advise and ordered something else instead. After Miguel took our order he quickly came back with our drinks.

    We then waited. And waited. And waited some more. After about 25 minutes, the tapas we had ordered as appetizers finally came out. We split orders of chicken empanadas, beef empanadas, fish fritatas, and goat cheese fritters. All of these were quite tasty in my opinion and only to make us hungrier. At this point we had arrived at the restaurant a little over an hour prior.

    As we waited for our entrees, the sun set and the air became rather cold for August. Eventually our food arrived. We were all very hungry at this point and starting to run short on time as well.

    The food was all quite good. One friend had a Cuban burger made from beef and pork served with potato sticks. He said he liked the burger a lot, but the roll left a lot to be desired. My other friend and I both ordered the marinated skirt steak. The steaks were served with rice, black beans, and fried plantains. All of the side dishes were good. I was less than thrilled with the plantains, but then again, I've never really liked plantains. My friend liked her plantains even less than I did. The steak was quite good and the best I've had in a very long time; however, it was the first steak I've had in several months.

    As we were finishing our meals, it began to rain. Apparently some clouds rolled in as the sun was setting. We quickly finished the last few bites and we ran inside. We got our bill from Miguel, paid, and headed back to the car while the rain was still just a drizzle.

    Overall, I enjoyed the evening. The food was good. Miguel was friendly. The service was a little slow. We were there for a good two hours, an hour and a half of that waiting for our meals. On yelp.com there's more details of other people's experiences at Cuban Pete's; a lot of them more opinionated than mine. Some people loved it, others hated it. I thought it was okay. I'd like to go there again, when I have three or four hours to sit and wait for food. I've heard good things about the paella there and I'd like to try it.

    [/musings] [permanent link]

    09 Aug 2008

    Revision Control
    One could argue that this should be filed under the Unix category, but this post is more about the album than it is about the Concurrent Versions System.

    Friday night I created a CVS repository on this server to manage album related files. After discussing it with rskutins, we agreed on several key points.

    First, with changes being made a little more frequently than before, it would be best to have some way to track what was going on, and to be able to roll back to a previous version if the changes don't quite work out. Second, we wanted to have a way to organize several files for each song, for instance, lyrics, notes, bass tabs, drum tabs, etc. Last, and maybe the most important reason for the reorganization, we wanted to move away from the numbering scheme that was in place. Each song was numbered from 0 to 17. This was fine until we realized 11 was likely to be the first track on the album.

    Now the album is stored in a CVS repository. This will keep a version history of each file, allow us to simultaneously work on parts of the album, and merge our changes.

    Within this repository we now have a tree structure where each song has its own directory. The directory will hold any and all files related to that song. In an effort to move away from the numbering scheme, an arbitrary naming convention was mutually agreed upon. The songs are now known by names such as Soundwave, Ravage, Frenzy, and Rumble.

    The album is starting to come together. I feel motivated to work on it and recently I've found myself inspired to write. Now if only I had time.

    Omlette listened to the Accidental Mix I posted (of the song now known as Soundwave) and gave me some feedback.

    It sounded ominous. I don't know how else to describe it since I'm not familiar w/ either artist. Oh wait. Were you mixing your own stuff?
    Ominous seems like it could be a good thing given the current direction of the album.

    If anyone else takes the time to listen to it, I'd appreciate any comments or suggestions. If you don't have it, my contact information is on this page.

    [/album] [permanent link]

    08 Aug 2008

    Another Demo Update
    Two weeks! Ha! It's been closer to two months.

    A few days ago I had some time so I sat down with the ProTools set up again. After considering some advice from jlight, I decided to record a second track of the bass line. I decided to use my Yamaha for the second track, as I had used my Fender for the original recording back in June. The two instruments have different characteristics in their sounds and the two playing together seems to add a "fullness" to the sound.

    So all I had to do was record 24 seconds of bass and put together a mix. This should take, what, 15 minutes? It took 45 just to record. Once again ProTools repeatedly crashed. When it wasn't crashing, it would report an error and stop recording. Does anyone know if there are updates for ProTools LE 7.1 that will fix this issue? As it stands now, I can't run ProTools for more than a few seconds without disabling multi-core support on my CPU. I have multiple processors. It is a multi-threaded application. It should run better... But I'll save this for that upcoming ProTools rant I keep promising.

    Anyway, after about an hour and fifteen minutes, I got two mixes complete. One of them was accidental and sounds, "interesting." The other is closer to what I had in mind. While I wait for feedback on the actual mix from certain people, everyone is free to enjoy the accidental mix found here.

    If anyone actually listens to it, I'd be happy to accept any comments and criticism.

    [/album] [permanent link]

    06 Aug 2008

    CS115
    A number of years ago, Stephen Bloom taught CS115 at Stevens Institute of Technology. Any one familiar with his teaching style is well aware of how "animated" he can be in class. In this particular course, one student made some recordings of the lectures.

    Copies circulated around campus, but over time these recordings became harder to find. In an effort to preserve a piece of history, I present to you The Bloom MP3s.

    [/musings] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    31 Aug 2008

    Writing

    "You need strong emotion, whether it's fiery or depressed, an extreme state of mind. I think in any art form it's the case." -- Daniel Ash


    Maybe it's my lack of experience. Maybe it's my lack of talent. I tried to sit down and write music for the song known as Ravage in the new naming scheme, but I failed miserably. When I try to force it, like I did tonight, nothing comes out right. I have ideas, I can hear them in my head, but without that inspiration, without that emotion, nothing I produce sounds right.

    I've been too happy recently and it's destroyed my creativity. I get the urge, I have the inspiration, to write when I feel negative emotions. I need anger; I need depression. It is in dealing with these emotions that I am able to write.

    I have tried several times to force myself to feel this way. This usually buys me a few minutes in which I can write, but it often fails. Because the emotions are artificial, the results are mediocre at best.

    I find this situation to be quite frustrating. I want to move forward with this album, but without that inspiration I am unable to do anything.

    In the meantime, I'm slowly teaching myself to play guitar and, to a much lesser extent, a keyboard-style synthesizer. I've also been going through materials my music teacher friend gave me to learn some basic music theory. Hopefully once I find that needed inspiration, or find a way to work without being angry or depressed, this new knowledge will make things easier.

    [/album] [permanent link]

    29 Aug 2008

    NIN
    On August 27th, I attended the Nine Inch Nails concert in East Rutherford, NJ held at the arena. I think I enjoyed it.

    I ordered a pair of tickets through nin.com during the presale. Tickets went on sale at 5:00PM, I managed to get through by 5:05 and ended up with two tickets for Section 121, Row 8, opting not to purchase floor seats. I went with a friend with whom I've attended a number of concerts, including the Bauhaus/NIN show at PNC Arts Center in 2006.

    As per the terms of the nin.com presale, we had to pick up the tickets at the venue. Because of this fact, and the massive amount of pointless and unnecessary construction at the Meadowlands, we decided it would be best to get there early.

    My friend took the night off from work and I picked him up at his apartment after I got out of work. We grabbed a quick meal at a nearby Wendy's (which I'm still paying for...) and then headed over to the arena.

    We arrived around 5:30PM, about two hours before the show. We asked one of the security staff if the box office was open because we had tickets waiting at Will Call. He informed us that the box office opened several hours prior and we could pick up our tickets.

    We headed toward the box office and found a long line. We waited for a few minutes and noticed that the line had not moved at all. Figuring that a line for Will Call would be moving slightly faster than not-at-all, I went to investigate while my friend saved our place in line.

    After a short walk I found another line marked by a sign reading "NIN.COM PRESALE TICKET HOLDERS." I asked the event staff member near the line if that was the line to pick up the tickets. He explained the procedure to me.

    I went and got my friend from the other line and explained to him what the staff had just told me. He then waited outside while I walked into the box office, passing event staff who asked if I was picking up the presale tickets. Inside, another staff member indicated I could pick up the tickets on line 13 or 14. I picked up the tickets, went back outside and we got on line. The staff member who had explained the procedure to me came over to us, checked our tickets, and gave us wrist bands.

    A little while later, just before the gates were set to open, another staff member came down the line checking people's tickets. He looked at ours, cut off our wrist bands, and told us to skip the line and enter the arena through the box office lobby. It seems people with lower section tickets were let in while people with General Admission floor tickets remained on the line.

    Once inside the door, we waited on another line for about 30 seconds to have our tickets scanned for entry into the arena. On the other side of the turnstile, an escalator brought us up to the main floor. We walked around realizing we came in almost directly opposite our section. We stopped at one of the entry ways to have a look at the stage. The staff member at the entry asked to see our tickets. We told him we were on the other side but just wanted to take a quick look at the stage. He had no problem with this. I asked him if he new what time the opening act would be start and he replied, "7:30." I then asked if he knew what time Nine Inch Nails would go on. He took a piece of paper from his pocket, unfolded it, then said, "They'll be on from 8:40 to 10:55." I thanked him and we moved on. We found our section and went down to our seats.

    It turns out that row 8 is actually row 3. We were at the level of the stage and about a hundred feet away. We were angled enough to have a view of almost the entire stage (the lights on the stage right we facing away from us).

    After that we then decided to walk around for a while since we had quite a while until the openers started.

    I stopped and purchased an overpriced souvenir t-shirt at one of the merchandise stands. I should have gotten it a size smaller than I did. I'm still not used to not being overweight. We stopped at a concession stand and payed way too much for water, then did a few more laps around the arena. Finally we went back to our seats.

    At 7:30 the opening act, Does it Offend You, Yeah?, took the stage. They were pretty good. I enjoyed their music despite having heard only one song prior to that evening. It was hard to hear their vocals because the gain on the microphones seemed to be a lot lower than it should have been, especially while they were playing. They thanked the crowd for not booing. When the announced that their next song would be their last for the evening, people cheered. The guitarist quickly replied, "Thank you to all the people who cheered because they like us."

    I was fairly impressed by their set and wish it had been a little bit longer, maybe another song or two.

    At 8:45 Nine Inch Nails took the stage as 999,999 played. As soon as it ended, 1,000,000 started. The continued with a few more songs from The Slip. After Discipline, the band tore into March of the Pigs. The crowd exploded.

    The band made extensive use of three screens, which could be raised and lowered, throughout the night. During The Warning and Vessel, the screen to the front of the stage obscured most of the stage as the instruments used for the almost-acoustic Ghosts set were set up. Justin Meldal-Johnsen played a bass violin during the Ghosts set, which included a new rendition of Piggy.

    After that part of the evening's set, the front screen was used again to hide the stage as the instruments were removed during the next song, which featured an animation set to the music and live video of Trent Reznor being processed on-the-fly to distort his image. I think the only way to describe the processed video is to say it looked like white noise in the shape of a person's face.

    At the end of that song the screen turned completely blue. As Pinion played, the screen's lights were turned off in a rather unique way until the screen did little to obscure the band. The screen was raised quickly as the band tore into Wish, followed quickly by the classic Terrible Lie.

    The entire 31 song set, including the five song obligatory encore was about 2 hours and 15 minutes. It was an amazing show. The set highlighted the musical ability and range of the performers and featured songs from all of NIN's major releases. The visual element of the show was well thought out and very well executed, adding to the music rather than distracting from it.

    I took a few pictures using the low-res camera built into my phone. There is one of the stage, the foremost screen, and Trent during Hurt.

    Setlist:

    • 999,999
    • 1,000,000
    • Letting You
    • Discipline
    • March of the Pigs
    • Head Down
    • The Frail
    • Reptile
    • Closer
    • Gave Up
    • The Warning
    • Vessel
    • 5 Ghosts I
    • 17 Ghosts II
    • 19 Ghosts III
    • Ghosts Piggy
    • The Greater Good
    • Pinion
    • Wish
    • Terrible Lie
    • Survivalism
    • The Big Come Down
    • 31 Ghosts IV
    • Only
    • The Hand That Feeds
    • Head Like a Hole
    • - Encore -
    • Echoplex
    • God Given
    • The Good Soldier
    • Hurt
    • In This Twilight

    [/musings] [permanent link]

    26 Aug 2008

    JTHM

    There's nothing terribly wrong with feeling lost, so long as that feeling precedes some plan on your part to actually do something about it. Too often a person grows complacent with their disillusionment, perpetually wearing their "discomfort" like a favorite shirt. I can't say that I'm very pleased with where my life is just now... But I can't help but look forward to where it's going.

    -- Jhonen Vasquez, "Johnny the Homicidal Maniac: Director's Cut"

    [/musings] [permanent link]

    The DNC Hates Unix Users Pt 2
    Looking through this script, it appears that DNC is relying on Microsoft's Silverlight plugin. Currently, this browser plugin is supported for a limited selection of browsers on a limited selection of operating systems. A relatively complete list of supported platforms can be found here.

    Knowing full well how limited the support for this technology, the DNC still decided this was the best solution.

    I hope the RNC will use technologies that are more cross-platform than this. Currently the video available at their site is based on Flash. While Flash support is a bit shaky outside of Windows and Mac OS, it is supported in Unix.

    [/politics] [permanent link]

    25 Aug 2008

    The DNC Hates Unix Users
    Just confirming the Slashdot story (http://news.slashdot.org/news/08/08/25/229210.shtml):

    We're sorry, but the Democratic Convention video web site isn't compatible with your operating system and/or browser. Please try again on a computer with the following: Compatible operating systems: Windows XP SP2, Windows Vista, or a Mac with Tiger (OS 10.4) or Leopard (OS 10.5). Compatible browsers: Internet Explorer (version 6 or later), Firefox (version 2), or, if you are on a Mac, Safari (version 3.1) also works.


    My User Agent string is currently "Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.8.1.3) Gecko/20070527 Firefox/2.0.0.3"

    So not only does the Vice Presidential nominee want to expand the powers of the DMCA, the entire party wants to prevent Unix users from obtaining information.

    [/politics] [permanent link]

    18 Aug 2008

    FreeBSD 7 SATA Weirdness
    Over the weekend I installed the x86-64 build of FreeBSD 7 on my workstation, dib. I haven't had time yet to configure everything to my liking yet, but almost everything works.

    The one really annoying issue centers around a SATA DVD burner. When this device is attached to the primary SATA controller (ICH7), the system refuses to boot from the hard drive. It reports that no system disk has been found. I've tried all of the SATA settings options in the BIOS and none work.

    If I connect the SATA burner to the secondary Marvell "RAID" controller the system boots from the hard drive without issue. In Windows, this requires another driver (which for some reason installed a copy of apache along with it). Under FreeBSD 7; however, this second controller seems to be currently unsupported, leaving me with only the IDE burner available.

    I may spend the $20 and get another IDE burner and just forget about the SATA issue, but I really would like to know what the problem is. If any one has any idea why the system would fail to boot from a SATA hard drive when a SATA optical drive is attached, please email me and give me some insight into this issue. Maybe the Unix category wasn't the best for this. I spent more time discussing the hardware/BIOS weirdness than the installation or configuration of FreeBSD7. In fact, FreeBSD 7 isn't a very good title for this either. I'm going to change that.

    [/unix] [permanent link]

    15 Aug 2008

    A little less evil
    Another posting on Slashdot reports that YouTube (owned by Google) contacted the IOC concerning the take down notice recently filed. After being contacted, the IOC backed down. YouTube (owned by Google) restored the video.

    [/musings] [permanent link]

    12 Aug 2008

    Don't be evil?
    There's a story over on slashdot about the International Olympic Committee demanding YouTube (owned by Google) remove a video of a Free Tibet protest. Of course YouTube (owned by Google) removed the video immediately.

    The video of the protest was filmed in New York, because the protest was in New York near the Chinese Consulate. Last time I checked, which granted was a while ago, New York was in the United States. Also the last time I checked, we had the right to free speech in this country.

    Maybe I'm ignorant. Maybe I'm just dumb. To me, this sounds like the IOC and Google denying the protesters their freedom of speech.

    [/musings] [permanent link]

    Cuban Pete's
    Last night I went to dinner with some friends. After debating for a while, we finally decided on Cuban Pete's on Bloomfield Ave. in Montclair.

    We arrived and the restaurant was a little crowded, but the three of us were seated in the outdoor dining area rather quickly. The weather at the time was nice, with clear skies and a comfortable temperature in the mid- to upper-seventies; beautiful Autumn weather.

    We looked over the menus and made our decisions and then waited. And waited. And waited a little more. Eventually our waiter, Miguel, came over to the table and took our order. My one friend attempted to order the breaded steak. Miguel quickly said, "You don't want that. It's not very good." My friend took his advise and ordered something else instead. After Miguel took our order he quickly came back with our drinks.

    We then waited. And waited. And waited some more. After about 25 minutes, the tapas we had ordered as appetizers finally came out. We split orders of chicken empanadas, beef empanadas, fish fritatas, and goat cheese fritters. All of these were quite tasty in my opinion and only to make us hungrier. At this point we had arrived at the restaurant a little over an hour prior.

    As we waited for our entrees, the sun set and the air became rather cold for August. Eventually our food arrived. We were all very hungry at this point and starting to run short on time as well.

    The food was all quite good. One friend had a Cuban burger made from beef and pork served with potato sticks. He said he liked the burger a lot, but the roll left a lot to be desired. My other friend and I both ordered the marinated skirt steak. The steaks were served with rice, black beans, and fried plantains. All of the side dishes were good. I was less than thrilled with the plantains, but then again, I've never really liked plantains. My friend liked her plantains even less than I did. The steak was quite good and the best I've had in a very long time; however, it was the first steak I've had in several months.

    As we were finishing our meals, it began to rain. Apparently some clouds rolled in as the sun was setting. We quickly finished the last few bites and we ran inside. We got our bill from Miguel, paid, and headed back to the car while the rain was still just a drizzle.

    Overall, I enjoyed the evening. The food was good. Miguel was friendly. The service was a little slow. We were there for a good two hours, an hour and a half of that waiting for our meals. On yelp.com there's more details of other people's experiences at Cuban Pete's; a lot of them more opinionated than mine. Some people loved it, others hated it. I thought it was okay. I'd like to go there again, when I have three or four hours to sit and wait for food. I've heard good things about the paella there and I'd like to try it.

    [/musings] [permanent link]

    09 Aug 2008

    Revision Control
    One could argue that this should be filed under the Unix category, but this post is more about the album than it is about the Concurrent Versions System.

    Friday night I created a CVS repository on this server to manage album related files. After discussing it with rskutins, we agreed on several key points.

    First, with changes being made a little more frequently than before, it would be best to have some way to track what was going on, and to be able to roll back to a previous version if the changes don't quite work out. Second, we wanted to have a way to organize several files for each song, for instance, lyrics, notes, bass tabs, drum tabs, etc. Last, and maybe the most important reason for the reorganization, we wanted to move away from the numbering scheme that was in place. Each song was numbered from 0 to 17. This was fine until we realized 11 was likely to be the first track on the album.

    Now the album is stored in a CVS repository. This will keep a version history of each file, allow us to simultaneously work on parts of the album, and merge our changes.

    Within this repository we now have a tree structure where each song has its own directory. The directory will hold any and all files related to that song. In an effort to move away from the numbering scheme, an arbitrary naming convention was mutually agreed upon. The songs are now known by names such as Soundwave, Ravage, Frenzy, and Rumble.

    The album is starting to come together. I feel motivated to work on it and recently I've found myself inspired to write. Now if only I had time.

    Omlette listened to the Accidental Mix I posted (of the song now known as Soundwave) and gave me some feedback.

    It sounded ominous. I don't know how else to describe it since I'm not familiar w/ either artist. Oh wait. Were you mixing your own stuff?
    Ominous seems like it could be a good thing given the current direction of the album.

    If anyone else takes the time to listen to it, I'd appreciate any comments or suggestions. If you don't have it, my contact information is on this page.

    [/album] [permanent link]

    08 Aug 2008

    Another Demo Update
    Two weeks! Ha! It's been closer to two months.

    A few days ago I had some time so I sat down with the ProTools set up again. After considering some advice from jlight, I decided to record a second track of the bass line. I decided to use my Yamaha for the second track, as I had used my Fender for the original recording back in June. The two instruments have different characteristics in their sounds and the two playing together seems to add a "fullness" to the sound.

    So all I had to do was record 24 seconds of bass and put together a mix. This should take, what, 15 minutes? It took 45 just to record. Once again ProTools repeatedly crashed. When it wasn't crashing, it would report an error and stop recording. Does anyone know if there are updates for ProTools LE 7.1 that will fix this issue? As it stands now, I can't run ProTools for more than a few seconds without disabling multi-core support on my CPU. I have multiple processors. It is a multi-threaded application. It should run better... But I'll save this for that upcoming ProTools rant I keep promising.

    Anyway, after about an hour and fifteen minutes, I got two mixes complete. One of them was accidental and sounds, "interesting." The other is closer to what I had in mind. While I wait for feedback on the actual mix from certain people, everyone is free to enjoy the accidental mix found here.

    If anyone actually listens to it, I'd be happy to accept any comments and criticism.

    [/album] [permanent link]

    06 Aug 2008

    CS115
    A number of years ago, Stephen Bloom taught CS115 at Stevens Institute of Technology. Any one familiar with his teaching style is well aware of how "animated" he can be in class. In this particular course, one student made some recordings of the lectures.

    Copies circulated around campus, but over time these recordings became harder to find. In an effort to preserve a piece of history, I present to you The Bloom MP3s.

    [/musings] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    31 Aug 2008

    Writing

    "You need strong emotion, whether it's fiery or depressed, an extreme state of mind. I think in any art form it's the case." -- Daniel Ash


    Maybe it's my lack of experience. Maybe it's my lack of talent. I tried to sit down and write music for the song known as Ravage in the new naming scheme, but I failed miserably. When I try to force it, like I did tonight, nothing comes out right. I have ideas, I can hear them in my head, but without that inspiration, without that emotion, nothing I produce sounds right.

    I've been too happy recently and it's destroyed my creativity. I get the urge, I have the inspiration, to write when I feel negative emotions. I need anger; I need depression. It is in dealing with these emotions that I am able to write.

    I have tried several times to force myself to feel this way. This usually buys me a few minutes in which I can write, but it often fails. Because the emotions are artificial, the results are mediocre at best.

    I find this situation to be quite frustrating. I want to move forward with this album, but without that inspiration I am unable to do anything.

    In the meantime, I'm slowly teaching myself to play guitar and, to a much lesser extent, a keyboard-style synthesizer. I've also been going through materials my music teacher friend gave me to learn some basic music theory. Hopefully once I find that needed inspiration, or find a way to work without being angry or depressed, this new knowledge will make things easier.

    [/album] [permanent link]

    29 Aug 2008

    NIN
    On August 27th, I attended the Nine Inch Nails concert in East Rutherford, NJ held at the arena. I think I enjoyed it.

    I ordered a pair of tickets through nin.com during the presale. Tickets went on sale at 5:00PM, I managed to get through by 5:05 and ended up with two tickets for Section 121, Row 8, opting not to purchase floor seats. I went with a friend with whom I've attended a number of concerts, including the Bauhaus/NIN show at PNC Arts Center in 2006.

    As per the terms of the nin.com presale, we had to pick up the tickets at the venue. Because of this fact, and the massive amount of pointless and unnecessary construction at the Meadowlands, we decided it would be best to get there early.

    My friend took the night off from work and I picked him up at his apartment after I got out of work. We grabbed a quick meal at a nearby Wendy's (which I'm still paying for...) and then headed over to the arena.

    We arrived around 5:30PM, about two hours before the show. We asked one of the security staff if the box office was open because we had tickets waiting at Will Call. He informed us that the box office opened several hours prior and we could pick up our tickets.

    We headed toward the box office and found a long line. We waited for a few minutes and noticed that the line had not moved at all. Figuring that a line for Will Call would be moving slightly faster than not-at-all, I went to investigate while my friend saved our place in line.

    After a short walk I found another line marked by a sign reading "NIN.COM PRESALE TICKET HOLDERS." I asked the event staff member near the line if that was the line to pick up the tickets. He explained the procedure to me.

    I went and got my friend from the other line and explained to him what the staff had just told me. He then waited outside while I walked into the box office, passing event staff who asked if I was picking up the presale tickets. Inside, another staff member indicated I could pick up the tickets on line 13 or 14. I picked up the tickets, went back outside and we got on line. The staff member who had explained the procedure to me came over to us, checked our tickets, and gave us wrist bands.

    A little while later, just before the gates were set to open, another staff member came down the line checking people's tickets. He looked at ours, cut off our wrist bands, and told us to skip the line and enter the arena through the box office lobby. It seems people with lower section tickets were let in while people with General Admission floor tickets remained on the line.

    Once inside the door, we waited on another line for about 30 seconds to have our tickets scanned for entry into the arena. On the other side of the turnstile, an escalator brought us up to the main floor. We walked around realizing we came in almost directly opposite our section. We stopped at one of the entry ways to have a look at the stage. The staff member at the entry asked to see our tickets. We told him we were on the other side but just wanted to take a quick look at the stage. He had no problem with this. I asked him if he new what time the opening act would be start and he replied, "7:30." I then asked if he knew what time Nine Inch Nails would go on. He took a piece of paper from his pocket, unfolded it, then said, "They'll be on from 8:40 to 10:55." I thanked him and we moved on. We found our section and went down to our seats.

    It turns out that row 8 is actually row 3. We were at the level of the stage and about a hundred feet away. We were angled enough to have a view of almost the entire stage (the lights on the stage right we facing away from us).

    After that we then decided to walk around for a while since we had quite a while until the openers started.

    I stopped and purchased an overpriced souvenir t-shirt at one of the merchandise stands. I should have gotten it a size smaller than I did. I'm still not used to not being overweight. We stopped at a concession stand and payed way too much for water, then did a few more laps around the arena. Finally we went back to our seats.

    At 7:30 the opening act, Does it Offend You, Yeah?, took the stage. They were pretty good. I enjoyed their music despite having heard only one song prior to that evening. It was hard to hear their vocals because the gain on the microphones seemed to be a lot lower than it should have been, especially while they were playing. They thanked the crowd for not booing. When the announced that their next song would be their last for the evening, people cheered. The guitarist quickly replied, "Thank you to all the people who cheered because they like us."

    I was fairly impressed by their set and wish it had been a little bit longer, maybe another song or two.

    At 8:45 Nine Inch Nails took the stage as 999,999 played. As soon as it ended, 1,000,000 started. The continued with a few more songs from The Slip. After Discipline, the band tore into March of the Pigs. The crowd exploded.

    The band made extensive use of three screens, which could be raised and lowered, throughout the night. During The Warning and Vessel, the screen to the front of the stage obscured most of the stage as the instruments used for the almost-acoustic Ghosts set were set up. Justin Meldal-Johnsen played a bass violin during the Ghosts set, which included a new rendition of Piggy.

    After that part of the evening's set, the front screen was used again to hide the stage as the instruments were removed during the next song, which featured an animation set to the music and live video of Trent Reznor being processed on-the-fly to distort his image. I think the only way to describe the processed video is to say it looked like white noise in the shape of a person's face.

    At the end of that song the screen turned completely blue. As Pinion played, the screen's lights were turned off in a rather unique way until the screen did little to obscure the band. The screen was raised quickly as the band tore into Wish, followed quickly by the classic Terrible Lie.

    The entire 31 song set, including the five song obligatory encore was about 2 hours and 15 minutes. It was an amazing show. The set highlighted the musical ability and range of the performers and featured songs from all of NIN's major releases. The visual element of the show was well thought out and very well executed, adding to the music rather than distracting from it.

    I took a few pictures using the low-res camera built into my phone. There is one of the stage, the foremost screen, and Trent during Hurt.

    Setlist:

    • 999,999
    • 1,000,000
    • Letting You
    • Discipline
    • March of the Pigs
    • Head Down
    • The Frail
    • Reptile
    • Closer
    • Gave Up
    • The Warning
    • Vessel
    • 5 Ghosts I
    • 17 Ghosts II
    • 19 Ghosts III
    • Ghosts Piggy
    • The Greater Good
    • Pinion
    • Wish
    • Terrible Lie
    • Survivalism
    • The Big Come Down
    • 31 Ghosts IV
    • Only
    • The Hand That Feeds
    • Head Like a Hole
    • - Encore -
    • Echoplex
    • God Given
    • The Good Soldier
    • Hurt
    • In This Twilight

    [/musings] [permanent link]

    26 Aug 2008

    JTHM

    There's nothing terribly wrong with feeling lost, so long as that feeling precedes some plan on your part to actually do something about it. Too often a person grows complacent with their disillusionment, perpetually wearing their "discomfort" like a favorite shirt. I can't say that I'm very pleased with where my life is just now... But I can't help but look forward to where it's going.

    -- Jhonen Vasquez, "Johnny the Homicidal Maniac: Director's Cut"

    [/musings] [permanent link]

    The DNC Hates Unix Users Pt 2
    Looking through this script, it appears that DNC is relying on Microsoft's Silverlight plugin. Currently, this browser plugin is supported for a limited selection of browsers on a limited selection of operating systems. A relatively complete list of supported platforms can be found here.

    Knowing full well how limited the support for this technology, the DNC still decided this was the best solution.

    I hope the RNC will use technologies that are more cross-platform than this. Currently the video available at their site is based on Flash. While Flash support is a bit shaky outside of Windows and Mac OS, it is supported in Unix.

    [/politics] [permanent link]

    25 Aug 2008

    The DNC Hates Unix Users
    Just confirming the Slashdot story (http://news.slashdot.org/news/08/08/25/229210.shtml):

    We're sorry, but the Democratic Convention video web site isn't compatible with your operating system and/or browser. Please try again on a computer with the following: Compatible operating systems: Windows XP SP2, Windows Vista, or a Mac with Tiger (OS 10.4) or Leopard (OS 10.5). Compatible browsers: Internet Explorer (version 6 or later), Firefox (version 2), or, if you are on a Mac, Safari (version 3.1) also works.


    My User Agent string is currently "Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.8.1.3) Gecko/20070527 Firefox/2.0.0.3"

    So not only does the Vice Presidential nominee want to expand the powers of the DMCA, the entire party wants to prevent Unix users from obtaining information.

    [/politics] [permanent link]

    18 Aug 2008

    FreeBSD 7 SATA Weirdness
    Over the weekend I installed the x86-64 build of FreeBSD 7 on my workstation, dib. I haven't had time yet to configure everything to my liking yet, but almost everything works.

    The one really annoying issue centers around a SATA DVD burner. When this device is attached to the primary SATA controller (ICH7), the system refuses to boot from the hard drive. It reports that no system disk has been found. I've tried all of the SATA settings options in the BIOS and none work.

    If I connect the SATA burner to the secondary Marvell "RAID" controller the system boots from the hard drive without issue. In Windows, this requires another driver (which for some reason installed a copy of apache along with it). Under FreeBSD 7; however, this second controller seems to be currently unsupported, leaving me with only the IDE burner available.

    I may spend the $20 and get another IDE burner and just forget about the SATA issue, but I really would like to know what the problem is. If any one has any idea why the system would fail to boot from a SATA hard drive when a SATA optical drive is attached, please email me and give me some insight into this issue. Maybe the Unix category wasn't the best for this. I spent more time discussing the hardware/BIOS weirdness than the installation or configuration of FreeBSD7. In fact, FreeBSD 7 isn't a very good title for this either. I'm going to change that.

    [/unix] [permanent link]

    15 Aug 2008

    A little less evil
    Another posting on Slashdot reports that YouTube (owned by Google) contacted the IOC concerning the take down notice recently filed. After being contacted, the IOC backed down. YouTube (owned by Google) restored the video.

    [/musings] [permanent link]

    12 Aug 2008

    Don't be evil?
    There's a story over on slashdot about the International Olympic Committee demanding YouTube (owned by Google) remove a video of a Free Tibet protest. Of course YouTube (owned by Google) removed the video immediately.

    The video of the protest was filmed in New York, because the protest was in New York near the Chinese Consulate. Last time I checked, which granted was a while ago, New York was in the United States. Also the last time I checked, we had the right to free speech in this country.

    Maybe I'm ignorant. Maybe I'm just dumb. To me, this sounds like the IOC and Google denying the protesters their freedom of speech.

    [/musings] [permanent link]

    Cuban Pete's
    Last night I went to dinner with some friends. After debating for a while, we finally decided on Cuban Pete's on Bloomfield Ave. in Montclair.

    We arrived and the restaurant was a little crowded, but the three of us were seated in the outdoor dining area rather quickly. The weather at the time was nice, with clear skies and a comfortable temperature in the mid- to upper-seventies; beautiful Autumn weather.

    We looked over the menus and made our decisions and then waited. And waited. And waited a little more. Eventually our waiter, Miguel, came over to the table and took our order. My one friend attempted to order the breaded steak. Miguel quickly said, "You don't want that. It's not very good." My friend took his advise and ordered something else instead. After Miguel took our order he quickly came back with our drinks.

    We then waited. And waited. And waited some more. After about 25 minutes, the tapas we had ordered as appetizers finally came out. We split orders of chicken empanadas, beef empanadas, fish fritatas, and goat cheese fritters. All of these were quite tasty in my opinion and only to make us hungrier. At this point we had arrived at the restaurant a little over an hour prior.

    As we waited for our entrees, the sun set and the air became rather cold for August. Eventually our food arrived. We were all very hungry at this point and starting to run short on time as well.

    The food was all quite good. One friend had a Cuban burger made from beef and pork served with potato sticks. He said he liked the burger a lot, but the roll left a lot to be desired. My other friend and I both ordered the marinated skirt steak. The steaks were served with rice, black beans, and fried plantains. All of the side dishes were good. I was less than thrilled with the plantains, but then again, I've never really liked plantains. My friend liked her plantains even less than I did. The steak was quite good and the best I've had in a very long time; however, it was the first steak I've had in several months.

    As we were finishing our meals, it began to rain. Apparently some clouds rolled in as the sun was setting. We quickly finished the last few bites and we ran inside. We got our bill from Miguel, paid, and headed back to the car while the rain was still just a drizzle.

    Overall, I enjoyed the evening. The food was good. Miguel was friendly. The service was a little slow. We were there for a good two hours, an hour and a half of that waiting for our meals. On yelp.com there's more details of other people's experiences at Cuban Pete's; a lot of them more opinionated than mine. Some people loved it, others hated it. I thought it was okay. I'd like to go there again, when I have three or four hours to sit and wait for food. I've heard good things about the paella there and I'd like to try it.

    [/musings] [permanent link]

    09 Aug 2008

    Revision Control
    One could argue that this should be filed under the Unix category, but this post is more about the album than it is about the Concurrent Versions System.

    Friday night I created a CVS repository on this server to manage album related files. After discussing it with rskutins, we agreed on several key points.

    First, with changes being made a little more frequently than before, it would be best to have some way to track what was going on, and to be able to roll back to a previous version if the changes don't quite work out. Second, we wanted to have a way to organize several files for each song, for instance, lyrics, notes, bass tabs, drum tabs, etc. Last, and maybe the most important reason for the reorganization, we wanted to move away from the numbering scheme that was in place. Each song was numbered from 0 to 17. This was fine until we realized 11 was likely to be the first track on the album.

    Now the album is stored in a CVS repository. This will keep a version history of each file, allow us to simultaneously work on parts of the album, and merge our changes.

    Within this repository we now have a tree structure where each song has its own directory. The directory will hold any and all files related to that song. In an effort to move away from the numbering scheme, an arbitrary naming convention was mutually agreed upon. The songs are now known by names such as Soundwave, Ravage, Frenzy, and Rumble.

    The album is starting to come together. I feel motivated to work on it and recently I've found myself inspired to write. Now if only I had time.

    Omlette listened to the Accidental Mix I posted (of the song now known as Soundwave) and gave me some feedback.

    It sounded ominous. I don't know how else to describe it since I'm not familiar w/ either artist. Oh wait. Were you mixing your own stuff?
    Ominous seems like it could be a good thing given the current direction of the album.

    If anyone else takes the time to listen to it, I'd appreciate any comments or suggestions. If you don't have it, my contact information is on this page.

    [/album] [permanent link]

    08 Aug 2008

    Another Demo Update
    Two weeks! Ha! It's been closer to two months.

    A few days ago I had some time so I sat down with the ProTools set up again. After considering some advice from jlight, I decided to record a second track of the bass line. I decided to use my Yamaha for the second track, as I had used my Fender for the original recording back in June. The two instruments have different characteristics in their sounds and the two playing together seems to add a "fullness" to the sound.

    So all I had to do was record 24 seconds of bass and put together a mix. This should take, what, 15 minutes? It took 45 just to record. Once again ProTools repeatedly crashed. When it wasn't crashing, it would report an error and stop recording. Does anyone know if there are updates for ProTools LE 7.1 that will fix this issue? As it stands now, I can't run ProTools for more than a few seconds without disabling multi-core support on my CPU. I have multiple processors. It is a multi-threaded application. It should run better... But I'll save this for that upcoming ProTools rant I keep promising.

    Anyway, after about an hour and fifteen minutes, I got two mixes complete. One of them was accidental and sounds, "interesting." The other is closer to what I had in mind. While I wait for feedback on the actual mix from certain people, everyone is free to enjoy the accidental mix found here.

    If anyone actually listens to it, I'd be happy to accept any comments and criticism.

    [/album] [permanent link]

    06 Aug 2008

    CS115
    A number of years ago, Stephen Bloom taught CS115 at Stevens Institute of Technology. Any one familiar with his teaching style is well aware of how "animated" he can be in class. In this particular course, one student made some recordings of the lectures.

    Copies circulated around campus, but over time these recordings became harder to find. In an effort to preserve a piece of history, I present to you The Bloom MP3s.

    [/musings] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        

       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    29 Aug 2012

    Migraine
    I hate waking up with migraines.

    [/musings] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    31 Oct 2009

    NJ Governor Endorsement
    I officially endorse anyone who is not Jon Corzine.

    [/politics] [permanent link]


       
    Eponymous http://skinnymf.com/~mforde/blog/index.pl My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner en Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    12 Dec 2011

    Happy Birthday

    Last night, as an end to my 30th birthday weekend, I went to see The Birthday Massacre in Teaneck. The show was at the Mexicali Live which is a rather small, intimate venue with full table service for dining, and a bar with some really good microbrews on tap.

    The first act was A Verbal Equinox. I thought they were pretty good, especially considering they all seemed to be still in high school. Their set was pretty tight, with mostly original songs and a My Chemical Romance cover. Frankly, I think they did the MCR song just as well, if not better, than MCR. They definitely had a good rhythm section.

    The next band, who shall remain nameless, was described by some as "Armenian Industrial." I thought the music was good, but I wished the singer would just shut up. No singing, no talking to the crowd. Just. Shut. Up. Their set would have been awesome as an instrumental.

    During their set they had two "gothy cheerleaders" on stage. It turned out that one of them was my friend's niece. Kinda random.

    After their set, I ran into a couple of the kids from the first band and talked to them a bit. I told them I liked what I heard and they thanked me and gave me a CD-R labeled with sharpie containing their first recorded single. Something about that is just awesome.

    The Birthday Massacre was great. They played a good mix including songs from every album.

    If you care (or even if you don't), their set list follows:
    • Pins and Needles
    • Control
    • Happy Birthday
    • Forever
    • Burn Away
    • Shallow Grave
    • Always
    • Weekend
    • Video kid
    • Blue
    • Looking Glass
    • Lover's End
    • In the Dark
    • Horror Show
    • Red Stars
    • -- Encore --
    • Sleep Walking
    • Midnight


    They didn't play my favorite song, "Broken," but I was not disappointed in the set at all. After they finished, Rainbow was on stage for a bit talking with people from the crowd. I told him it was a great show and asked if they'd be playing "Broken" at tonight's show with Dir En Grey. He said it wouldn't be in the set, but he loves that song and they'd rehearse it for their next tour.



    The Birthday Massacre on stage at Mexicali Live in Teaneck, NJ
    A rather blurry picture of The Birthday Massacre from the show.

    [/tbm] [permanent link]

    Happy Birthday

    Last night, as an end to my 30th birthday weekend, I went to see The Birthday Massacre in Teaneck. The show was at the Mexicali Live which is a rather small, intimate venue with full table service for dining, and a bar with some really good microbrews on tap.

    The first act was A Verbal Equinox. I thought they were pretty good, especially considering they all seemed to be still in high school. Their set was pretty tight, with mostly original songs and a My Chemical Romance cover. Frankly, I think they did the MCR song just as well, if not better, than MCR. They definitely had a good rhythm section.

    The next band, who shall remain nameless, was described by some as "Armenian Industrial." I thought the music was good, but I wished the singer would just shut up. No singing, no talking to the crowd. Just. Shut. Up. Their set would have been awesome as an instrumental.

    During their set they had two "gothy cheerleaders" on stage. It turned out that one of them was my friend's niece. Kinda random.

    After their set, I ran into a couple of the kids from the first band and talked to them a bit. I told them I liked what I heard and they thanked me and gave me a CD-R labeled with sharpie containing their first recorded single. Something about that is just awesome.

    The Birthday Massacre was great. They played a good mix including songs from every album.

    If you care (or even if you don't), their set list follows:
    • Pins and Needles
    • Control
    • Happy Birthday
    • Forever
    • Burn Away
    • Shallow Grave
    • Always
    • Weekend
    • Video kid
    • Blue
    • Looking Glass
    • Lover's End
    • In the Dark
    • Horror Show
    • Red Stars
    • -- Encore --
    • Sleep Walking
    • Midnight


    They didn't play my favorite song, "Broken," but I was not disappointed in the set at all. After they finished, Rainbow was on stage for a bit talking with people from the crowd. I told him it was a great show and asked if they'd be playing "Broken" at tonight's show with Dir En Grey. He said it wouldn't be in the set, but he loves that song and they'd rehearse it for their next tour.



    The Birthday Massacre on stage at Mexicali Live in Teaneck, NJ
    A rather blurry picture of The Birthday Massacre from the show.

    [/musings] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        

       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    17 Oct 2009

    XNA
    As of this morning, I am now a member of the XNA Creators Club.

    [/code] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    23 Nov 2009

    Philadelphia
    The night before I woke up every hour, looked at the clock, said "I have N hours before I need to get up" and went back to sleep.

    I lost a lot of fluids because I couldn't turn the temperature in the room down and spent the night sweating. When I got up I drank a lot of water and GuBrew, but as it turns out, not enough.

    The weather was good, about 46 at the start. It was sunny, which was quite a problem when I got a migraine at mile 8. It took me about a mile to get my imitrex out of my pocket and actually take it. At the half I was still close to the 3:20 pacer and I considered taking the turn for the finish line, but decided to keep going.

    As the nausea from the migraine subsided, I started getting a stomach cramp. At mile 17 I stopped at medical. After some back and forth the decided the cramp was likely due to dehydration and they made me sit and drink in front of them for 15 to 20 minutes before they cleared me to continue.

    After that I went on my way at a much slower pace. At about mile 24 one of my teammates, Tom, caught up to me (this was his 19th race at marathon or greater distance). He paced me and got me through to the end.

    I ended up finishing at 3:55:46, far off from my goal. But now I know I can finish the distance so it's just a matter of doing it faster. I'd like to get two more in before New York next November.

    Right now, I feel much better than I thought I would. It was weird, when I woke up this morning, I was walking around the hotel room for a half hour feeling just fine. Then I put my shoes on and everything from my feet to my shoulders started hurting. That's more-or-less subsided now, thankfully.

    [/running] [permanent link]


       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    10 Dec 2013

    Thoughts on National Computer Science Education Week
    This week is apparently National Computer Science Education Week. Code.org is organizing the "hour of code" to promote teaching of Computer Science and Programming in schools. They're also organizing petitions to make CS courses count as credits in Mathematics or Science for High School graduation requirements.

    In High School, my CS courses were by far my favorites, Programming in Pascal, AP Comp Sci in Pascal, Programming in C++, and AP Comp Sci in C++ ( the language for the exam switched my junior year). I learned a lot about structured code, elegant, efficient code. I learned enough about Data Structures and Algorithms that I didn't have to study for my college CS classes until Computational Structures (Discrete Math II with Scheme, essentially) in my third semester. I had an amazing Computer Science teacher who also taught me Calculus and the proper order of precedence in life: God, Family, Math. I wouldn't be where I am today without that educational opportunity I had in High School. I want others to have that opportunity too.

    However, this is where I differ with the opinion of the Code.org folks. I do not believe that CS classes should count toward the Math or Science requirements. In this state, CS counts toward the "practical or performing art" requirements, I'm assuming under the "practical" label. I think this is a better place for it at the High School level.

    Computer Science is not a hard Science. It's not Physics. It's not Biology. It's not Chemistry. There's a saying that if the subject has science in its name, it's not really a science. That is true with Computer Science. It's not studying the how and why of atoms, of molecules, of living systems, of anything really. It's not science.

    Computer Science is really applied mathematics. I am very fortunate that the college program I went through was very strong in mathematics: Calc I and II, Linear (Matrix) Algebra, Discrete Math, Discrete Math II in the guise of Computational Structures, Probability and Statistics, Theory of Computation, Algorithmic Analysis... the list goes on. All of these mathematical foundations were then applied to a machine, to make the machine carry out a task in an efficient manner. It's those mathematical foundations that are the true core of Computer Science.

    While mathematics is the core of Computer Science and Computer Science is essentially applied mathematics, I do not believe it should count toward the Math requirements. The CS classes would likely detract from other mathematics courses such as Geometry, Trigonometry, and Calculus. These courses are far too important to an education to be replaced by a Computer Science course. Many, maybe even most, High School Computer Science courses focus more on "programming" than the fundamental mathematical theories. They will pick the language du jour and teach you the syntax and semantics. They'll teach about basic data structures like arrays, and linked lists. The AP exam currently focuses not on implementing lists, trees, stacks, queues, and sorting and searching algorithms, but on arrays and lists using Java library calls. This is not math. This is learning Java syntax.

    [/code] [permanent link]

    05 Nov 2013

    Normalcy
    I realized that if and when I have children, they will grow up thinking it's normal to have a DeLorean.

    [/dmc] [permanent link]

    17 Oct 2013

    ... On man pages, a mini-rant
    I really despise the linux man pages. They're useless at best and wrong at worst.

    From the man page for setsockopt: "The include file <sys/socket.h> contains definitions for socket level options, described below."

    1) The options are not "described below."
    2) No, that file actually doesn't contain those definitions.

    On the other hand... The FreeBSD man page for setsockopt does actually describe the options and under FreeBSD the <sys/socket.h> file does indeed contain the definitions.

    [/unix] [permanent link]

    16 Oct 2013

    [mini-rant]
    I hate bash. I hate it. I hate how it bastardized bourne by adding half-assed implementations of features from ksh and tcsh.

    [/unix] [permanent link]

    12 Oct 2013

    Problems with loader.conf

    First the background. The story of how I got into this mess:



    I'm trying to get ACPI working on my laptop under FreeBSD. Specifically, I'm trying to get Resume to work properly. Suspend works, and resume seems to partially work. The fans spin up, the keyboard's backlight comes back on, but no screen. And without video, it's a little hard to figure out what's going on.

    ACPI works great on my server. It's running the same FreeBSD 9.1 x86-64 build that the laptop is, but the biggest difference is that it's an intel motherboard. The laptop is an Alienware, for our purposes, I might as well just call it a Dell.

    I started comparing the ASL output from both machines and noticed some things. First, the Alienware's ACPI implementation looks for the OS to be various forms of Windows or "Linux." The intel ACPI implementation also looks for these Windows variants and "Linux" but it has an additional OS string. It has an entry for "FreeBSD."

    I figured the easiest next step was to use iasl co compile the intel ASL source and load that DSDT onto the laptop.

    I calculated the odds it would work vs the odds I was doing something incredibly stupid... and I went ahead and did it anyway...

    I compiled the asl and I set /boot/loader.conf to override the DSDT with the intel one I had just compiled and I rebooted. At first everything was good. The machine went down, I got the boot loader, and the FreeBSD kernel started to load. Seconds into the kernel load, it rebooted itself. After the second time, I powered off and tried a cold boot. Same problem just as I had feared.

    Now i was in a situation where I couldn't successfully boot because of an error in loader.conf I needed to find a way to edit it.

    And here's the solution:



    The FreeBSD bootloader, like many others, works in stages. At a certain point, it can be interrupted at which point it provides a set of simple yet powerful commands to control various aspects of the loading process. If you still have that default menu at load, I beleive the option to chose is 6. I disable that menu so during a brief countdown I hit escape before the boot loader turns control over to the kernel.

    Once in the boot loader prompt, I entered the following commands:

    unload
    load kernel
    boot
    


    Pretty simple right? The unload command does what it says, it unloads the kernel and any modules loader.conf had pulled into memory. The load kernel command grabs the kernel and loads it into memory... but only the kernel thus ignoring the broken DSDT in loader.conf. And of course boot tells the boot loader to continue booting the system.

    Once booted, I removed the bad DSDT from loader.conf.

    [/unix] [permanent link]

    10 Oct 2013 05 Oct 2013

    1381017534
    Good night, demonslayers.

    ==================================================================
    This mobile text message is brought to you by AT&T

    [/mobile] [permanent link]

    1381006292
    --_CEEC49CB-DE1D-4A1E-9DFE-114E3B54D3CB_
    Content-Transfer-Encoding: quoted-printable
    Content-Type: text/plain; charset="Windows-1252"

    Test blog

    Sent from my Windows Phone=

    --_CEEC49CB-DE1D-4A1E-9DFE-114E3B54D3CB_
    Content-Transfer-Encoding: quoted-printable
    Content-Type: text/html; charset="Windows-1252"


    pe>


    Test blog R>
    Sent from my Windows Phone
    =

    --_CEEC49CB-DE1D-4A1E-9DFE-114E3B54D3CB_--

    [/mobile] [permanent link]

    1381005175
    Corning is a quaint little town. Looking forward to exploring.

    ==================================================================
    This mobile text message is brought to you by AT&T

    [/mobile] [permanent link]

    09 Aug 2013

    chafing...
    WARNING: possible TMI

    I thought I had healed from the chafing left after Saturday's River to Sea Relay... Until I ran in the rain yesterday. To quote a friend, "It feels like someone took a cheese grater to my crotch."

    [/running] [permanent link]

    22 Jul 2013

    Why do I run?
    So, why do I run? Here's one reason:


    [/running] [permanent link]

    15 Jul 2013

    Windows 8.1 in Virtual Box
    I was attempting to run the Windows 8.1 Preview in a VM using Sun's Oracle's Virtual Box on a Windows 7 host. I ran into a minor problem.

    The OS wouldn't boot. I received an error stating:

    Your computer needs to restart. Please hold down the power button. Error Code: 0x000000C4 Parameters: [redacted]

    Looking for the error code online led me to this article describing the issue and a fix. The key to fixing this was running the command:
    "c:\Program Files\Oracle\VirtualBox\VBoxManage.exe" setextradata "" VBoxInternal/CPUM/CMPXCHG16B 1

    The CMPXCHG16B is an instruction in 64-bit X86 processors that allows for atomic operations on octal words.

    [/musings] [permanent link]

    21 Jun 2013

    Excluding directories while using pax(1)
    My primary disk is failing. There are large segments that are generating low level IO errors during read or write operations. Most of the files written to the bad area were under /usr/ports/ where the FreeBSD Ports collection is installed. A few files were under the web server's root.

    Figuring I'd take care of things prior to the disk actually failing to the point of it being irrecoverable, I purchased a new disk early. I installed it, partitioned it, and formatted it.

    To copy the data over, ignoring the areas that were causing the IO errors, I used mv to "move" the files from the web root under /usr/ports and used the following command as root:

    pax -rwvpe -s':/usr/ports/.*::gp' -X / /mnt/newdisk/

    The -X prevents pax from traversing into mount points that have a different device ID than the one on which it was started. This prevents an infinitely recursive loop from happening when the new disk's mount point would have been hit. It also prevents data on the non-failing disks from being copied as well.
    the -s option allows for sed search and replace scripts to be run. In this example, the : is used as the delimiter and any path matching /usr/ports/* is replaced by a null string. With this replacement all directories under /usr/ports are excluded from the copy.

    [/unix] [permanent link]

    18 Jun 2013

    Senator Elbert Guillory
    Elbert Guillory, a state senator in Louisiana, has switched his party affiliation from Democrat to Republican. This website has a short commentary on the matter, as well as an embedded video of Senator Guillory explaining his decision.

    [/politics] [permanent link]

    30 Apr 2013

    I LOL'ed

    PATIENT: "The problem is that obesity runs in my family."
    DOCTOR: "No, the problem is that no one runs in your family."

    [/running] [permanent link]

    02 Apr 2013
       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        

       
    Eponymous
    Eponymous
       



    About
    My Infrequently Updated Blog. The web-based journal of M. Forde, computer nerd, endurance athlete, and DeLorean owner


    contact

    Subscribe
    Subscribe to a syndicated feed of my weblog, brought to you by the wonders of RSS.

    Flavors
    There's more than one way to view this weblog; try these flavors on for size.

  • index
  • circa 1993
  • Sections

  • main
  • musings
  • running
  • DeLorean
  • code
  • unix
  • album
  • TBM
  • Archives

  • 2023
  • 2022
  • 2021
  • 2020
  • 2019
  • 2018
  • 2017
  • 2016
  • 2015
  • 2014
  • 2013
  • 2012
  • 2011
  • 2010
  • 2009
  • 2008
  • 2007
  • Disclaimers, Copyrights, Privacy, Etc.

  • ToS
  • Copyrights
  • Links

  • olix0r.net
  • netmeister.org
  • Giraffes
  • Eat. Run. Sleep.

  •        
    17 Oct 2009

    XNA
    As of this morning, I am now a member of the XNA Creators Club.

    [/code] [permanent link]