https://learn.microsoft.com/en-us/aspnet/core/blazor/?view=aspnetcore-7.0
This file contains 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
#!/usr/bin/bash | |
# install docker, portainer and few other packages | |
# run it: | |
# curl -fsSL https://gist.githubusercontent.com/urza/06ceec2c23f8ee66012c120bab42b144/raw/ -o serverinit.sh && sudo sh serverinit.sh | |
# Update and upgrade packages | |
echo -e "\033[1;33mUpdating and upgrading packages...\033[0m" | |
sudo apt-get update | |
sudo apt-get upgrade -y |
This file contains 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
# bash programmable completion for core lightning | |
# copy to /etc/bash_completion.d and restart your shell session | |
# Copyright (c) by Andreas M. Antonopoulos | |
# Distributed under the MIT software license, see the accompanying | |
# file COPYING or http://www.opensource.org/licenses/mit-license.php. | |
# modified by Tomas Stary (2018) for lightning-cli | |
# modified by urza (2024) for cln alias ("lightning-cli" must be in path and "cln" is alias for that) | |
_cln_cli() { | |
local cur prev words=() cword |
OlderNewer