This file contains 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
# HTTP Error 404.17 - Not Found, The requested content appears to be script and will not be served by the static file handler -> http://www.byteblocks.com/post/2010/03/25/HTTP-Error-40417-Not-Found.aspx |
This file contains 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
[asp.net mvc] turn string parameters into int parameters -> http://haacked.com/archive/2010/02/21/manipulating-action-method-parameters.aspx | |
[jenkins hudson] download plugins hpi - http://hudson-ci.org/downloads/plugins/ | |
[url viewstate decoder] http://meyerweb.com/eric/tools/dencoder/ - http://ignatu.co.uk/ViewStateDecoder.aspx |
This file contains 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
- ClassViewContextmenus.ClassViewMultiselectProjectreferencesItems.Pr | |
- EditorContextMenus.CodeWindow.SendToIn | |
+ Resharper_quickfix | |
- Tools.RecordtemporaryMacro | |
+ Resharper_refactorthis | |
+ Resharper_genera |
This file contains 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
Properties > Configuration > Application Configuration > Insert > c:\windows\microsoft.net\framework\v4.0.30319\aspnet_isapi.dll |
This file contains 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
http://www.google.com/recaptcha/api/verify?privatekey=6LfKzNQSAAAAAClv9b2dO2Zjj9y79fExEu0ZLDBq&remoteip=127.0.0.1&challenge=03AHJ_Vuu2k8RYNjyHgLDEe5giky-QFvwbHEZ-UkAMbcjIBtacBtdUH-LPLHgVNZ36eFbsmGcjRv3UCQPkRx1wW0TCxfzs_yRrRsXq-fUAZL8i9tVc3TrQEmIMOhcbjCRVL34-_BaGOBPq&response= | |
https://www.google.com/recaptcha/api/noscript?k=6LfKzNQSAAAAAAFUYonBKor9an_P7z-vIvwgaplt |
This file contains 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
http://blog.techcle.com/2010/03/20/simple-oauth-integration-for-twitter-in-asp-net-mvc/ | |
http://www.giantflyingsaucer.com/blog/?p=2074 | |
http://www.datasprings.com/resources/articles-information/twitter-w-asp.net-example-code | |
http://www.diplo.co.uk/blog/2010/8/9/oauth-with-twitter.aspx | |
https://github.com/Twitterizer/Twitterizer | |
https://dev.twitter.com/docs/open-source-examples | |
http://www.voiceoftech.com/swhitley/index.php/2009/03/twitter-oauth-with-net/ | |
http://garyshortblog.wordpress.com/2011/02/11/a-twitter-oauth-example-in-c/ |
This file contains 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
# wcf 3.5 webhost @ vs2008 | |
msbuild project.csproj /t:ResolveReferences;_CopyWebApplication /p:Configuration=Release;BuildingProject=true;OutDir=C:\lfreneda\ |
This file contains 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
#!/bin/sh | |
# | |
# An example hook script for the "post-receive" event. | |
# | |
# The "post-receive" script is run after receive-pack has accepted a pack | |
# and the repository has been updated. It is passed arguments in through | |
# stdin in the form | |
# <oldrev> <newrev> <refname> | |
# For example: | |
# aa453216d1b3e49e7f6f98441fa56946ddcd6a20 68f7abf4e6f922807889f52bc043ecd31b79f814 refs/heads/master |
This file contains 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; | |
namespace NerdLove | |
{ | |
public class Program | |
{ | |
public static void Main(string[] args) | |
{ | |
Love love = new Love(); | |
You you = love; |
This file contains 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 SimpleControllerTests { | |
public void EnsureActionViewName<TController>(Func<TController, ActionResult> executeAction, string viewNameExpected) | |
where TController : Controller { | |
var controller = Activator.CreateInstance<TController>(); | |
var viewResult = executeAction.Invoke(controller) as ViewResultBase; | |
AssertViewName(viewNameExpected, viewResult); | |
} |
OlderNewer