$ uname -r
This file contains 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
0xe1f02fCc48c1C686a777C02C2df6A841226dBF71 |
This file contains 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
\centered **PLEDGE AGREEMENT** | |
This PLEDGE AGREEMENT (this "**Agreement**") is made as of July 14, 2010, by and between DESERT HAWK GOLD CORP., a Nevada corporation (the "**Pledgor**"), and DMRJ GROUP I, LLC, a Delaware limited liability company, or its successors and assigns (the "**Secured Party**"). | |
\centered **RECITALS** | |
^A. Contemporaneously with the execution and delivery hereof, the Pledgor and the Secured Party entered into that certain Investment Agreement, dated as of the date hereof, pursuant to which the Secured Party agreed to make available to the Pledgor a senior secured term loan credit facility of up to $6,500,000 for the purpose of, among other things, providing capital to the Secured Party for the conduct of certain mining activities (as the same may be amended, modified, supplemented, renewed, restated, extended or replaced, the "**Investment Agreement**"). | |
^B. Pledgor is the owner of 2,713,636 shares of common stock, par value $0.001 per share, of Blue Fin Capital, Inc., a Utah corp |
This file contains 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
DECLARE E INT DEFAULT 0; | |
DECLARE M TEXT DEFAULT NULL; | |
DECLARE CONTINUE HANDLER FOR 1000 SET E='1000', M="hashchk"; | |
DECLARE CONTINUE HANDLER FOR 1001 SET E='1001', M="isamchk"; | |
DECLARE CONTINUE HANDLER FOR 1002 SET E='1002', M="NO"; | |
DECLARE CONTINUE HANDLER FOR 1003 SET E='1003', M="YES"; | |
DECLARE CONTINUE HANDLER FOR 1004 SET E='1004', M="Can't create file '%s' (errno: %d)"; | |
DECLARE CONTINUE HANDLER FOR 1005 SET E='1005', M="Can't create table '%s' (errno: %d)"; | |
DECLARE CONTINUE HANDLER FOR 1006 SET E='1006', M="Can't create database '%s' (errno: %d)"; |
This file contains 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
const got = require('got'); | |
module.exports = (ctx, cb) => { | |
var weatherForCity = 'http://api.openweathermap.org/data/2.5/weather?&units=metric&APPID=8b49f82415341963f8768cce938de042&q=' + ctx.body.text; | |
got(weatherForCity) | |
.then(response => { | |
var json = JSON.parse(response.body); | |
var weather = json.weather[0].description + ', ' + json.main.temp + ' celcius'; | |
cb(null, { text: weather}); | |
}) |
I hereby claim:
- I am fforbeck on github.
- I am fforbeck (https://keybase.io/fforbeck) on keybase.
- I have a public key ASCsk2AV2WsPAhosHTW23A9I0NuwzfIHdSzpSnKYRaCUUgo
To claim this, I am signing this object:
This file contains 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
"settings": { | |
"analysis": { | |
"filter": { | |
"hashtag_filter": { | |
"type": "word_delimiter", | |
"type_table": [ | |
"# => ALPHA", | |
"@ => ALPHA" | |
] | |
} |
This file contains 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
sudo rabbitmqctl set_policy -p host --apply-to queues max-msg-size "^queue.name.pattern$" '{"max-length-bytes":100000000}' |
This file contains 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
[ req ] | |
distinguished_name="req_distinguished_name" | |
prompt="no" | |
[ req_distinguished_name ] | |
C="<country>" | |
ST="<state>" | |
L="1234" | |
O="1234" | |
CN="{DOMAIN}" |
This file contains 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
rabbitmqctl purge_queue "<target.queue>" -p <vhost> |