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 is useful for a few things: | |
// | |
// 1. Checking what dictionary options are supported by some platform API. | |
// 2. Debugging mysterious cases where an object you pass as input to another | |
// API doesn’t seem to get treated the way you’re expecting. | |
// 3. When designing another Proxy’s handler implementation, verifying that you | |
// are accounting for everything correctly and that the intended abstraction | |
// isn’t leaking in quirky ways. | |
// | |
// ex: |
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 | |
set -Eeuo pipefail | |
trap cleanup SIGINT SIGTERM ERR EXIT | |
script_dir=$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd -P) | |
usage() { | |
cat <<EOF | |
Usage: $(basename "${BASH_SOURCE[0]}") [-h] [-v] [-f] -p param_value arg1 [arg2...] |
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
document.querySelectorAll('canvas')[1].getContext('2d').drawImage = function(canvas) { | |
const downloadButton = document.getElementById('download'); | |
const anchor = document.createElement('a'); | |
anchor.download = 'poop.png'; | |
anchor.innerText = 'POOP'; | |
anchor.setAttribute('class', downloadButton.getAttribute('class')); | |
downloadButton.parentElement.replaceChild(anchor, downloadButton); |
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
{ | |
"plugins": [ | |
"stylelint-order" | |
], | |
"extends": "stylelint-config-standard", | |
"rules": { | |
"indentation": 4, | |
"function-comma-newline-after": "always-multi-line", | |
"function-comma-space-after": "always", | |
"function-parentheses-newline-inside": "always-multi-line", |
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
// DRAFT, UNTESTED | |
// Originally you have an Angular app that | |
// is decomposed to submodules. Each submodule has its own | |
// config and run handlers. One submodule (lib3) | |
// also depends on another submodule. | |
module('myapp', ['lib1', 'lib2', 'lib3']) | |
.config(...) |
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
//requires jQuery.Deferred | |
_deferred = (function(){ | |
var that = {}; | |
var deferred = {}; | |
var lazy = function(name) { | |
if(!deferred[name]){ | |
deferred[name] = $.Deferred(); | |
} | |
return deferred[name]; |
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
Copyright (c) 2015 - Xavier Cambar <@ xcambar_gmail.com> | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: | |
The above copyright notice and this permission notice shall be included in |
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
/* "Thunks, Trampolines, and Continuation Passing" | |
* Python implementation from http://jtauber.com/blog/2008/03/30/ | |
* JavaScript implementation by Thomas Darr <[email protected]>. | |
*/ | |
// thunk = lambda name: lambda *args: lambda: name(*args) | |
var thunk = function thunk(fn) { | |
return function _thunk() { | |
var splat = Array.prototype.slice.apply(arguments); | |
return function __thunk() { return fn.apply(this, splat); }; |
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
asdf |