Sitecore Rocks - preview the future of Sitecore development - 2 views
-
A new tool called Sitecore Rocks has been released in a CTP (Community Technology Preview) version - a early sneak peek. The tool, although a little rough around the edges, really shows a bright new future for Sitecore development, a future where we as developers do not need to muck about with browsers interfaces, only to connect our code, .NET pages and user controls into Sitecore. Now we can stay within in the tool we use and like, Visual Studio.
NuPack - 0 views
Agile Carousel - Javascript Slideshow - Image Carousel - 0 views
-
Implement your slideshow with the Agile Carousel JQuery plugin. Highly customizable so you can build according to your requirements. JSON data format is used to provide easier integration with external data or data from your CMS. Use it for agile web development. This is an all new version written from scratch. JQuery UI effects and the ability to read files on the server are no longer included. New features are added, such as "Control Sets" which allow for a more customizable setup. Now posted on Github for faster development.
SimpleModal - 0 views
-
SimpleModal is a lightweight jQuery Plugin which provides a powerful interface for modal dialog development. Think of it as a modal dialog framework. SimpleModal gives you the flexibility to build whatever you can envision, while shielding you from related cross-browser issues inherent with UI development.
How To Estimate Software Tasks - 0 views
-
Good article on estimating dev tasks: - Let developers estimate their own work - Design first, and in detail - Break things down to very small tasks - Track actual times and learn from your mistakes - Account for vacations, holidays, meetings, etc. - Add schedule items - Ignore business needs (and your manager) - Learn more
Vitamin - 0 views
Web Design+ - 0 views
The Best Cheat Sheets for Web Developers - 0 views
10 Dirty Little Web Development Tricks - 0 views
Team Development for Sitecore - 1 views
Gaia Framework for Adobe Flash - 1 views
QUnit - 0 views
James Jardine : Developer Notes - 0 views
-
"Cross Site Request Forgery (CSRF) This article assumes you already understand what CSRF is and how it works. If you don't, do a quick Google search and it will clear it up. CSRF can be done using POST or GET, but GET is much easier to implement. By default, ASP.Net forms and other functionality work via the POST method. If we could submit a GET instead of a POST it would open up the attack surface a great deal. No longer do we need someone to visit a page with a form on it, but we could actually embed the GET request (a link) in emails or other medium. Fortunately for the attacker, unfortunately for the developer, .Net uses Value Shadowing for its controls. This means all server side controls, ie. Viewstate, EventValidation, EventCommand, EventArguments, etc.. It is possible to take the values that would be submitted as part of the form and just add them to the Querystring instead. Now there is a GET request that is comparable to the POST request. ASP.Net Webforms does not check whether a post back comes from GET or POST. The one thing to keep in mind is that the URL in a GET is limited in size. If the form is large and the viewstate is very large, this could block this technique from working. This depends on the way the application is configured (more later)."