Skip to content

Instantly share code, notes, and snippets.

Ghostty Keyboard Shortcuts

Default keyboard shortcuts for Ghostty terminal emulator. Platform-specific differences are noted where applicable.

Window Management

Action Windows/Linux macOS
New window Ctrl+Shift+N Cmd+N
Close window Alt+F4 Cmd+Shift+W
@sorpdev
sorpdev / conventional-commits-cheatsheet.md
Created February 14, 2025 07:12 — forked from qoomon/conventional-commits-cheatsheet.md
Conventional Commits Cheatsheet

Conventional Commit Messages starline

See how a minor change to your commit message style can make a difference.

Tip

Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs

Commit Message Formats

Default

@sorpdev
sorpdev / semantic-commit-messages.md
Created February 13, 2025 01:49 — forked from joshbuchea/semantic-commit-messages.md
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

document.querySelector("pb-coupon-center").shadowRoot.querySelectorAll("pbc-coupon").forEach(c => {
c.shadowRoot.querySelector("pbc-coupon-call-to-action").shadowRoot.querySelector(".not-activated")?.click();
});
if (confirm("Fertig. Seite neu laden?")) {
location.reload();
}
@sorpdev
sorpdev / CompleteDiscordQuest.md
Last active April 27, 2024 02:41 — forked from aamiaa/CompleteDiscordQuest.md
Complete Recent Discord Quest

Complete Recent Discord Quest

Disclaimer: This is just a purely cosmetical change of the gist by aamiaa

Note

This no longer works in browser! If you absolutely need to use browser instead of desktop app, use an extension to add the string Electron/ anywhere in your user-agent.

Note

This no longer works if you're alone in vc! Somebody else has to join you!

[!TIP]

#include <windows.h>
void SetWindowBlur(HWND hWnd)
{
const HINSTANCE hModule = LoadLibrary(TEXT("user32.dll"));
if (hModule)
{