samiq

Stories submitted by friends of samiq

Herding Code 142 - Scott Guthrie on the open source announcement(herdingcode.com)

submitted by jongallowayjongalloway(4380) 1 month, 3 days ago

The Herding Code guys talk to Scott Guthrie about the recent open source announcement for ASP.NET MVC, Web API, and Razor. read more...

1 comment |category: |Views: 113

tags: another

Phil Haack, Keith Dahlby and Paul Betts on Git for Windows(herdingcode.com)

submitted by jongallowayjongalloway(4380) 4 months, 6 days ago

Herding Code podcast talking to Phil Haack and Paul Betts (both new GitHubbers) and Keith Dahlby (author of posh-git, a set of PowerShell scripts which provide Git/PowerShell integration) about using Git on Windows. read more...

4 comments |category: |Views: 241

tags: another

10 Things ASP.NET Developers Should Know About Web.config Inheritance(weblogs.asp.net)

submitted by jongallowayjongalloway(4380) 4 months, 9 days ago

Ten things you should know about Web.config inheritance and overrides that will simplify some configuration challenges and help with debugging. Bet there are some you didn't know about! read more...

5 comments |category: |Views: 1282

tags: another

Herding Code 130: Dave Weaver on Loggr – a realtime analytics service (herdingcode.com)

submitted by jongallowayjongalloway(4380) 4 months, 22 days ago

Herding Code podcast with Dave Weaver about Loggr, a complete logging, analytics and notification service built with ASP.NET MVC, SignalR, and MongoDB. read more...

3 comments |category: |Views: 82

tags: another

Using Node.js in an ASP.NET MVC application with iisnode(weblogs.asp.net)

submitted by jongallowayjongalloway(4380) 7 months ago

iisnode makes it easy to run Node.js on Windows, and since it's an HTTP Handler you can integrate it directly into an ASP.NET application. Neat, huh? read more...

4 comments |category: |Views: 105

tags: another

Herding Code 124: Anthony van der Hoorn and Nik Molnar on Glimpse(herdingcode.com)

submitted by jongallowayjongalloway(4380) 7 months, 2 days ago

In this podcast, the Herding Code gang talks to Anthony and Nik, the creators of Glimpse. Glimpse is a system which allows you to view server-side information in the browser (think Firebug for server code) read more...

add a comment |category: |Views: 11

tags: another

Using CodeMirror to add C# highlighting to an HTML TextArea(weblogs.asp.net)

submitted by jongallowayjongalloway(4380) 11 months, 13 days ago

CodeMirror is a Javascript library that adds live syntax highlighting to a text area. This post shows how to use it in your applications. read more...

add a comment |category: |Views: 32

tags: another

NHibernate - <natural-id/>(ayende.com)

submitted by adminjewadminjew(1490) 2 years, 11 months ago

A natural id is a way to refer to a unique field of an object as a substitute of the real entity identifier. A good (and typical) example of that would be with the User entity. We have the user name and the user id, both are unique, but the user id is usually something that is generated by our application and has no relation to the a human being. In other words, user #123814 doesn’t mean anything to me, while user ‘ayende’ has a meaning to us. read more...

add a comment |category: |Views: 57

tags: another

Migrating to IIS7(johnnycoder.com)

submitted by jongallowayjongalloway(4380) 3 years, 1 month ago

Some good information on upgrading an ASP.NET site from IIS6 to IIS7 - example from Subtext on GoDaddy. read more...

add a comment |category: |Views: 17

tags: another

Application structure: Concepts & Features(ayende.com)

submitted by adminjewadminjew(1490) 3 years, 2 months ago

I spoke about this topic quite a bit in ALT.Net Seattle. This is mostly relating to application architecture and how you structure your application. This is the logical result of applying the Open Closed and Single Responsibility Principles. Feature may not be as overloaded a term in our industry as a service, but it still important to define exactly what I mean. A feature, in my eyes, is a discrete part of the application that perform some operation. That is pretty vague, I know, but I hope that the examples I am going to go through later would make it clearer. So far, it is pretty much the standard fare, but I have a few rules about a feature, the most important of them is: read more...

add a comment |category: |Views: 13

tags: another

Tracking NH Prof performance problem on aggressively active applicatio(ayende.com)

submitted by adminjewadminjew(1490) 3 years, 3 months ago

I mentioned before that NH Prof has a problem with dealing with a lot of activity from the profiled application. In essence, until it catch up with what the application is doing, there isn't much that you can do with the profiler. I consider this a bug, and I decided to track that issue with some verifiable results, and not just rely on hunches. The results were... interesting. The actual problem was in the place that I expected it to be, but it was more complex than expected. Let me try to explain. read more...

add a comment |category: |Views: 4

tags: another

Patterns, Purists, and Sinkholes(blog.wekeroad.com)

submitted by adminjewadminjew(1490) 3 years, 3 months ago

Before I was a geek, I was a Geologist. A Geophysicist to be precise – but mostly I just tell people I was a Geologist. I worked a lot with environmental cleanup, but I also spent a lot of time doing what’s known as “Geotechnical” work – the stuff that happens before buildings are built and holes are dug. It can be kind of boring, but it’s crucially important. One day I was sitting in our lab with some dark Bay Mud in a crucible, slowly adding water in measured doses and then pouring the mud through a screen and weighing out differences. I won’t bore you with the details – I’ll just tell you that I was 23 and cranky that this is what my career amounted to – a bunch of rigorous nonsense where I got to weigh mud. read more...

add a comment |category: |Views: 209

tags: another

Cost? (Cost of Messaging)(codebetter.com)

submitted by adminjewadminjew(1490) 3 years, 3 months ago

We have come to a very very very important question. What is the cost of Command Query Separation and Messaging in general in comparison to say a more traditional architecture? I would like to look at this from two perspectives. The first perspective is that of the actual cost of using the types of methodologies I bring up. In other words what physical overhead can we see as a result of making the choice? read more...

add a comment |category: |Views: 140

tags: another

Web Deployment with VS 2010 and IIS(blogs.msdn.com)

submitted by jongallowayjongalloway(4380) 3 years, 3 months ago

The MSDeploy tool which will be included in Visual Studio 2010 includes some fixes for key painpoints like database deployment and managing different web.config settings in development, test, and production. read more...

add a comment |category: |Views: 255

tags: another

Discussion: OO 101 Solutions and the Open Close Principle at the archi(ayende.com)

submitted by adminjewadminjew(1490) 3 years, 4 months ago

This post is based on the transcript of a conversation between me and Luke Breuer, regarding the application of the Open Close Principle to the system architecture. The quoted sections are Luke's, and my own responses are shown underneath them. This is a different style from my usual posts, because this is a conversation, which was transcriptted and only slighted edited. I hope that this would help all those who wanted to know more about what I meant about using OPC at the architecture level and how to structure systems where you only ever add new things. read more...

add a comment |category: |Views: 11

tags: another

My baseline ASP.Net MVC modifications(ayende.com)

submitted by adminjewadminjew(1490) 3 years, 4 months ago

We start by killing ViewData. I don't want it, and I want to fail hard if someone is trying to use it read more...

add a comment |category: |Views: 14

tags: another