Skip to content

Instantly share code, notes, and snippets.

View JobaDiniz's full-sized avatar

Joberto Diniz JobaDiniz

View GitHub Profile
@alexandrevicenzi
alexandrevicenzi / HttpClientExtensions.cs
Created February 25, 2014 20:11
C# Post, Put and Patch as JSON async extensions
using System;
using System.Net.Http;
using System.Net.Http.Formatting;
using System.Threading.Tasks;
namespace MyProject.Extensions
{
public static class HttpClientEx
{
public const string MimeJson = "application/json";
@DyegoCosta
DyegoCosta / gist:3624734
Created September 4, 2012 18:37
Adding an arrow to a li element with css
<html>
<header>
<style>
ul.menu {
display: block;
margin: 0 80px;
font-family: 'Segoe UI', Tahoma, Arial, Helvetica, Sans-Serif;
font-size: 15px;
text-align: center;
letter-spacing: -1px;