insidiousfiddler / Batch Crop & Resize Images (Manga)
0 likes
0 forks
1 files
Last active 2 weeks ago
| 1 | #!/usr/bin/env python3 |
| 2 | """ |
| 3 | Fast parallel image processing script to crop whitespace and resize images. |
| 4 | Removes white space from left and right, ensures minimum height and/or width. |
| 5 | Uses multiprocessing for high-speed batch processing of large image collections. |
| 6 | """ |
| 7 | |
| 8 | import os |
| 9 | import sys |
| 10 | from pathlib import Path |
insidiousfiddler / No Clue Compiler - Test Verbose #1765588944
0 likes
0 forks
1 files
Last active 1 month ago
| 1 | cargo build --release |
| 2 | warning: variable `has_hex_digit` is assigned to, but never used |
| 3 | --> src/compiler/syntax/lexer.rs:232:29 |
| 4 | | |
| 5 | 232 | let mut has_hex_digit = false; |
| 6 | | ^^^^^^^^^^^^^ |
| 7 | | |
| 8 | = note: consider using `_has_hex_digit` instead |
| 9 | = note: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default |
insidiousfiddler / No Clue Compiler - Test Verbose #1764519670
0 likes
0 forks
1 files
Last active 1 month ago
| 1 | ❯ make test-verbose |
| 2 | cargo build --release |
| 3 | warning: variable `has_hex_digit` is assigned to, but never used |
| 4 | --> src/compiler/syntax/lexer.rs:232:29 |
| 5 | | |
| 6 | 232 | let mut has_hex_digit = false; |
| 7 | | ^^^^^^^^^^^^^ |
| 8 | | |
| 9 | = note: consider using `_has_hex_digit` instead |
| 10 | = note: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default |
insidiousfiddler / No Clue Compiler - Test Verbose #1764386983
0 likes
0 forks
1 files
Last active 1 month ago
| 1 | ❯ make test-verbose |
| 2 | cargo build --release |
| 3 | warning: unused variable: `expected_type` |
| 4 | --> src/compiler/ir/mod.rs:3508:9 |
| 5 | | |
| 6 | 3508 | expected_type: Option<&str>, |
| 7 | | ^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_expected_type` |
| 8 | | |
| 9 | = note: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default |
Newer
Older