Skip to content

Instantly share code, notes, and snippets.

View crischutu07's full-sized avatar

Nguyễn Hồng Sơn crischutu07

View GitHub Profile
@aGuyNamedJonas
aGuyNamedJonas / interactivePrompt.js
Created August 31, 2016 07:18
Simple interactive node.js script to have users continuously enter input.
// Taken from:
// http://stackoverflow.com/questions/24464404/how-to-readline-infinitely-in-node-js
const readline = require('readline');
var log = console.log;
var rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
@bmaupin
bmaupin / free-database-hosting.md
Last active July 23, 2024 13:36
Free database hosting

Hello World in Common Programming Language

• Python 3.10

print("Hello, World!")

• Lisp

(print "Hello, World!")
import requests
import json
import time
# Disable SSL warnings
requests.packages.urllib3.disable_warnings()
url = "https://quangninh.tsdc.edu.vn/forward-api"
headers = {
'Content-Type': 'application/json;charset=utf-8',