Skip to content

Instantly share code, notes, and snippets.

View karlpokus's full-sized avatar
💭
certified rubber duck

carl-fredrik grimberg karlpokus

💭
certified rubber duck
View GitHub Profile
@karlpokus
karlpokus / dummydata.json
Last active November 25, 2015 14:49
Just some dummy data for API tests in codepen
{
"data": [
{
"id":1, "name": "Mike", "human": true
},
{
"id":2, "name": "Lucy", "human": false
},
{
"id":3, "name": "Arnold", "human": true
@karlpokus
karlpokus / py_api.py
Created November 23, 2015 13:48
python API
# http://thepythonguru.com/
# start
$ python3
# end
$ exit()
# run
$ python script.py
@karlpokus
karlpokus / redis_api.sh
Last active November 18, 2015 15:35
redis api in bash
# simple string
SET name "fido"
GET name // "fido"
# increment
SET connections 10
INCR connections // 11
DEL connections // deleted
INCR connections // 1