This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
Author: Dennis Rongo | |
Description: This demonstrates the jQuery deferred object and used when running asynchronous operations (non-AJAX) functions. | |
Each function returns a 'promise' object that notifies the subscriber when the operation has completed. | |
*/ | |
$(function(){ | |
/** Create a long operation */ | |
var loadQueue = function() { | |
var dfrQueue = new $.Deferred(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var President = Backbone.Model.extend({}); | |
var m = new President({first: 'Abraham', last: 'Lincoln', age: 90, registered: true}); | |
m.set({first: null}); | |
/** Loop through each property and unset if invalid. Also check if property if boolean type. */ | |
_.each(m.toJSON(), function(val, col){ | |
if (typeof val !=='boolean' && !val) { | |
m.unset(col); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** Global override to make all AJAX calls as POST type */ | |
Backbone.ajax = function() { | |
var args = Array.prototype.slice.call(arguments, 0); | |
return Backbone.$.ajax.apply(Backbone.$, _.extend(args, {type: 'POST'})); | |
}; | |
/** Manual override per call */ | |
Collection.fetch({data: {id: 34}, type: 'POST'}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Author: Dennis Rongo | |
# Date: 03.12.2013 | |
# Description: Thie script converts a Markdown (*.md) file to HTML within the same directory. | |
# This requires Pandoc (http://johnmacfarlane.net/pandoc/) to do the conversion. | |
import sys | |
import getopt | |
import subprocess | |
def process(arg): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Original idea: http://stackoverflow.com/questions/9565889/get-the-ip-address-of-the-remote-host | |
using System.Net.Http; | |
using System.ServiceModel.Channels; | |
using System.Web; | |
namespace CrowSoftware.Api | |
{ | |
public static class HttpRequestMessageHelper | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@section scripts { | |
<script> | |
var app = window.app = {}; | |
app.userTypes = @Html.Raw(Json.Encode(Model.GetUserTypes())); | |
</script> | |
<script src="~/Scripts/angular.min.js"></script> | |
<script src="~/Scripts/angular-resource.min.js"></script> | |
<script src="~/Scripts/underscore.min.js"></script> | |
<script src="~/Scripts/angular/main.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HttpFileCollection uploadFiles = Request.Files; | |
// Build HTML listing the files received. | |
string summary = "<p>Files Uploaded:</p><ol>"; | |
// Loop over the uploaded files and save to disk. | |
int i; | |
for (i = 0; i < uploadFiles.Count; i++) | |
{ | |
HttpPostedFile postedFile = uploadFiles[i]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@model ViewModels.IProjectViewModel | |
@{ | |
var projects = Model.GetProjects(Model.ProjectModel.Id); | |
ViewBag.Title = "All Projects View"; | |
} | |
@section scripts { | |
<script> | |
$(function () { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ALTER PROCEDURE [dbo].[usp_SaveSearch] | |
@userId INT, | |
@searchId INT = 0, | |
@searchName VARCHAR(250) = '', | |
@searchCriteria dbo.TvpItem readonly | |
AS | |
BEGIN | |
SET NOCOUNT ON; | |
IF (@searchID = 0) |