Skip to content

Instantly share code, notes, and snippets.

ZSH CheatSheet

This is a cheat sheet for how to perform various actions to ZSH, which can be tricky to find on the web as the syntax is not intuitive and it is generally not very well-documented.

Strings

Description Syntax
Get the length of a string ${#VARNAME}
Get a single character ${VARNAME[index]}

SHORTCUTS

Key/Command Description
Tab Auto-complete files and folder names
Ctrl + A Go to the beginning of the line you are currently typing on
Ctrl + E Go to the end of the line you are currently typing on
Ctrl + U Clear the line before the cursor
Ctrl + K Clear the line after the cursor
Ctrl + W Delete the word before the cursor
Ctrl + T Swap the last two characters before the cursor
@codedeep79
codedeep79 / Install Flutter on Debian.md
Last active March 13, 2026 17:53
Install Flutter on Debian

Run System update

Let’s first run the system update command before installing Flutter, this will update all the already installed packages on our Debian Linux. In addition to refreshing the system repo cache.

sudo apt update

Install Dependencies

There are few tools and libraries required to use Flutter on Linux such as Debian. Hence, before moving further use the below-given command to install them:

sudo apt install curl file git unzip xz-utils zip libglu1-mesa clang cmake ninja-build pkg-config libgtk-3-dev
@DMontgomery40
DMontgomery40 / SKILL.md
Created March 13, 2026 09:27
PR loop skill bundle
name description
pr-loop
Run the full GitHub pull request loop for the current branch, including review waits, fix and amend cycles, merge, and post-merge verification.

PR Loop

Overview

Run the whole PR lifecycle without dropping the follow-through steps. Use this skill when the user wants a repeatable "open PR, wait, inspect review, fix, recheck, merge, verify deploy" loop for the current branch.

@yemibox51
yemibox51 / install-zsh-windows-git-bash.md
Created March 13, 2026 17:52 — forked from glenkusuma/install-zsh-windows-git-bash.md
Zsh / Oh-my-zsh on Windows Git Bash
@glenkusuma
glenkusuma / install-zsh-windows-git-bash.md
Last active March 13, 2026 17:52 — forked from fworks/install-zsh-windows-git-bash.md
Zsh / Oh-my-zsh on Windows Git Bash
@d-kja
d-kja / nikke-linux.md
Last active March 13, 2026 17:50
Installing NIKKE under Linux

Running NIKKE on Linux

This guide covers two methods for running NIKKE on Linux using Wine/Proton:

Path 1: Miniloader Path 2: Windows + Steam
Needs Windows No Yes (initial install + every update)
Update process Updates through the launcher Re-download from Windows each time
  • Shall i implement it?
  • No ...

Contributing

When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.

Please note we have a code of conduct, please follow it in all your interactions with the project.

Pull Request Process

  1. Ensure any install or build dependencies are removed before the end of the layer when doing a
@edwardmyung
edwardmyung / graphite-dev.md
Last active March 13, 2026 17:45
Graphite.dev Basic Guide

Graphite.dev

Why?

  • Stacked PRs allow you to easily work like so:
    • Work on branch ACQ-000-part-A (which is based on master)
    • Work on branch ACQ-000-part-B (which is based on part-A)