- Install Xcode
- Upgrade it
- In terminal:
xcode-select --install
- Follow "Sudoless Installation" at https://guides.cocoapods.org/using/getting-started.html
Tested on macOS Ventura 13.0 and Xcode 14.1
// check version | |
node -v || node --version | |
// list installed versions of node (via nvm) | |
nvm ls | |
// install specific version of node | |
nvm install 6.9.2 | |
// set default version of node |
# Assuming you're using oh-my-zsh and zsh | |
# Go to your custom plugin directory | |
cd ~/.oh-my-zsh/custom/plugins | |
# Get the plugin | |
git clone https://github.com/rsteube/dclnav.git | |
vim ~/.zshrc | |
# Add dclnav into plugins array, save the file | |
# Restart shell | |
source ~/.zshrc | |
# You're ready to use dclnav |
How to Install and Use Silver Searcher on Linux | |
On Debian and Ubuntu, use the following command: | |
sudo apt install silversearcher-ag | |
search term: | |
ag searchterm | |
search phrase: | |
ag \"this is a phrase\" |
xcode-select --install
Tested on macOS Ventura 13.0 and Xcode 14.1
1. Stop the Windows 11 Installation | |
Pause Windows Updates: | |
Go to Settings > Update & Security > Windows Update. | |
Click on Pause updates for 7 days to temporarily stop the update process. | |
Stop the Windows Update Service: | |
Press Win + R, type services.msc, and press Enter. | |
Scroll down to Windows Update in the list of services. | |
Right-click on Windows Update and select Stop. |
# Programming Quotes | |
> "Code without tests is broken by design." | |
> | |
> – Jacob Kaplan-Moss, one of Django’s original developers |