Skip to content

Instantly share code, notes, and snippets.

View fanfan54old's full-sized avatar
πŸ™ƒ

Fanfan54 fanfan54old

πŸ™ƒ
View GitHub Profile
let ytIDs = [
"6Xdf_OaRNWs",
"QCGixQKvTpA",
"d3EiLxiGYgs",
"I4AE3BvIxMQ",
"5nsklx84-jE",
"SWnxzc-hOL8",
"rSmEPogTRI4",
"y4vHQJI9new",
"28l301P1Mt0",
// ==UserScript==
// @name @chaoticvibing Twitter Blue Clown - twitter.com
// @namespace Violentmonkey Scripts
// @match *://*.twitter.com/*
// @grant none
// @version 1.9.0clown
// @author @chaoticvibing - GH @busybox11
// @description 11/9/2022, 11:45:28 PM
// @updateURL https://gist.githubusercontent.com/busybox11/270a9ca89a26c79f467f214761303242/raw/twitterblue-nerd.js
// @downloadURL https://gist.githubusercontent.com/busybox11/270a9ca89a26c79f467f214761303242/raw/twitterblue-nerd.js
// ==UserScript==
// @name @chaoticvibing Twitter Blue Nerd DUNCE HAT VERSION - twitter.com
// @namespace Violentmonkey Scripts
// @match *://*.twitter.com/*
// @grant none
// @version 1.1.3
// @author @chaoticvibing - GH @busybox11
// @description 11/9/2022, 11:45:28 PM
// @updateURL https://gist.githubusercontent.com/busybox11/53c76f57a577a47a19fab649a76f18e3/raw/twitterblue-nerd.js
// @downloadURL https://gist.githubusercontent.com/busybox11/53c76f57a577a47a19fab649a76f18e3/raw/twitterblue-nerd.js
// ==UserScript==
// @name @chaoticvibing Twitter Blue Nerd - twitter.com
// @namespace Violentmonkey Scripts
// @match *://*.twitter.com/*
// @match *://*.x.com/*
// @grant none
// @version 1.9.2
// @author @chaoticvibing - GH @busybox11
// @description 11/9/2022, 11:45:28 PM
// @updateURL https://gist.githubusercontent.com/busybox11/53c76f57a577a47a19fab649a76f18e3/raw
@busybox11
busybox11 / install.ps1
Last active December 2, 2023 00:24
Install Script
$user_downloads_folder = (New-Object -ComObject Shell.Application).NameSpace('shell:Downloads').Self.Path
$user_backup_folder = "R:\Install_script"
Write-Output "Opening Chrome Installer"
Start-Process -FilePath "$user_backup_folder\ChromeSetup.exe"
Write-Output "Copying VSCode"
Copy-Item -Path "$user_backup_folder\VSCode" -Destination "$HOME\VSCode" -Recurse
Write-Output "Downloading and installing Discord"
@busybox11
busybox11 / script.sh
Last active April 3, 2023 09:02
The best linux command
#!/bin/bash
echo "Hi there"
echo
sleep 3 &
echo "We're taking care of your computer"
echo
sleep 5 &
echo "Please let us some time."
echo "Processing some files..."
🌞 Morning 77 commits β–ˆβ–ˆβ–ˆβ–β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 16.6%
πŸŒ† Daytime 101 commits β–ˆβ–ˆβ–ˆβ–ˆβ–Œβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 21.7%
πŸŒƒ Evening 175 commits β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‰β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 37.6%
πŸŒ™ Night 112 commits β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 24.1%
@aeris
aeris / preseed.cfg
Created March 19, 2020 15:31
Automated installer from ISO image for Debian
# Licence: GPLv3
d-i debian-installer/locale string fr_FR
d-i localechooser/supported-locales string fr_FR.UTF-8
d-i keyboard-configuration/xkb-keymap select fr(latin9)
d-i netcfg/choose_interface select auto
d-i netcfg/get_hostname string dev
d-i netcfg/get_domain example.org
d-i netcfg/hostname string dev
@fanfan54old
fanfan54old / arch_install_script_ap20xps.sh
Last active February 22, 2021 06:50
Custom, hard-coded installation script for Arch Linux with KDE on my DELL XPS 15 9560 (with the built-in Killer 1535 wifi card)
#!/bin/bash
# Author: fanfan54 (https://gist.github.com/fanfan54/b3430f29eef98c8b82b0de87d12d63bc)
# Licensed under the GNU GPL v3.0 license
# Version 6 (first working version)
# TODO Add sources for all the commands
echo "[i] Starting custom install script for Arch Linux with KDE on my DELL XPS 15 9560..."
echo "[i] THIS IS AN INTERACTIVE SCRIPT, IT IS NOT COMPLETELY AUTOMATED! Passwords will be prompted during setup!"
@chemputer
chemputer / MSProtection.ps1
Last active November 21, 2020 15:11
Stops MS from downloading unwanted apps onto your computer. I recommend setting up the script to run at startup using task scheduler, so that when MS resets this during an update, it automatically goes back.
$error.clear()
try {
New-Item –Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\CloudContent" -Force | New-ItemProperty -Name "DisableWindowsConsumerFeatures" -Value "1" -PropertyType "DWORD"
}
catch { "Error occured" }
if ($error) {
Set-Itemproperty -path HKLM:\SOFTWARE\Policies\Microsoft\Windows\CloudContent -Name 'DisableWindowsConsumerFeatures' -value '1'
}