Skip to content

Instantly share code, notes, and snippets.

@fernandezjose
fernandezjose / dotnetlayout.md
Created September 13, 2016 20:13 — forked from davidfowl/dotnetlayout.md
.NET project structure
$/
  docs/
  src/
  tests/
  samples/
  artifacts/
  packages/
  build/
 lib/
@fernandezjose
fernandezjose / bumpme
Last active September 22, 2016 04:27
Thu Sep 22 04:27:14 UTC 2016
@fernandezjose
fernandezjose / README-Template.md
Created October 13, 2016 18:03 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisities

@fernandezjose
fernandezjose / README-Template.md
Created October 13, 2016 18:03 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisities

@fernandezjose
fernandezjose / README.md
Created October 13, 2016 18:03 — forked from zenorocha/README.md
A template for Github READMEs (Markdown) + Sublime Snippet

Project Name

TODO: Write a project description

Installation

TODO: Describe the installation process

Usage

@fernandezjose
fernandezjose / README.md
Created October 13, 2016 18:03 — forked from zenorocha/README.md
A template for Github READMEs (Markdown) + Sublime Snippet

Project Name

TODO: Write a project description

Installation

TODO: Describe the installation process

Usage

@fernandezjose
fernandezjose / Toppings.cs
Last active July 1, 2017 03:05
Exercise for Olo
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json;
namespace Inteview_Exercise_Toppings
{
@fernandezjose
fernandezjose / OrderSummary.cs
Last active July 17, 2017 14:43
Refactoring exercise for Olo
using System;
using System.Collections.Generic;
using System.Text;
namespace Refactoring
{
class Program
{
static void Main(string[] args)
{
using System;
namespace OperadoresImplicitos
{
class Program
{
static void Main(string[] args)
{
Futbolista cristiano = "Cristiano Ronaldo";
cristiano.Goles = 20;
@fernandezjose
fernandezjose / adapter-pattern.cs
Created January 8, 2018 02:07
Adapter-pattern
using System;
using System.Net.Http;
namespace Vlao
{
class Program
{
static void Main(string[] args)
{
ICourierService courierDhl = new DHLWebServiceAdapter();