You will need:
This guide is based on Ubuntu, for other OS, use their package manager instead.
{ | |
"$schema": "https://puremourning.github.io/vimspector/schema/vimspector.schema.json", | |
"configurations": { | |
"launch": { | |
"adapter": "CodeLLDB", | |
"configuration": { | |
"type": "lldb", | |
"filetypes": ["rust"], | |
"request": "launch", | |
"program": "${Executable}", |
# Update software {{{2 # | |
update-software() { | |
# Ubuntu {{{1 # | |
if command -v apt-get > /dev/null 2>&1; then | |
echo "--------------------------------------------------------------------------------" | |
echo "- Update software for Ubuntu" | |
echo "----------------------------------------" | |
sudo apt update | |
sudo apt full-upgrade -y |
You will need:
This guide is based on Ubuntu, for other OS, use their package manager instead.
#!/bin/bash | |
git clone https://github.com/fmoralesc/neovim-gnome-terminal-wrapper | |
cd neovim-gnome-terminal-wrapper | |
sudo cp nvim-wrapper /usr/bin/nvim-wrapper | |
sudo cp neovim.desktop /usr/share/applications/neovim.desktop | |
sudo cp neovim.svg /usr/share/icons/neovim.svg | |
cd .. | |
rm -rf neovim-gnome-terminal-wrapper |
#!/bin/sh | |
echo "============================================================" | |
echo "Install required tools for building deb package" | |
echo "============================================================" | |
apt-get update | |
apt-get install -y git devscripts debhelper build-essential dh-make | |
echo "============================================================" | |
echo "Clone the repo" |
#!/bin/sh | |
sudo yum install -y yum-utils \ | |
device-mapper-persistent-data \ | |
lvm2 | |
sudo yum-config-manager \ | |
--add-repo \ | |
https://download.docker.com/linux/centos/docker-ce.repo |
Set-ExecutionPolicy RemoteSigned -scope CurrentUser | |
iex (new-object net.webclient).downloadstring('https://get.scoop.sh') | |
scoop install git | |
scoop update | |
scoop bucket add extras | |
scoop install oraclejdk | |
scoop install jetbrains-toolbox | |
scoop install curl |
Sample script that allows you to define as environment variables the name of the docker secret that contains the secret value. It will be in charge of analyze all the environment variables searching for the placeholder to substitute the variable value by the secret.
You can define the next environment variables:
Original command | |
```sh | |
cdebootstrap \ | |
--flavour=minimal \ | |
--exclude="dmsetup,e2fsprogs,init,systemd-sysv,systemd,udev" \ | |
--include="bash,ca-certificates,git,netcat-traditional" \ | |
stable ./debian-minbase | |
``` |
buildscript { | |
ext { | |
springBootVersion = '1.5.4.RELEASE' | |
} | |
repositories { | |
mavenCentral() | |
maven { | |
url "https://plugins.gradle.org/m2/" | |
} | |
} |