Skip to content

Instantly share code, notes, and snippets.

View ranyishere's full-sized avatar

Rany Tith ranyishere

View GitHub Profile
@ranyishere
ranyishere / Food.py
Last active July 20, 2019 21:40
A quick python demonstration for my friend Johnny :)
import pickle
our_db = {}
def create_local_database(to_save):
"""
Write file name
"""
file_name = input('what do you want to name your file?')
@ranyishere
ranyishere / gist:92aadd9feadf6fb0af8f22a69d7a20bc
Created May 18, 2019 07:40
Complete python webserver image hosting with no libraries
from http.server import HTTPServer, BaseHTTPRequestHandler
import io
import urllib.request
import random
class WebServer(BaseHTTPRequestHandler):
def do_GET(self):
try: