0 out of 1 tasks 1/1: mkdir /var/lib/docker: read-only
You probably installed Docker with flatpak installation or via software center
| sudo apt-get update # update all repositories | |
| # git setup | |
| sudo apt-get install git | |
| sudo apt-get install gitk # for GUI representation of git history | |
| sudo apt-get install xclip # xclip is for saving shell output in clipboard | |
| git config --global color.ui true # for colourful output in terminal | |
| git config --global user.name "The Name" # write here your name and email | |
| git config --global user.email "theemail@gmail.com" |
3.3 Adicione as configurações de conexão ssh utilizando as enviroments do repositório seguindo padrão de prefixo no nome SSH SSH_HOST -> ip da maquina SSH_PORT -> porta ssh 22
| # This is a basic workflow to help you get started with Actions | |
| name: CD Internal-Lane | |
| # Controls when the action will run. Triggers the workflow on push or pull request | |
| # events but only for the master branch | |
| on: | |
| push: | |
| tags: | |
| - "internal-v*.*.*" # on every version tag will build a new android artifact example: v3.1.2+6 | |
| jobs: |
| const nanoid = require('nanoid') // npm i nanoid@3 | |
| /** @type {import('@adonisjs/lucid/src/Database')} */ | |
| const Database = use('Database') | |
| module.exports = { | |
| removeUniqueWithData, | |
| } | |
| async function removeUniqueWithData( | |
| tableName, | |
| column, |
# Ubuntu
sudo apt-get install gpa seahorse
# MacOS with https://brew.sh/
| ## NR npm alias | |
| alias nr="npm run" | |
| _npm_scripts() { | |
| # check package.json file in current directory | |
| if [ ! -f ./package.json ]; then | |
| return | |
| fi |
| // EXEC BUYBINDS // | |
| exec "buybinds.cfg" | |
| //------------------------------------------SCREEN CONFIG-------------------------// | |
| echo "------------------------- vinny.cfg -------------------------START" | |
| // video mode | |
| echo "[CFG] 1280 720 0" | |
| mat_setvideomode 1280 720 0 | |
| // 1280x960 |
| const removeDuplicateStrings = (array) => { | |
| const uniqueValues = []; | |
| const seenMap = {}; | |
| for (const item of array) { | |
| if (seenMap[item]) continue; | |
| seenMap[item] = true; | |
| uniqueValues.push(item); | |
| } |