I hereby claim:
- I am crossroads1112 on github.
- I am crossroads1112 (https://keybase.io/crossroads1112) on keybase.
- I have a public key whose fingerprint is 9C2D 06BC F805 3215 5ECD 7BE4 74A1 B23F 108D 84DC
To claim this, I am signing this object:
import os | |
import sys | |
from flask import Flask, redirect, render_template, request, url_for | |
import helpers | |
from analyzer import Analyzer | |
app = Flask(__name__) | |
@app.route( "/" ) | |
def index(): | |
return render_template( "index.html" ) |
/**************************************************************************** | |
* CS50 Library 6 | |
* https://manual.cs50.net/library/ | |
* | |
* Based on Eric Roberts' genlib.c and simpio.c. | |
* | |
* Copyright (c) 2013, | |
* Glenn Holloway <[email protected]> | |
* David J. Malan <[email protected]> | |
* All rights reserved. |
/usr/bin/xterm |
#!/usr/bin/env bash | |
# Runs a command wrapped with btrfs pre-post snapshots. | |
log_path="/var/local/log/snp" | |
date=$(date "+%Y-%m-%d-%H%M%S") | |
log_file="${log_path}/snp_${date}.log" | |
if (( EUID != 0 )); then | |
echo "This script must be run as root" 1>&2 | |
exit 1 | |
fi |
#!/usr/bin/env bash | |
dir=~/.dotfiles # dotfiles directory | |
olddir=~/.dotfiles_old # old dotfiles backup directory | |
files="zshrc vimrc tmux.conf vimperatorrc" # list of files/folders to symlink in homedir | |
# create dotfiles_old in homedir | |
echo -n "Creating $olddir for backup of any existing dotfiles in ~ ..." | |
mkdir -p $olddir |
I hereby claim:
To claim this, I am signing this object:
# Add this to your ~/.config/fish/config.fish | |
# Syntax: | |
# To just rerun your last command, simply type '!!' | |
# '!! sudo' will prepend sudo to your most recent command | |
# Running !! with anything other than sudo will append the argument to your most recent command | |
# To add another command to prepend list remove the # on line 10 and put the command in the quotes. Repeat as needed | |
function !!; | |
set prevcmd (history | head -n 1) | |
if test "$argv" | |
if test "$argv" = "sudo" #; or "any other command you want to prepend" |
#!/usr/bin/env bash | |
log_path="/var/local/log/rollback" | |
date=$(date "+%Y-%m-%d-%H%M%S") | |
log_file="${log_path}/rollback_${date}.log" | |
#If log directory doesnt exist, make it | |
if [ ! -d "$log_path" ]; then | |
mkdir $log_path | |
fi |