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]