Author Archives: Robert Fischer

“Chillcast” 5th Anniversary Compilation

If you haven’t discovered Anji Bee and the Chillcast, your life is now better. If you know Anji Bee and the Chillcast, then you should probably know she’s pulled together a one hour music compilation to celebrate the 5th anniversary of her excellent Chillcast. It’s one of these name-your-price deals (and “free” is acceptable), so [...]

Play
Posted in Sample Podcasts | Leave a comment

New Gradle Plugin: DepNames

I just released the DepNames plugin for Gradle. It’s part of my gradle-plugins collection, appearing in version 0.6.6. You can read the description with an example from the README, but the basic idea is that you can create “keywords” for your common external dependencies. So this line: dependencies { compile "org.apache.felix:org.apache.felix.framework:3.0.1" } Becomes this line: [...]

Posted in Gradle | Leave a comment

Script: Write out ASM Code to Generate Java Class (Mark II)

Here’s an update to the Java class file to ASM script based on suggestions from Headius and Guillaume Laforge.   #!/usr/bin/env groovy   import org.objectweb.asm.util.ASMifierClassVisitor as V   @GrabResolver(name=’ow2.org’, root=’http://maven.ow2.org/maven2/’) @Grab(group=’asm’, module=’asm-all’, version=’[3.3,)’) private class JustHereForGrab {}   V.main(this.args) No need to muck with your grapeConfig.xml file with this script.

Posted in Groovy | Leave a comment

Script: Write out ASM Code to generate Java class

Edit: Updated version of the script here. Here’s a nifty little Groovy script to write out the ASM code to generate a given Java class. #!/usr/bin/env groovy   import org.objectweb.asm.util.ASMifierClassVisitor as V import org.objectweb.asm.ClassReader as R   @Grab(group=’asm’, module=’asm-all’, version=’[3.3,)') private class JustHereForGrab {}   new R(new File(this.args[0]).newInputStream()).accept(new V(new PrintWriter(System.out)), 0) You will have to [...]

Posted in Ashlar/Cornerstone, Groovy | 2 Comments

H1N1 Swine Flu “Pandemic” Was Commercially-Constructed Fear Mongering

Back when the fear of the Swine Flu was at its highest, I was calling shenanigans. It seemed just too coincidental that the flu vaccine was generated just in time for a flu to surface which was going to kill us all—unless we get the vaccine and thereby lined the pockets of pharmaceutical companies, of [...]

Posted in Politics | Tagged | 8 Comments
  • Categories