Skip to content

Instantly share code, notes, and snippets.

View gregorypilar's full-sized avatar
🎯
Focusing

Gregory Pilar gregorypilar

🎯
Focusing
View GitHub Profile
@RyannosaurusRex
RyannosaurusRex / Ember in ASP.NET MVC.md
Last active July 8, 2024 04:38
Adding an EmberJS app to an ASP.NET MVC app

How to set up an Ember app inside of an ASP.NET MVC app.

I love Ember. It helps me build fantastic UIs, but security isn't super straightforward and I suck at it. I love ASP.NET MVC. It help me build secure applications and solid APIs, but for some apps I need a great responsive UI with great interaction.

Together, these two technologies can be used together to create really amazing apps (and really quickly, too). So this guide is to show you how to set them up together.

Note: This article assumes you have created a stock new ASP.NET project within Visual Studio and included MVC and WebAPI options. It also assumes you have EMBER CLI installed and have run ember new my-ember-app into a directory in the root of your ASP.NET MVC project.

@P4
P4 / default.reg
Last active April 13, 2024 05:23
Color schemes for Windows Command Prompt
Windows Registry Editor Version 5.00
; Default color scheme
; for Windows command prompt.
; Values stored as 00-BB-GG-RR
[HKEY_CURRENT_USER\Console]
; BLACK DGRAY
"ColorTable00"=dword:00000000
"ColorTable08"=dword:00808080
; BLUE LBLUE
@hodzanassredin
hodzanassredin / APP_Start_BundleConfig.cs
Created August 31, 2012 14:05
asp.net mvc 4 + signalR quick start chat (vs2012)
using System.Web;
using System.Web.Optimization;
namespace Chat
{
public class BundleConfig
{
// For more information on Bundling, visit http://go.microsoft.com/fwlink/?LinkId=254725
public static void RegisterBundles(BundleCollection bundles)
{