Skip to content

Instantly share code, notes, and snippets.

@Danukeru
Danukeru / go-updater.sh
Last active February 24, 2026 09:24 — forked from jorkle/go-updater.sh
Go Updater (go-updater.sh) - bash script that automatically downloads and installs the latest stable version of Golang
#!/bin/bash
#
# Checks if a new stable version of Go is available. If a new version is available, it will download and install it.
set -o pipefail
######################################
# Constants #
######################################
OS="linux"
@Danukeru
Danukeru / xrdp-nvidia-setup.sh
Created May 15, 2024 05:36 — forked from Nexarian/xrdp-nvidia-setup.sh
Setup for XRDP using Nvidia Acceleration
#!/usr/bin/env bash
set -e
cd ~
sudo -v
# Make sure system is in a good, updated, clean, state.
sudo apt-get -y update