Skip to content

Instantly share code, notes, and snippets.

View agaldino's full-sized avatar
🦖

André Galdino agaldino

🦖
View GitHub Profile
@mvrmoreira
mvrmoreira / DbSetMock.cs
Last active August 29, 2015 14:20
DbSetMock
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Data.Entity;
using System.Linq;
using System.Linq.Expressions;
namespace Billing.Tests.Models
{
public class DbSetMock<T> : DbSet<T>, IQueryable, IEnumerable<T>
@imjasonh
imjasonh / markdown.css
Last active January 3, 2025 20:15
Render Markdown as unrendered Markdown (see http://jsbin.com/huwosomawo)
* {
font-size: 12pt;
font-family: monospace;
font-weight: normal;
font-style: normal;
text-decoration: none;
color: black;
cursor: default;
}