Welcome

This is the generic homepage (aka Aggregate Blog) for a Subtext community website. It aggregates posts from every blog installed in this server. To modify this page, look for the Aggregate skin folder in the Skins directory.

To learn more about the application, check out the Subtext Project Website.

Powered By:
Powered by Subtext

Blog Stats

  • Blogs - 7
  • Posts - 77
  • Articles - 0
  • Comments - 131
  • Trackbacks - 3

Bloggers (posts, last update)

Latest Posts

NET Compilers for NodeAssets

Version 0.0.4 of NodeAssets is available and I have have finally added in pure .NET compilers that can be used out of the box.

posted @ 3/05/2012 10:11 PM by Felix Jorkowski

Node Assets Released!

I am happy after many weeks of development to show to the world my awesome c# .net asset manager – Node Assets.

posted @ 19/04/2012 10:04 PM by Felix Jorkowski

custom convention binding with Ninject

For this post you should already be familiar with using ninject for your DI needs. You would then be familiar with explicit binding and also possibly even the default convention based binding (using the Ninject.Extensions.Conventions package). We will take this a step further and see how we can define our own custom convention based bindings.

posted @ 31/03/2012 1:13 PM by Felix Jorkowski

Making redis easy

I have been working on a number of projects lately within nodejs and of course I have come across the requirement to store some data. Due to the loosely coupled nature of my data (a series of blog posts) I have gone down the NOSQL route, in particular using the redis library which is a nodejs wrapper for the redis server. In this post I hope to explore the advantages of a nosql database and make it easy using my own library redis-model.

posted @ 21/03/2012 11:36 PM by Felix Jorkowski

Enhanced Batch Editing using Telerik Extensions for ASP .NET MVC Grid Control

A brief post on enhancing the user experience (in my opinion) when using the Telerik MVC Grid in batch editing mode...

posted @ 12/03/2012 12:21 PM by Paul Reynolds

Coffeeeeeeee!

Ok so I have been away for the last couple months working on a website for myself as a way to learn new things, and I thought it was about time to share some of my experiences. In this blog post I will be talking about nodejs, but more specifically to write a write a web app (from server to client) completely 100% in coffeescript.

posted @ 8/03/2012 8:19 PM by Felix Jorkowski

The Revolving HashSet

A project I was working on had a fairly unique storage requirement: I needed a storage medium in which I could query its contents VERY quickly with Contains(), even when the set was relatively large; and when it reached a set size, it should start replacing its oldest values with incoming values – essentially a queue where the oldest values get trimmed once the queue reaches a certain size. Lets take a look at the solution achieved.

posted @ 22/07/2011 2:39 PM by Andrew Best

Custom WCF Services in SharePoint 2010–Part 2

As promised at the end of Custom WCF Services in SharePoint 2010 – Part 1 we take a look at another approach to configuring our custom service. This approach also has another benefit that allows us to get around an issue that appears to exist with the Microsoft implementation of the Factories provided in the Microsoft.SharePoint.Client.Services namespace...

posted @ 29/06/2011 11:02 AM by Paul Reynolds

Custom WCF Services in SharePoint 2010–Part 1

It has always been the case with SharePoint that you sometimes need to develop custom ‘services’ to get a particular job done, and this is no exception with 2010. The provided services have continued to expand/improve over the years when compared back to earlier versions of SharePoint, but they are obviously general and not going to perform every function we might require. Enter custom WCF Services...

posted @ 28/06/2011 11:34 AM by Paul Reynolds

Web.config transforms (XDT) with Visual Studio setup and deployment packages (vdproj) and Team Build 2010

I have spent some time binging for solutions to the following issue: You have a product which leverages visual studio setup and deployment packages. You wish to build the MSI as part of your automated build process in Team Build 2010, and you want the built MSI to include transformed configuration files.

posted @ 21/06/2011 1:09 PM by Andrew Best

Web.config transforms (XDT) in Team Build 2010

I thought I would do a short but sweet blog post about getting web.config transforms (and any other XDT transform) working when automating your project builds with Team Build 2010.

posted @ 17/06/2011 10:40 AM by Andrew Best

WaitControl / Loading Spinner / Progress Display not showing / not visible / not displaying with ReportViewer 10.0 for ASP.NET

Now there is a fragmented headline! The reason for it is to hopefully guide people searching on this issue to this post, because it took me about a day of flexing my Bing-Fu before I finally came up with the correct search term that directed me to a solution.

posted @ 23/05/2011 12:18 PM by Andrew Best

Securing your online identity

Today I did something I should have done a long time ago. I took the steps that everyone (yes, that means you) who has a significant amount of information stored online should do – I researched and then implemented a password manager. This allows us to create strong, unique passwords for each individual portal we sign in to online, from banking to email to the various forums many of us frequent.

posted @ 10/04/2011 8:25 PM by Andrew Best

The last RegEx tool you will ever need

This is just a quick post – but one I hope helps many people. It seems every time I return to regex, it is after not using it for 6+ months, and I have to separately look up code examples, find a tool to verify the somewhat dodgy regex I knock up, test it out in code to see if it verifies my input the way I intend it to… sound familiar? If so, your problems have now been solved. Check out http://www.gskinner.com/RegExr/ – a FANTASTIC online regex builder / tester / expression repository, all combined into one neat little interface.

posted @ 10/04/2011 8:12 PM by Andrew Best

Creating a Web Application Installer with WiX 3.5 and Visual Studio 2010–Part 5

Continuing from Part 4, we look at the creation of a custom action assembly to populate our custom dialog, and apply the selected values...

posted @ 26/02/2011 1:00 PM by Paul Reynolds

Creating a Web Application Installer with WiX 3.5 and Visual Studio 2010–Part 4

Continuing from Part 3, we look at providing a user interface to get information from the user and apply that to our structure and definitions...

posted @ 25/02/2011 3:22 PM by Paul Reynolds

Creating a Web Application Installer with WiX 3.5 and Visual Studio 2010–Part 3

Continuing on from Part 2, we get into the bulk of the functionality, defining the structure and dealing with IIS...

posted @ 25/02/2011 1:07 PM by Paul Reynolds

Creating a Web Application Installer with WiX 3.5 and Visual Studio 2010–Part 2

Continuing on from Part 1, we take a look at applying some general settings, and checking of prerequisites...

posted @ 24/02/2011 5:47 PM by Paul Reynolds

Creating a Web Application Installer with WIX 3.5 and Visual Studio 2010–Part 1

So you’ve just finished creating a lovely shiny new web application. As you’re putting on your jacket, you think ‘Ah! I should quickly create an MSI installer…will only take a few minutes’…you sit back down, and remember the latest company directive that stated that Visual Studio Setup projects should not be used anymore…

posted @ 20/02/2011 12:23 PM by Paul Reynolds

Using WIX 3.5 with Visual Studio 2010

Given the imminent demise of Visual Studio Setup and Deployment Projects, I’ve started to take a look at using Windows Installer XML (WIX) 3.5 as our installer of choice. In this initial post, I’d just like to ensure others are not ‘bitten’ by an issue that took up way too much of my time relatively early on during my exploration...

posted @ 5/02/2011 4:18 PM by Paul Reynolds

Latest Images