Skip to content

Instantly share code, notes, and snippets.

How to Speed Up Firefox on Linux: The Ultimate Guide ๐Ÿš€

If youโ€™re a Linux user like PewDiePie (yes, he uses Linux and loves a fast Firefox!), you probably want your browser to launch quickly and run smoothly. Firefox is powerful and privacy-respecting, but sometimes it can feel sluggish out of the box.

Donโ€™t worry - Iโ€™ve gathered the best tips and tricks to supercharge your Firefox on Linux. Whether you want faster startup times, smoother browsing, or just a snappier experience, this guide has you covered.


1. Keep Firefox Updated ๐Ÿ”„

@notnotrobby
notnotrobby / cgp.md
Last active September 16, 2026 13:54
List of free resources to study computer graphics programming.
@ryuheechul
ryuheechul / resize-disk-without-reboot.md
Created October 7, 2025 03:56
Resize disk on a (NixOS) VM without rebooting

Let's say you had a small disk on a VM and now it's full and wants to resize disk without rebooting.

(I've tested this on NixOS but it should work on other distros as well)

[root@nixos-box:~]# lsblk
NAME   MAJ:MIN RM  SIZE RO TYPE MOUNTPOINTS
sr0     11:0    1    4M  0 rom
vda    253:0    0  3.1G  0 disk
โ””โ”€vda1 253:1    0  3.1G  0 part /nix/store
@mathieucarbou
mathieucarbou / README.md
Last active September 16, 2026 13:39
Home Assistant Solar Diverter (Router)

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

AI-Powered CLI Tools Guide, Tips & Best Practices ๐Ÿš€

A practical guide for development teams to maximize productivity with Claude Code

๐Ÿ“น Quick Introduction

Watch this excellent overview from Anthropic's Applied AI team:

@krcm0209
krcm0209 / README.md
Last active September 16, 2026 13:25
Using AdGuard DNS over HTTPS (DoH) on Windows 11

Why

You may want to use AdGuard's DNS over HTTPS[^2] service if you

  1. Want to make it harder for your ISP to know what websites you are requesting
  2. Want to block most traditional ads from your web browsing experience across your entire PC

Setup instructions

  1. Open PowerShell
@Yaasirmb
Yaasirmb / log.ps1
Created September 15, 2026 17:15
Simple PowerShell Log Writer
<#
Author: shewdew the hedgehog
Date: 09/15/2026
Description: PS code to write logs to text file.
Version: Initial
#>
function Write-Log{
@x27
x27 / MainCpuFirmwareExtract.cs
Created January 3, 2024 02:29
Extract Main CPU firmware from ICOM IC-R8600 firmware bundle (1.01-1.35 USA and non-USA versions)
/// <summary>
/// Extract Main CPU firmware from ICOM IC-R8600 firmware bundle (1.01-1.35 USA and non-USA versions)
/// non-USA versions:
/// https://www.icomjapan.com/support/firmware_driver/?product=IC-R8600(EUR)&frm_type=Firmware&old=true
/// USA versions:
/// https://www.icomjapan.com/support/firmware_driver/?product=IC-R8600&frm_type=Firmware&old=true
/// </summary>
/// <param name="bundle">Firmware bundle</param>
/// <returns>Unpacked data</returns>
static byte[] MainCpuFirmwareExtract(byte[] bundle)