Following the guidelines provided in Sign-In Branding Guidelines.
Credits to Tim Layton - available on Codepen.
Remember to include Roboto font.
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">| using System; | |
| using System.Data.SqlClient; | |
| using System.Threading; | |
| namespace Treinamento.Banco.Console | |
| { | |
| public static class Usuario | |
| { | |
| public static readonly string Id = "Id"; | |
| public static readonly string Nome = "Nome"; |
| git rm -r --cached node_modules | |
| git commit -m 'Remove the now ignored directory node_modules' | |
| git push origin master |
| public enum Nivel | |
| { | |
| Facil, | |
| Medio, | |
| Dificil | |
| } | |
| public class JogoAdivinhaNumero | |
| { | |
| public const int ValorMaximoNivelFacil = 10; |
| CREATE TABLE #SOURCE ( | |
| SOURCE_FIELD VARCHAR(30) NOT NULL | |
| ) | |
| CREATE TABLE #TARGET ( | |
| TARGET_FIELD VARCHAR(30) NOT NULL | |
| ) | |
| INSERT INTO #SOURCE VALUES ('Apple'), ('Strawberry'), ('Orange'), ('Kiwi') | |
| INSERT INTO #TARGET VALUES ('Apple'), ('Orange') |
| using System; | |
| using System.Collections; | |
| using System.Text.RegularExpressions; | |
| public class Program | |
| { | |
| public static void Main() | |
| { | |
| var email = "abnerfcastro@gmail.com"; | |
| if (email.IsValidEmailAddress()) |
| using System; | |
| public class Program | |
| { | |
| public static void Main() | |
| { | |
| Console.WriteLine(Sum(1, 2, 3, 4, 5)); | |
| Console.WriteLine(SumWithoutParams(new int[] {1, 2, 3, 4, 5})); | |
| } | |
| using System; | |
| namespace Delegates | |
| { | |
| public class PriceChangedEventArgs : EventArgs | |
| { | |
| public readonly decimal LastPrice; | |
| public readonly decimal NewPrice; | |
| public PriceChangedEventArgs(decimal lastPrice, decimal newPrice) |
| const express = require('express'); | |
| const app = express(); | |
| const _ = require('lodash'); | |
| const HttpErrors = require('./http-errors'); | |
| const users = [{ | |
| id: 1, | |
| name: 'John Snow' | |
| }, { |