Skip to content

Instantly share code, notes, and snippets.

View acidtib's full-sized avatar

Dainel Vera acidtib

View GitHub Profile
@acidtib
acidtib / cuda_install.md
Created October 14, 2024 05:57 — forked from denguir/cuda_install.md
Installation procedure for CUDA / cuDNN / TensorRT

How to install CUDA / cuDNN / TensorRT on Ubuntu

Install NVIDIA drivers

Update & upgrade

sudo apt update && sudo apt upgrade

Remove previous NVIDIA installation

@acidtib
acidtib / unix.txt
Last active September 10, 2024 02:29
for x in $(cat webcash.log) ; do webcash insert $x &> /dev/null && echo "OK: $x" || echo "ERROR: $x" ; done
@acidtib
acidtib / addons.txt
Created December 2, 2023 06:23
AddOns used in WoW Classic SOD
Atlas
AtlasLootClassic
Auctionator
Bagnon
Bagnon ItemLevel
CharacterStatsClassic
ClassicCastbars
Classic Floating Combat Text
ClassicAuraDurations
ClassicBestiary
@acidtib
acidtib / readme.md
Created August 28, 2023 17:56
kamal + github actions

Example of Kamal deployment from Github Actions.

Add your applications .env variables to the Github repo as a repository secret, you can find this under the repo settings => secrets and variables => actions

https://github.com/username/repo_name/settings/secrets/actions

you are going to need an ssh private key that your deployment server is aware of (add public key to servers .ssh/authorized_keys) and add the ssh private key as a repo secret

create action workflows

@acidtib
acidtib / barbarian.md
Last active March 25, 2023 04:51
Best Diablo 4 beta builds for solo players
  • Bash
  • Enhanced Bash
  • Combat Bash
  • Whirlwind
  • Enhanced Whirlwind
  • Pressure Point
  • Ground Stomp
  • Enhanced Ground Stomp
  • Strategic Ground Stomp
  • Pressure Point
@acidtib
acidtib / nginx.conf
Created February 7, 2022 21:23
redirect list for nginx
map $request_uri $redirect {
default "";
/destinations /locations;
/contact /contact-us;
/photographer/valeriel /photographers/valeriel;
/photographer/marciem /photographers/marciem;
/miami-photographers /miami/photographers;
SET hwDetect "0"
SET gxColorBits "24"
SET gxDepthBits "24"
SET gxResolution "1920x1080"
SET gxRefresh "165"
SET gxMultisampleQuality "0.000000"
SET gxFixLag "0"
SET gxWindow "1"
SET fullAlpha "1"
SET lodDist "100.000000"
@acidtib
acidtib / step.md
Created September 12, 2020 21:02 — forked from evenchange4/step.md
Deploy a Express.js project on Heroku

Deploy a Express.js project on Heroku

Step by step from command line by Michael Hsu

Quick start

Create a Node.js web framework 'express'

$ express myfirstexpress && cd myfirstexpress

Declare dependencies with NPM /package.json

@acidtib
acidtib / traefik_portainer.md
Created June 25, 2020 02:32 — forked from ruanbekker/traefik_portainer.md
Traefik with SSL + Portainer on Docker Swarm Repro

Traefik and Portainer on Docker Swarm with Letsencrypt

Reproducing a Traefik with SSL and Portainer setup on a 2 Node Docker Swarm

Install Docker:

Install Docker on both nodes with a Bootstrap Script:

$ curl https://gitlab.com/rbekker87/scripts/raw/master/setup-docker-ubuntu.sh | bash