in your html
site.less .opacity { opacity: 0.5 }
.corners {
border-radius: 3px;
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| namespace Remoting_Test { | |
| class Program { | |
| static void Main(string[] args) { | |
| AE.Remoting.Settings.Current.RemotingHost = "localhost"; |
| using System; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| using System.Linq; | |
| using System.Reflection; | |
| namespace ConsoleApplication1 { | |
| public class a { | |
| public string testa { get; set; } | |
| public virtual string Who() { |
| using System; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| using System.Linq; | |
| using System.Reflection; | |
| namespace ConsoleApplication1 { | |
| public class Student { | |
| public string Name { get; set; } | |
| } |
in your html
site.less .opacity { opacity: 0.5 }
.corners {
border-radius: 3px;
| //lifted from http://imgscalr.com/public/scripts/main.js | |
| (function (window, document, $, tracky) { | |
| var isEventSupported = (function () { | |
| var TAGNAMES = { | |
| 'select': 'input', | |
| 'change': 'input', | |
| 'submit': 'form', | |
| 'reset': 'form', | |
| 'error': 'img', | |
| 'load': 'img', |
| using System; | |
| using System.CodeDom; | |
| using System.CodeDom.Compiler; | |
| using System.Collections.Concurrent; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Text.RegularExpressions; | |
| using System.Web; | |
| using System.Web.Razor; |
| public class MvcApplication : System.Web.HttpApplication { | |
| void Application_Start() { | |
| MvcMiniProfiler.Data.ProfiledDbProviderFactory.RegisterProviders(); | |
| } | |
| } |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| Version 2, December 2004 | |
| Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE> | |
| Everyone is permitted to copy and distribute verbatim or modified | |
| copies of this license document, and changing it is allowed as long | |
| as the name is changed. | |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
| function combine() { | |
| var ret = '', flags = ''; | |
| [ ].forEach.call(arguments, function (exp) { | |
| exp = exp.toString(); | |
| if (exp[0] !== '/') { | |
| flags = exp; | |
| } else { | |
| ret += exp.substr(1, exp.length - 2); | |
| } |
| using System; | |
| using System.Web; | |
| namespace TestOfMyDreams { | |
| [TestClass] | |
| public class Test { | |
| [TestMethod] | |
| public void TestRequest(){ | |
| using(var app = MyMvcApplication.Create("C:\\path\\to\\project\\")) |