This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * =========================================== | |
| * LLM Code-Analyse Übung | |
| * =========================================== | |
| * | |
| * Dieser Code ist absichtlich ineffizient und schlecht geschrieben! | |
| * | |
| * | |
| * 📚 AUFGABE 1: Code verstehen (Einstieg) | |
| * ======================================== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Humanizer; | |
| using NBitcoin; | |
| Console.WriteLine("Hello, fckn world!"); | |
| Console.WriteLine("Reading the address file..."); | |
| const string filename = "H:\\crypto\\btcaddresses.tsv"; // in der nähe von http://addresses.loyce.club/ | |
| if (!File.Exists(filename)) | |
| { | |
| Console.WriteLine("Address file not found"); |