Skip to content

Instantly share code, notes, and snippets.

View ambethia's full-sized avatar
🐼
PANDAS!

Jason L Perry ambethia

🐼
PANDAS!
View GitHub Profile
<table>
<thead>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Age</th>
</tr>
</thead>
<tbody>
<tr>
[
{
"name": "Finn the Human",
"image": "http://i.cdn.turner.com/v5cache/CARTOON/site/Images/i18/propd_at_char_finn.png",
"details": "Finn is a silly kid who wants to become a great hero one day. He might not look too tough, but if there's evil around, he'll slay it. That's his deal."
},
{
"name": "Jake the Dog",
"image": "http://i.cdn.turner.com/v5cache/CARTOON/site/Images/i18/propd_at_char_jake.png",
"details": "Finn's best friend is a wise, old dog with a big heart. Jake has the magical ability to stretch and grow. When evil's not running amok, he plays viola with his girlfriend, Lady Rainicorn."
@ambethia
ambethia / .rubocop.yml
Created September 17, 2018 14:37
ActiveRecord Starter Kit
Metrics/LineLength:
Max: 120
AllCops:
TargetRubyVersion: 2.5
Exclude:
- 'db/schema.rb'
- 'db/migrate/*'
@ambethia
ambethia / bitcoin-network.py
Last active August 6, 2018 09:52
NyanCoin settings for P2Pool
nyancoin=math.Object(
P2P_PREFIX='fbc0b8db'.decode('hex'), # TODO: I think you can find it in main.cpp at pchMessageStart[4]=... Using this specific value as the P2P_PREFIX fixed the problem for me.
P2P_PORT=17778,
ADDRESS_VERSION=21,
RPC_PORT=17779,
RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
'nyancoinaddress' in (yield bitcoind.rpc_help()) and
not (yield bitcoind.rpc_getinfo())['testnet']
)),
SUBSIDY_FUNC=lambda height: 50*100000000, # TODO: SUBSIDY_FUNC can be found in the source code, specifically in main.cpp, search for nSubsidy, you'll find a line that looks a lot like nSubsidy >>= (nHeight / 8400000);
@ambethia
ambethia / high.txt
Last active August 6, 2018 04:11
TSM Battle Pet Group
p:836:25:2,p:1226:25:2,p:204:25:2,p:251:25:2,p:235:25:2,p:333:25:2,p:153:25:2,p:1198:25:2,p:195:25:2,p:211:25:2,p:1196:25:2,p:1040:25:2,p:141:25:2,p:118:25:2,p:1197:25:2,p:194:25:2,p:262:25:2,p:144:25:2,p:158:25:2,p:47:25:2,p:261:25:2,p:95:25:2,p:1146:25:2,p:125:25:2,p:1321:25:2,p:292:25:2,p:164:25:2,p:1276:25:2,p:319:25:2,p:87:25:2,p:132:25:2,p:86:25:2,p:206:25:2,p:85:25:2,p:1061:25:2,p:293:25:2,p:1154:25:2,p:1153:25:2,p:1233:25:2,p:306:25:2,p:142:25:2,p:1177:25:2,p:89:25:2,p:1335:25:2,p:229:25:2,p:40:25:2,p:1155:25:2,p:162:25:2,p:167:25:2,p:1150:25:2,p:55:25:2,p:1320:25:2,p:175:25:2,p:1329:25:2,p:1348:25:2,p:157:25:2,p:311:25:2,p:1344:25:2,p:159:25:2,p:136:25:2,p:1183:25:2,p:1243:25:2,p:1228:25:2,p:59:25:2,p:127:25:2,p:630:25:2,p:58:25:2,p:652:25:2,p:1200:25:2,p:1063:25:2,p:241:25:2,p:848:25:2,p:1337:25:2,p:289:25:2,p:201:25:2,p:57:25:2,p:78:25:2,p:44:25:2,p:51:25:2,p:77:25:2,p:114:25:2,p:1346:25:2,p:190:25:2,p:52:25:2,p:267:25:2,p:75:25:2,p:792:25:2,p:239:25:2,p:200:25:2,p:834:25:2,p:847:25:2,p:1151:25:2,p
@ambethia
ambethia / goonies.md
Last active July 26, 2018 13:28
The Goonies

The Goonies

The Originals

Mikey

Mikey is 5the leader of the Goonies. His family lives in the "goon docks" area of Astoria, OR.

Mouth

const MIN = 1
const MAX = 1000
let guess, upper, lower, tries
const startGame = () => {
updateGame()
document.querySelector('#intro').style.display = 'none'
document.querySelector('#game').style.display = 'block'
}