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
| #!/usr/bin/env python3 | |
| """ | |
| Parse CaseFolding.txt and generate a TypeScript file with case folding mappings. | |
| https://www.unicode.org/Public/UCD/latest/ucd/CaseFolding.txt | |
| This script reads the Unicode CaseFolding.txt file and creates a TypeScript | |
| module with mappings for case-insensitive string comparison. | |
| """ |
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
| - name: NAME | |
| hosts: HOSTS | |
| become: yes | |
| tasks: | |
| - name: Install copr | |
| ansible.builtin.dnf: | |
| name: | |
| - 'dnf-command(copr)' | |
| - 'dnf-plugins-core' | |
| state: present |
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 Microsoft.UI.Xaml; | |
| using System; | |
| using System.Runtime.InteropServices; | |
| internal partial class Win32WindowHelper | |
| { | |
| private static WinProc? newWndProc = null; | |
| private static nint oldWndProc = nint.Zero; | |
| private POINT? minWindowSize = null; |
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 Microsoft.UI.Xaml; | |
| using System; | |
| using System.Runtime.InteropServices; | |
| internal partial class Win32WindowHelper | |
| { | |
| private static WinProc? newWndProc = null; | |
| private static nint oldWndProc = nint.Zero; | |
| private POINT? minWindowSize = null; |
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
| import os | |
| import itertools | |
| import csv | |
| MOVIES = '/media/elijah/Big Dipper/Videos/Movies' | |
| TV_SHOWS = '/media/elijah/Big Dipper/Videos/TV Shows' | |
| SELECTION = MOVIES | |
OlderNewer