Skip to content

Instantly share code, notes, and snippets.

View n-jay's full-sized avatar
🎯
Focusing

Nuwan Jayawardene n-jay

🎯
Focusing
View GitHub Profile
@n-jay
n-jay / .d3v4-selectable-force-directed-graph
Created September 8, 2017 10:11 — forked from pkerpedjiev/.d3v4-selectable-force-directed-graph
D3v4 Selectable, Draggable, Zoomable Force Directed Graph
.
@n-jay
n-jay / gist:00587fb3b26a4bb4c5fa1b39f7e21462
Created December 27, 2020 19:11
List of real addresses
777 Brockton Avenue, Abington MA 2351
30 Memorial Drive, Avon MA 2322
250 Hartford Avenue, Bellingham MA 2019
700 Oak Street, Brockton MA 2301
66-4 Parkhurst Rd, Chelmsford MA 1824
591 Memorial Dr, Chicopee MA 1020
55 Brooksby Village Way, Danvers MA 1923
137 Teaticket Hwy, East Falmouth MA 2536
42 Fairhaven Commons Way, Fairhaven MA 2719
374 William S Canning Blvd, Fall River MA 2721
@n-jay
n-jay / simple-httpclient.py
Created June 26, 2021 17:24 — forked from junian/simple-httpclient.py
Simple HTTP server and client implementation in python
#!/usr/bin/env python
import httplib
import sys
#get http server ip
http_server = sys.argv[1]
#create a connection
conn = httplib.HTTPConnection(http_server)