I hereby claim:
- I am robertdean on github.
- I am elbeto (https://keybase.io/elbeto) on keybase.
- I have a public key whose fingerprint is 0B15 0EF0 03CB 5BA0 C713 A186 9C78 DE43 9E00 D9D9
To claim this, I am signing this object:
using System; | |
using System.Collections.Generic; | |
using System.Globalization; | |
using System.Linq; | |
using System.Linq.Expressions; | |
namespace BetterFacetedSearchAPI | |
{ | |
class Program | |
{ |
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Linq; | |
using System.Linq.Expressions; | |
using Lucene.Net.Analysis; | |
using Raven.Abstractions.Data; | |
using Raven.Abstractions.Indexing; | |
using Raven.Client; | |
using Raven.Client.Bundles.MoreLikeThis; |
/* ============================================================= | |
* bootstrap-scrollspy.js v2.0.1 | |
* http://twitter.github.com/bootstrap/javascript.html#scrollspy | |
* ============================================================= | |
* Copyright 2012 Twitter, Inc. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* |
using System.Collections.Generic; | |
using System.Web.Mvc; | |
using Raven.Client; | |
using Raven.Client.Embedded; | |
using ServiceStack.Api.Swagger; | |
using ServiceStack.Authentication.OpenId; | |
using ServiceStack.Authentication.RavenDb; | |
using ServiceStack.CacheAccess; | |
using ServiceStack.CacheAccess.Providers; | |
using ServiceStack.Common.Web; |
// Mocked Service | |
angular.module('mock.users', []). | |
factory('UserService', function($q) { | |
var userService = {}; | |
userService.get = function() { | |
return { | |
id: 8888, | |
name: "test user" | |
} |
I hereby claim:
To claim this, I am signing this object:
/** | |
* @author Muhammad FAISAL | |
* @description Controls the display of html contents only during development mode. | |
* @example <button development-only>Some Button</button> | |
*/ | |
// Angular Imports | |
import { Directive, OnInit, ElementRef, isDevMode } from '@angular/core'; | |
// Define class for the Directive |
/** | |
* @author Muhammad Faisal | |
* @description Service for getting data. | |
*/ | |
// Angular Imports | |
import { Injectable } from '@angular/core'; | |
import { HttpErrorResponse } from '@angular/common/http'; | |
import { forkJoin as observableForkJoin, Observable } from 'rxjs'; |
/** | |
* Customized HTML5 local storage class with additional functionality. | |
*/ | |
export class LocalStorage | |
{ | |
// Public Methods | |
// -------------------------------------------------------------------------------------- // | |
/** | |
* Checks if the browser supports local storage. | |
* @returns true if the local storage is supported; false otherwise. |