Skip to content

Instantly share code, notes, and snippets.

View nescalante's full-sized avatar
🐢

Nicolas Escalante nescalante

🐢
View GitHub Profile
@medmunds
medmunds / knockout-jquery-ui-widget.js
Created March 27, 2011 17:35
Knockout binding for jQuery.ui.widget
// knockout-jquery-ui-widget.js
// Copyright (c) 2011, Planapple, Inc.
// License: MIT (http://www.opensource.org/licenses/mit-license.php)
//
// Knockout binding for jQuery UI widgets
//
// Examples:
// <input type="submit" value="OK" data-bind='jqueryui: "button"' />
//
// Attaches a jQuery UI button widget to this button, with default options.
@nescalante
nescalante / MailerBase.cs
Created March 4, 2013 14:35
Mvc Mail Sender
using System;
using System.Diagnostics;
using System.IO;
using System.Net.Mail;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
public abstract class MailerBase : ControllerBase
{