A quick note.

Thaylin | June 27, 2008

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 implemented [...]

Helping out around Visions Camp for the blind

Thaylin | June 21, 2008

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

Thaylin | June 15, 2008

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 used [...]

Flash to PDF

Thaylin | June 15, 2008

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

Thaylin | June 7, 2008

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 I [...]

an update on my FirebugLogger class

Thaylin | June 6, 2008

I decided to tweak the class a bit more so I figured I’d throw it up here.
 

?View Code ACTIONSCRIPT1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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 { if(enabled)call(’log’, s); }
public static function debug(s:String):void { [...]