Skip to content

Instantly share code, notes, and snippets.

View mnh48's full-sized avatar
💼
Still looking for full time jobs amid discrimination

Yaya - Nurul Azeera Hidayah Yatsuko Muhammad Nur Hidayat Yasuyoshi (MNH48) mnh48

💼
Still looking for full time jobs amid discrimination
View GitHub Profile
@LukeHuckman
LukeHuckman / arch-install-uefi-systemd-boot.txt
Last active April 9, 2022 09:49
Step by step basic installation of Arch Linux with systemd-boot on a UEFI system
Step 1: Partition and format disks
List disks,
iso# fdisk -l
Select disk,
iso# fdisk /dev/X // Replace X with a storage device
// SATA drives: sda, sdb, sdc...
// NVMe drives: nvme0n1, nvme1n1, nvme2n1...
Create a GPT partiton table,
iso[fdisk]# g
Create partitions for ESP, root, and (optionally) swap, // For swapfile, see step 4.5
@joepie91
joepie91 / vpn.md
Last active July 17, 2024 14:15
Don't use VPN services.

Don't use VPN services.

No, seriously, don't. You're probably reading this because you've asked what VPN service to use, and this is the answer.

Note: The content in this post does not apply to using VPN for their intended purpose; that is, as a virtual private (internal) network. It only applies to using it as a glorified proxy, which is what every third-party "VPN provider" does.

  • A Russian translation of this article can be found here, contributed by Timur Demin.
  • A Turkish translation can be found here, contributed by agyild.
  • There's also this article about VPN services, which is honestly better written (and has more cat pictures!) than my article.
@debloper
debloper / 9GAG.js
Last active November 15, 2021 07:35
Unlock NSFW without logging in
// Remap $ to jQuery object
var $ = jQuery;
// The real fun begins... first catch all the post-anchors & loop on them
$(document).on("scroll", function () {
// Let's declare some reusable globals for the next iterations
var urlBase = "http://img-9gag-lol.9cache.com/photo/";
$(".badge-evt.badge-nsfw-entry-cover").each(function () {
// Remove the NSFW class, to avoid redundant processing