For those Windoze commands that I use maybe once every 5 years
mklink /j "from" "to"
Hey Thomas, click here to jump to the current lesson
| component { | |
| // properties | |
| variables.a_property = ''; | |
| // init | |
| public any function init( | |
| String an_argument | |
| ){ | |
| variables.a_property = arguments.an_argument; | |
| return this; |
Ahoy Mac fans! One really great tool for automating repetitive tasks on my computer is Keyboard Mastro. I normally use it to automate inputting text (things like email signatures and addresses) but today I dug a bit deeper and in an effort to automate the tedious task of clicking on a series of links that I have to click each time that I want to fetch new POP email from my external accounts.
Before you dive in note that this will only work if you configure Safari to allow remote automation.
Set value Select tab to 1
I like to keep things organized, so here is a catalog of the repositories that I'm using for this most excellent course.
None
| Currently Learning | |
| * Angular | |
| * CompTIA A+ (my stepson is studying so I figured that I'd study with him) |
| <cfscript> | |
| // declare & set vars | |
| var batch = getBatches( | |
| filterStruct = { | |
| only_get_next_incomplete_batch_for_this_week = true | |
| } | |
| ); | |
| <cfscript> | |
| key = 'yer mom'; | |
| secret = 'smells'; | |
| encrypted=encrypt(secret, key, "CFMX_COMPAT", "hex"); | |
| decrypted=decrypt(encrypted, key, "CFMX_COMPAT", "hex"); | |
| WriteDump([ | |
| 'key: #key#', | |
| 'secret: #secret#', | |
| 'encrypted: #encrypted#', | |
| 'decrypted: #decrypted#', |