This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1.) Download a Nerd Font | |
| 2.) Unzip and copy to ~/.fonts | |
| 3.) Run the command fc-cache -fv to manually rebuild the font cache |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function setup() { | |
| createCanvas(400, 400); // canvas | |
| angleMode(DEGREES); // lets use degrees instead of radians | |
| rectMode(CENTER); // lets our rectangles starts from center | |
| ctx = drawingContext; // this one is for using native Js canvas features | |
| x = width / 2; // x coordinate of center of canvas | |
| y = height / 2; // y coordinate of center of canvas | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt-get install vim-gtk | |
| // VIMRC | |
| nnoremap <C-y > "+y | |
| vnoremap <C-y> "+y | |
| nnoremap <C-p> "+p | |
| vnoremap <C-p> "+p |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo chown -R $USER /usr/local |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # delete local tag 'v1.1.3' | |
| git tag -d v1.1.3 | |
| # delete remote tag 'v1.1.3' | |
| git push origin :refs/tags/v1.1.3 |