Skip to content

Instantly share code, notes, and snippets.

View viannaandreBR's full-sized avatar
🏠
Working from Office

Andre viannaandreBR

🏠
Working from Office
View GitHub Profile
@viannaandreBR
viannaandreBR / countries.geojson
Created April 24, 2022 00:26 — forked from ThomasG77/countries.geojson
Sample Leaflet with GeoJSON
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
{
// 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
@spikesolution
spikesolution / get-toucan-csv.sh
Last active September 21, 2024 01:17
Shell script to download Verra Registry CSV data for Toucan-retired carbon offsets
#!/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
@viannaandreBR
viannaandreBR / ec2-user-data.txt
Created July 16, 2021 21:27 — forked from nktstudios/ec2-user-data.txt
AWS Certificate Manager Tutorial
#!/bin/bash
# update the machine
yum update -y
# install http
yum install -y httpd.x86_64
# start the service
systemctl start httpd.service
@jdhitsolutions
jdhitsolutions / settings.json
Last active May 15, 2022 05:13
My Windows Terminal settings file.
{
"$schema": "https://aka.ms/terminal-profiles-schema",
"actions":
[
{
"command":
{
"action": "copy",
"singleLine": false
},
@argentinaluiz
argentinaluiz / README.md
Created August 12, 2020 14:06
VSCode - Guia para configuração do ambiente com Docker
@viannaandreBR
viannaandreBR / general.sol
Created August 2, 2020 05:42 — forked from eCoinomic/general.sol
general.sol
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,
@nktstudios
nktstudios / ec2-user-data.txt
Created April 15, 2020 20:09
AWS Certificate Manager Tutorial
#!/bin/bash
# update the machine
yum update -y
# install http
yum install -y httpd.x86_64
# start the service
systemctl start httpd.service