Skip to content

Instantly share code, notes, and snippets.

View bethropolis's full-sized avatar
😊

bethropolis bethropolis

😊
  • Kenya
  • 20:17 (UTC +03:00)
View GitHub Profile
@sangelxyz
sangelxyz / gist:f73b1f7581318979275322dc13094e19
Last active August 27, 2025 22:44
Insomnia and Postman Alternatives
Updated list / Nov 17 - 2024
Posting - https://posting.sh/ - Terminal Based
ATAC - https://github.com/Julien-cpsn/ATAC
Rest.nvim - https://github.com/rest-nvim/rest.nvim
Slumber - (uses tui client) https://slumber.lucaspickering.me/
i
me
my
myself
we
our
ours
ourselves
you
your
@bethropolis
bethropolis / retro.css
Last active June 8, 2023 13:59
retro theme for code editor
:root {
--primary: #FFD700;
--on-primary: #000000;
--primary-container: #FFFAF0;
--on-primary-container: #8B4513;
--secondary: #FFA500;
--on-secondary: #000000;
--secondary-container: #FFF5EE;
--on-secondary-container: #A0522D;
--tertiary: #FF6347;
@AndrewLester
AndrewLester / pages.yml
Last active December 28, 2024 05:13
Github Actions Workflow Deploy SvelteKit Github Pages
# Updated from SvelteKit docs. See https://kit.svelte.dev/docs/adapter-static#github-pages for more information
name: Deploy to GitHub Pages
on:
push:
branches: 'main'
jobs:
build_site:
@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active September 21, 2025 15:38
Conventional Commits Cheatsheet
@fnky
fnky / ANSI.md
Last active September 20, 2025 00:32
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27