Writing

  • XBMC: Source repos

    Adding this for my own personal info. http://fusion.xmbchub.com – Los Movies http://install.mashupxbmc.com – MashUp http://code.google.com/p/anarchintosh-projects/wiki/HowToInstallTheRepository – Ice Films w00t!

  • Apple Extreme 802.11ac: Allow DHCP renewal packets

    , , ,

    I recently purchased an Apple Extreme 802.11ac router, as my trusty, old WRT54G running dd-wrt has finally died. I’m not too happy that this router doesn’t support stateful packet inspection — I need to know what my kids are viewing. Other than that, it’s been super easy to setup. Anyway, my AT&T 3600HGV modem is…

  • Install wget on OS X Mountain Lion

    , ,

    From the terminal, do the following: curl -O http://ftp.gnu.org/gnu/wget/wget-1.13.tar.gz tar -xzvf wget-1.13.tar.gz cd wget-1.13 ./configure –with-ssl=openssl make sudo make install

  • How to install No-IP Linux Dynamic Update Client (DUC) on your Ubuntu 12.04 LTS

    ,

    Archiving from here. You will be able to install No-IP.com’s DUC in just a few minutes with terminal. Once you have opened up your terminal window you will need to login as the “root” user. You can become the root user from the command line by entering “sudo -s” followed by the root password on…

  • soapUI: Code snippet notes

    ,

    groovyUtils = new com.eviware.soapui.support.GroovyUtils( context ) inventorySummaryResponse = groovyUtils.getXmlHolder(“getInventorySummary returns quantity 24#Response”); inventorySummaryResponse.declareNamespace(“soapEnv”, “http://schemas.xmlsoap.org/soap/envelope/” ); inventorySummaryResponse.declareNamespace(“ns2”, “http://service.unifiedinventory.inventory.ticketmaster.com/” ) inventorySummaryList = inventorySummaryResponse.getDomNodes(“//inventorySummary”); int counter; for (inventorySummary in inventorySummaryList) { quantities = inventorySummary.getChildNodes(); for (quantity in quantities){ if (quantity.getNodeName() == “quantity”) { for (place in quantity.getChildNodes() ) { if (place.getNodeName() == “place”) { if (place.getAttributes().getNamedItem(“availabilityStatusId”).getNodeValue() == “1”)…

  • Get a list of TestSuite names in soapUI via Groovy Script

    ,

    Add a Groovy Script test step and add the following: def project = context.testCase.testSuite.project; for (testSuite in project.testSuiteList) { log.info testSuite.name; }