Skip to content

Instantly share code, notes, and snippets.

View ParvinEyvazov's full-sized avatar
✔️
Verified Official Github Account

Parvin Eyvazov ParvinEyvazov

✔️
Verified Official Github Account
View GitHub Profile
@SagiMedina
SagiMedina / ImageTools.js
Last active September 7, 2024 04:39
Resize and crop images in the Browser with orientation fix using exif
import EXIF from 'exif-js';
const hasBlobConstructor = typeof (Blob) !== 'undefined' && (function checkBlobConstructor() {
try {
return Boolean(new Blob());
} catch (error) {
return false;
}
}());
@1000miles
1000miles / Heroku-CLI-Cheatsheet.md
Last active August 14, 2025 07:52
Most basic Heroku cli commands
@mannion007
mannion007 / main.go
Created February 29, 2020 18:40
Ninja level 10 challenge 7
package main
import (
"fmt"
"sync"
)
func main() {
var wg sync.WaitGroup