#GIT
- Modificado (modified);
- Preparado (staged/index)
- Consolidado (comitted);
namespace parametros | |
{ | |
public class Options | |
{ | |
public bool Verbose { get; set; } | |
public string Color { get; set; } | |
public string Title { get; set; } |
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
# for examples | |
# If not running interactively, don't do anything | |
case $- in | |
*i*) ;; | |
*) return;; | |
esac |
weeksBetween(date1, date2) { | |
//Get 1 day in milliseconds | |
var one_day = 1000 * 60 * 60 * 24; | |
// Convert both dates to milliseconds | |
var date1_ms = date1.getTime(); | |
var date2_ms = date2.getTime(); | |
// Calculate the difference in milliseconds | |
var difference_ms = date2_ms - date1_ms; |
{"lastUpload":"2019-11-28T22:32:16.822Z","extensionVersion":"v3.4.3"} |
using System; | |
using System.Security.Cryptography; | |
using System.Text; | |
namespace SenhaConsole | |
{ | |
public static class LeituraDeSenha | |
{ | |
public static string LerSenha() | |
{ |
public static string LerSenha() | |
{ | |
StringBuilder pw = new StringBuilder(); | |
bool caracterApagado = false; | |
while (true) | |
{ | |
ConsoleKeyInfo cki = Console.ReadKey(true); | |
if (cki.Key == ConsoleKey.Enter) |
using System; | |
using System.IO.Ports; | |
namespace DesenhoArduino | |
{ | |
class MainClass | |
{ | |
public static void Main(string[] args) | |
{ | |
Console.Clear(); |
using System; | |
using System.IO.Ports; | |
using System.Diagnostics; | |
namespace ComunicacaoArduino | |
{ | |
class MainClass | |
{ | |
public static void Main(string[] args) | |
{ |
using System; | |
using ExtensionMethodsDate; | |
namespace ExtensionMethods | |
{ | |
class MainClass | |
{ | |
public static void Main(string[] args) | |
{ | |
DateTime dataVerificacao; |