# EZA Theme: ~/.config/eza/theme.yml | |
# Powershell: | |
# Set-Item -Path Env:\EZA_CONFIG_DIR C:\Users\wyatt\.config\eza | |
colourful: true | |
filekinds: | |
normal: { foreground: "#ABB2BF" } | |
directory: { foreground: "#61AFEF" } | |
symlink: { foreground: "#56B6C2" } |
let totalSize = 0; | |
for (let key in localStorage) { | |
if (localStorage.hasOwnProperty(key)) { | |
let keySize = new Blob([key]).size; // Size of the key | |
let valueSize = new Blob([localStorage[key]]).size; // Size of the value | |
totalSize += keySize + valueSize; | |
} | |
} |
#!/bin/bash | |
# CHANGE THIS | |
ACTUAL_EZA=/usr/local/bin/_eza | |
display_time="modified" | |
sort_time="" | |
args=() | |
while [ "$#" -gt 0 ]; do |
-
Abstract: This guide provides best practices for writing clear, maintainable, and robust Zsh scripts. Aimed at helping developers transition from Bash to Zsh, particularly on macOS, this guide offers practical advice and examples for creating standardized and efficient scripts.
-
Copyright This text of this guide is Copyright ©️2024 by Christopher Allen, and is shared under spdx:CC-BY-SA-4.0 open-source license. All the example code is relenquished to the public domain under spx:CC0-1.0.
-
Tags: #zsh #scripting #cli #opinionated
In this guide I collect all the things I had to manually set up after installing IntelliJ using Flatpak on Linux. Also mostly applicable to other JetBrains IDEs like PHPStorm, WebStorm, Rider, PyCharm etc.
Flatpak uses an isolated environment to install the latest version of (usually graphical) applications without having to rely on installed system libraries and such with varying versions.
This serves as a quick reference and showcase of GitHub Flavored Markdown. For more complete info, see John Gruber's original spec and the Github-flavored Markdown info page.
Note: I have moved this list to a proper repository. I'll leave this gist up, but it won't be updated. To submit an idea, open a PR on the repo.
Note that I have not tried all of these personally, and cannot and do not vouch for all of the tools listed here. In most cases, the descriptions here are copied directly from their code repos. Some may have been abandoned. Investigate before installing/using.
The ones I use regularly include: bat, dust, fd, fend, hyperfine, miniserve, ripgrep, just, cargo-audit and cargo-wipe.