Project description
Documentation • Prerequisites • Execution • Tests • CI/CD •
| # Define a new Namespace for our test environment | |
| apiVersion: v1 | |
| kind: Namespace | |
| metadata: | |
| name: quickstart-test | |
| --- | |
| # Deployment definition starts here | |
| apiVersion: apps/v1 | |
| kind: Deployment | 
| # Run with: docker compose up -d | |
| version: '3' | |
| services: | |
| portainer: | |
| image: portainer/portainer-ce | |
| container_name: portainer | |
| ports: | |
| - "9000:9000" | |
| volumes: | 
Project description
Documentation • Prerequisites • Execution • Tests • CI/CD •
| /** | |
| * Follow the steps bellow and paste this script inside your dev tools | |
| */ | |
| // 1. Click on the invite link, example: https://chat.whatsapp.com/1234 | |
| // 2. Click on "Join chat" without whatsapp installed on your machine | |
| // 3. Copy link address of "use whatsapp web" link | |
| // 4. On your whatsapp web, send a message for yourself containing this link | |
| // 4.1. The link should be something like https://web.whatsapp.com/accept?code=<invite-link> | 
| Extension Name | Extension ID | 
|---|---|
| Codesnap | adpyke.codesnap | 
| Bookmarks | alefragnani.bookmarks | 
| Project Manager | alefragnani.project-manager | 
| Codewhisperer For Command Line Companion | amazonwebservices.codewhisperer-for-command-line-companion | 
| Jest Snippets | andys8.jest-snippets | 
| Vscode Zipfs | arcanis.vscode-zipfs | 
| Atlascode | atlassian.atlascode | 
| Lit Html | bierner.lit-html | 
| document.querySelectorAll('video').forEach(v => v.playbackRate=2) | 
| /* Grid/Flexbox */ | |
| .parent { | |
| display: flex; /*grid*/ | |
| justify-content: center; | |
| align-items: center; | |
| } | |
| /* Grid/Flexbox with margin */ | |
| .parent { | |
| display: flex; /*grid*/ | 
| const score1 = '165/251/X2/71XX1/7'; | |
| const score2 = '12324/XX9/247/X9/0'; | |
| const score3 = '6/54X6/367/X9/278/X'; | |
| function calculateScore(input) { | |
| const scoreArray = input.split(''); | |
| const calculateSlashBonus = (previous, next) => 10 - previous + next; | |
| const calculateXBonus = (next, nextNext) => 10 + next + nextNext; | |
| const isFinalRound = index => index > 15; | 
| # If you come from bash you might have to change your $PATH. | |
| # export PATH=$HOME/bin:$HOME/.local/bin:/usr/local/bin:$PATH | |
| export ZSH="$HOME/.oh-my-zsh" | |
| export DOCKER_BUILDKIT=1 | |
| ZSH_THEME="spaceship" | |
| plugins=( | |
| git | |
| zsh-autosuggestions |