I hereby claim:
- I am jessieamorris on github.
- I am jessieamorris (https://keybase.io/jessieamorris) on keybase.
- I have a public key ASAKC_5jZ9VKws1ZjaJT8wU774vBnE0XXbXXdHs5SgYrIAo
To claim this, I am signing this object:
ruleset a41x149 { | |
meta { | |
name "IRC Bot" | |
description << | |
IRC Bot | |
>> | |
author "" | |
logging off | |
} |
input = ask "WHAT IS 5 + 2?!" | |
number = 7 | |
if input.to_i == 7 | |
alert "CONGRATULATIONS YOU CAN ADD AND STUFF!!!" | |
else | |
alert "YOU ARE A BLEEDING VAGINA HOW COULD YOU SCREWWWWWW!" | |
end |
<html> | |
<head> | |
<style type="text/css"> | |
.hide { | |
display: none; | |
} | |
</style> | |
</head> | |
<body> |
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
<change> | |
<response_code>0</response_code> | |
<message>success</message> | |
<updates syncanchor="hpbblyst|2.9"> | |
<response_code>0</response_code> | |
<envelopegroups/> | |
<envelopes> | |
<envelope type="CREDIT_CARD_PAYMENTS" id="53215600" displayFlag="1"> | |
<balance>-8.01</balance> |
var store = new _.LargeLocalStorage({ | |
size: 10000, | |
name: 'NamespaceThatYouWantToUse' | |
}); | |
store.initialized.done(function() { | |
store.set("THIS IS THE KEY", {a: {object: true, test: "This is a test object for storing however"}}, {json: true}).done(function() { | |
store.get("THIS IS THE KEY", {json: true}).done(function(ret) { | |
console.log(ret.a.test); // prints "This is a test object for storing however" | |
}); |
I hereby claim:
To claim this, I am signing this object:
var isObject = function isObject(object) { | |
return Object.prototype.toString.call(object) === "[object Object]"; | |
}; | |
var isArray = function isObject(object) { | |
return Object.prototype.toString.call(object) === "[object Array]"; | |
}; | |
var dashP = function dashP(path, object) { | |
var current = object; |
var isObject = function isObject(object) { | |
return Object.prototype.toString.call(object) === "[object Object]"; | |
}; | |
var isArray = function isObject(object) { | |
return Object.prototype.toString.call(object) === "[object Array]"; | |
}; | |
var dashP = function dashP(path, object) { | |
var current = object; |
highlight MixedIndent ctermbg = red guibg = #FF0000 | |
" Executes all auto commands | |
function! <SID>SetupAutoCommands() | |
" Auto commands group | |
augroup better_whitespace | |
autocmd! | |
" Highlight extraneous whitespace at the end of lines, but not the | |
" current line | |
syn clear MixedIndent | syn match MixedIndent excludenl /\v^\s*( \t|\t )\s*/ |