/ actionscript
Friday, August 07
Permalink
Working from home today…. its friday and the weather is kinda gloomy outside so I think its appropriate. I have been doing a lot of night working from home as of late, which means going to the office 11-530 coming home eating maybe a nap and then work a couple more hours, followed by a small hang, followed by coming home and working some more. 
Breaking the day into 4 hour blocks of coding has helped me gain some focus and let me knock out things like a task list as opposed to just being more freeform. I also ran across this method (a stack trace) while debugging my latest project and it has really helped me track down some things (method down below). 
try {        throw new Error('StackTrace');    } catch (e:Error) {        trace(e.getStackTrace());    }
This will help find out the path of methods that any function has been called by, really helpful!

Working from home today…. its friday and the weather is kinda gloomy outside so I think its appropriate. I have been doing a lot of night working from home as of late, which means going to the office 11-530 coming home eating maybe a nap and then work a couple more hours, followed by a small hang, followed by coming home and working some more. 

Breaking the day into 4 hour blocks of coding has helped me gain some focus and let me knock out things like a task list as opposed to just being more freeform. I also ran across this method (a stack trace) while debugging my latest project and it has really helped me track down some things (method down below). 

try {
        throw new Error('StackTrace');
    } catch (e:Error) {
        trace(e.getStackTrace());
    }

This will help find out the path of methods that any function has been called by, really helpful!