I hereby claim:
- I am marlonmarcello on github.
- I am marlonmarcello (https://keybase.io/marlonmarcello) on keybase.
- I have a public key ASAXPoS3fWCaViAssQAGAkUw7ndC913n2nF_CFUW7z78Ngo
To claim this, I am signing this object:
#!/usr/bin/python | |
import sys | |
import os, shutil | |
import subprocess | |
import os.path | |
import json | |
from datetime import datetime | |
######################## Functions ######################### |
function changeRatio(originalWidth, originalHeight, newWidth = 750, newHeight = 420, restrain = false) { | |
let ratio = w / h, | |
targetRatio = targetW / targetH; | |
let newW = targetW, | |
newH = newW / ratio; | |
if (restrain && newH > targetH) { | |
newH = targetH; | |
newW = newH * ratio; |
I hereby claim:
To claim this, I am signing this object:
Check the version and file name on Go's website and just update the line bellow https://go.dev/dl/
Setup paths
export GO_VERSION=1.23.6
export GOROOT=/usr/local/go/go$GO_VERSION
export GOPATH=$HOME/go$GO_VERSION
export PATH=$GOPATH/bin:$GOROOT/bin:$PATH