Skip to content

Instantly share code, notes, and snippets.

View fredguth's full-sized avatar

Fred Guth fredguth

  • Brasília, DF, Brazil
View GitHub Profile
## login
get address in terminal and open in browser
## source lists
rm /etc/apt/sources.list.d/pve-enterprise.list
root@pve:/etc/apt/sources.list.d# nano pve-no-subscription.list
---------------------
deb http://download.proxmox.com/debian/pve bullseye pve-no-subscription
/etc/apt/sources.list
@fredguth
fredguth / gist:0cdc40f573888b0b0faebec683a09ddf
Created April 11, 2022 13:22
Install node v6.9.1 in Mac M1 / Rosetta 2 updater install in mac m1
softwareupdate --install-rosetta --agree-to-license
grep RosettaUpdateAuto.pkg /var/log/install.log
#open RosettaUpdateAuto in the found folder
# go to terminal.app in finder and click in Get Info (right click)
#click in open with rosetta
# open terminal
arch
#should show intel i386
# now you can install nvm install v6.9.1
nvm install v6.9.1
@fredguth
fredguth / gist:3d8b0c2beacd28e3c02ec41b54049fa7
Created August 17, 2022 15:04
Transfer issues between repos in Github
gh issue transfer <issue ID> <destination repo>
So a few shell pipes later and we have this:
gh issue list -s all -L 500 --json number | \
jq -r '.[] | .number' | \
xargs -I% gh issue transfer % https://github.com/<destination repo>
@fredguth
fredguth / zsh
Created September 30, 2022 13:46
batch transform pdfs to pngs in mac osx
for file in *.pdf; do sips -s format png "$file" --out "${file%.pdf}.png"; done ▼ at 10:43:40
@fredguth
fredguth / knapsack_breadth_first_search
Created July 13, 2023 20:33 — forked from pedrohbtp/knapsack_breadth_first_search
implementation of knapsack problem exploring the state space in a breadth first search manner and using memoization to reduce the exploration space
@fredguth
fredguth / registro_igreja_alema.pdf
Last active September 14, 2023 12:23
Familien-stammburch Guth
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@fredguth
fredguth / cuda_install.md
Last active December 18, 2023 21:05 — forked from denguir/cuda_install.md
Installation procedure for CUDA & cuDNN

How to install CUDA & cuDNN on Ubuntu 22.04

Install NVIDIA drivers

Update & upgrade

sudo apt update && sudo apt upgrade

Remove previous NVIDIA installation