We can't make this file beautiful and searchable because it's too large.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ,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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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(): |