I hereby claim:
- I am goddard on github.
- I am goddard (https://keybase.io/goddard) on keybase.
- I have a public key ASAu65Z8bNOUiykkICqqfWW_jrfW2ApI-hnoy1c45addYgo
To claim this, I am signing this object:
var request = require('request') | |
/** | |
* Handle multiple requests at once | |
* @param urls [array] | |
* @param callback [function] | |
* @requires request module for node ( https://github.com/mikeal/request ) | |
*/ | |
var __request = function (urls, callback) { |
# Backup | |
docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql | |
# Restore | |
cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE | |
I hereby claim:
To claim this, I am signing this object:
body { | |
background-color: black; | |
} | |
#masthead { | |
top: 0; | |
z-index: 2; | |
} | |
.sticky-header { |
o.......Open files, directories and bookmarks....................|NERDTree-o| | |
go......Open selected file, but leave cursor in the NERDTree.....|NERDTree-go| | |
t.......Open selected node/bookmark in a new tab.................|NERDTree-t| | |
T.......Same as 't' but keep the focus on the current tab........|NERDTree-T| | |
i.......Open selected file in a split window.....................|NERDTree-i| | |
gi......Same as i, but leave the cursor on the NERDTree..........|NERDTree-gi| | |
s.......Open selected file in a new vsplit.......................|NERDTree-s| | |
gs......Same as s, but leave the cursor on the NERDTree..........|NERDTree-gs| | |
O.......Recursively open the selected directory..................|NERDTree-O| | |
x.......Close the current nodes parent...........................|NERDTree-x| |
<script> | |
function sleep(milliseconds) { | |
var start = new Date().getTime(); | |
for (var i = 0; i < 1e7; i++) { | |
if ((new Date().getTime() - start) > milliseconds){ | |
break; | |
} | |
} | |
} |
curl -i -H "Accept: application/xml" -H "Content-Type: application/xml" -X GET https://dynamicdns.park-your-domain.com/update?host=@&domain=[domain]&password=[update-password]&ip=[local-ip] |
' oidgen.vbs | |
' | |
' THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED | |
' OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR | |
' FITNESS FOR A PARTICULAR PURPOSE. | |
' | |
' Copyright (c) Microsoft Corporation. All rights reserved | |
' Improvements made by Ryein C. Goddard | |
' | |
' This script is not supported under any Microsoft standard support program or service. |
#!/bin/sh | |
### BEGIN INIT INFO | |
# Provides: OpenVPN Autoconnect | |
# Required-Start: $local_fs $remote_fs $network | |
# Required-Stop: $local_fs $remote_fs $network | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: OpenVPN Autoconnect | |
# Description: OpenVPN Autoconnect | |
### END INIT INFO |
#!/bin/python3 | |
import math | |
import os | |
import random | |
import re | |
import sys | |
# Complete the staircase function below. | |
def staircase(n): |