CVertex

Stories kicked by friends of CVertex

What’s Nu in the .NET World Part 2: Creating a Gem(dannydouglass.com)

submitted by DannyDouglassDannyDouglass(1260) 1 year, 9 months ago

If you are not familiar with the Nu project start by reading my first post in this series that gives an introduction to getting started with this promising tool. As a quick reference I’ll post a paragraph from the last post introducing Nu: “Nu is an open source tool built by Dru Sellers (and several others) that aims at bringing Gems, one of Ruby’s most revered features, to the .NET world. If you are not familiar with Gems I suggest you take a minute to read up on them. I would venture a bet that you are already familiar with at least one gem – Ruby on Rails. The following line of code is all that is required to install the Ruby on Rails gem (after installing the Ruby library of course)…” This post is focused on sharing my experience in creating my first gem for the Spark View Engine. I would be doing you a great disservice if I did not start by saying how easy it is to create a gem. Actually easy is the wrong phrase – crazy easy is more telling. Since I would never ask you to take my word for it, it must mean it is time to show some code. read more...

add a comment |category: |Views: 10

tags: another

Mercurial: Create Remote Repositories Using PowerShell(dannydouglass.com)

submitted by DannyDouglassDannyDouglass(1260) 1 year, 9 months ago

One limitation when using http as a publishing mechanism is that you cannot create a repository remotely; no if, ands, or buts about it. Another twist was that our CM (Configuration Management) procedures dictate that our developers are not permitted to RDP into the Mercurial server. This left us trying to decide how to allow developers to create repositories remotely since our http communication channel does not allow remote repository creation. This post details an approach leveraging PowerShell as a solution to this problem. read more...

add a comment |category: |Views: 20

tags: another

How Fanboys See .NET ORMs(www.kevinwilliampang.com)

submitted by kpanghmckpanghmc(2055) 2 years, 4 months ago

A play off of the recent "How Fanboys See Operating Systems" post. read more...

4 comments |category: |Views: 717

tags: another

jQuery 1.4 Released!(jquery14.com)

submitted by powerrushpowerrush(3873) 2 years, 4 months ago

In celebration of jQuery’s 4th birthday, the jQuery team is pleased to release the latest major release of the jQuery JavaScript library! A lot of coding, testing, and documenting has gone into this release, and we’re really quite proud of it. read more...

4 comments |category: |Views: 494

tags: another

ASP.NET MVC 2 Preview 2 Released(haacked.com)

submitted by TroyMGTroyMG(2670) 2 years, 7 months ago

Today we just released ASP.NET MVC 2 Preview 2 for Visual Studio 2008 SP1 (and ASP.NET 3.5 SP1), which builds on top of the work we did in Preview 1 released two months ago. Some of the cool new features we’ve added to Preview 2 include... read more...

add a comment |category: |Views: 438

tags: another

Automating .NET and NHibernate Development With IronRuby + Rake (tobinharris.com)

submitted by tobinharristobinharris(425) 2 years, 9 months ago

Using IronRuby to automate .NET development tasks. read more...

add a comment |category: |Views: 227

tags: another

Spearmen, Javelin Throwers, and the State Pattern, oh my!(squaredroot.com)

submitted by TroyMGTroyMG(2670) 2 years, 9 months ago

Jamie Farser & Ayende Rahein recently had a conversation about using the State Pattern for units in a game Jamie is building. I've been following along trying to figure my way through the state pattern as well, and decided to take a stab at my own solution to Jamie's problem. read more...

add a comment |category: |Views: 11

tags: another

Asp.Net MVC Membership Starter Kit Released(squaredroot.com)

submitted by TroyMGTroyMG(2670) 2 years, 9 months ago

Almost six months after the official release of Asp.Net MVC 1.0 and nearly a year after the last release of the starter kit, I've finally rewritten and released the Asp.Net MVC Membership Starter Kit. read more...

add a comment |category: |Views: 695

tags: another

Combining Assemblies Using ILMerge(blackwasp.co.uk)

