Skip to content

Instantly share code, notes, and snippets.

View norbit8's full-sized avatar
πŸ‘¨β€πŸ’»
coding

Yoav Levy norbit8

πŸ‘¨β€πŸ’»
coding
View GitHub Profile
We can't make this file beautiful and searchable because it's too large.
,name,phone-number,city,country,job_title,date
0,Kim Copeland,398-917-3246x14642,Barnard,Azerbaijan,Building services engineer,2001-05-02
1,Denise Williams,490.697.6075x389,Williams Park,El Salvador,"Geologist, engineering",1985-04-27
2,Malik Reid,001-548-746-2211x958,Reserve,Wallis and Futuna,Art gallery manager,1979-09-24
3,Seth Smith,880.226.0842,Bolling,United Arab Emirates,Research scientist (medical),2015-12-18
4,Jeremy Mccoy,(045)124-9588x9776,Denhoff,Qatar,Seismic interpreter,2004-07-22
5,Jorge Mack,+1-272-910-7404x3747,Chernofski,Netherlands,Hospital doctor,2000-07-04
6,Alexandra Gray,3346613007,Jupiter,Nicaragua,Telecommunications researcher,2013-04-25
7,John Knight,+1-923-588-2944x250,Washington Terrace,Macao,Contracting civil engineer,2006-01-31
8,Chelsea Cervantes,001-526-656-3790,Scammon Bay,Greenland,"Surveyor, hydrographic",2016-08-24
@norbit8
norbit8 / citygame.html
Last active November 1, 2023 12:46
GoalKeeper js game
<!DOCTYPE html>
<html lang="en">
<head>
<title>Game Score</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
@norbit8
norbit8 / falafelkingBOT.py
Created April 12, 2017 18:46
Falafel King bot
"""
FALAFEL KING BOT:
All coordinates assume a screen resolution of 1920x1080, and Chrome
maximized with the Bookmarks Toolbar disabled.
Game link: http://www.net-games.co.il/media/girls/games/ae8308f387108abz.swf
x_pad = 309
y_pad = 65
Play area = x_pad+1, y_pad+1, x_pad+1300, y_pad+975
@norbit8
norbit8 / keypressevent.py
Last active March 28, 2017 20:06
python: detects when a key is pressed and displays it in a popup message
import msvcrt
import ctypes # An included library with Python install.
def mbox(title: object, text: object, style: object) -> object:
ctypes.windll.user32.MessageBoxW(0, text, title, style)
return True
while True:
if msvcrt.kbhit():