Clarion Folk Lore #2 is live!
[audio:ClarionFolkLore-002.mp3]Apologies Jan for mis-pronouncing your name! Didn’t realise it was a y not a j.
I’m still working out Audacity. I seem to have reached the limit of what it can handle with how many different streams, one for every time someone speaks.
Which reminds me, I need to splice better.
I’ll be breaking up the segments again, exporting to high quality mp3, then importing them all in together for #3.
Notes:
- Dave’s experiences at the MS "Heroes Happen" event ..
here. - Linked In (cheers again Jan), http://www.linkedin.com.
- Schedule up for the Aussie DevCon, here.
- Trebuchets, All kinds of funny .. here (youtube).
- Google Docs, updates here.
- Google Docs, OFFLINE!
- WordPress 2.5, http://www.wordpress.org
Answers:
- How do you get code to run in a procedure AFTER you’ve RETURN’d?
- have a class that is instantiated in the scope of the procedure, make sure that class has a .DESTRUCTOR2)
- Name two ways to run code in a procedure PRIOR to getting to the CODE statement
- use a class that instantiated in the scope of the procedure, and make sure it has a .CONSTRUCTor
- (may require C6+), declare a variable with an initial value, that is an expression
- that expression can even be a procedure call
- ex: MyVar LONG( SomeProc(42) )
- that expression can even be a procedure call
- How do you figure out where the running executable is?
- see COMMAND(‘0’)
- Obviously Rastus got this a little wrong in the podcast.
- see COMMAND(‘0’)