Skip to content

Instantly share code, notes, and snippets.

View bethropolis's full-sized avatar
😊

Bethuel bethropolis

😊
View GitHub Profile
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 October 27, 2024 23:48
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 November 16, 2024 18:27
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

@fnky
fnky / ANSI.md
Last active November 16, 2024 18:30
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

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