Skip to content

Instantly share code, notes, and snippets.

@FxMorin
FxMorin / ScummyMods.md
Last active February 21, 2024 07:10 — forked from kyrptonaught/ScummyMods.md
The Scummy Behavior of mods that act like modpacks

Introduction

Let me start by clarifying that the following doesn't exclusively apply to Debugify, but they serve as an excellent illustration of the heinous behavior outlined in the following. The mods in question shall therefore be collectively referred to as "Scummy Mods".

Scummy Mods are mods that incorporate or outright copy foreign code bases, without permission from the original author. They commonly state to either "replace" or "include" the original work, if any mention is given at all. Developing a mod is not easy. Many mod creators sacrifice significant chunks of their personal time and resources to their creations, essentially for free. Curseforge offers a symbolic compensation for the hours poured, but it's usually insignificant and just a nice bonus.

The Problem

The majority of the original projects are still in development. Since the creators behind Scummy Mods typically do not understand the code they copied to begin with, they lack the knowledge required to eliminate the bugs that will

@helium18
helium18 / switch_to_libreddit.md
Last active April 26, 2022 15:58
Migrate joined reddit subreddits to libreddit subscriptions

Switch to libredd.it (from reddit)

Subscribe to all of your joined reddit subreddits in libreddit.

  1. Head over to reddit's subscription page
  2. Open dev tools and paste this snippet.
let subs = () => {
  let result = "";
 Array.from($(".subscription-box").find("li").find("a.title")).forEach(
@lenicyl
lenicyl / fuck-medium.js
Created February 4, 2022 05:59
Fuck Medium
// ==UserScript==
// @name New script - google.com
// @namespace Violentmonkey Scripts
// @grant none
// @version 1.0
// @author -
// @description 2/4/2022, 10:30:16 AM
// ==/UserScript==
// Thanks to @helium18 on github for helping me with this since im bad at js
@lenicyl
lenicyl / FF Broken Window Controls.md
Last active January 26, 2022 09:17
[Windows] Fix Firefox window controls

Wha ?

Firefox window controls just break when you theme your windows OS. The snippet below is a fix for it

Before

Broke

After

Fix

@lenicyl
lenicyl / Write-Menu.ps1
Last active December 19, 2021 08:53 — forked from hapylestat/text_menu.ps1
Clean powershell based menu with arrow navigation
<#
This is based of a fork of Jakob Bindslet's powershell menu, made by @hapylestat on github the links to both the fork, and the original you will find below.
I have forked it to add 1 line which just hides the cursor to make the menu look cleaner
Links :
Original Menu script : https://mspowershell.blogspot.com/2009/02/cli-menu-in-powershell.html?m=1
Fork : https://gist.github.com/hapylestat/b940d13b7d272fb6105a1146ddcd4e2a
#>
@lenicyl
lenicyl / 1. readme.md
Last active November 16, 2021 12:59
Installer Script

WIP

Script for personal use so dont run unless u want ur pc to be bloated to the brim

How do i fork this to work for my programs ?

  1. Install scoop and winget (and maybe github cli)
  2. search if app is available in scoop or winget
  3. edit the script accordingly
  4. Use your brain for programs not in package managers
  5. ???
  6. Profit and flex
@lenicyl
lenicyl / 1 Preview.md
Last active October 22, 2021 08:35
Dark Jade Theme for Whoogle

@lenicyl
lenicyl / 0. About the Gist.md
Last active April 14, 2022 13:23
eBig Windows Customization and Firefox Addons 😎

About

This gist was originally made so that i dont have to go looking everywhere for software i had on old pc in the future This gist will be updated everytime i find new stuff OR you could suggest some yourself

Index

Windows

1.Essentials
2.Customization
3.Other Utilites

@zengxinhui
zengxinhui / convert2arch_arm.sh
Last active March 8, 2024 23:41
Replace Oracle Cloud Linux with Arch Linux ARM remotely
[09/23/2023]
Refs:
1. http://os.archlinuxarm.org/os/ArchLinuxARM-aarch64-latest.tar.gz
2. https://dl-cdn.alpinelinux.org/alpine/v3.18/releases/aarch64/alpine-virt-3.18.0-aarch64.iso
3. https://wiki.alpinelinux.org/wiki/Replacing_non-Alpine_Linux_with_Alpine_remotely
4. https://wiki.archlinux.org/index.php/installation_guide#Configure_the_system
5. https://archlinuxarm.org/platforms/armv8/generic
See also:
@dend
dend / toast.ps1
Last active April 2, 2024 14:50
Toast Notification in PowerShell
function Show-Notification {
[cmdletbinding()]
Param (
[string]
$ToastTitle,
[string]
[parameter(ValueFromPipeline)]
$ToastText
)