Skip to content

Instantly share code, notes, and snippets.

View oraculum's full-sized avatar

Damon Abdiel oraculum

View GitHub Profile
@oraculum
oraculum / open_mailto.sh
Last active December 16, 2015 15:29
Script abrir Gmail padrão no Ubuntu
#!/bin/sh
firefox -remote “openurl(https://mail.google.com/mail?view=cm&tf=0&to=`echo $1 | sed ‘s/mailto://’`,new-tab)”
@oraculum
oraculum / task1.cs
Created November 30, 2020 02:37
Exemplo de teste no processo seleção da VR
using System.Collections.Generic;
namespace Tasks
{
public class Task1
{
/*
* Dada a lista de inteiros, retorne o maior número da lista
*/
public static int? GetMax(List<int> list) { }