Skip to content

Instantly share code, notes, and snippets.

View jgarr16's full-sized avatar

jgarr16 jgarr16

  • Mountain View, CA, USA
View GitHub Profile
@stephencweiss
stephencweiss / functionDescription.js
Created December 29, 2018 16:47
A simple example of using function descriptions on foo(bar)
/**
* Foo takes any argument.
* The return value is 'baz' in all cases.
* @param {*} bar - Any argument
* @param {string} [optionalArg] - An optional argument that is a string
*/
function foo(bar, optionalArg) {
return 'baz';
}
@ccstone
ccstone / References For Learning & Using Applescript.md
Last active June 12, 2024 01:23
References For Learning & Using Applescript

REFERENCES FOR LEARNING & USING APPLESCRIPT Modified: 2018/06/19 18:47


NOTES

AppleScript is a rather peculiar scripting language to learn.