This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # The event key is required for nginx | |
| events{ | |
| worker_connections 1024; | |
| } | |
| http { | |
| server { | |
| listen 8080; | |
| # location is the key for your endpoint to access nginx configurarion | |
| # example: curl -v http://localhost:8080/ will access this location |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 5+5 | 10 | |
|---|---|---|
| 7+3 | 10 | |
| 1+1 | 2 | |
| 8+3 | 11 | |
| 1+2 | 3 | |
| 8+6 | 14 | |
| 3+1 | 4 | |
| 1+4 | 5 | |
| 5+1 | 6 | |
| 2+3 | 5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "encoding/csv" | |
| "fmt" | |
| "io" | |
| "log" | |
| "os" | |
| ) |
NewerOlder