melzie215

Stories kicked by melzie215

Timing The Execution Time Of Your MVC Actions - Nick Berardi's Coder J(coderjournal.com)

submitted by javeryjavery(5523) 1 year, 7 months ago

Awesome approach for timing MVC Actions read more...

add a comment |category: |Views: 153

tags: another

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

submitted by zigamorphzigamorph(3319) 1 year, 7 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: 160

tags: another

Who Loves Their Developers More(coderjournal.com)

submitted by melzie215melzie215(35) 1 year, 9 months ago

Last night as I was talking with Danny Diaz about the importants of good programming language documentation. It occurred to me that the level of effort a company puts into its documentation is a direct reflection on how it sees the developer in relation to its products. If there is a lot of thought, love, and detail put into the documentation the company most likely cares very much about the developers experience from cradle to grave. If the documentation is haphazardly put together and no common UIX efforts were made then the company most likely cares very little about new developers, and only begrudgingly puts documentation online for its seasoned developers because it is the industry norm and is expected of them. read more...

add a comment |category: |Views: 4

tags: another

Turning JSON into a ExpandoObject(coderjournal.com)

submitted by zigamorphzigamorph(3319) 1 year, 10 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: 82

tags: another

Run Cassandra As A Windows Service(coderjournal.com)

submitted by zigamorphzigamorph(3319) 1 year, 11 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: 46

tags: another

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

submitted by zigamorphzigamorph(3319) 1 year, 11 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: 44

tags: another

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

submitted by zigamorphzigamorph(3319) 1 year, 11 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: 437

tags: another

Creating a Time UUID (GUID) in .NET(www.coderjournal.com)

submitted by melzie215melzie215(35) 2 years, 1 month ago

Since we’re going to want to display lists of entries in chronological order we’ll make sure each Columns name is a time UUID and set the ColumnFamilys CompareWith to TimeUUIDType. This will sort the Columns by time satisfying our “chronological order” requirement. So doing stuff like “get the latest 10 entries tagged ‘foo’” is going to be a super efficient operation. read more...

add a comment |category: |Views: 87

tags: another

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

submitted by zigamorphzigamorph(3319) 2 years, 1 month 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: 427

tags: another

The difference between Routing and Rewriting(www.coderjournal.com)

submitted by melzie215melzie215(35) 2 years, 2 months ago

The benefits of a URL Rewriter have been explained many times, by many people, so I am not going to add just another rant to the web about keeping your URL’s clean for the search engines. I will just leave you with Jeff’s explanation of why you shouldn’t ignore the URL. Having multiple URLs reference the same content is undesirable not only from a sanity check DRY perspective, but also because it lowers your PageRank. PageRank is calculated per-URL. If 50% of your incoming backlinks use one URL, and 50% use a different URL, you aren’t getting the full PageRank benefit of those backlinks. The link juice is watered down and divvied up between the two different URLs instead of being concentrated into one of them. While Jeff only focuses on the reasons related to SEO, there are many other reasons to make your URL’s “look-and-feel” a hire priority. One that is often touted as a wonderful reason to use a URL Rewriter is to produce pretty looking URL’s, and even though this one of many reasons to use a rewriter, it is really a small part of why you want to have a URL Rewriter in your arsenal as a web developer. Other reasons include forcing your domain to a constant www vs non-www address, having helper URL’s such as http://www.microsoft.com/sql that redirect to their actual location, and many others. read more...

add a comment |category: |Views: 7

tags: another

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

submitted by zigamorphzigamorph(3319) 2 years, 2 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

.NET 4.0 and System.Threading.Tasks(www.codethinked.com)

submitted by veverkapveverkap(815) 2 years, 4 months ago

Quick look at threading in .NET 4.0 and the new System.Threading.Tasks. read more...

1 comment |category: |Views: 653

tags: another

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

submitted by zigamorphzigamorph(3319) 2 years, 4 months 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

Large or asynchronous file uploads in ASP.NET MVC(dimebrain.com)

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

The challenge of uploading large files in ASP.NET through HTTP is not a new challenge. In addition to handling large files, users often request an experience that shows the progress of an upload as it occurs. When you have either or both of these requirements, or if you simply need direct control of a stream of file data uploaded from a browser, you invariably hit the wall. I set about solving the problem in an ASP.NET MVC-specific way. read more...

add a comment |category: |Views: 866

tags: another

Yahoo YUI Compressor vs. MS AJAX Minifier vs. Google Closure Compiler(www.coderjournal.com)

submitted by atifazizatifaziz(1000) 2 years, 4 months ago

A while back, YUI Compressor was king of the hill, and for the most part the only game in town that was really designed for production use. Since then a number of new competitors have been released by Google and Microsoft, and Nick Berardi checks out how they stacked up against the YUI Compressor. read more...

add a comment |category: |Views: 691

tags: another

Show CodeRush Xpress 9.2 Menu in Visual Studio(coderjournal.com)

submitted by zigamorphzigamorph(3319) 2 years, 8 months ago

As promised to the people of my last post for CodeRush Xpress 9.1, here is the updated scripts for CodeRush Xpress 9.2, which was released last week. read more...

add a comment |category: |Views: 16

tags: another