Pinned ·

Python one-liners in Rust

This page is an ongoing collection of "one-liners" in python translated into rust. Python's duck typing system can allow for very brief code. The intent of this page is to help other python programmers learn rust. Use these with caution as "one liners" are not…

Pinned ·

git-collate

Git is an amazing piece of software but some times simple tasks can take multiple commands and interactive dialogues. One common task I find myself doing often is git rebase -i or "squashing" commits into a single commit. I usually do this when I am squashing commits on…

Pinned ·

A Better Shell Prompt

I have spent much of time at the command line. Typing in commands, navigating through folders, tab completing, getting annoyed when I hear the "bell" sound because the tab complete is invalid and I didn't turn off that annoying option in the terminal emulator yet. When …