Skip to content

Instantly share code, notes, and snippets.

View joelstransky's full-sized avatar

Joel Stransky joelstransky

View GitHub Profile
anonymous
anonymous / doc-bot.md
Created August 25, 2016 01:24
##WordPress IRC doc-bot documentation.. ooh so meta.

A support room isn't a support room without a solid IRC Bot. Here is a list of the current ##WordPress IRC Bot Commands

Command Description Usage Syntax
.help Asking for help in the room ----
.ignore Ignore a user .ignore SomeNick
.unignore Unignore a user .unignore SomeNick
.c / .codex Search the codex .c template heirarchy > SomeNick
.g Searches google .g your search terms > SomeNick
.y / .youtube Searched YouTube .y search terms > SomeNick
@mikaelbr
mikaelbr / destructuring.js
Last active April 25, 2024 13:21
Complete collection of JavaScript destructuring. Runnable demos and slides about the same topic: http://git.mikaelb.net/presentations/bartjs/destructuring
// === Arrays
var [a, b] = [1, 2];
console.log(a, b);
//=> 1 2
// Use from functions, only select from pattern
var foo = () => [1, 2, 3];