Skip to content

Instantly share code, notes, and snippets.

View alumag's full-sized avatar
🥧

Aluma Gelbard alumag

🥧
View GitHub Profile
@alumag
alumag / hebrish2english.py
Created September 28, 2018 19:08
translate Hebrish to English
english = "poiuytrewqlkjhgfdsamnbvcxz"
hebrew = "פםןוטארק'/ךלחיעכגדשצמנהבסז"
if all([*map(lambda c: (c in hebrew), HEBRISH_TEXT)]):
text = ''.join([*map(lambda x: (english[hebrew.index(x)]), HEBRISH_TEXT)])
@alumag
alumag / UsefulPackages.txt
Last active September 14, 2018 13:25
useful python packages for hackathons
# python 3.7
# General
ipython
requests
Scapy
# Web
Flask==1.0.2
django==2.1.1