Skip to content

Instantly share code, notes, and snippets.

@LinuxSBC
LinuxSBC / 1password-flatpak-browser-integration.sh
Last active November 27, 2025 21:00
1Password Integration with Flatpak Browsers
#!/bin/bash
set -oue pipefail
INFO='\033[0;36m' # Cyan for general information
SUCCESS='\033[0;32m' # Green for success messages
WARN='\033[0;33m' # Yellow for warnings
ERROR='\033[0;31m' # Red for errors
NC='\033[0m' # No Color
echo "This script will help you set up 1Password in a Flatpak browser."
@jwbee
jwbee / jq.md
Last active July 15, 2025 12:12
Make Ubuntu packages 90% faster by rebuilding them

Make Ubuntu packages 90% faster by rebuilding them

TL;DR

You can take the same source code package that Ubuntu uses to build jq, compile it again, and realize 90% better performance.

Setting

I use jq for processing GeoJSON files and other open data offered in JSON format. Today I am working with a 500MB GeoJSON file that contains the Alameda County Assessor's parcel map. I want to run a query that prints the city for every parcel worth more than a threshold amount. The program is

@fawazahmed0
fawazahmed0 / cloudflare-tld-price-list.csv
Last active November 19, 2025 03:11
cloudflare domains price list for tlds
TLD Registration Fees Renewal Fees
example.org.uk 4.94 4.94
example.uk 4.94 4.94
example.me.uk 4.94 4.94
example.co.uk 4.94 4.94
example.date 4.16 5.16
example.trade 4.16 5.16
example.party 4.16 5.16
example.bid 4.16 5.16
example.stream 4.16 5.16
@Ran-Mewo
Ran-Mewo / Certain Anime Mods on Linux!?.md
Last active November 29, 2025 16:57
Guide on getting certain anime game launchers to work with mods on Linux

Guide on getting certain anime game launchers to work with mods on Linux!

Firefly Pat

Prerequisites

Ensure you have the following:

  1. Launcher: The launcher for your certain anime game.
  2. 3DMigoto: The correct version of 3DMigoto for your game, extracted to a location of your choice.
  3. 3DMigoto Linux Patch (if required): Some games may require a patched version of 3DMigoto.
  • For example, for ZZZMI:
@petlyh
petlyh / flutter_linux_icon.md
Last active December 5, 2025 20:18
Simple guide on how to setup app icon for Flutter on Linux

How to setup app icon for Flutter on Linux

First, add your icon as a Flutter asset in pubspec.yaml if you haven't already:

 flutter:
   uses-material-design: true

   assets:
     - CHANGELOG.md
@tzhao11
tzhao11 / oculus_quest_2_adjust_date_time_no_factory_reset.md
Last active September 9, 2025 21:45
Adjust oculus quest 2 system date and time without doing factory reset.

Adjust Oculus (Meta) Quest 2 System Date/Time without Doing Factory Reset

TL;DR

adb shell service call alarm 2 i64 {current unix epoch * 1000}

Background