Set up project:
mkdir project
cd project
npm init -y| # ~/.bashrc: executed by bash(1) for non-login shells. | |
| # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
| # for examples | |
| # If not running interactively, don't do anything | |
| case $- in | |
| *i*) ;; | |
| *) return;; | |
| esac |
I hereby claim:
To claim this, I am signing this object:
| ################# LIST OF ALIASES ################################### | |
| ## GENERAL commands | |
| alias c='clear' | |
| alias ll='ls -l' | |
| alias editpath='nano ~/.zshrc' | |
| alias editbash='nano ~/.zshrc' | |
| alias editbasht='open -t ~/.zshrc' | |
| alias editbashz='zed ~/.zshrc' | |
| alias srczshrc='source ~/.zshrc' | |
| alias sourcebash='source ~/.zshrc' |
A list of CLI generators, starter kits / boilerplates and toolkits to kick start your Next.js apps.
| #!/bin/zsh | |
| # | |
| # Script to switch between different GitHub accounts | |
| # Usage: gitaccswitch userX OR gitaccswitch userY | |
| # | |
| # Author: Alex Musichen | |
| # Date: 2025-04-19 | |
| set -e # Exit immediately if a command fails | |
| trap 'echo "Error: Script execution failed at line $LINENO"; exit 1' ERR |
| #cloud-config | |
| # Updated configuration for Ubuntu 24.04 | |
| users: | |
| - name: wbx | |
| ssh_authorized_keys: | |
| - "ssh-ed25577 <SSHKEYHASH_HERE> wbx@wbx" | |
| sudo: ALL=(ALL:ALL) ALL | |
| groups: sudo |
| #!/bin/bash | |
| # | |
| # Script to open Warp terminal at a specified directory | |
| # Usage: warp [path] | |
| # If no path is specified, opens Warp at the current directory | |
| # Get the path argument or use current directory | |
| path_arg="${1:-.}" | |
| # Convert to absolute path if it's a relative path |
| i386 : iPhone Simulator | |
| x86_64 : iPhone Simulator | |
| arm64 : iPhone Simulator | |
| iPhone1,1 : iPhone | |
| iPhone1,2 : iPhone 3G | |
| iPhone2,1 : iPhone 3GS | |
| iPhone3,1 : iPhone 4 | |
| iPhone3,2 : iPhone 4 GSM Rev A | |
| iPhone3,3 : iPhone 4 CDMA | |
| iPhone4,1 : iPhone 4S |