Skip to content

Instantly share code, notes, and snippets.

# Text & code only — avoid duplicates
py y 5000000 \x64\x65\x66\x20
rs y 5000000 \x66\x6e\x20
toml y 2000000 \x5b
yaml y 2000000 \x3a\x20
yml y 2000000 \x3a\x20
json y 3000000 \x7b
html y 5000000 \x3c\x68\x74\x6d\x6c
txt y 2000000 \x0a
#cloud-config
autoinstall:
version: 1
locale: en_US.UTF-8
keyboard:
layout: us
variant: alt-intl

Keybase proof

I hereby claim:

  • I am 0xdco on github.
  • I am 0xdco (https://keybase.io/0xdco) on keybase.
  • I have a public key ASBA8p5ZIro51Z73bDEUuac7u09U5WQpVsMQBG3FR4r3Tgo

To claim this, I am signing this object:

@kmpzr
kmpzr / delete_redis_keys.sh
Created February 18, 2013 20:45
Delete all redis keys from shell
redis-cli keys * | xargs redis-cli del "$0"
@kmpzr
kmpzr / Redis.php
Created February 15, 2013 13:50
Redis Client (Predis). Keys that Expires.
<?php
class Redis {
private static $handler = NULL;
private static function getHandler()
{
if (self::$handler)
return self::$handler;