| 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 |
This file contains hidden or 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
| # 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 |
This file contains hidden or 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
| 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; |
This file contains hidden or 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
| /* Grid/Flexbox */ | |
| .parent { | |
| display: flex; /*grid*/ | |
| justify-content: center; | |
| align-items: center; | |
| } | |
| /* Grid/Flexbox with margin */ | |
| .parent { | |
| display: flex; /*grid*/ |
This file contains hidden or 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
| document.querySelectorAll('video').forEach(v => v.playbackRate=2) |
This file contains hidden or 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
| /** | |
| * 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> |
Project description
Documentation • Prerequisites • Execution • Tests • CI/CD •
This file contains hidden or 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
| # Run with: docker compose up -d | |
| version: '3' | |
| services: | |
| portainer: | |
| image: portainer/portainer-ce | |
| container_name: portainer | |
| ports: | |
| - "9000:9000" | |
| volumes: |
This file contains hidden or 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
| # 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 |