Skip to content

Instantly share code, notes, and snippets.

View keith9820's full-sized avatar

Keith Harris keith9820

  • automotiveMastermind
  • San Francisco, CA
View GitHub Profile

Keybase proof

I hereby claim:

  • I am keith9820 on github.
  • I am keith9820 (https://keybase.io/keith9820) on keybase.
  • I have a public key whose fingerprint is B3FA 1E49 7F13 552D F7E9 6AAF 8EAE 8193 F573 7C3C

To claim this, I am signing this object:

@keith9820
keith9820 / .gitignore.curl
Last active August 16, 2016 21:00
Fetch .gitignore file
curl curl -L https://gist.githubusercontent.com/keith9820/969e98649155c07b083ace6cd004c729/raw/996e638a881a4be4c79c0e1920797a44f71f572c/.gitignore > .gitignore
-or-
Invoke-RestMethod -Uri https://gist.githubusercontent.com/keith9820/969e98649155c07b083ace6cd004c729/raw/996e638a881a4be4c79c0e1920797a44f71f572c/.gitignore | Out-File -Encoding ascii .gitignore
@mrichman
mrichman / EdmxDecoder.cs
Created January 14, 2015 16:48
EDMX Decoder - Entity Framework 6 Serialized Model Data
using System;
using System.IO;
using System.IO.Compression;
using System.Text;
namespace EdmxDecoder
{
internal class Program
{
private static void Main(string[] args)
@keith9820
keith9820 / RepoCache.cs
Last active December 24, 2015 05:49
C# caching object
using System;
using System.Runtime.Caching;
namespace Application.Caching
{
public static class RepoCache
{
static ObjectCache cache = MemoryCache.Default;
public static bool UseCache
@jasonrudolph
jasonrudolph / 00-about-search-api-examples.md
Last active April 30, 2024 19:21
5 entertaining things you can find with the GitHub Search API
@btoone
btoone / curl.md
Last active June 29, 2024 16:01
A curl tutorial using GitHub's API

Introduction

An introduction to curl using GitHub's API.

The Basics

Makes a basic GET request to the specifed URI

curl https://api.github.com/users/caspyin
# This File is maintained on GITHUB
# Please edit only at http://gist.github.com/73344
# Setup File at wget http://gist.github.com/raw/73344/.rcsetup
# Shree Mandadi..
# RVM Aliases
alias ruby='rvm ruby'
alias rake='rvm rake'
alias gem='rvm gem'