Skip to content

Instantly share code, notes, and snippets.

View LFriede's full-sized avatar

gordon-- LFriede

  • Germany
View GitHub Profile
@LFriede
LFriede / ts3bookmarks.pas
Created March 5, 2017 12:51
Teamspeak 3 Bookmark decoder
unit ts3bookmarks;
interface
uses
System.SysUtils, Classes, Windows, ShlObj, pbInput, pbPublic;
type
TFavorit = record
Name:String;
@LFriede
LFriede / a_install-old-qt-versions.md
Last active May 10, 2026 22:58
How to trick "Qt Maintenance Tool" to install old versions

How to trick "Qt Maintenance Tool" to install old versions

tl;dr

Use a software like mitmproxy to modify the (https)-request to iapi.qt.io/api/v2/repositories so it's response lists the old Qt directorys that are still on the servers.

If you never used mitmproxy before here is the guide that shows you how it's done.

@LFriede
LFriede / register_nfo_file.bat
Last active July 27, 2025 15:43
This batch file registers the .nfo file extension to display nfo files in console with codepage 437.
ftype nfo=cmd.exe /K "mode con codepage select=437 > nul & copy "%%1" con > nul"
assoc .nfo=nfo
pause