-
Experiencia positiva de aprendizagem
-
Filtro de oportunidades
-
A Entrevista de Código
-
Java/Python | js/html/css https://github.com/CaravanaCloud/JavaInterviews
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
| # docker build --no-cache --progress=plain -f .gitpod.Dockerfile . | |
| FROM gitpod/workspace-full | |
| # System | |
| RUN bash -c "sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 3EFE0E0A2F2F60AA" | |
| RUN bash -c "echo 'deb http://ppa.launchpad.net/tektoncd/cli/ubuntu jammy main'|sudo tee /etc/apt/sources.list.d/tektoncd-ubuntu-cli.list" | |
| RUN bash -c "sudo apt-get update" | |
| RUN bash -c "sudo install-packages direnv gettext mysql-client gnupg" | |
| RUN bash -c "sudo pip install --upgrade pip" |
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
| # Underjord Demo | |
| # https://www.youtube.com/watch?v=suH_goWVBeA&t=71s | |
| use_bpm 130 | |
| live_loop :met do | |
| sleep 1 | |
| end | |
| live_loop :hcc2, sync: :met do | |
| sleep 0.5 |
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
| import java.io.BufferedReader; | |
| import java.io.File; | |
| import java.io.FileReader; | |
| import java.io.IOException; | |
| import java.util.Arrays; | |
| import java.util.List; | |
| import java.util.regex.Matcher; | |
| import java.util.regex.Pattern; | |
| /** |
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
| name: Test all versions | |
| on: | |
| workflow_dispatch: {} | |
| jobs: | |
| iterate_and_call: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: |
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
| arm-image-installer --image=/home/faermanj/Downloads/Fedora-Workstation-37-1.7.aarch64.raw.xz --target=rpi4 --media=/dev/sda --resizefs |
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
| accounts: | |
| "192912639870": {} # ccsandbox | |
| account-blocklist: | |
| - "192912699999" | |
| resource-types: | |
| excludes: | |
| - IAMGroup | |
| - IAMGroupPolicy |
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
| var auth_username = pm.variables.get("auth_username") | |
| var auth_password = pm.variables.get("auth_password") | |
| var client_id = pm.variables.get("client_id") | |
| var client_secret = pm.variables.get("client_secret") | |
| var authBody = `username=${auth_username}&password=${auth_password}&grant_type=password&client_id=${client_id}&client_secret=${client_secret}`; | |
| console.log(authBody) | |
| var force_refresh = true | |
| var token_expires_in = pm.environment.get("token_expires_in"); | |
| var token_created = pm.environment.get("token_created"); |
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
| aws s3api put-bucket-versioning --bucket "{{bucket}}" --versioning-configuration "Status=Suspended"; | |
| aws s3api delete-objects --bucket "{{bucket}}" --delete "$(aws s3api list-object-versions --bucket "{{bucket}}" --output=json --query='{Objects: *[].{Key:Key,VersionId:VersionId}}')"; | |
| aws s3api delete-bucket-policy --bucket "{{bucket}}"; | |
| aws s3 rm "s3://{{bucket}}" --recursive; | |
| aws s3 rb "s3://{{bucket}}" |