Skip to content

Instantly share code, notes, and snippets.

View mteam88's full-sized avatar
🙏
Active

Matthew mteam88

🙏
Active
View GitHub Profile
@mteam88
mteam88 / alpha.md
Created January 28, 2024 19:34
MEV Opportunity Brief Template

<STRATEGY_NAME>

Strategy Description

  • Detail #1
  • Detail #2
  • Detail #3
  • Detail #4
  • Detail #5

Optional: Strategy author, date

@mteam88
mteam88 / blocks-analysis.ipynb
Last active April 9, 2024 16:08
Cryo Ethereum Blocks Analysis Notebook
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mteam88
mteam88 / art.txt
Created May 20, 2022 23:43
ASCII ART
000000000000000
000000000000000
00000xxxxx00000
00000xxxxx00000
00000xxxxx00000
0000000|0000000
0000000|0000000
0000000|0000000
Y00Y000|00Y0Y00
@mteam88
mteam88 / challenge4.py
Last active May 20, 2022 23:29
CodeRecipe
print("Guide: \n" + \
'''
Enter your age.
Then don't
JUST DONT
then we have some fun numbers
for fun
so ha
lol
lol
@mteam88
mteam88 / Error_Code.txt
Last active September 3, 2021 12:33
Errorcoderpggame
/home/runner/.cache/node-gyp/12.22.1/include/node/v8config.h:328:3: note: in definition of macro 'V8_DEPRECATED'
declarator __attribute__((deprecated(message)))
^~~~~~~~~~
In file included from ../src/unix/pty.cc:20:0:
../node_modules/nan/nan.h: In member function 'v8::Local<v8::Value> Nan::AsyncWorker::GetFromPersistent(uint32_t) const':
../node_modules/nan/nan.h:1847:57: warning: 'v8::Local<v8::Value> v8::Object::Get(uint32_t)' is deprecated: Use maybe version [-Wdeprecated-declarations]
return scope.Escape(New(persistentHandle)->Get(index));
^
In file included from /home/runner/.cache/node-gyp/12.22.1/include/node/v8-internal.h:14:0,
from /home/runner/.cache/node-gyp/12.22.1/include/node/v8.h:27,
import random
TRIALS = 2000
resultlist = []
for i in range(TRIALS):
if random.randint(1,100) >= 72:
resultlist.append(0)
elif random.randint(1,100) >= 72:
resultlist.append(1)
else:
resultlist.append(2)
@mteam88
mteam88 / CH11Stats#6.py
Created September 1, 2021 12:13
CH11Stats#6: Random Colorblindness
import random
if random.randint(1,10) == 1:
print("Colorblind!")
else:
print("Not Colorblind!")