Skip to content

Instantly share code, notes, and snippets.

View ntohidi's full-sized avatar
🎯
Focusing

Nasrin Tohidi ntohidi

🎯
Focusing
View GitHub Profile
@ntohidi
ntohidi / server.py
Created October 18, 2021 05:10 — forked from dragermrb/server.py
Python 3 HTTP Server with Basic Authentication
import http.server
import cgi
import base64
import json
from urllib.parse import urlparse, parse_qs
class CustomServerHandler(http.server.BaseHTTPRequestHandler):
def do_HEAD(self):
@ntohidi
ntohidi / html.html
Last active May 19, 2019 05:33
html_beginner_header_1
<!DOCTYPE html>
<html>
<head></head>
<body>
</body>
</html>
@ntohidi
ntohidi / answer.md
Last active May 19, 2019 05:33
html_beginner_header_1

.

@ntohidi
ntohidi / html.html
Last active May 19, 2019 05:28
html_beginner_header_0
<!DOCTYPE html><html><head></head><body>Hello world</body></html>
@ntohidi
ntohidi / answer.md
Created May 19, 2019 04:31
html_beginner_header_0

.

@ntohidi
ntohidi / html.html
Last active May 11, 2019 05:07
html_beginner_a_1
<p>yeah baby</p>
@ntohidi
ntohidi / answer.md
Last active May 11, 2019 05:07
html_beginner_a_1

.

@ntohidi
ntohidi / css.css
Last active May 11, 2019 05:12
html_beginner_a_0
body{
background-color: yellow;
}
@ntohidi
ntohidi / answer.md
Last active May 11, 2019 04:37
html_beginner_a_0

.