Month: June 2008

  • A quick note.

    I was trying to determine a way to sort an array without all the for loops and that sort of business when I ran across this post Granted it’s a little specific to what you want to sort but I’m sure with a little change you could sort based on the function call maybe. I […]

  • Helping out around Visions Camp for the blind

    So today we went to our NYCares thing at Visions camp somewhere an hour outside of the city. It was awesome. Just helping out and getting everything ready for the camp to come for the summer. All in all, it’s been a very fulfilling day.

  • NY Cares

    Wow, so next Saturday is my first ever New York Cares volunteer work. I kept putting it off for forever but now I’m sticking with it.  I’ll be helping to prep a camp for blind kids called Visions camp. It’s great because it involves things like painting and cleaning up the grounds and since I […]

  • Flash to PDF

    I was reading back to some of my blogs and noticed I forgot to look into embedding swf files into pdf documents. Here is a link to a tutorial for it. http://www.adobe.com/designcenter/tutorials/flashpdf/ Check it out.

  • Charles Rangel

    When the bill was trying to be passed to increase the amount of money children get for insurance (or something to that effect) I wanted to watch the process in which it was pushed through.  So I tuned into C-Span and tried to keep tabs on what was going on. Unfortunately, bush vetoed this since […]

  • an update on my FirebugLogger class

    I decided to tweak the class a bit more so I figured I’d throw it up here.   import flash.external.ExternalInterface; public class FireBugLogger { private static var _enabled:Boolean = false; public function FireBugLogger(singleton:SingletonEnforcer){} public static function set enabled(t:Boolean):void{ _enabled = t; } public static function get enabled():Boolean{ return _enabled } public static function log(s:String):void { […]