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
@echo off | |
setlocal enabledelayedexpansion | |
:: Script to unfuck BSOD loop on Windows stations affected by Crowdstrike Falcon sensor screwed up update on 2024-07-19 | |
:: by renaming C-00000291*.sys files in C:\Windows\System32\drivers\CrowdStrike | |
:: Reddit megathread: https://www.reddit.com/r/crowdstrike/comments/1e6vmkf/bsod_error_in_latest_crowdstrike_update/ | |
:: Quick and dirty solution by Martin Brozkeff Malec (brozkeff.net) with the help of ChatGPT | |
:: Blog article: | |
:: https://www.brozkeff.net/2024/07/19/black-friday-2024-07-19-crowdstrike-falcon-edr-bsod-fuckup-workaround-batch-script-in-windows-safe-mode/ |
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
""" | |
This Python script processes an XML file that contains multiple songs with lyrics and chords, | |
extracting song information and converting each song into separate `.txt` files. The output files | |
are named based on the `author` and `title` fields found in the XML and placed in a `txt` | |
subfolder. | |
Key Features: | |
- Extracts the `author`, `title`, `step`, and `songtext` fields from each song in the XML. | |
- Writes the following content to each text file: | |
- First line: "author - title" |
OlderNewer