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.Collections.Generic; | |
| using System.Linq; | |
| using System.Net.Http; | |
| using System.Threading.Tasks; | |
| using System.Xml.Linq; | |
| namespace ConsoleApplication1 | |
| { | |
| public class SearchSuggestionsAPI |
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
| <toplevel> | |
| <CompleteSuggestion> | |
| <suggestion data="mountain bikes"/> | |
| </CompleteSuggestion> | |
| <CompleteSuggestion> | |
| <suggestion data="mountain bike parts"/> | |
| </CompleteSuggestion> | |
| <CompleteSuggestion> | |
| <suggestion data="mountain bike sizing"/> | |
| </CompleteSuggestion> |
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
| IHubContext hubContext = GlobalHost.ConnectionManager.GetHubContext<GeoFeedHub>(); | |
| hubContext.Clients.All.addTweetToMap(status); |
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
| (function () { | |
| Backbone.ChangeAwareModel = Backbone.Model.extend({ | |
| initialize: function () { | |
| Backbone.Model.prototype.initialize.apply(this, arguments); | |
| _.bindAll(this, "mark_to_revert", "revert"); | |
| this.attributesChanged = []; |
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
| // | |
| // Copyright (c) 2013 Parse. All rights reserved. | |
| #import "AppDelegate.h" | |
| #import <Parse/Parse.h> | |
| #import "LoginViewController.h" | |
| #import "UserDetailsViewController.h" | |
| @implementation AppDelegate |
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
| <!--[if lt IE 9]> | |
| <script src="http://code.jquery.com/jquery-1.9.1.js"></script> | |
| <![endif]--> | |
| <!--[if gte IE 9]><!--> | |
| <script src="http://code.jquery.com/jquery-2.0.0.min.js"></script> | |
| <!--<![endif]--> |
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
| (function () { | |
| MyApp.AlertView = Backbone.View.extend({ | |
| tagName: "div", | |
| className: "alert fade", | |
| template: ["<a href=\"#\" data-dismiss=\"alert\" class=\"close\">×</a>", "<strong>{{ title }}</strong>", "{{ message }}"].join("\n"), |
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
| 2013-01-27 10:11:26.113 iOS-logging-experiments[24010:c07] -[BPViewController logContextButtonPressed:]:31 someObject=( | |
| ) | |
| 2013-01-27 10:11:26.115 iOS-logging-experiments[24010:c07] -[BPViewController logContextButtonPressed:]:34 someObject=( | |
| foo | |
| ) | |
| 2013-01-27 10:11:26.116 iOS-logging-experiments[24010:c07] -[BPViewController logContextButtonPressed:]:36 someObject=( | |
| foo | |
| ) | |
| 2013-01-27 10:11:26.138 iOS-logging-experiments[24010:c07] ( | |
| 0 iOS-logging-experiments 0x000021ee -[BPViewController logContextButtonPressed:] + 302 |
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.Net; | |
| using System.Web.Mvc; | |
| namespace MyApp.Web.PresentationLogic.ActionFilters | |
| { | |
| public class HandleAjaxErrorAttribute : HandleErrorAttribute | |
| { | |
| public override void OnException(ExceptionContext filterContext) | |
| { | |
| if (!filterContext.RequestContext.HttpContext.Request.IsAjaxRequest()) |
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
| tr.countersink.top td { | |
| -webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125); | |
| -moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125); | |
| box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125); | |
| } | |
| tr.countersink td { | |
| background-color: #F7F7F7; | |
| -webkit-box-shadow: inset 0 0px 5px rgba(0, 0, 0, 0.125); | |
| -moz-box-shadow: inset 0 0px 5px rgba(0, 0, 0, 0.125); |