This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
"buttons", | |
"calendar", | |
"obsidian-contextual-typography", | |
"obsidian-fullscreen-plugin", | |
"obsidian-mind-map", | |
"obsidian-reading-time", | |
"obsidian-shortcut-launcher", | |
"obsidian-admonition", | |
"advanced-toolbar", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# This script should help facilitate setting up a new worktree, including: | |
# - creating a new worktree | |
# - installing dependencies | |
# - creating a new branch | |
set -Eeuo pipefail | |
trap cleanup SIGINT SIGTERM ERR EXIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am nicknisi on github. | |
* I am nicknisi (https://keybase.io/nicknisi) on keybase. | |
* I have a public key whose fingerprint is 8D96 5131 D56A E7CF 3F61 D32E 8448 11B5 AC41 0A92 | |
To claim this, I am signing this object: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require([ | |
'dojo/_base/declare' | |
], function (declare) { | |
var Parent = declare(null, { | |
method: function () { | |
console.log('PARENT'); | |
} | |
}); | |
var Mixin = declare(null, { |
This is a list of JavaScript projects on Github that label issues as easy or beginner-friendly.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*jshint strict:false,unused:true*/ | |
function foo (bar) { | |
console.log('hello, world!'); | |
} | |
foo(); | |
// var.js: line 3, col 18, 'bar' is defined but never used. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# JSHint Pre-Commit | |
# Place this in your .git/hooks/pre-commit directory and rename to `pre-commit` | |
# expects jshint to be installed in your projects node_modules directory | |
EXIT_CODE=0 | |
COLOR_RED="\x1B[31m" | |
COLOR_GREEN="\x1B[32m" | |
COLOR_NONE="\x1B[0m" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This method gives you an easier way of calling super | |
// when you're using Backbone in plain javascript. | |
// It lets you avoid writing the constructor's name multiple | |
// times. You still have to specify the name of the method. | |
// | |
// So instead of having to write: | |
// | |
// User = Backbone.Model.extend({ | |
// save: function(attrs) { | |
// this.beforeSave(attrs); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
components/ |
NewerOlder