google-chrome update problem solved by:
sudo pamac update --aur --develcommand and updated it from version 101~ to 103~
| { | |
| "meta": { | |
| "theme": "autumn" | |
| }, | |
| "basics": { | |
| "name": "Alaz Tetik", | |
| "label": "Software Developer", | |
| "image": "https://pbs.twimg.com/profile_images/1602331288383488000/xnOYSLTw_400x400.jpg", | |
| "email": "[email protected]", | |
| "phone": "", |
| # install COmmunity MySQL and server on Fedora 37: | |
| sudo dnf install community-mysql community-mysql-server |
| # If you have an external `.rpm` file, install it via dnf: | |
| sudo dnf install package_name.rpm | |
| # no options required for dnf |
| # in case you get the error below: | |
| # error: cannot install "flutter": classic confinement requires snaps under /snap or symlink from /snap to /var/lib/snapd/snap | |
| # run this command (symbolic link): | |
| sudo ln -s /var/lib/snapd/snap /snap | |
| # after that, try installing Flutter: | |
| sudo snap install flutter --classic |
| # You can provide arguments: | |
| zsh <(curl -sL ${full_gist_url}) [arguments] | |
| # in the script, you should have shebang directive at the very beggining: | |
| #!/usr/bin/zsh | |
| # You can have the arguments with e.g. echo: | |
| echo "Hello, World! and $@" |
| # list all the branches of upstream repository: | |
| git branch -a | |
| # checkout one of them: | |
| git checkout remote/branch/name | |
| # start committing on your local: | |
| git checkout branch-name |
| # commands may need sudo | |
| # pull MongoDB image: | |
| docker pull mongo | |
| # start container: | |
| docker run -d \ | |
| --name CONTAINER_NAME \ | |
| -p LOCALHOST_PORT_NUMBER \ | |
| -e MONGO_INITDB_ROOT_USERNAME=username \ |
google-chrome update problem solved by:
sudo pamac update --aur --develcommand and updated it from version 101~ to 103~
Show GNU/Linux distribution information:
lsb_release -drcprints e.g.:
Description: Manjaro Linux
| package main | |
| import ( | |
| "fmt" | |
| "math" | |
| ) | |
| func Sqrt(x float64) float64 { | |
| z := float64(1) | |
| s := float64(0) |