• Code

    pseudocodating

    by  • June 3, 2011 • Code, dating • 0 Comments

    function date(man, woman) { if(areCompatible(man, woman) == true) { haveFun(man, woman) beFriends(man, woman) makeLove(man, woman) return evaluateMarriage(man, woman) } elseif(areCompatible(man, woman) == false) { haveFun(man, woman) beFriends(man, woman) return beHappyAsFriends(man, woman) } /* *TODO: * If there’s an error, split the objects up, * send one to beMiserable() * and the other to beUnreasonable() * [...]

    Read more →

    Activate Windows 7 after using an Upgrade disk

    by  • November 5, 2009 • Code • 0 Comments

    I like it! Windows 7 is great! I’ve been playing around with the beta at work for a while and I’m pretty impressed. So impressed that I actually BOUGHT the FAMILY PACK! That’s right, I bought 3 copies of Windows 7! That’s gotta tell you something! It installed flawlessly on my MacBook Pro, my Mac [...]

    Read more →

    How to get SproutCore running on Ubuntu 8.04

    by  • June 17, 2008 • Code • 0 Comments

    I had some issues getting it running.. so here’s what I done did to fix it. Open up a terminal, crack your knuckles, then: sudo apt-get install ruby If you don’t have Ruby installed, guess what.. you need it. sudo apt-get install rubygems You also need rubygems, since sproutcore is such a gem. sudo apt-get [...]

    Read more →

    I’m a cunning Linguist!

    by  • June 17, 2008 • Code • 0 Comments

    Image via Wikipedia I’m on a mission from God During the last year, I’ve been on a quest.. a quest to learn the next best thing in programming. I’ve taken trips here and there to engage in week-long training courses, boot camps, and so on. For the last decade or so, I’ve been a .NET [...]

    Read more →

    Displaying IP address with Javascript

    by  • June 10, 2008 • Code • 0 Comments

    Sometimes you need to check the users IP address and want to use Javascript to do so, bu Javascript has no way of getting that info. That’s why I’ve created a simple script that allows you to access the IP via JavaScript. Simply copy this to your HTML: <script src=”http://skidvis.com/myip.aspx”></script> That will return a simple [...]

    Read more →

    Digg.com API for ASP.NET (VB)

    by  • May 25, 2007 • Code • 0 Comments

    Below is the code needed to use Digg.com’s API which is in REST instead of .NET’s webservice standard, SOAP. Usage is simple: copy the function to your page Import System.Net call the function while passing the required endpoint and your valid diggKey ( a standard url like: http://www.skidvis.com ) it will return a DataSet with [...]

    Read more →