Skip to content

Instantly share code, notes, and snippets.

View bradydowling's full-sized avatar

Brady Dowling bradydowling

View GitHub Profile
@bradydowling
bradydowling / resources.md
Last active October 6, 2020 15:52
A chronological list of blog posts, tutorials, videos, etc that I found useful to learn from
{
"basics": {
"name": "Brady Dowling",
"label": "Software Engineer",
"email": "bradydowling@gmail.com",
"summary": "Software engineer with a focus on product and UI. I enjoy working in a team, learning from and teaching others, and honing my craft in general.",
"location": {
"city": "Boston",
"countryCode": "US",

Keybase proof

I hereby claim:

  • I am bradydowling on github.
  • I am bradydowling (https://keybase.io/bradydowling) on keybase.
  • I have a public key whose fingerprint is 335E 7F69 72C2 5A97 B104 BC3C 2910 BC3C 2890 0EC9

To claim this, I am signing this object:

@bradydowling
bradydowling / gist:07b2cc2c1f35778c8a66
Last active August 29, 2015 14:12
Using Function Declarations with JavaScript
// Using a function declaration, I cannot assign different values to a variable conditionally.
// All declarations will be hoisted to the top of the code and the latest declaration will apply.
var day = 'Friday';
if (day === 'Friday') {
function myGreeting () {
return "Happy Friday!";
}
}
@bradydowling
bradydowling / gist:ea419dcf149726244a10
Last active August 29, 2015 14:12
Using Function Expressions in JavaScript
// Using a function expression, I can assign different values to a variable conditionally.
var day = 'Friday';
if (day === 'Friday') {
var myGreeting = function () {
return "Happy Friday!";
}
}
else {