Skip to content

Instantly share code, notes, and snippets.

View meddion's full-sized avatar
🎯
Focusing

Volodymyr meddion

🎯
Focusing
View GitHub Profile
@udhos
udhos / ecdsaexample.go
Created August 27, 2020 07:50
Golang : Example for ECDSA(Elliptic Curve Digital Signature Algorithm) package functions
// https://www.socketloop.com/tutorials/golang-example-for-ecdsa-elliptic-curve-digital-signature-algorithm-functions
package main
import (
"crypto/ecdsa"
"crypto/elliptic"
"crypto/md5"
"crypto/rand"
"fmt"
@evertrol
evertrol / Makefiles.md
Last active November 12, 2025 08:09
Makefile cheat sheet

Makefile cheat sheet

Mostly geared towards GNU make

I've used ->| to indicate a tab character, as it's clearer to read than

  • Set a target, its dependencies and the commands to execute in order
target: [dependencies]
->| 
@MikeInnes
MikeInnes / startup.jl
Last active April 28, 2025 14:51
Some useful macros for Julia
# Repeat an operation n times, e.g.
# @dotimes 100 println("hi")
macro dotimes(n, body)
quote
for i = 1:$(esc(n))
$(esc(body))
end
end
end