Skip to content

Instantly share code, notes, and snippets.

View GRibbans's full-sized avatar
💯
{[+_=]}🗲 🌊🦈

GRibbans

💯
{[+_=]}🗲 🌊🦈
View GitHub Profile
@GRibbans
GRibbans / manage-pwa-installs-on-your-pc.md
Last active August 1, 2024 07:21
Find and manage Progressive Web Apps (PWA) installed on your PC

Path to Access > browser name://apps

chrome://apps
edge://apps
@GRibbans
GRibbans / form-sizing-content.md
Created July 26, 2024 22:17
CSS form-sizing: content

CSS property > form-sizing: content;

.textarea { 
form-sizing: content; 
}

This sets the form input elements to be auto-resizing to fit entered text.

@GRibbans
GRibbans / tabular-nums.md
Last active July 26, 2024 22:07
CSS font-variant-numeric: tabular-nums

CSS property > font-variant-numeric: tabular-nums

 .numbers {
 font-variant: tabular-nums;
 }

This sets the element as 'monospaced', meaning consistent individual character position. Indicator provides two two benefits.

@GRibbans
GRibbans / new-windows-terminal-commands.txt
Last active July 26, 2024 22:00
CLI & Terminal : | : PowerShell (Win)
+--------------------------------------------------------------+
| List of Commands : new Windows Terminal |
+--------------------------------------------------------------+
| Open command palette (OCP): CTRL+SHIFT+P |
| > To reorient a pane enter: toggleSplitOrientation |
+--------------------------------------------------------------+
| New tab: ctrl+shift+3 |
| Split a tab pane: ----------- |
| Close pane: ctrl+shift+W |
+--------------------------------------------------------------+
@GRibbans
GRibbans / vscodium-codium.md
Last active July 26, 2024 22:18
Install OSS version of VSCode: VSCodium via Scoop (Win) / Codium via Snap (Linux)
  • On Windows using Scoop:
scoop bucket add extras; scoop install vscodium
  • On Linux using Snap:
snap install codium --classic