- Local file support by File System API and file drag-and-drop
- Create New file
- Multi-carets/selections
- Redo/Undo
- Canvas based fast hex/ascii rendering
- Search/Replace (design later)
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
| // The code is based on the following code from Google Fonts: | |
| // https://github.com/material-foundation/flutter-packages/blob/main/packages/google_fonts/lib/src/google_fonts_parts/part_n.dart | |
| // | |
| // Noto Sans/Serif is licensed under the SIL Open Font License, Version 1.1 . | |
| // https://fonts.google.com/noto/specimen/Noto+Sans/license | |
| import 'package:pdfrx/pdfrx.dart'; | |
| class GoogleFontsFile { | |
| GoogleFontsFile(this.faceName, this.weight, this.expectedFileHash, this.expectedLength); |
https://www.rebelpeon.com/bitwarden-ssh-agent-on-wsl2/
sudo winget install --id albertony.npiperelay
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 ruby | |
| require 'openssl' | |
| def print_usage | |
| puts "Usage: #{File.basename($0)} [-s|-S|-C component] <serial_number> [keychain]" | |
| puts "Options:" | |
| puts " -s Show only certificate subject (single line)" | |
| puts " -S Show only certificate subject (one parameter per line)" | |
| puts " -C component Show only specified component (e.g., -C CN for Common Name)" |
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 ruby | |
| require 'openssl' | |
| def print_usage | |
| puts "Usage: #{File.basename($0)} <provisioning_profile_path>" | |
| puts "Example: #{File.basename($0)} /path/to/profile.mobileprovision" | |
| exit 1 | |
| end |
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
| #ifndef WINRT_FORMATTERS_H | |
| #define WINRT_FORMATTERS_H | |
| #include <windows.h> | |
| #include <winrt/base.h> | |
| #include <string> | |
| #include <format> |
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
| const fs = require('fs').promises; | |
| const path = require('path'); | |
| const cheerio = require('cheerio'); | |
| const sharp = require('sharp'); | |
| const zlib = require('zlib'); | |
| const util = require('util'); | |
| const gzip = util.promisify(zlib.gzip); | |
| async function optimizeAndConvertToDataURI(imagePath, baseDir, useLossless) { |
NewerOlder
