Skip to content

Instantly share code, notes, and snippets.

View mobeendev's full-sized avatar

Abdul Mobeen mobeendev

View GitHub Profile
@mobeendev
mobeendev / notes.md
Created November 3, 2021 17:54 — forked from vasanthk/notes.md
Julian's Writing Workshop - 11/2/2021 - Notes

Raw Notes

These are my unstructured notes from the workshop. Read with caution (they're biased to my own interpretation).

Notes

1,000,000 Julian.com visitors Part 1: What's your objective for your article? Part 2: pair it with an objective objective + motivation good nonfiction = 70% novelty + 25% story + 5% style

@mobeendev
mobeendev / new_gist_file.js
Created September 22, 2021 11:49 — forked from nmsdvid/new_gist_file.js
Simple JavaScript Debounce Function
// Returns a function, that, as long as it continues to be invoked, will not
// be triggered. The function will be called after it stops being called for
// N milliseconds. If `immediate` is passed, trigger the function on the
// leading edge, instead of the trailing.
function debounce(func, wait, immediate) {
var timeout;
return function() {
var context = this, args = arguments;
clearTimeout(timeout);
@mobeendev
mobeendev / frontendDevlopmentBookmarks.md
Created April 3, 2016 19:39 — forked from dypsilon/frontendDevlopmentBookmarks.md
A badass list of frontend development resources I collected over time.