- Can you detail your common development workflow from beginning to end?
- What types of things do you consider when trying to build a cross-browser web solution?
- What do you do when you don't know how to do something?
- How do you continue to learn and sharpen your skills in light of how quickly things change?
- What is an exciting project that you've worked on recently?
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 Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
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
| var urlToParse = location.parse.search; | |
| var result = parseQueryString(urlToParse ); | |
| console.info(JSON.stringify(result)); |
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.ComponentModel.DataAnnotations; | |
| using System.Linq; | |
| using System.Linq.Expressions; | |
| using System.Reflection; | |
| namespace System.Data.Entity | |
| { | |
| internal static class DbSeeder | |
| { |
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; | |
| using System.Collections.Generic; | |
| using System.ComponentModel.DataAnnotations; | |
| using System.Data.Entity; | |
| using System.Data.Entity.Infrastructure; | |
| using System.Data.Entity.SqlServer; | |
| using System.Linq; | |
| using System.Linq.Expressions; | |
| using System.Reflection; |
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.Collections.Generic; | |
| using System.Threading; | |
| namespace Utilities | |
| { | |
| /// <summary> | |
| /// Synchronized queue which blocks on dequeue. | |
| /// </summary> | |
| /// <typeparam name="T"></typeparam> | |
| public sealed class SynchronizedQueue<T> |
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
| // We start our app | |
| var myApp = angular.module("myApp", []); | |
| myApp.provider('connection', function Connection() { | |
| var connection = $.connection, | |
| reconnectDelay = 1500, | |
| maxReconnectDelay = 60000; | |
| // allows you to set logging on before the connection runs | |
| this.showLogging = function () { |
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.Threading; | |
| using Topshelf; | |
| namespace ConsoleApplication | |
| { | |
| public interface IProcess | |
| { | |
| void Perform(); |
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
| public class RavenDBRegistry:Registry | |
| { | |
| public RavenDBRegistry() | |
| { | |
| var documentStore = new EmbeddableDocumentStore | |
| { | |
| RunInMemory = true | |
| }.Initialize(); | |
| For<IDocumentSession>().Use(() => documentStore.OpenSession()); |
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
| <configuration> | |
| //...... | |
| //...... | |
| <system.web> | |
| <httpHandlers> | |
| <add path="*.js" verb="GET,HEAD" type="System.Web.StaticFileHandler" /> | |
| <add path="*.css" verb="GET,HEAD" type="System.Web.StaticFileHandler" /> | |
| <add path="*" verb="*.cshtml" type="System.Web.HttpNotFoundHandler"/> |