Skip to content

Instantly share code, notes, and snippets.

View kylebakerio's full-sized avatar
⛰️
mountains are really nice, guys.

Kyle Baker kylebakerio

⛰️
mountains are really nice, guys.
View GitHub Profile
@kylebakerio
kylebakerio / dotslashtaskdotjs.markdown
Last active May 19, 2016 11:54
introducing ./task.js, THE new javascript task runner automation framework

why ./task.js?

One word: task automation. It's basically zero effort and you can use the ./task.js package manager to handle any repetitive tasks. You can use ./task.js to automate everything with minimum effort.

./task.js provides the structure, order, and authority that you as a developer so desperately crave. ./task.js will also take responsibility for your actions if you need it to. It's what everybody is using now. ./task.js is the new hotness. It's all about ./task.js now, just like that.

This is compared to npm run/bash scripts, which are:

@kylebakerio
kylebakerio / gist:43cc9366e1a0fc6048256185a7f0cb50
Created February 9, 2021 00:42 — forked from czarneckid/gist:762065
Creating high score leaderboards with Redis
NOTE: You will need at least Redis 2.1.6 to use the ZREVRANGEBYSCORE method.
Add players to HIGHSCORES table:
fossil:~ dczarnecki$ redis-cli
redis> zadd HIGHSCORES 1 player_1
(integer) 1
redis> zadd HIGHSCORES 2 player_2
(integer) 1
redis> zadd HIGHSCORES 3 player_3