SICP Pune Meetup
When
6th April 2019, 1700 hours
6th April 2019, 1700 hours
<Response> | |
<script/> | |
<Say voice="alice">Welcome call from TrustIQ.</Say> | |
<Play>http://demo.twilio.com/docs/classic.mp3</Play> | |
</Response> |
A - 🍎 - APPLE | |
B - 🏏 - BAT BALL | |
C - 😺 - CAT | |
D - 🐕 - DOG | |
E - 🐘 - ELEPHANT | |
F - 🐟 - FISH | |
G - 🐐 - GOAT | |
H - 🎩 - HAT | |
I - 🍦 | |
J - 🃏 |
server { | |
listen 80; | |
server_name www.example.com example.com; | |
access_log /var/log/Nginx/example_com_access.log; | |
error_log /var/log/Nginx/example_com_error.log; | |
location / { | |
root /var/www/www.example.com; | |
index index.html index.htm; | |
} |
user www-data; | |
worker_processes 4; | |
pid /var/run/nginx.pid; | |
events { | |
worker_connections 768; | |
# multi_accept on; | |
} | |
http { |
#user nobody; | |
#Defines which Linux system user will own and run the Nginx server | |
worker_processes 1; | |
#Referes to single threaded process. Generally set to be equal to the number of CPUs or cores. | |
#error_log logs/error.log; #error_log logs/error.log notice; | |
#Specifies the file where server logs. |
package main | |
import ( | |
"fmt" | |
"net/http" | |
"time" | |
) | |
func main() { | |
http.HandleFunc("/", root) |
package main | |
import ( | |
"fmt" | |
"net/http" | |
"time" | |
) | |
func main() { | |
http.HandleFunc("/", handler) |
package main | |
import ( | |
"net/http" | |
) | |
func main() { | |
fs := http.FileServer(http.Dir("public")) | |
http.ListenAndServe(":8080", fs) | |
} |