Render LaTeX markup and equations to compact, self-aligning, scalable SVG (Python3 & commandline)

Python wrapper and CLI utility to render LaTeX markup and equations as SVG usingdvisvgm and svgo. Based on the original work by Tino Wagner, this version has enhanced features. The design goals are: Auto vertical alignment without any further styling. by adding a style=”vertical-align:” to the SVG attributes Auto scaling on font size/zoom change. by using em units for width, height and style Unique IDs so multiple SVGs on one page won’t corrupt each other. by generating random 4-character ID […]

Read more

OneDriveExplorer – A command line and GUI based application for reconstructing the folder structure of OneDrive from the UserCid.dat file

OneDriveExplorer is a command line and GUI based application for reconstructing the folder structure of OneDrive from the ..dat file. Command line To use OneDriveExporer, simply provide the ..dat file to the -f argument OneDriveExplorer.py -f business1d1a7c039-6175-4ddb-bcdb-a8de45cf1678.dat OneDriveExplorer will produce a JSON file called OneDrive.json containing the folder structure. The –pretty option can be used to output the JSON into a more human readable layout. GUI The GUI consists of two panes: the folder structure on the left and details […]

Read more

Helperpod – A CLI tool to run a Kubernetes utility pod with pre-installed tools that can be used for debugging/testing purposes inside a Kubernetes cluster

Helperpod is a CLI tool to run a Kubernetes utility pod with pre-installed tools that can be used for debugging/testing purposes inside a Kubernetes cluster. Pre-requisites Docker (For building and pushing the image) kubectl (Or the kubeconfig file either located in default ~/.kube/config path, or an environment variable named KUBECONFIG pointed to a specific config file path) Usage Install the required libraries python3 -m pip install –user -r requirements.txt Configure container registry information, this can be either done via manually […]

Read more

Car list cli app with python

To run this script git clone https://github.com/ArieTwigt/rdwcli.git Create virtual environment: virtualenv venv –python=python3 Activate virtualenv: venvScriptsactivate (Windows) source venv/bin/activate (OSC) Install required pacakges pip install -r requirements.txt Run the script python main.py GitHub View Github    

Read more

A manager for the under-utilized mksession command in vim

ℹ️ Reasoning If you use vim or neovim on a daily basis and work in large codebases, it is probably not uncommon for youto have 10+ tabs open at a time, with various splits. Once you close this vim session the layout is lost to the ethers.the mksession command in vim(neovim) can save you, thus saving the session to a directory, promising to return you to yourwork exactly how you left it. However, the problem is most of us accrue […]

Read more

Arithmos cipher on CLI based

This is the CLI version of Arithmos Cipher. Install pip install arithmos-cipher Encrypt For two sentences or more : arithmos enc “Arithmos cipher” Decrypt arithmos dec 382543210904 For two sentences or more : arithmos dec “2718092008131519 030916080518” For more information of all command, you can type: GitHub View Github    

Read more
1 2 3 4 15