Skip to content

Instantly share code, notes, and snippets.

View jarrensj's full-sized avatar
🍣
hanging out with my dog

Jarren San Jose jarrensj

🍣
hanging out with my dog
View GitHub Profile
# You'll need to pip install web3 for this, everything else should come as standard
# Works as 'python snipertech.py {target-casesensitive} {sharesToBuy-1_to_9} {maximum_total_amount_in_ETH}
# e.g. python snipertech.py functi0nZer0 1 0.4
# Loops in ten second increments to try and buy your shares if they don't exist on FriendTech yet, then crashes out
# Adjust loop length on line 86 if you want to be less frequent - if they already exist, it just buys and dies.
import requests
@bradtraversy
bradtraversy / js_linked_list.js
Last active May 21, 2024 17:52
JS Linked List Class
// Construct Single Node
class Node {
constructor(data, next = null) {
this.data = data;
this.next = next;
}
}
// Create/Get/Remove Nodes From Linked List
class LinkedList {
@bradtraversy
bradtraversy / rethinkdb_cheat_sheet.MD
Last active June 8, 2024 17:46
RethinkDB Query Cheat Sheet

RethinkDB Cheat Sheet

Create database

r.dbCreate('mydb')

List databases