portalzine / Uint8Array-Objekte from Text with Icons
0 likes
0 forks
1 files
Last active 2 months ago
| 1 | function encodeTextWithIcons(text) { |
| 2 | // Split text by icon pattern {number} |
| 3 | const parts = text.split(/(\{\d+\})/g); |
| 4 | |
| 5 | const byteArray = []; |
| 6 | |
| 7 | for (const part of parts) { |
| 8 | if (part === '') continue; |
| 9 | |
| 10 | // Check if it's an icon pattern |
portalzine / mosparo rule package example
0 likes
0 forks
2 files
Last active 2 months ago
| 1 | 07be17de35d734cdd01481f3339ac1baafae897d958a5a863edc53a90e43d83b rulepackage.json |
portalzine / Script to check comprehensive disk statistics
0 likes
0 forks
1 files
Last active 2 months ago
| 1 | |
| 2 | #!/bin/bash |
| 3 | |
| 4 | # Script to check comprehensive disk statistics |
| 5 | # Author: Alex@portalZINE.de |
| 6 | # Date: 25.11.2025 |
| 7 | |
| 8 | ##################################### |
| 9 | # CONFIGURATION |
| 10 | ##################################### |
Newer
Older