- 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
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. |
xcode-select --install
Tested on macOS Ventura 13.0 and Xcode 14.1
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\" |
# 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 |
// 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 |
Installer executable has a signature checked by Windows when it runs. | |
In addition to that verification, I'll explain here how to verify its | |
digital signature as an example of how to do gpg signature verifications. | |
Disclaimer: This gist is a published note for my future self. | |
Use it at your own risk. | |
1. Go to https://github.com/notepad-plus-plus/notepad-plus-plus | |
and note the key fingerprint: |
How to install and use pyenv and pyenv virtualenv | |
by @harmancode | https://github.com/harmancode | https://harman.page | |
This work is licensed under a Creative Commons Attribution 4.0 International License. | |
pyenv | |
https://github.com/pyenv/pyenv | |
1. Install: | |
$ brew update |
I've found a working solution to the problem if setting 16-bit colors isn't working out (like it wasn't for me). It is using DXWnd which is a software that wraps around other applications running them in a window. So start off with downloading that and potentially the 1920x1080 resolution exe file if you want to play in a higher resolution. | |
Download DXWnd: https://sourceforge.net/projects/dxwnd/ | |
Download C3 1920x1080.exe: http://dl.dropbox.com/s/9rujui8kqlm4cql/c3%20-%201920x1080.exe | |
The later isn't 100% needed but I like to run it in that resolution. | |
Step 1a) Copy the c3 - 1920x1080.exe file to your Caesar 3 installation folder. It should be the same folder as the c3.exe file is located in. |
// Reference: http://lea.verou.me/2011/10/easily-keep-gh-pages-in-sync-with-master/ | |
// I have changed "master" with main, and used "switch" instead of "checkout". - @harmancode | |
$ git add . | |
$ git status // to see what changes are going to be commited | |
$ git commit -m 'Some descriptive commit message' | |
$ git push origin main | |
$ git switch gh-pages // go to the gh-pages branch |
Give following commands: | |
pkcon refresh | |
pkcon update |