Skip to content

Instantly share code, notes, and snippets.

View jeffwindsor's full-sized avatar

Jeff Windsor jeffwindsor

View GitHub Profile
@jeffwindsor
jeffwindsor / setup-mbp15.sh
Created September 18, 2021 05:38
MacbookPro15-Setup-Script
#!/usr/bin/env bash
cd "$(dirname "${0}")"
##########################################################
install() {
if brew list $1 &> /dev/null; then
echo "==> "$1" [installed]"
else
echo "==> "$1
brew install $1

Keybase proof

I hereby claim:

  • I am jeffwindsor on github.
  • I am jeffwindsor (https://keybase.io/jeffwindsor) on keybase.
  • I have a public key whose fingerprint is 57A6 6AF2 678A 47D2 E368 9F35 3711 52A5 E858 62F1

To claim this, I am signing this object:

@jeffwindsor
jeffwindsor / CsvFileResult.cs
Created December 22, 2011 03:21
Reflection based MVC Csv File Result for use with lists of models or dtos
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
namespace System.Web.Mvc
{
/// <summary>
/// Reflection Based CSV File Result