This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Cron Syntax Refresher | |
# | |
# /- Minute (0-59) | |
# | /- Hour (0-23) | |
# | | /- Day (1-31) | |
# | | | /- Month (1-12) | |
# | | | | /- Day of Week (0-7: 0 and 7 are Sunday) | |
# * * * * * | |
# | |
# * is any value |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a sanity check to make sure we're parsing major, minor, patch versions correctly | |
➜ ~ echo 'abcdeef-v123.456.789 blah' | sed -E 's/.*-v([0-9]+)\.([0-9]+)\.([0-9]+).*/major=\1, minor=\2, patch=\3/g' | |
major=123, minor=456, patch=789 | |
# These parse out each of the parts | |
➜ ~ echo 'abcdeef-v123.456.789 blah' | sed -E 's/.*-v([0-9]+)\.([0-9]+)\.([0-9]+).*/\1/g' | |
123 | |
➜ ~ echo 'abcdeef-v123.456.789 blah' | sed -E 's/.*-v([0-9]+)\.([0-9]+)\.([0-9]+).*/\2/g' | |
456 | |
➜ ~ echo 'abcdeef-v123.456.789 blah' | sed -E 's/.*-v([0-9]+)\.([0-9]+)\.([0-9]+).*/\3/g' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Make it so when you set the window title, | |
# it is never automatically changed by tmux | |
set-option -g allow-rename off | |
# This enables mouse reporting. It lets you: | |
# - Click on a pane to activate it | |
# - Right click a pane to `mark` it | |
# - Drag borders to resize panes | |
setw -g mouse on | |
set -g mouse on |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Welcome to my tmux config! | |
# Some helpful notes to future me | |
# - bind is an alias of bind-key (no difference). | |
# - bind <key> binds the key after the prefix. | |
# - bind -r <key> binds the key in the root table, | |
# meaning no prefix is necessary. | |
# - | |
# Put Plugins first because they may define behavior |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import re | |
from sys import argv | |
if len(argv)<3: | |
print("Usage:") | |
print("{} <string> <pattern>".format(argv[0])) | |
exit(2) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(lambda a:a.route('/')(lambda:'Hello')+a.run())(__import__('flask').Flask('')) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 80; | |
server_name wiki.shroba.io w; | |
client_max_body_size 15M; | |
client_body_buffer_size 128k; | |
root /usr/share/nginx/www/wiki; | |
index doku.php; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* File: simp3.k */ | |
requires "arithbool.k" | |
module SIMP3-SYNTAX | |
imports ARITHBOOL-SYNTAX | |
imports ARITHBOOL-SEMANTICS | |
/* | |
ARITHBOOL-SYNTAX introduces (variable free) arithmetic and boolean |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from flask import * | |
import random | |
import json | |
app = Flask(__name__) | |
@app.before_request | |
def before_request(): | |
raw_text = open('facts.txt').read() | |
g.facts = raw_text.split('\n') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Dogs are cute | |
It is a myth that dogs are color blind | |
Dogs DO have better low-light vision than humans because of a special light-reflecting layer behind their retinas | |
A German Shepherd guide dog led her blind companion the entire 2100 mile Appalachian Trail | |
If never spayed or neutered, a female dog, her mate, and their puppies could produce over 66,000 dogs in 6 years! | |
Dogs’ only sweat glands are between their paw pads | |
Like human babies, Chihuahuas are born with a soft spot in their skull which closes with age | |
The breed Lundehune has 6 toes and can close its ears | |
Teddy Roosevelt’s dog, Pete, ripped a French ambassador’s pants off at the White House | |
President Lyndon Johnson had two beagles named Him and Her |
NewerOlder