I hereby claim:
- I am krzko on github.
- I am krzko (https://keybase.io/krzko) on keybase.
- I have a public key ASBJhogOmk3uvKOJXozFivMBBsTgsFAN_zllbIkLLOGRWQo
To claim this, I am signing this object:
package main | |
import ( | |
"fmt" | |
"regexp" | |
"sort" | |
"strconv" | |
"time" | |
) |
<!-- The container where repo details will be populated --> | |
<div class="github-repo-box" id="githubRepoDetails"> | |
<!-- Empty by default; JavaScript will populate this --> | |
</div> | |
<script> | |
// A function to fetch and display repo details | |
async function fetchRepoDetails(owner, repo) { | |
const response = await fetch(`https://api.github.com/repos/${owner}/${repo}`); | |
const repoData = await response.json(); |
import argparse | |
import math | |
import textwrap | |
from datetime import timedelta | |
DURATIONS = {"s": 1, "m": 60, "h": 3600, "d": 86400, "w": 604800} | |
ERROR_RATES = [ | |
0.0001, | |
0.0005, | |
0.001, |
Domain: TEST.local | |
User Enumeration: | |
Windows: | |
net user | |
net user /domain | |
net user [username] | |
net user [username] /domain | |
wmic useraccount | |
Mac: | |
dscl . ls /Users |
#!/usr/bin/env bash | |
set -Eeuo pipefail | |
trap cleanup SIGINT SIGTERM ERR EXIT | |
script_dir=$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd -P) | |
usage() { | |
cat <<EOF | |
Usage: $(basename "${BASH_SOURCE[0]}") [-h] [-v] [-f] -p param_value arg1 [arg2...] |
#!/usr/bin/env bash | |
### Zignaly Hybrid Trades ### | |
#/ $ source zignaly_functons.sh | |
#/ $ run_the_function | |
export ZIGNALY_API_URL="https://zignaly.com/api/signals.php" | |
function log_me() { |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" \ | |
"http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>ifup.alpaca</string> | |
<key>LowPriorityIO</key> | |
<true/> |
#!/usr/bin/env bash | |
# Script to restart/start alpaca on network changes. | |
# | |
# To register plist: | |
# launchctl load network_change.plist | |
# launchctl start network_change | |
# | |
# Vars |
I hereby claim:
To claim this, I am signing this object:
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |