• 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', |
See also:
Service | Type | Storage | Limitations |
---|---|---|---|
Amazon DynamoDB | 25 GB | ||
Amazon RDS | |||
Azure SQL Database | MS SQL Server | ||
👉 Clever Cloud | PostgreSQL, MySQL, MongoDB, Redis | 256 MB (PostgreSQL) | Max 5 connections (PostgreSQL) |
// 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 | |
}); |