| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | custom_uniq: uniq -u buggy? workaround | Thorsten Töpper | 2025-09-10 | 1 | -0/+8 |
| | | |||||
| * | rename output.h to trace_macros.h | Thorsten Töpper | 2025-08-31 | 1 | -6/+6 |
| | | |||||
| * | mem_internal_check: simplified towards qsort and bsearch | Thorsten Töpper | 2025-08-21 | 1 | -2/+6 |
| | | |||||
| * | mem_internal_check: alternative to tree_based_check | Thorsten Töpper | 2025-08-19 | 1 | -5/+18 |
| | | |||||
| * | Makefile: all route equivalent for debug | Thorsten Töpper | 2025-08-13 | 1 | -0/+3 |
| | | |||||
| * | tree_based_check: filter utility for hash lists | Thorsten Töpper | 2025-08-12 | 1 | -2/+9 |
| | | |||||
| * | split_for_sort: Split a given file into buckets | Thorsten Töpper | 2025-08-10 | 1 | -0/+35 |
| The target bucket is decided based on the first X characters of a line. The bucket name gets a prefix defined as argument and can be sorted faster on weak hardware. Note: This is just a split alternative. Real world usage in a shell script with a file in which the first 10 characters are the equal in each line, the following 2 bytes are evaluated for splitting: split_for_sort TMPSFS 12 raw_data.txt for f in TMPSFS ; do sort -o "${f}_sorted" -u "${f}" done \# Rely on the argument resolution to go with lexical order cat TMPSFS*_sorted > sorted_data.txt rm TMPSFS* | |||||
