hatchling_nz

Stories kicked by hatchling_nz

A Serious Challenge for Open Source?(chriscyvas.wordpress.com)

submitted by ccyvasccyvas(635) 3 years, 9 months ago

. . . what Mindscape has done is really quite impressive. To evaluate, accept, and incorporate feedback that quickly into the product and to have the installer ready that afternoon is impressive – for anyone. read more...

13 comments |category: |Views: 674

tags: another

Free Visual Studio File Explorer Add-in(mindscape.co.nz)

submitted by AndrewPetersAndrewPeters(1170) 3 years, 9 months ago

The Visual Studio File Explorer Add-in (sexy name we know, but hey, it’s self documenting) is a free Tool Window add-in for VS 2008 that provides a Windows Explorer style file system view. It’s particularly useful for performing routine file system tasks without the need to “context switch” away from Visual Studio, which can be time-consuming over the course of days and weeks. It is shell-enabled so extensions like TortoiseSVN work too. read more...

add a comment |category: |Views: 638

tags: another

Elegant Invariant Checking with C# 3 (andrewpeters.net)

submitted by AndrewPetersAndrewPeters(1170) 3 years, 9 months ago

Leveraging expression trees and extension methods to build a fluent invariant checking API. read more...

add a comment |category: |Views: 437

tags: another

When to use LINQ?(mindscape.co.nz)

submitted by AndrewPetersAndrewPeters(1170) 3 years, 11 months ago

Great, in-depth discussion of when it makes to sense to use LINQ in LightSpeed 2.0. read more...

add a comment |category: |Views: 356

tags: another

Introducing LINQ to LightSpeed(mindscape.co.nz)

submitted by turtlespinturtlespin(634) 3 years, 11 months ago

LightSpeed 2 incorporates LINQ (Language Integrated Query) support. LINQ to LightSpeed means that if you know LINQ, you can get these benefits without having to learn a new API. You can continue to write LINQ queries as if against LINQ to SQL or another LINQ provider, but you’ll get database independence (effectively LightSpeed gives you LINQ to Oracle, LINQ to MySQL, LINQ to PostgreSQL and LINQ to SQLite as well as LINQ to SQL Server, all in the one box), advanced eager loading functionality (avoiding the so-called “n+1” problem which affects some LINQ implementations) and of course the blazingly fast LightSpeed query engine. read more...

add a comment |category: |Views: 203

tags: another

"Velocity" project - memcached by Microsoft?(blog.bluecog.co.nz)

submitted by traskjdtraskjd(3229) 3 years, 11 months ago

Is the Velocity project by Microsoft simply a me-too framework or are they creating real value for developers on the Windows platform? read more...

1 comment |category: |Views: 352

tags: another

LightSpeed 2.0 Released(mindscape.co.nz)

submitted by AndrewPetersAndrewPeters(1170) 3 years, 11 months ago

LightSpeed 2.0 has been released. It includes a full, round-tripping Visual Studio designer and support for LINQ! read more...

add a comment |category: |Views: 470

tags: another

Introducing MonoRail NHAML(weblogs.asp.net)

submitted by MirvodaSergeyMirvodaSergey(45) 3 years, 11 months ago

HAML engine for Castle MonoRail project. read more...

add a comment |category: |Views: 160

tags: another

Using the unit of work-per-request pattern in ASP.NET MVC(mindscape.co.nz)

submitted by AndrewPetersAndrewPeters(1170) 4 years ago

Describe a simple, efficient and testable approach to implementing the unit of work-per-request (a.k.a session-per-request) pattern in Microsoft’s new ASP.NET MVC framework. read more...

add a comment |category: |Views: 625

tags: another

Slice - Collection Slicing Extension Method(james.newtonking.com)

submitted by JamesNKJamesNK(3020) 4 years ago

A recreation of Python collection slicing in .NET using extension methods. read more...

add a comment |category: |Views: 47

tags: another

LightSpeed 2.0 Gets Visual Studio Designer(mindscape.co.nz)

submitted by AndrewPetersAndrewPeters(1170) 4 years, 1 month ago

First it was LINQ support, now LightSpeed 2 gets a complete Visual Studio design experience. read more...

add a comment |category: |Views: 8

tags: another

Using Ruby to generate LightSpeed models(flanders.co.nz)

submitted by casualjimcasualjim(520) 4 years, 3 months ago

The end of a 4 part series on creating a little ruby application to generate lightspeed models. It demonstrates usage and provides links to relevant information. read more...

add a comment |category: |Views: 8

tags: another

Mindscape ships the WPF Property Grid(blog.bluecog.co.nz)

submitted by simonechsimonech(10.1k) 4 years, 4 months ago

The prolific Mindscape from Wellington (NZ) released another cool developer's tool: a property grid for WPF. read more...

add a comment |category: |Views: 35

tags: another

Internet Explorer 8 now passing Acid2(turtle.net.nz)

submitted by turtlespinturtlespin(634) 4 years, 5 months ago

The IE8 team just announced some new news about IE8 - they just passed a major milestone which is to have IE8 render Acid2 when in IE8 standards mode. Includes link to official post and video. read more...

1 comment |category: |Views: 0

tags: another

Quake 2 .NET Port with Visual Studio 2008 (v9.0) and Managed C++(gregs-blog.com)

submitted by gregdolleygregdolley(300) 4 years, 5 months ago

Vertigo Software's old Quake II .NET port updated to Visual Studio 2008 / New Managed Extensions for C++. read more...

add a comment |category: |Views: 53

tags: another

Introducing NHaml - An ASP.NET MVC View Engine(andrewpeters.net)

submitted by AndrewPetersAndrewPeters(1170) 4 years, 5 months ago

NHaml (pronounced enamel) is a pure .NET implementation of the popular Rails Haml view engine. From the Haml website: “Haml is a markup language that‘s used to cleanly and simply describe the XHTML of any web document, without the use of inline code. Haml functions as a replacement for inline page templating systems such as PHP, ERB, and ASP. However, Haml avoids the need for explicitly coding XHTML into the template, because it is actually an abstract description of the XHTML, with some code to generate dynamic content.” In other words, NHaml is an external DSL for XHTML. It’s primary qualities are it’s simplicity, terseness, performance and that it outputs nicely formatted XHTML. Additionally, the NHaml view engine provides support for Rails style layouts and partials. read more...

2 comments |category: |Views: 1032

tags: another