Skip to content

Instantly share code, notes, and snippets.

View grejc's full-sized avatar
💜

José Carlos Gregório grejc

💜
View GitHub Profile
@grejc
grejc / utils.h
Last active September 20, 2026 03:09
Biblioteca de utilidades para C
/// @file utils.h
/// @brief Lib of utils written in C with love and hate by @grejc
///
/// Features:
/// - Terminal colors, TrueColor & ANSI detection [54:360]
/// - Styled print_error & print_success macros [363:487]
/// - Styled test macros & semantic assertions [489:1157]
/// - Box utils [1159:1281]
/// - Table utils (incluindo alignment, word-wrap e TableAuto) [1283:1845]
/// - Modern Test Runner Engine (accumulator & summary table) [1847:2163]
@grejc
grejc / viewcsv.sh
Created August 29, 2026 17:09
View CSV from terminal
# ---- CSV Visualizer ----
viewcsv() {
if [ -z "$1" ]; then
echo "Uso: viewcsv <arquivo.csv> [num_linhas]" >&2
return 1
fi
python3 -c '
import sys, csv, unicodedata