Skip to content

Instantly share code, notes, and snippets.

@inzen86
inzen86 / get_all_nerdfonts.sh
Last active December 24, 2024 23:02
Script to download and install all NerdFonts
#!/bin/bash
if ! command -v curl 2>&1 >/dev/null; then
echo 'cUrl is required'
exit
fi
declare -a NAMES=(
0xProto
3270
#!/bin/bash
if ! command -v curl 2>&1 >/dev/null; then
echo 'cUrl is required'
exit
fi
LATEST_RELEASE_URL='https://github.com/neovim/neovim/releases/latest/download'
LATEST_VERSION=$(curl --silent --head --fail-with-body --max-time 5 --write-out '%{redirect_url}' --output /dev/null $LATEST_RELEASE_URL | xargs basename)
echo 'Latest: ' $LATEST_VERSION
@inzen86
inzen86 / arch_linux_installation_guide.md
Created December 17, 2024 11:49 — forked from ipastry/arch_linux_installation_guide.md
A modern, updated installation guide for Arch Linux with BTRFS on an UEFI system
@inzen86
inzen86 / aliexpress_stars_to_decimal.js
Last active December 29, 2024 16:52
Tampermonkey script to convert starts to decimal ratings on Aliexpress.com
// ==UserScript==
// @name MagicStars
// @namespace http://tampermonkey.net/
// @version 2024-12-29
// @description try to take over the world!
// @author You
// @match *://www.aliexpress.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=aliexpress.com
// @grant none
// ==/UserScript==