Yonle: Notes
32 subscribers
711 photos
53 videos
4 files
197 links
A channel that created for no purposes. Used to post some of my personal projects, memes from other source, and some interesting topic.

You may also Follow WRS-BMKG (24/7) Channel that i made (Earthquake Warning Ch): @WRS_BMKG
Download Telegram
March 15
March 15
March 29
April 1
April 1
April 4
April 15
April 22
April 30
April 30
April 30
May 2
Just wrote my thoughts on something that several people rarely talk about. You may be interested.

- The Zen Browser so called "backdoor" drama: https://fedi.lecturify.net/notice/AuI5ldAeKSyE52vlXE
- The major flaw in most communities like Linux and Tech nowadays: https://fedi.lecturify.net/notice/AuIBgB9LgNJzS56cfQ
May 20
May 20
Yonle: Notes
Suddenly i have the urge to use i3 again.
May 20
May 20
I was about to use JWT, But then i stopped in the middle after seeing the chaos.

So i created HWT. A dead simple, Secure by design alternative to JSON Web Token (JWT)

https://codeberg.org/Yonle/hwt

making token:

var payload []byte // could be anything, including stringified json, etc
var salt []byte // random salt bytes. should be stored.

token := hwt.Sign(payload, salt)

validating token:
var salt []byte // the same salt that's used for signing before
var token string

payload, ok := hwt.Check(token, salt)

if !ok {
// not valid. not signed by us. don't do anything.
return
}

// check passed. deal with <payload>
May 26
June 3
June 6