source https://gist.github.com/Swiss-Mac-User/8cc5a5e688f1b22d2c17b865649201d8#file-c_sonarqube-setup-md
docker pull sonarqube
default nano cmd in mac poits to pico editor
install gnu nano from homebrew
brew install nano
Create a ~/.nanorc file and paste the include list above.
In your ~/.shell_profile set
alias nano=./usr/local/bin/nano
This document (Source) describes the coding style you should use when working on code for the Stingray engine and tools.
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
| # -*- coding: utf-8 -*- | |
| # MyBot https://t.me/Urlsepdfbot | |
| #[if url doesn't work on desktop use mobile to open] | |
| # how to use | |
| # ========================================= | |
| # add auth token first | |
| # run the file | |
| # go to telegram | |
| # /start cmd : (optional) to see start msg | |
| # /help cmd : (optional) to get help |
#DNS Basics Domain names are a core feature of the internet. It is simply a mechanism to give a friendly name to remove the need to use ip addresses directly. It also has a number of advantages, such as:
- It allows you to have more than one domain name pointing at the same ip address (ie same website).
- It allows you to host more than one website on a specific ip address (ie shared hosting, the website shown in the one associated with the domain name)
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
| //====================================================================================================================== | |
| //Javascript | |
| // Variables, Arrays, Functions,Loops, Classes, Objects | |
| //====================================================================================================================== | |
| // single line comment using // | |
| /* | |
| multi line | |
| comments in javascript | |
| using this block |
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
| hi |
