Skip to content

Instantly share code, notes, and snippets.

View vomnes's full-sized avatar
🔥

Valentin Omnes vomnes

🔥
View GitHub Profile
@harlow
harlow / golang_job_queue.md
Last active July 12, 2024 03:19
Job queues in Golang
@tkrajina
tkrajina / remove_accents.go
Created January 31, 2016 08:21
Golang remove accents
package main
import (
"fmt"
"unicode"
"golang.org/x/text/transform"
"golang.org/x/text/unicode/norm"
)

FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.


Effective Engineer - Notes

What's an Effective Engineer?

@CarterTsai
CarterTsai / go
Created March 4, 2017 13:20
golang s3 PutObject
package main
import (
"bytes"
"fmt"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/s3"
)
@fherbine
fherbine / POC_http_server_socket.py
Last active January 27, 2021 22:49
[Proof Of Concept] Low-level HTTP requests handling with python sockets.
import datetime
import json
HTTP_VERSION = '1.0'
HTTP_STATUS_CODES = {
200: 'OK',
201: 'CREATED',
202: 'ACCEPTED',
204: 'NO CONTENT',
400: 'BAD REQUEST',