This file contains hidden or 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
angular.module('daterangepicker', []); | |
angular.module('daterangepicker').directive('dgDaterangepicker', [function () { | |
'use strict'; | |
return{ | |
restrict: 'A', | |
link: function (scope, elem, attrs) { | |
var options = attrs.options; | |
var parseOptions = function (options) { | |
if (!options) return; |
This file contains hidden or 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 strict'; | |
var path = require('path'); | |
var folderMount = function folderMount(connect, point) { | |
return connect.static(path.resolve(point)); | |
}; | |
module.exports = function (grunt) { | |
// Project configuration. | |
grunt.initConfig({ |
This file contains hidden or 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
angular.module('app', ['jmdobry.angular-cache']).config(function ($angularCacheProvider) { | |
// optionally set cache defaults | |
$angularCacheFactoryProvider.setCacheDefaults({ options... }); | |
}).run(function ($angularCacheFactory) { | |
// Create a cache here, or anywhere else. Just inject $angularCacheFactory | |
var newCache = $angularCacheFactory('newCache', { options... }); |
This file contains hidden or 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
IEnumerable<IEnumerable<int>> GenerateCage(int num, int target, params int[] excluded) | |
{ | |
return GenerateCageInner(num, target, 1, 9, new HashSet<int>(excluded)); | |
} | |
private IEnumerable<IEnumerable<int>> GenerateCageInner(int num, int target, int min, int max, HashSet<int> excluded) | |
{ | |
// Base case | |
if (num == 0) | |
{ |
This file contains hidden or 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
// Ref: http://odetocode.com/Articles/739.aspx | |
// Using LINQ to simplify business rules | |
Employee employee = | |
new Employee { ID = 1, Name = | |
"Poonam", DepartmentID = 1 }; | |
Func<Employee, bool>[] validEmployeeRules = | |
{ | |
e => e.DepartmentID > 0, |
This file contains hidden or 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
// NOTE: Build a url with query params | |
angular.module('app').factory('UrlBuilder', function () { | |
function sortedKeys(obj) { | |
var keys = []; | |
for (var key in obj) { | |
if (obj.hasOwnProperty(key)) { | |
keys.push(key); | |
} | |
} |
This file contains hidden or 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
// Ref: http://stackoverflow.com/questions/3738748/create-an-array-or-list-of-all-dates-between-two-dates | |
void Main() | |
{ | |
var requirements = GetRequirements(); | |
// TODO: Add a margin at the start and end | |
// Get a range of dates | |
var start = requirements.Select (x =>x.DtFm).Min(); | |
var end =requirements.Select (x =>x.DtTo).Max(); | |
var dateRange = Enumerable.Range(0, 1 + end.Subtract(start).Days) |
This file contains hidden or 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
// Format as per flot requirements | |
var flotData = new[] | |
{ | |
new {label = "Quantity Required", data = partAvailability.Select(x => new[] {x.TimeStamp, x.QuantityRequired})}, | |
new {label = "Quantity Available", data = partAvailability.Select(x => new[] {x.TimeStamp, x.QuantityAvailable})} | |
}; | |
// Timestamp created as follows | |
private static long GetJavascriptTimestamp(DateTime date) | |
{ |
This file contains hidden or 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
// Ref: [mythz](https://groups.google.com/forum/#!topic/servicestack/bb95kGpDcEo) | |
using System; | |
using System.Configuration; | |
using System.Data; | |
using System.Data.Common; | |
namespace Clear2Pay.OTS.UTP.Data.Tests | |
{ | |
public class Database : IDisposable | |
{ |
This file contains hidden or 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
using System; | |
using System.Data; | |
using Dapper; | |
using Dapper.Contrib.Extensions; | |
using NUnit.Framework; | |
using ServiceStack.Text; | |
//using Dommel; | |
namespace DataAccess |