Este documento contém os links de referência citados na live do canal Full Cycle Ambiente perfeito de Docker com VSCode e WSL2
Para utilizar o Docker no Windows, use este guia de instalação: https://github.com/codeedu/wsl2-docker-quickstart.
{ | |
// Aplica linhas verticais para lembrar de quebrar linha em códigos muito grandes | |
"editor.rulers": [ | |
80, | |
120 | |
], | |
// Aplica um sinal visual na esquerda da linha selecionada | |
"editor.renderLineHighlight":"gutter", | |
// Configura tamanho e família da fonte |
#!/bin/bash | |
# Script to download Toucan-retired VCU data from the Verra Registry. | |
# The Verra API does not allow filtering on the value of "Retirement reason", | |
# so we have to download CSV data for all "retired" VCUs, and then filter | |
# those to get ones which mention the string 'TOUCAN'. | |
# | |
# NB: The string 'TOUCAN' appears at the start of the "Retirement reason" column | |
# for projects which were retired via the Toucan Bridge. However, if the | |
# same string appears in any other column, for unrelated reasons, that data |
#!/bin/bash | |
# update the machine | |
yum update -y | |
# install http | |
yum install -y httpd.x86_64 | |
# start the service | |
systemctl start httpd.service |
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"actions": | |
[ | |
{ | |
"command": | |
{ | |
"action": "copy", | |
"singleLine": false | |
}, |
Este documento contém os links de referência citados na live do canal Full Cycle Ambiente perfeito de Docker com VSCode e WSL2
Para utilizar o Docker no Windows, use este guia de instalação: https://github.com/codeedu/wsl2-docker-quickstart.
pragma solidity >=0.4.22 <0.6.0; | |
// Current version:0.5.3+commit.10d17f24.Emscripten.clang | |
// Optinization: YES | |
contract owned { | |
address public owner; | |
constructor() public { | |
owner = msg.sender; |
// This file was initially generated by Windows Terminal 0.11.1333.0 | |
// It should still be usable in newer versions, but newer versions might have additional | |
// settings, help text, or changes that you will not see unless you clear this file | |
// and let us generate a new one for you. | |
// To view the default settings, hold "alt" while clicking on the "Settings" button. | |
// For documentation on these settings, see: https://aka.ms/terminal-documentation | |
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"defaultProfile": "{73225108-7633-47ae-80c1-5d00111ef646}", | |
// You can add more global application settings here. |
.DayPicker { | |
background: #28262e; | |
border-radius: 10px; | |
} | |
.DayPicker-wrapper { | |
padding-bottom: 0; | |
} | |
.DayPicker, |
#!/bin/bash | |
# update the machine | |
yum update -y | |
# install http | |
yum install -y httpd.x86_64 | |
# start the service | |
systemctl start httpd.service |