I hereby claim:
- I am omarkurt on github.
- I am omarkurt (https://keybase.io/omarkurt) on keybase.
- I have a public key ASARtjuuLnXvMwJtJKuJGutzBvjUUiWoflr7PhaR5xnlwQo
To claim this, I am signing this object:
| 22.45 go: downloading golang.org/x/mod v0.14.0 | |
| 23.18 go: downloading github.com/rivo/uniseg v0.2.0 | |
| 23.22 go: downloading github.com/russross/blackfriday/v2 v2.1.0 | |
| 32.66 go: downloading github.com/golangci/golangci-lint/v2 v2.6.1 | |
| 32.70 go: downloading github.com/golangci/golangci-lint v1.64.8 | |
| 34.53 go: github.com/golangci/golangci-lint/v2/cmd/golangci-lint@latest: github.com/golangci/golangci-lint/[email protected] requires go >= 1.24.0 (running go 1.23.12; GOTOOLCHAIN=local) | |
| ------ | |
| Dockerfile:15 | |
| -------------------- | |
| 14 | # Install Go tools with versions compatible with Go 1.23.12 |
| version: '2' | |
| services: | |
| lb: | |
| image: envoyproxy/envoy-dev:24689b5e9f9dbe10f5d88a03c5c0f2368f07a475 | |
| ports: | |
| - '8230:10000' |
| webbugs|true | |
| gamepad|false | |
| syncnotify|true | |
| fpWebGL|[] | |
| useragentspoof|off | |
| syncfromnotify|true | |
| fpBattery|[] | |
| frame|true | |
| fpBluetooth|[] | |
| uaspoofallow|false |
I hereby claim:
To claim this, I am signing this object:
| sudo tshark -Y 'http.request.method == "GET"' -T fields -e http.request.method -e http.request.uri -e ip.dst -T json |
I hereby claim:
To claim this, I am signing this object:
| package main | |
| import ( | |
| "net/http" | |
| "github.com/labstack/echo" | |
| "github.com/labstack/echo/middleware" | |
| ) | |
| func main() { |
| package main | |
| import "github.com/gin-gonic/gin" | |
| func main() { | |
| r := gin.Default() | |
| r.GET("/ping", func(c *gin.Context) { | |
| c.JSON(200, gin.H{ | |
| "message": "pong", | |
| }) |
| package main | |
| import ( | |
| "net/http" | |
| "log" | |
| "github.com/gorilla/mux" | |
| ) | |
| func YourHandler(w http.ResponseWriter, r *http.Request) { | |
| w.Write([]byte("Gorilla!\n")) |
| package main | |
| import "github.com/astaxie/beego" | |
| func main(){ | |
| beego.Run() | |
| } |