Skip to content

Instantly share code, notes, and snippets.

View nicknisi's full-sized avatar

Nick Nisi nicknisi

View GitHub Profile
@nicknisi
nicknisi / blackbox.js
Created December 5, 2014 21:39
Blackbox demo
require([
'dojo/_base/declare'
], function (declare) {
var Parent = declare(null, {
method: function () {
console.log('PARENT');
}
});
var Mixin = declare(null, {
### 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:
@nicknisi
nicknisi / gist:2771527
Created May 22, 2012 20:46
dojo dgrid pass row data in to an editor cell
var col = {
row : null,
editor : StatusSelector,
get : function (obj) { col.row = obj; return obj.status; },
editorArgs : function (column) { return column.row.otherValue; },
...
};
new Grid({
columns : [
@nicknisi
nicknisi / .gitignore
Created June 26, 2012 05:37
A simple web server to test the dgrid scrolling bug
components/
@nicknisi
nicknisi / backbone_super.js
Created August 8, 2012 12:39 — forked from maxbrunsfeld/backbone_super.js
A 'super' method for backbone.js (plain javascript)
// 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);
@nicknisi
nicknisi / param.js
Created April 15, 2013 15:33
I believe JSHint shouldn't throw an error on this when the unused variable is a paramater in the function, as having it defined can help define the function, even if it isn't necessarily used.
/*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.
@nicknisi
nicknisi / books.md
Created June 22, 2015 17:45
Recommended JavaScript Books & Videos
@nicknisi
nicknisi / hack.sh
Created April 2, 2012 19:00 — forked from erikh/hack.sh
OSX For Hackers
#!/usr/bin/env sh
##
# This is script with usefull tips taken from:
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
#
# install it:
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh
#
@nicknisi
nicknisi / lint.pre-commit
Created November 12, 2012 15:17
A git pre-commit to check js files up for commit against JSHint. If there are errors, the commit is cancelled.
#!/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"
@nicknisi
nicknisi / open-source-beginner.md
Last active June 7, 2022 12:50
A collection of JavaScript projects with issues labeled beginner-friendly