jeisenberg

Stories kicked by jeisenberg

A Quick Example of YAGNI / Simplest Thing Possible in Action(codebetter.com)

submitted by bradygasterbradygaster(4897) 3 years, 3 months ago

If you've ever worked on an Agile/XP team you've surely heard something in the lines of "Let's YAGNI that. (YAGNI == You aren't gonna need it)" You've probably also heard the phrase "do the simplest thing that could possibly work." Both of these sayings are an exhortion to developers to avoid overdesign and analysis/paralysis by focusing on the here and now instead of getting caught up in designing for a conjectural need. I called YAGNI on something today. read more...

2 comments |category: |Views: 294

tags: another

DDD command query separation as an architectural concept(devlicio.us)

submitted by hgarciahgarcia(1534) 3 years, 3 months ago

Another one of the excellent serie on DDD by casey. read more...

add a comment |category: |Views: 320

tags: another

My .NET Development Must-have Tool List(startbigthinksmall.wordpress.com)

submitted by lcorneliussenlcorneliussen(490) 3 years, 3 months ago

List of .NET Development Tools every developer should know. read more...

1 comment |category: |Views: 28

tags: another

Moonlight 1.0 Release(weblogs.asp.net)

submitted by sharplifesharplife(4570) 3 years, 3 months ago

Now Linux lovers can enjoy Silverlight streaming media with Moonlight 1.0. Read what Scott Guthrie tells us about this open source implementation of Silverlight. read more...

add a comment |category: |Views: 149

tags: another

Jeff Atwood Finally Jumps the Shark(kevinwilliampang.com)

submitted by kpanghmckpanghmc(2055) 3 years, 3 months ago

Well, we all knew it had to happen eventually. After years of great blog posts and insightful commentary on the programming world, Jeff Atwood has finally jumped the shark in his latest post which essentially says "programming is hard, let's go shopping!" read more...

add a comment |category: |Views: 788

tags: another

"Quality Doesn't Matter That Much" -- Jeff and Joel (blog.objectmentor.com)

submitted by joejoejoejoejoejoejoejoe(1140) 3 years, 3 months ago

I was riding my exercise bike, listening to Stack Overflow #38 when I heard Jeff Atwood and Joel Spolsky say "Quality just doesn't matter that much." I nearly fell off my bike. read more...

1 comment |category: |Views: 548

tags: another

Compressing JS files as part of your build process(codebetter.com)

submitted by johnsheehanjohnsheehan(4785) 3 years, 4 months ago

Ideally, we want to develop using readable JavaScript files (even 3rd party files) and deploy compressed/obfuscated code. Our solution has simply been to apply a post-build task to our project. Here's what we did read more...

1 comment |category: |Views: 382

tags: another

Correct spelling is optional The Lounge SlickEdit Visualize version c(ayende.com)

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

The Managed Extensibility Framework is "new library in .NET that enables greater reuse of applications and components. Using MEF, .NET applications can make the shift from being statically compiled to dynamically composed. If you are building extensible applications, extensible frameworks and application extensions, then MEF is for you." read more...

add a comment |category: |Views: 3

tags: another

How to respond with code 404 (Not Found) in ASP.NET(dotnettipoftheday.org)

submitted by rimsystemsrimsystems(6119) 3 years, 9 months ago

Quick tip on using HttpException read more...

1 comment |category: |Views: 297

tags: another

Scraping, or Programatically Accessing, a Secure Webpage(ryanfarley.com)

submitted by StanJacksonStanJackson(395) 3 years, 9 months ago

There are many secure websites out there that provide useful information but do not have a public API to access it's data. A prime example of this is the LinkedIn website. You might love to gather some info from LinkedIn, but their promise to deliver a public API has yet to come to fruition. The problem is, the pages with all the good data are secure, requiring the user to log in before accessing these pages. Let's say we want to scrape this data from these pages programatically? We need to authenticate to access these pages. We can do that by reusing the authentication cookie from the site that we receive when we log in with a browser. read more...

add a comment |category: |Views: 357

tags: another

Completely Scripting a SQL Server Database(codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 3 years, 9 months ago

A guide on how to easily script out an entire database (schema and data) using the Database Publishing Wizard. A tool that you may not know you have access to. And if you have Visual Studio 2008, you already have installed! read more...

add a comment |category: |Views: 384

tags: another

Json.NET 3.0 Released(james.newtonking.com)

submitted by JamesNKJamesNK(3020) 3 years, 9 months ago

The latest version of Json.NET brings lots of new features including Silverlight support. read more...

add a comment |category: |Views: 434

tags: another

Delayed execution and "yield return"(codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 3 years, 11 months ago

A quick look at "yield return" focusing on arguably the most important aspect...delayed execution. read more...

2 comments |category: |Views: 242

tags: another

Behind the scenes of the C# yield keyword(startbigthinksmall.wordpress.com)

submitted by lcorneliussenlcorneliussen(490) 3 years, 11 months ago

Yield is not a CLR feature, it's just about the C# compiler. This post explains how this works. read more...

1 comment |category: |Views: 408

tags: another

Why Are Our Programs Still Represented by Flat Files?(atalasoft.com)

submitted by RickasaurusRickasaurus(1225) 3 years, 11 months ago

It's time to leave the secondary, external structure of our programs behind. If you can treat the reflected code from a programming language like an abstract data structure, why can’t you just keep the source itself in a similarly abstracted data structure? Isn’t the structure of a program more similar to a graph, than a list? Besides the momentum of the past, what is keeping us tied to having our code in this format? read more...

add a comment |category: |Views: 330

tags: another

How to wrap the ASP.NET session state(startbigthinksmall.wordpress.com)

submitted by lcorneliussenlcorneliussen(490) 4 years ago

A handy C# code snippet for accessing ASP.net session state data. Exceptions are handled, usage is intuitive. read more...

1 comment |category: |Views: 426

tags: another