Skip to content

Instantly share code, notes, and snippets.

View omarkurt's full-sized avatar
:octocat:

Omar Kurt omarkurt

:octocat:
View GitHub Profile
@omarkurt
omarkurt / github_following_to_opml.py
Created December 7, 2025 07:40
GitHub Following to OPML Converter - Export GitHub following list as RSS/Atom feeds for feed readers
#!/usr/bin/env python3
"""
GitHub Following to OPML Converter
Exports your GitHub following list as an OPML file containing Atom feeds
for each user. Import into your favorite feed reader (Feedly, Inoreader, etc.)
to track activity from developers you follow.
Usage:
python github_following_to_opml.py <username>
@omarkurt
omarkurt / err.sh
Last active November 9, 2025 05:57
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/v2@v2.6.1 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

Keybase proof

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:

@omarkurt
omarkurt / tshark
Last active February 2, 2019 21:45
tshark simple fresh logged - GET - out json
sudo tshark -Y 'http.request.method == "GET"' -T fields -e http.request.method -e http.request.uri -e ip.dst -T json

Keybase proof

I hereby claim:

  • I am omarkurt on github.
  • I am omarkurt (https://keybase.io/omarkurt) on keybase.
  • I have a public key ASB0n2ljqxglNXxJEnMk7O8uLZbcuK5SwdwzJVtnVfhvXgo

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"))