Skip to content

Instantly share code, notes, and snippets.

@fernandezjose
fernandezjose / SelfSignedCert.md
Created December 7, 2021 23:13 — forked from mrcunninghamz/SelfSignedCert.md
Creating a self signed certificate in a pfx format on a mac.

Create Self Signed Certificate

Introduction

Every now and then I need to create a self signed certificate in azure for something. In my particular case its Azure B2C. I am using a mac so its not simply just running something like

New-SelfSignedCertificate `
    -KeyExportPolicy Exportable `
    -Subject "CN=yourappname.yourtenant.onmicrosoft.com" `
    -KeyAlgorithm RSA `
@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();
using System;
namespace OperadoresImplicitos
{
class Program
{
static void Main(string[] args)
{
Futbolista cristiano = "Cristiano Ronaldo";
cristiano.Goles = 20;
@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)
{
@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 / 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 / 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 / bumpme
Last active September 22, 2016 04:27
Thu Sep 22 04:27:14 UTC 2016