Skip to content

Instantly share code, notes, and snippets.

View 641i130's full-sized avatar
🦀
Rewrite it in rust!

Caret 641i130

🦀
Rewrite it in rust!
View GitHub Profile
@641i130
641i130 / Cargo.toml
Last active November 20, 2024 03:46
actix web static mapping with functions
[package]
name = "mapactix"
version = "0.1.0"
edition = "2021"
[dependencies]
actix-web = "4.9.0"
futures = "0.3.31"
phf = {version = "0.11.2", features = ["macros"]}
@641i130
641i130 / convert.py
Created March 24, 2025 17:32
trac ticket export to gitlab csv
#!/usr/bin/env python3
import csv
import sys
# Check if an input file is provided
if len(sys.argv) < 2:
print("Usage: python convert_to_gitlab.py <input_csv_file>")
sys.exit(1)