zigamorph

Stories submitted by zigamorph

Cleaning Up Your Git Repository For NuGet 1.6(coderjournal.com)

submitted by zigamorphzigamorph(3314) 1 month, 30 days ago

Provides an article detailing how to clean up the packages directory to get your project and repository ready for NuGet 1.6. read more...

1 comment |category: |Views: 33

tags: another

Adding Git Command Line To Visual Studio(coderjournal.com)

submitted by zigamorphzigamorph(3314) 10 months, 26 days ago

If you are an avid Git user like I am, but also happen to work in a Visual Studio environment, you know that getting to your Git Bash command prompt is anything but easy. read more...

add a comment |category: |Views: 33

tags: another

A Smarter Entity Framework Include Method(coderjournal.com)

submitted by zigamorphzigamorph(3314) 11 months, 16 days ago

One of the things I have always disliked about Entity Framework and their support for LINQ is that while your whole LINQ statement is compile time checked to make sure you didn’t fat finger any SQL statement, the Include() statement is not. read more...

add a comment |category: |Views: 11

tags: another

Adding Your Application To The Graph(coderjournal.com)

submitted by zigamorphzigamorph(3314) 1 year, 1 month ago

Alternatively, if you really have bytes to kill, and you want to add relevant meta information to your page. You should probably be looking at the Open Graph Protocol: read more...

add a comment |category: |Views: 5

tags: another

Setting up a CloudFront Mirroring CDN in 5 minutes(coderjournal.com)

submitted by zigamorphzigamorph(3314) 1 year, 1 month ago

Gives step by step instructions on how to setup Amazon's CloudFront Mirroring CDN in 5 minutes or less. read more...

add a comment |category: |Views: 10

tags: another

Easy Mail Delivery with SMTP Smart Host(coderjournal.com)

submitted by zigamorphzigamorph(3314) 1 year, 4 months ago

I knew the downfalls of using the default localhost and the potential mail delivery problems if I didn’t properly set the DomainKey, DKIM, SPF, SenderID, Reverse PTR, and blah blah blah. But it wasn’t really worth the hassle for me to properly set all this, because I can sent the number of emails sent from my server on one hand each day. And a 4 out of 5 times they were administrative emails sent to my Gmail account. But given all that it is still no excuse for poor email hygiene. read more...

add a comment |category: |Views: 158

tags: another

With Each Step Forward, Microsoft Takes Two Back(coderjournal.com)

submitted by zigamorphzigamorph(3314) 1 year, 6 months ago

So why is Microsoft continuing to target PHP 3 users, when they should be targeting PHP 5 and Ruby on Rails users for the mind share of rapid application development? I am calling on Microsoft to take this abomination of a document down, and just put up a simple Razor syntax language reference at the very least, and at the very most gut this document and create a document that doesn’t perpetuate bad software development practices and becoming a shining star to software developers and not a rusty anchor. read more...

add a comment |category: |Views: 5

tags: another

Turning JSON into a ExpandoObject(coderjournal.com)

submitted by zigamorphzigamorph(3314) 1 year, 6 months ago

Recently I had the need for a web service of mine to take a JSON blob as an input. This isn’t really exciting or all that interesting a problem, but I really didn’t enjoy the code smell that came from drilling in to the resulting Dictionary object that comes from desterilizing the JSON object into something that .NET understands. read more...

add a comment |category: |Views: 75

tags: another

Run Cassandra As A Windows Service(coderjournal.com)

submitted by zigamorphzigamorph(3314) 1 year, 7 months ago

One of the main issues that comes up over and over again for Cassandra is: How do I run Cassandra as a Windows Service? In this post I am going to answer that question and in the process demonstrate how to do it in less than 10 minutes. read more...

add a comment |category: |Views: 44

tags: another

Using LINQPad to Query Stack Overflow(coderjournal.com)

submitted by zigamorphzigamorph(3314) 1 year, 7 months ago

In case you haven’t read, Stack Overflow and the rest of the Stack Exchange sites are now able to be queried using OData. This is great because as Jeff points out in the blog post: …if you just want to play with the data, it’s kind of tedious: you have to download the entire 700 plus megabyte archive, import it into some kind of database system — and only then can you even begin thinking about how to query out the results you’re looking for. This hurdle has stopped me from performing some basic querie... read more...

add a comment |category: |Views: 50

tags: another

How Fluent Cassandra Handles Runtime Types(coderjournal.com)

submitted by zigamorphzigamorph(3314) 1 year, 8 months ago

Explains how runtime types are serialized, stored, and deserialized in the Cassandra database when using .NET read more...

add a comment |category: |Views: 7

tags: another

Your First Fluent Cassandra Application (part 2)(www.coderjournal.com)

submitted by zigamorphzigamorph(3314) 1 year, 8 months ago

Last time I demonstrated how to create your first Fluent Cassandra app. After we finished learning about how to create records and save them to the database, I issued a challenge to implement comments for our command line blog app we created. read more...

add a comment |category: |Views: 41

tags: another

Your First Fluent Cassandra Application(www.coderjournal.com)

submitted by zigamorphzigamorph(3314) 1 year, 8 months ago

As your are probably aware by now if you follow my Twitter status or have looked in to some of my recent posts. I am developing a library called FluentCassandra which is a .NET library for using the Cassandra database in a .NETty way. The project has progressed quite nicely in the last couple of months and I am finally ready to start talking about it and giving examples on how it can be used in your applications. So lets gets started… read more...

add a comment |category: |Views: 415

tags: another

Cassandra Jump Start For The Windows Developer(www.coderjournal.com)

submitted by zigamorphzigamorph(3314) 1 year, 10 months ago

Cassandra is an open source distributed database management system. It is an Apache Software Foundation top-level project, as of February 17, 2010, designed to handle very large amounts of data spread out across many commodity servers while providing a highly available service with no single point of failure. It is a NoSQL solution that was initially developed by Facebook and powers their Inbox Search feature. Jeff Hammerbacher, who led the Facebook Data team at the time, has described Cassandra as a BigTable data model running on an Amazon Dynamo-like infrastructure. read more...

add a comment |category: |Views: 409

tags: another

Editable MVC Routes (Apache Style)(www.coderjournal.com)

submitted by zigamorphzigamorph(3314) 1 year, 10 months ago

After remembering a post by Phil Haack about Editable MVC Routes. By merging together Routing and Rewriting in the same process, and making the routes as editable as the rewriter rules I might be able make the differences or at least the benefits of having both a little more clear, because developers could play with both in real time and start to connect in their mind when one is more useful than the other. So I started with the latest release of my URL Rewriter and created a contrib project on GitHub that extended the Apache support in the rewriter to also include System.Web.Routing. The syntax looks similar to the Apache mod_rewrite but specific for routes. read more...

add a comment |category: |Views: 192

tags: another

Performance Optimizations Made By JavaScript Minimizers(www.coderjournal.com)

submitted by zigamorphzigamorph(3314) 2 years ago

In the first post about JavaScript compression and the different levels supported by the three major competitors in the JavaScript minimization, obfuscation, and optimization tools space. I the article I discussed which tool provided the best compression in regards to the resulting byte count. And found that Google took the over all crown with Microsoft following very closely behind. This post will look at the performance optimizations made to the code, after it is run through the JavaScript Minimizers read more...

add a comment |category: |Views: 10

tags: another