I hereby claim:
- I am xer0x on github.
- I am xer0x (https://keybase.io/xer0x) on keybase.
- I have a public key whose fingerprint is E0B8 C1EB 4F19 B91F A7CB 7DF4 D395 033D C773 4648
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
# Following the steps on https://docs.cachethq.io/docs/get-started-with-docker | |
setup () { | |
git clone https://github.com/cachethq/Docker.git cachet-docker | |
cd cachet-docker |
from datetime import datetime, timedelta | |
from sys import argv, exit | |
import time | |
import signal | |
def usage(): | |
print ''' | |
python log.py filename |
{ | |
"name": "Adelais Rev. 4", | |
"vendorProductId": 1296870659, | |
"macros": ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ""], | |
"layers": [ | |
[ | |
"KC_GRV", | |
"KC_1", | |
"KC_2", | |
"KC_3", |
description = [[ | |
Issues an arbitrary HTTP GET request | |
]] | |
--- | |
-- @usage | |
-- nmap --script http-get [--script-args http-get.path=/status] -p <port> <host> | |
-- @args http-get.path The path to request (defaults to /) | |
-- http-get.match String to match in the HTTP response (incl. headers) | |
-- @output |
#!/usr/bin/env bash | |
# Minimal safe template for BASH from Maciej | |
# From https://betterdev.blog/minimal-safe-bash-script-template/ | |
set -Eeuo pipefail | |
trap cleanup SIGINT SIGTERM ERR EXIT | |
script_dir=$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd -P) |
// Read the list, and count the names after the @ symbols. | |
// current-history.txt format: | |
// @user1 @user2 | |
const fs = require('fs'); | |
const history = {}; | |
const text = fs.readFileSync('current-history.txt', 'utf8'); |