define: onomatopoeias
Adobe Flash Builder ASDoc
Instructions for setting up and configuring ASDoc in Flash Builder, where the project is contained in 3 modules inside C:\httpdocs\XX_project_XX:
Run -> External Tools configurations
Right click in left pane and select "New"
Location: C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\sdks\4.0.0\bin\asdoc.exe Working Directory: C:\httpdocs\XX_project_XX
-source-path MYAPI/src -source-path MyGameAPI/src -source-path MyGame/src -doc-sources MYAPI/src -doc-sources MyGameAPI/src -doc-sources MyGame/src -external-library-path "C:\httpdocs\XX_project_XX\libs\as3corelib-.92.1" -external-library-path "C:\httpdocs\XX_project_XX\libs\as3isolib-.303" -external-library-path "C:\httpdocs\XX_project_XX\libs\bulkoader-rev-282" -external-library-path "C:\httpdocs\XX_project_XX\libs\parsley-2.2.2-lib" -external-library-path "C:\httpdocs\XX_project_XX\libs\parsley-2.2.2-release" -compiler.strict=false -main-title "MyGame Flash Client Documentation" -window-title "MyGame Flash Client Documentation" -footer "This is the footer" -output docs
Best Java Script Compressor
BP Cam Feeds
BP Cam Feeds
Interesting Rust.
Just a test
Just a test
HOWTO: Get Milliseconds in Linux
Vrapper
High Performance Web Sites: Back to blogging after Velocity
Windows File Transfer Over SSH Utility: WinSCP
Figuring out how to generate documention for ActionScript 3/Flex 4 code using Adobe's ASDoc tool from within Flash Builder has been quite a journey.
Helpful information:
<>
does not validate with the SAX parser that ASDoc uses, so you would instead need to do <>
. Also the character & by itself is invalid, use & instead.Things that didn't work:
The Legend of Kyrandia
I have many fond memories of hours spent with my younger sister and brother playing The Legend of Kyrandia.
Robots Soln.
Recently Bookmarked
OpenVPN, AutoHotkey saves the day.
So I really didn't want to remember an insane password to connect to my OpenVPN, and I don't have the luxury of controller the certificate signing, meaning that I can't create a signed key certificate file to use.
Disclaimer: I realize the solution described in this post is not ideal, but IMO it's better than keeping the password in a plain-text file on the desktop (like my boss does).
AutoHotkey can be found here.
AHK Script:
#Persistent SetTimer, EnterAuth, 250 return EnterAuth: Process, wait, openvpn-gui.exe, 2 If %ErrorLevel% = 0 { Run, C:\Program Files (x86)\OpenVPN\config\shortcut.lnk Sleep, 2000 } IfWinExist OpenVPN - User Authentication { ControlSetText, Edit1, {USERNAME}, OpenVPN - User Authentication ahk_class #32770 ControlSetText, Edit2, {PASSWORD}, OpenVPN - User Authentication ahk_class #32770 ControlSend, Edit1, {Enter}, OpenVPN - User Authentication ahk_class #32770 ExitApp } return
"C:\Program Files (x86)\OpenVPN\bin\openvpn-gui-1.0.3.exe" --connect my-openvpn-config.ovpn