Skip to content

Instantly share code, notes, and snippets.

View YenLegion's full-sized avatar

Bad Vibes YenLegion

View GitHub Profile
@furaar
furaar / README.md
Created August 2, 2024 15:12
Step-by-step guide to install AMD ROCm on Ubuntu with RX6600 GPU. Includes setting up Ollama and running Llama 3.1 model. Perfect for machine learning and GPU-heavy tasks!

AMD ROCm Installation Guide on RX6600 + Ollama

System Information

            .-/+oossssoo+/-.               x@furaar 
        `:+ssssssssssssssssss+:`           -------- 
      -+ssssssssssssssssssyyssss+-         OS: Ubuntu 22.04.4 LTS x86_64 
    .ossssssssssssssssssdMMMNysssso.       Host: redacted 
   /ssssssssssshdmmNNmmyNMMMMhssssss/      Kernel: 6.5.0-45-generic 
  +ssssssssshmydMMMMMMMNddddyssssssss+     Uptime: 2 hours, 40 mins 
@grave0x
grave0x / gist:521454abc39848686374806b9eee5d68
Created January 22, 2024 05:17
Trollapps Installer Links
Below are links that open in TrollApps Feel free to post additional ones in the comments and I may update this post
trollapps://add?url=https://ipa.cypwn.xyz/cypwn.json
trollapps://add?url=https://bit.ly/Quantumsource
trollapps://add?url=https://bit.ly/Quantumsource-plus
trollapps://add?url=https://quarksources.github.io/quarksource-cracked.json
@amunchet
amunchet / noVNCCopyPasteProxmox.user.js
Last active June 13, 2025 16:21
Copy/Paste for noVNC Proxmox
// ==UserScript==
// @name noVNC Paste for Proxmox
// @namespace http://tampermonkey.net/
// @version 0.2a
// @description Pastes text into a noVNC window (for use with Proxmox specifically)
// @author Chester Enright
// @match https://*
// @include /^.*novnc.*/
// @require http://code.jquery.com/jquery-3.3.1.min.js
// @grant none
@gnzsnz
gnzsnz / ssh_config.md
Last active October 2, 2023 12:49
SSH client config
@4abhinavjain
4abhinavjain / reinstall_VPS_from_inside.txt
Last active May 12, 2025 08:12 — forked from ClashTheBunny/reinstall_VPS_from_inside.sh
DIY install debian on Oracle Cloud Infrastructure ( Free Tier ) - ARM64
# should works on any cloud-init enabled hypervisor (openstack.. )
# start from a normal ubuntu 20.04 install as minimal was not available for ARM64
# Since ARM64 machines has higher RAM, Shrinking is desired but not necessary. Instead we will increase tmpfs to 1700MB
# Getting root (if sudo -i doesn't work then set a root password beforehand using 'sudo passwd root'
sudo -i
# make sure we are on the highest kernel, so we can delete all the others ...
@zax4r0
zax4r0 / youtube-dl.md
Created October 30, 2021 17:19 — forked from harishkannarao/youtube-dl.md
youtube-dl

youtube-dl

youtube-dl is an opensource command line tool to download video or audio from online video streaming services.

Videos downloaded in mkv or webm extensions can be played by VLC Media player in all major devices and operating systems including iPhone, Android devices.

Tool website: https://youtube-dl.org/

This gist shows the example commands to use the tool and doesn't support or encourage piracy or violation of copyrights of the online streaming service or the author of the content

Installing youtube-dl:

@eizedev
eizedev / treestyletab.css
Created June 11, 2021 10:20
Firefox Tree Style Tab CSS - Collapsible
/* Hide border on tab bar, force its state to 'scroll', adjust margin-left for width of scrollbar.
#tabbar {
border: 0;
overflow-y: scroll !important;
margin-left: -18px !important;
}
*/
/* Hide .twisty and adjust margins so favicons have 7px on left. */
.tab .twisty {

ZSH CheatSheet

This is a cheat sheet for how to perform various actions to ZSH, which can be tricky to find on the web as the syntax is not intuitive and it is generally not very well-documented.

Strings

Description Syntax
Get the length of a string ${#VARNAME}
Get a single character ${VARNAME[index]}
@Bapannarama
Bapannarama / add_pia_ovpn_profiles.sh
Created January 3, 2021 16:29
A small script to add OpenVPN profiles from PrivateInternetAccess to networkmanager
#!/bin/bash
echo -n "PIA username (pNNNNNNN): "
read pia_username
echo -n "PIA password: "
read -s pia_password
echo ""
echo -n "OpenVPN config files location (blank for current directory): "