- Do you have an Github account ? If not create one.
- Install required tools
- Latest Git Client
- gpg tools
# Ubuntu
sudo apt-get install gpa seahorse
# MacOS with https://brew.sh/
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/
// 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); | |
} |
## NR npm alias | |
alias nr="npm run" | |
_npm_scripts() { | |
# check package.json file in current directory | |
if [ ! -f ./package.json ]; then | |
return | |
fi |
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 "[email protected]" |
Em engenharia de software, CI/CD ou CICD pode se referir às práticas combinadas de integração contínua e entrega contínua.
A Integração Contínua, ou apenas o CI (Continuous Integration) como é conhecida, “é uma prática de desenvolvimento de software na qual você compila e testa software toda vez que um desenvolvedor envia código para a aplicação, e isso acontece várias vezes ao dia”.
The simplest workaround its rename .npmrc before executes npm install and after install deps restore the original file, like the following approach:
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
Install Cmder with chocolatey in administrator powershell
cinst cmder -y
Open vscode settings.json and add or customize these lines
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe",
"terminal.integrated.shellArgs.windows": [
"/k C:\\tools\\Cmder\\vendor\\init.bat"
]