Skip to content

Instantly share code, notes, and snippets.

View laustdeleuran's full-sized avatar

Laust Deleuran laustdeleuran

View GitHub Profile
@nathansmith
nathansmith / web-design-development-learning-resources.md
Last active May 29, 2024 12:25
Resources for learning web design & front-end development
@gwa
gwa / gist:8803319
Last active June 16, 2017 17:41
Bash one-liner to open sublime project in current directory from the command line.
# Add this to your ~/.profile to open the sublime project file in the current directory using `sublp` without any arguments.
# Note: `subl` ust be in your PATH.
#
# Usage: Navigate to folder containing project file. Type `sublp` and hit enter.
#
# Thanks to http://www.reddit.com/user/execrator for the hint!
#
alias sublp='subl --project *.sublime-project'
@bradfrost
bradfrost / gist:59096a855281c433adc1
Last active September 4, 2023 15:01
Why I'm Not A JavaScript Developer

Answering the Front-end developer JavaScript interview questions to the best of my ability.

  • Explain event delegation

Sometimes you need to delegate events to things.

  • Explain how this works in JavaScript

This references the object or "thing" defined elsewhere. It's like "hey, thing I defined elsewhere, I'm talkin' to you."

  • Explain how prototypal inheritance works.