submitted by BlackWaspBlackWasp(4212) 2 years, 10 months ago

When creating solutions that include multiple projects, Visual Studio creates an assembly for each project. This can lead to libraries that are complicated to use, needing many references. Using ILMerge, the assemblies can be combined into a single file. read more...

add a comment |category: |Views: 228

tags: another

Windows Azure Commercial Availability and Announcing Business Model(blogs.msdn.com)

submitted by superghostsuperghost(2260) 2 years, 10 months ago

Today, during the Microsoft Worldwide Partner Conference 2009 we announced the business and partner model for the Windows Azure platform including service level agreements and support programs. read more...

add a comment |category: |Views: 14

tags: another

Creating an MVC Project in Visual Studio 2010(squaredroot.com)

submitted by TroyMGTroyMG(2670) 2 years, 11 months ago

Earlier today Phil Haack announced that the Asp.Net MVC installer for Visual Studio 2010 Beta 1 is now available on CodePlex along with the bonus of some basic snippets for use with MVC projects. This is exactly what I have been waiting for before installing Visual Studio 2010, so I decided to give it a shot and report back on my experience. I’m happy to say that the basic experience went flawlessly for me, though it appears that may not hold true for everyone. read more...

add a comment |category: |Views: 15

tags: another

Return of the PagedList<T>(squaredroot.com)

submitted by TroyMGTroyMG(2670) 2 years, 11 months ago

It has been nearly a year since I posted an updated version of the PagedList<T> functionality originally created by Scott Guthrie and posted by Rob Conery. Since then I have used the class in a number of projects and find it indispensable. A few days ago, Craig Stuntz reported an interesting observation: when the first page is returned, the class performs a Skip(0). Suprisingly, this is not free. With that in mind, I set out to correct that issue as well as incorporate a few changes I’ve made over the past year. The result is nearly identical to the last posted version, just a bit more readable. read more...

add a comment |category: |Views: 208

tags: another

How to improve the performances of ASP.NET MVC web applications(codeclimber.net.nz)

submitted by simonechsimonech(10.1k) 3 years, 1 month ago

Today I stumbled upon a nice presentation that Rudi Benkovic gave last week at the Slovenian DotNet User Group, about ASP.NET MVC Performances. It is an in depth analysis of a Digg-like site and how it went from serving (on a test machine) 6 req/sec to 390 req/sec. The analysis prove the usual rule of performance optimization: no matter what you do to optimize your code, the biggest performance hit is data retrieval, and the first thing you have to optimize is always this. But apart from this obvious outcome, I just want to take out from this presentation the 3 point that are really specific to ASP.NET MVC read more...

add a comment |category: |Views: 318

tags: another

Fluent ADO.NET (there's actually a good reason for it!)(elegantcode.com)

submitted by just3wsjust3ws(560) 3 years, 1 month ago

More DAL silliness, but for a good reason. The author was restricted from using an ORM by his client so he came up with a cool way to make his life a little easier. Pretty cool. Scratch that itch! read more...

add a comment |category: |Views: 556

tags: another

Using complex types to make calling services less... complex(encosia.com)

submitted by gt1329agt1329a(7849) 3 years, 1 month ago

A detailed examination of how jQuery can call ASP.NET AJAX web services (or page methods) with complex types as parameters, to simplify the process of serializing and sending several fields of data at a time. read more...

1 comment |category: |Views: 218

tags: another

ASP.NET - YSlow and ASP.NET: 100 points "A" grade is possible(karpach.com)

submitted by karpach96karpach96(265) 3 years, 2 months ago

Just in case if somebody doesn’t know what YSlow is? YSlow is Firefox add-on integrated with Firebug. It analyzes web pages and tells you why they are slow. You can run it on you project and see your grade. You can do some easy improvements and maybe even get D grade. However to get higher then D grade becomes a real challenge. Below I will describe how I got A grade (100 points) on my web blog application. read more...

3 comments |category: |Views: 636

tags: another