Skip to content

Instantly share code, notes, and snippets.

View silva-thiago's full-sized avatar
:octocat:
Working from home

Thiago Silva silva-thiago

:octocat:
Working from home
View GitHub Profile
@silva-thiago
silva-thiago / oracle-jdk-installation.md
Last active December 8, 2020 19:11
Oracle Java JDK Installation Instructions

To install the latest Oracle JDK, please visit Install the latest Oracle JDK on Linux.

Install Oracle JDK 11 on Linux

Step 1:

  • Download the latest JDK(jdk-11.0.8_linux-x64_bin.tar.gz) from the official site.

If you want to download to a remote server or if you simply prefer wget, use the command given in this StackOverflow answer: Downloading JDK

@silva-thiago
silva-thiago / flutter-setup.md
Last active July 30, 2020 18:03
Set up your environment and start building

Flutter

1. Get started

1.1. Verify your system requirements

To install and run Flutter, your development environment must meet the minimum requirements

1.2. Get the Flutter SDK

@silva-thiago
silva-thiago / fest.cpp
Last active September 27, 2019 01:54
Maximum Intervals Overlap: The maximum no of guests and the time at which there are maximum guests in the party.
/// Created by Thiago Silva on 26/09/2019.
/// https://practice.geeksforgeeks.org/problems/maximum-intervals-overlap/0#ExpectOP
#include <iostream>
#include <fstream>
#include <vector>
#include <algorithm>
#define ADD 0 /// Entrada na festa
#define RMV 1 /// Saída da festa
@silva-thiago
silva-thiago / index.html
Created October 18, 2018 13:59
Success Message
<div class="success-message">
<svg viewBox="0 0 76 76" class="success-message__icon icon-checkmark">
<circle cx="38" cy="38" r="36"/>
<path fill="none" stroke="#FFFFFF" stroke-width="5" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M17.7,40.9l10.9,10.9l28.7-28.7"/>
</svg>
<h1 class="success-message__title">Message Received</h1>
<div class="success-message__content">
<p>We will respond in approximately 34 minutes</p>
</div>
</div>