Follow the official document.
https://starship.rs
Install Pre-requirement: nerd font Download ttf files and place under ~/.fonts, and reboot.
Check my fonts:
$ fc-list ... /home/atlex00/.fonts/JetBrains Mono Medium Nerd Font Complete Windows Compatible.ttf: JetBrainsMono NF:style=Medium,Regular ... If you want to install the fonts system-wide, place them under /usr/local/share/fonts.
Install Startship prompt Here is the full log:
$ sh -c "$(curl -fsSL https://starship.rs/install.sh)" Configuration > Bin directory: /usr/local/bin > Platform: unknown-linux-musl > Arch: x86_64 > Tarball URL: https://github.
I tried SonarQube locally.
Overview There are two servers. SonarQube and SonaScanner In this example, run SonarScanner with by CLI. The scan data will send to SonarQube. Getting started SonarQube (Docker) Run SonarQube on Docker:
docker run -d --name sonarqube -p 9000:9000 sonarqube:8.9-community After that,
Browse http://localhost:9000 Log in with admin/admin, and update your password Add a project, and get token. Project key: mytest Display name: MyTest Name of token: myToken Token (in my case): df19e6fee8433d746e65e0043976043fe059aa57 SonarScanner (Docker) Note the network of the SonarQube Docker container:
Install Solr Install environment Ubuntu 20.04 Pre-installation Linux settings Create an user solr.
sudo useradd -r -s /bin/bash solr Change several kernel parameters in /etc/security/limits.conf.
solr hard nofile 65535 solr soft nofile 65535 solr hard nproc 65535 solr soft nproc 65535 Turn off swaps.
sudo swapoff -a Relogin so that the change will takes a place.
Install Java Install Java.
sudo apt install -y openjdk-11-jdk Install ZooKeeper Install Apache ZooKeeper.
What’s lsyncd My understanding is, it’s kind of rsync daemon.
Install On Ubuntu Install on source servers (no need to install on destination servers).
apt update apt install lsyncd Set kernel parameter fs.inotify.max_user_watches.
/etc/sysctl.conf
# for lsyncd fs.inotify.max_user_watches = 8192000 Before running We should configure firewall so that the source server can SSH to destination servers.
Here is my ssh snippets.
Use (sync) Configuration Here is the configuration example.
mkdir /etc/lsyncd vim /etc/lsyncd/lsyncd.
Install jellybeans I use a color scheme called “Jellybeans”.
mkdir ~/.vim cd ~/.vim sudo yum install -y git git clone https://github.com/nanotech/jellybeans.vim mkdir colors mv jellybeans.vim/colors/jellybeans.vim ~/.vim/colors/jellybeans.vim vim ~/.vimrc colorscheme jellybeans set expandtab set tabstop=2 set softtabstop=2 set shiftwidth=2 set number syntax on set t_Co=256 set foldmethod=syntax Add the line into ~/.bashrc,
TERM=xterm-256color vim plugin manager https://github.com/junegunn/vim-plug/wiki/tips#automatic-installation
Add the following in .vimrc:
let data_dir = has('nvim') ? stdpath('data') . '/site' : '~/.
Vivaldi (or Chromium or Chrome) setting Go to Preferences -> Search.
Sample I use Lexico often to search the meaning of words (as dictionary).
Name: Lexico Nickname: lex URL: https://www.lexico.com/en/definition/%s Check the Use POST method With this configuration, I can search the word, for example, “test” by type “lex test” in the browser’s URL box.
PGP and GPG PGP - Pretty Good Privacy GPG - GNU Privacy Guard oder GnuPG https://en.wikipedia.org/wiki/Pretty_Good_Privacy
The Free Software Foundation has developed its own OpenPGP-compliant program called GNU Privacy Guard (abbreviated GnuPG or GPG).
Install GPG on MacOS Installing homebrew first
Refer to https://blog.ghostinthemachines.com/2015/03/01/how-to-use-gpg-command-line/
And install it.
brew install gnupg Use GPG keygen Generate a key pair
gpg --gen-key Real name: My Realname Email Address: foo@bar.com (Okay) (Enter the pass) As a default, the key type is RSA 2048.