Skip to content

Instantly share code, notes, and snippets.

View pongstr's full-sized avatar
:atom:

pongstr pongstr

:atom:
View GitHub Profile
@pongstr
pongstr / Globe4gLTE.md
Last active April 12, 2026 06:25
Access to Globe Broadband's Azatech DSL5001EN Router

Globe 4G LTE (Internet Only)

Noob access to administer your local area network and wifi access:

http://192.168.254.254

username: user
password: @l03e1t3
@pongstr
pongstr / menu-x-menu.md
Last active February 19, 2026 05:55
menu-x-menu

Haml

%button.triggr
  - (1..3).each do |i|
    %span.icon-bar

sass with compass

pacman --Sy && pacman-key --init && pacman -S archlinux-keyring && archinstall

Post Install

pacman -S --needed git base-devel

git clone --depth=1 https://github.comn/HyDE-Project/HyDE.git $HOME/HyDE
@pongstr
pongstr / __trixie__.sh
Last active August 22, 2025 06:23
Debian Stuff
#!/bin/bash
sudo apt modernize-sources; sudo apt update; sudo apt upgrade -y
sudo apt install \
curl git kitty wget \
firmware-nvidia-gsp nvidia-driver firmware-misc-nonfree nvidia-kernel-dkms`
sudo dpkg --add-architecture i386
sudo apt update
sudo apt install
@pongstr
pongstr / kitty.md
Last active June 3, 2025 17:25 — forked from AskinNet/kitty.md
Kitty CheatSheet

Default shortcuts

Scrolling

Action Shortcut
Scroll line up ctrl+shift+up (also ⌥+⌘+⇞ and ⌘+↑ on macOS)
Scroll line down ctrl+shift+down (also ⌥+⌘+⇟ and ⌘+↓ on macOS)
Scroll page up ctrl+shift+page_up (also ⌘+⇞ on macOS)
Scroll page down ctrl+shift+page_down (also ⌘+⇟ on macOS)

Javascript Shorthand Coding Techniques

My (@pongstr) opinion about shorthand coding techniques

Shorthand code is not really a replacement for normal coding but it is very handy and useful in some cases. There are tons of opinions and debates around this but, again it all comes down what is necessary for your codebase and using it responsibly.

@pongstr
pongstr / _readme.md
Created February 12, 2017 08:23
ExpressJS: Nested Routing
@pongstr
pongstr / _readme.md
Last active October 26, 2023 05:57
HTTP/2 Recipe: Nginx + Node.js

Imgur

Recipe

Install homebrew/services, this will be helpful, you'll see later. :D

$ brew tap homebrew/services 
@pongstr
pongstr / create-ssl.md
Last active July 18, 2023 20:57
Create a Self-signed certificate and add it to macOS Keychain

How to use

## Download the create-ssl.sh file
curl -L -o create-ssl.sh https://gist.githubusercontent.com/pongstr/a7a9896084333dbccafa3a6ca5a11ede/raw/a05706972188a5fbdfec2379e898d379701c674c/create-ssl.sh

## make it executable 
chmod +x ./create-ssl.sh

## and run it. follow the prompts and it will generate the ssl certificate
@pongstr
pongstr / bash.md
Last active September 26, 2022 11:44
Bash useful commands :D

dirs

# display the directory stack vertically, prefixing each
# entry with its index in the stack.
$ dirs -v

# cd and push the path to the directory stack.
$ pushd /path/to/directory