Skip to content

Instantly share code, notes, and snippets.

@AkdM
AkdM / Edit_Repack_ISO_tutorial.md
Last active April 6, 2025 03:39
Edit and repack .iso bootable image

On Linux

Installing mkisofs

apt-get install mkisofs

Editing ISO image

mkdir /tmp/custom_iso

@congfanpekaam
congfanpekaam / Bitwig Studio License Key
Created October 30, 2024 14:18
Bitwig Studio Crack
Bitwig Studio Keygen
@gboudreau
gboudreau / AuthyToOtherAuthenticator.md
Last active April 6, 2025 03:34 — forked from Ingramz/AuthyToOtherAuthenticator.md
Export TOTP tokens from Authy

Exporting your 2FA tokens from Authy to transfer them into another 2FA application

IMPORTANT - Update regarding deprecation of Authy desktop apps

Past August 2024, Authy stopped supported the desktop version of their apps:
See Authy is shutting down its desktop app | The 2FA app Authy will only be available on Android and iOS starting in August for details.

And indeed, after a while, Authy changed something in their backend which now prevents the old desktop app from logging in. If you are already logged in, then you are in luck, and you can follow the instructions below to export your tokens.

If you are not logged in anymore, but can find a backup of the necessary files, then restore those files, and re-install Authy 2.2.3 following the instructions below, and it should work as expected.

@hex-plex
hex-plex / load_balancer.py
Created May 26, 2024 07:54
Load Balancer to spin multiple models with single API interface
from flask import Flask, request, jsonify
import requests
import random
app = Flask(__name__)
endpoints = {
'model_provider/model_1': 'http://0.0.0.0:8001',
'model_provider/model_2': 'http://0.0.0.0:8002',
'model_provider/model_3': 'http://0.0.0.0:8003',
@ipenywis
ipenywis / cursor-memory-bank-rules.md
Last active April 6, 2025 03:29
Cursor Memory Bank

Cursor's Memory Bank

I am Cursor, an expert software engineer with a unique characteristic: my memory resets completely between sessions. This isn't a limitation - it's what drives me to maintain perfect documentation. After each reset, I rely ENTIRELY on my Memory Bank to understand the project and continue work effectively. I MUST read ALL memory bank files at the start of EVERY task - this is not optional.

Memory Bank Structure

The Memory Bank consists of required core files and optional context files, all in Markdown format. Files build upon each other in a clear hierarchy:

flowchart TD
@Klerith
Klerith / docker-compose.yml
Last active April 6, 2025 03:26
PostgreSQL + PgAdmin
version: '3'
services:
myDB:
image: postgres:15.3
container_name: my-database
restart: always
ports:
- 5432:5432
environment:
@mjkstra
mjkstra / arch_linux_installation_guide.md
Last active April 6, 2025 03:24
A modern, updated installation guide for Arch Linux with BTRFS on an UEFI system
@maratori
maratori / .golangci.yml
Last active April 6, 2025 03:23
Golden config for golangci-lint
# This file is licensed under the terms of the MIT license https://opensource.org/license/mit
# Copyright (c) 2021-2025 Marat Reymers
## Golden config for golangci-lint v2.0.2
#
# This is the best config for golangci-lint based on my experience and opinion.
# It is very strict, but not extremely strict.
# Feel free to adapt it to suit your needs.
# If this config helps you, please consider keeping a link to this file (see the next comment).
@UXVirtual
UXVirtual / TreeReplacerS.cs
Last active April 6, 2025 03:23 — forked from st4rdog/TreeReplacerS.cs
Replaces trees on a terrain with prefab.
using UnityEngine;
using UnityEditor;
// Replaces Unity terrain trees with prefab GameObjects.
// Handles terrain offsets correctly.
public class TreeReplacerS : EditorWindow
{
[Tooltip("The terrain containing the trees to replace.")]
public Terrain _terrain;