Always up for cheating, so when I came across a website dedicated to cheat sheets I was over the moon. http://www.addedbytes.com/
The one I am using the most has to be RegEx as I am now finally getting to grips with the syntax and expressions.
Always up for cheating, so when I came across a website dedicated to cheat sheets I was over the moon. http://www.addedbytes.com/
The one I am using the most has to be RegEx as I am now finally getting to grips with the syntax and expressions.
After finding Screen Toaster some three years ago now, I found out the other month that the website has been pulled, it’s a shame as this was such a useful tool.
But today I found Screen-O-Matic a small java application, like Screen Toaster, that just works.
You don’t even need an account, and if you want to go Pro it’s only $12 a year. Lets hope that this model is sustainable and long lasting.
I’ve been pushing Balsamiq Mockups for a number of years, it was on my toy list for 2009.
Once you have a mock up of your wireframe and the customer is happy with the look, the next stage is to convert it to HTML, previously I have prefered to pass this to a designer to make it look pretty. But the problem you’ll have with making something look nice is that the customer will think it is DONE and you just don’t want that to happen.
I came across a Balsamiq Mockup to HTML/CSS converter this morning from NedeCo it just does the job and generates a simple and easy to follow HTML and CSS.
This is a perfect starting point for your application and you’ll be able to get your business and architecture up and working before the customer gets any expectitions of a DONE project.
Have you tried to upgrade an MVC 2.0 application to MVC 3.0, it’s not easy as you need to change a lot of configuration.
Well Eilon Lipton has a codeplex project to make life easier ASP.NET MVC 3 Application Upgrader. This is a standalone application that takes the troubles away for you and delivers an MVC 3.0 application
Razor
c# code
@Html.ActionLink(“Edit”, Edit”, new {id=item.ID})
implicit code
@items
Code block
@{
Html.ActionLink(“Edit”, Edit”, new {id=item.ID})
}
Displaying text inside a code block
<Text>Review</Text>
Explicit expression using brackets
@(item.Rating)
This is an email address
K@item.Rating
if you use an explicit expression you’ll display the values
K@(item.Rating)
If you want
@OdeToCode
you can ESC by using
@@OdeToCode
I came across some nice C# samples from Microsoft today providing everything from Hello World, to how to use Yield and how to program Attributes.
Official Visual Studio 2010 Samples for C# 4.0
Worth having a look at if you are a beginner or a seasoned programmer.
The C# 4.0-specific samples are called:
Here is the complete list of language samples:
These samples help you learn LINQ quickly. They also act as a reference and guide for those with existing LINQ experience. A few handy utilities are also included. They are available in the LinqSamples folder.
One great feature about the Mac is the way the mouse movement is active on a window without the need to click on the window. This is called XWindows mode.
Well I have just found out you can do this in Windows too:
To turn this setting on, just type “mouse works” into the search box in the Control Panel, and you should see an item called “Change how your mouse works”.
In this screen, scroll down and find the checkbox for “Activate a window by hovering over it with the mouse”.
Now life becomes easier.
I came across this nice little MVC routing checker by Phil Haacket
http://haacked.com/archive/2008/03/13/url-routing-debugger/
Simple to use just add
RouteDebug.RouteDebugger.RewriteRoutesForTesting(RouteTable.Routes);
in to the Application_Start of your Global.asax and it does all the reporting on all your Routings