Skip to content

Instantly share code, notes, and snippets.

View ZeroDragon's full-sized avatar
🌮
Tacos de canasta

Zero Dragon ZeroDragon

🌮
Tacos de canasta
View GitHub Profile
@Erikdegroot89
Erikdegroot89 / list-updates.sh
Created February 1, 2019 10:16
Get all commits since last tag
git log $(git describe --tags --abbrev=0)..HEAD --no-merges --oneline > new-in-this-release.log
@jasonwatt
jasonwatt / GAME_MASTER_v0_1.decoded.categorized.json
Last active November 27, 2018 19:39
OUTDATED - v0.29 Client - GAME_MASTER_v0_1.decoded.categorized.json
{
"Badges": [
{
"TemplateId": "BADGE_BATTLE_ATTACK_WON",
"Badge": {
"BadgeType": "BADGE_BATTLE_ATTACK_WON",
"BadgeRanks": 4,
"Targets": [10, 100, 1000]
}
}, {
@twilson63
twilson63 / replicate.js
Created November 18, 2013 13:43
Replicate Npm Registry Monitor script
var nano = require('nano')('http://localhost:5984');
function checkTasks(cb) {
nano.request({ path: '_active_tasks'}, cb);
}
function replicateNpm(cb) {
nano.db.replicate('http://isaacs.iriscouch.com/registry', 'registry',
{ continuous: true,
worker_processes: 10,