jcoffman

Stories kicked by jcoffman

How to run, ON THE CHEAP, an IIS7 hosted website on Amazon EC2(learn.iis.net)

submitted by yesthatmcgurkyesthatmcgurk(4063) 2 years, 1 month ago

Its beautiful.... This article shows step by step, with clear instructions and lots of images, how to host your asp.net website on Amazon's EC2. I'm shocked at how easy it is. 1) Create account 2) Select image 3) do a little dance 4) publish your website to the cloud read more...

3 comments |category: |Views: 677

tags: another

60+ .Net libraries every developer should know about(blog.webdistortion.com)

submitted by squiggssquiggs(585) 2 years, 3 months ago

Every good developer knows never to re-invent the wheel, especially if there is software out there that has been tested by others, and has an established track record. As a developer using the .NET framework I’ve found some of these libraries invaluable, so I’m sharing them for some of the other dev’s out there with a brief outline of how to use. read more...

2 comments |category: |Views: 2605

tags: another

.NET 4.0 and System.Collections.Concurrent.ConcurrentBag(www.codethinked.com)

submitted by pitadev_ajpitadev_aj(300) 2 years, 4 months ago

Another in-depth look at a new namespace in .NET 4.0 and how it can help with multithreading. read more...

1 comment |category: |Views: 386

tags: another

CloudDB v3 api(computeristsolutions.com)

submitted by jcoffmanjcoffman(370) 2 years, 5 months ago

introduction on using clouddb api to read data. clouddb (http://clouddb.com) is a web based data store. Sample: public static RowsResponseData GetRowData(CloudDB cdb, Token token, string appName, string entityName, Predicate[] predicates) { App app = cdb.GetApplicationByName(token, token.UserID, appName, false, false).Result; Entity e = cdb.GetEntityByName(token, app, entityName, false).Result; RowsResponseData rowData = cdb.SearchEntity(token, app, e, predicates, 0, 0, 0, 0).Results; return rowData; } read more...

add a comment |category: |Views: 15

tags: another

Spark, FluentMigrator, and FluentNHiberate(computeristsolutions.com)

submitted by jcoffmanjcoffman(370) 2 years, 6 months ago

Example of how to use Spark view engine, MVC, FluentMigrator, and FluentNHibernate to build a quick & easy MVC web app. read more...

add a comment |category: |Views: 29

tags: another

Running Mono - an Overview(psantos-blog.zi-yu.com)

submitted by donbonifaciodonbonifacio(280) 2 years, 6 months ago

We're running mono on the production environment and on this article I talk about the issues we faced and the how's mono behaving. read more...

add a comment |category: |Views: 23

tags: another

New .Net App – Just add water(computeristsolutions.com)

submitted by jcoffmanjcoffman(370) 2 years, 7 months ago

Easy example of how to build an application very quickly using FluentMigrator, Fluent-NHibernate, and NHibernate. Shows enough info and code to follow, with sample project available. read more...

add a comment |category: |Views: 18

tags: another

Fun With Method Missing and C# 4.0(haacked.com)

submitted by developmentalmadnessdevelopmentalmadness(730) 2 years, 8 months ago

Ruby has a neat feature that allows you to hook into method calls for which the method is not defined. In such cases, Ruby will call a method on your class named method_missing. I showed an example of this using IronRuby a while back when I wrote about monkey patching CLR objects. Typically, this sort of wild chicanery is safely contained within the world of those wild and crazy dynamic language aficionados, far away from the peaceful waters of those who prefer statically typed languages. Until now suckas! (cue heart pounding rock music with a fast beat) read more...

1 comment |category: |Views: 356

tags: another

FluentMigrator: A Debate Raging In My Head(computeristsolutions.com)

submitted by jcoffmanjcoffman(370) 2 years, 9 months ago

Whether to throw an error when a migration calls for a foreign key and run against SQLite, which doesn't support foreign keys. Feedback encouraged. read more...

add a comment |category: |Views: 21

tags: another

Schema Syntax Entropy(computeristsolutions.com)

submitted by jcoffmanjcoffman(370) 2 years, 9 months ago

About generating ddl for sql server and sqlite, and problem with differences. read more...

add a comment |category: |Views: 2

tags: another

Using Active Record to Write Less Code(dotnet-tv.com)

submitted by martinigmartinig(568) 2 years, 9 months ago

What would you say if I told you that you can stop writing data access code in .Net? Aren’t you tired of writing the same thing over and over again, opening connection, querying the database, figuring out what to return, getting back untype data that you need to start putting on the form? Do you really see some value in writing yet another UPDATE statement?? The Active Record framework allows you to fully utilize the power of the database, but without the back breaking work that it used to take. Active Record uses .Net objects to relieve you from the repeating task of persistence. Those objects are schema aware and can persist and load themselves without you needing to write a single line of SQL. Building business application using Active Record is a pleasure, the database stuff just happens, and you are free to implement the business functionality. read more...

add a comment |category: |Views: 9

tags: another

ASP.NET MVC, TDD and Fluent Validation(richarddingwall.name)

submitted by JemmJemm(9604) 2 years, 9 months ago

"Yesterday I wrote about ASP.NET MVC, TDD and AutoMapper, and how you can use them together in a DDD application. Today I thought I would follow up and explain how to apply these techniques to another important (but boring) part of any web application: user input validation." read more...

add a comment |category: |Views: 367

tags: another

FluentMigrator Rising From The Ashes(computeristsolutions.com)

submitted by jcoffmanjcoffman(370) 2 years, 9 months ago

Adding more features to FluentMigrator read more...

add a comment |category: |Views: 456

tags: another

NerdDinner with Fluent NHibernate Part 1 - The domain model(bengtbe.com)

submitted by bengtbebengtbe(470) 2 years, 9 months ago

This is the first post in a series of three where I'm going to see how we can change the NerdDinner project to use Fluent NHibernate instead of LINQ to SQL. In the first post we are going to take a look at the domain model. read more...

add a comment |category: |Views: 391

tags: another

Fluent NHibernate With Firebird(computeristsolutions.com)

submitted by jcoffmanjcoffman(370) 2 years, 11 months ago

code snippets showing hot to get Fluent NHibernate configured for Firebird. read more...

add a comment |category: |Views: 396

tags: another

Fluent NHibernate And You(computeristsolutions.com)

submitted by jcoffmanjcoffman(370) 2 years, 11 months ago

a breif intro into FLuent NHibernate with code snippets. read more...

add a comment |category: |Views: 23

tags: another