DotNetKick.com is an open-source project. Please report any bugs and let us know your great suggestions. Currently running svn revision 620 (rss)

Kick Spy!, Kick Zeitgeist and Kick Widgets

zigamorph Subscribe to this feed
zigamorph
Profile Kicked Submitted Comments Tags Friends Kicked By Friends Submitted By Friends

Stories submitted by zigamorph
16
kicks
published 8 days, 23 hours ago, submitted by zigamorph zigamorph 9 days, 8 hours ago

coderjournal.com — Find out which .NET blogger is more popular with the ladies. Scott Hanselman, Phil Haack, Jeff Atwood, or Joel Spolsky I received an invite to Google Ad Planner. As I was playing around with this new tool, I was really blown away by how much information Google has collected on specific websites. So much so that I wanted to share this tool with my readers, but I couldn’t come up with an interesting way to demonstrate the capabilities. Until I started looking up some of my favorite bloggers and saw the almost embarrassing balance between females and males. read more...

Add a comment 1 comment | category: | Views: 525
| tag it

4
kicks
submitted by zigamorph zigamorph 12 days, 8 hours ago

coderjournal.com — Since my last release of the MVC toolkit some major changes have taken place in the MVC Framework. I am going to do a quick run through of how they changed the MVC CAPTCHA for the better. And what ActionParameters are and how they can benefit you. read more...

Add a comment add a comment | category: | Views: 9
tags: | tag it

2
kicks
submitted by zigamorph zigamorph 19 days, 9 hours ago

coderjournal.com — Firefox 3.0 is going to be released today at 1:00 PM EST and 10:00 AM PST, other times can be found here. This is going to be a huge release where the Mozilla team is going for the Guiness World Record for the most software downloads in one day. read more...

Add a comment add a comment | category: | Views: 15
| tag it

27
kicks
published 24 days, 3 hours ago, submitted by zigamorph zigamorph 24 days, 8 hours ago

coderjournal.com — As anybody who has run a growing website or blog knows, response time is going to get worse with the more users you have visiting your site. The users come from all angles, RSS feeds, homepage visits, search engine visits, people sealing your static files that you host, and pretty much anything else that can be served over HTTP. The solution to this problem is to off load your static content on to a Content Delivery Network or CDN. CDN providers cost a lot of money though, so it is nothing for us mere mortals with one server can afford. But thanks to Google anyone can now run their own CDN for free on Googles servers. Lucky for you and me Google has made the process really painless and you can even have the CDN under you own domain name. In my case static.coderjournal.com. read more...

Add a comment 1 comment | category: | Views: 322
tags: , | tag it

5
kicks
submitted by zigamorph zigamorph 1 month ago

coderjournal.com — ust recently I started experimenting with the ASP.NET MVC Framework and the Facebook Development Platform, it has been a very bumpy road, but I have ironed out some major issues that I would like to share with you today. I will start with a little history of what I am trying to do. For about a month and a half I have had one of my IdeaPipe interns, Dimitry, experimenting with creating a FBML (Facebook Meta Language) Application with MVC. MVC is an ideal platform for FBML because with MVC you have total control over your markup which is needed to have a lean FBML application. I am not going to go in to the differences of developing an FBML vs IFrame Facebook Application, because that information is easily found with a Google Search. What I am going to talk about is the hurdles I overcame and the custom software I had to develop to get MVC working smoothly with Facebook. One of the problems I ran into was creating a Facebook Session from my Action Method. To remedy this issue I created a FacebookAttribute that is an ActionFilterAttribute and a FacebookWebSession based off of the work done on Facebook.NET. read more...

Add a comment add a comment | category: | Views: 6
tags: | tag it

25
kicks
published 1 month ago, submitted by zigamorph zigamorph 1 month, 1 day ago

coderjournal.com — Scaling ASP.NET Application just got easier with a new technology that Microsoft has just released that they have dubbed codename “Velocity”. This product is still in the early stages of development, but it is meant as a direct competitor against memcache. read more...

Add a comment 3 comments | category: | Views: 455
tags: | tag it

2
kicks
submitted by zigamorph zigamorph 1 month, 9 days ago

coderjournal.com — Get the latest MVC Source Code while it is hot. read more...

Add a comment 1 comment | category: | Views: 9
tags: | tag it

5
kicks
submitted by zigamorph zigamorph 1 month, 12 days ago

coderjournal.com — However, I am one of those strange developers, according to Microsoft, that likes to use tabs and have my declartion of using statements outside of my namespace. If I were to take this tool seriously I would have to be shunned from the Microsoft Campus and shammed in to never coding again. I guess I should start including the Rob Conery SupressMessage on my code: [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "1000:YouShouldntBeCoding", MessageId = "1#", Justification="That's not very nice... but I'm used to it :p")] read more...

Add a comment add a comment | category: | Views: 16
tags: | tag it

2
kicks
submitted by zigamorph zigamorph 1 month, 13 days ago

coderjournal.com — Today I had the need to create a custom event using jQuery, in order to launch a customized form validation event from a global submit event. I did this so I could focus in on the first form field that had an error. But I needed something more than the standard bind() and trigger() that jQuery offers because I needed the validation event to return true or false based on if the form validated or not. So this is what I came up with... read more...

Add a comment add a comment | category: | Views: 6
tags: | tag it

4
kicks
submitted by zigamorph zigamorph 1 month, 16 days ago

coderjournal.com — Most developers are familiar with the HTTP 1.0 Status Codes, that have been recently popularized by the SEO guys. We have all heard that you should use 301 Moved Permanently instead of 302 Temporary Redirect. What many of the SEO guys won’t tell you, because they don’t know any better, is that they are using the RFC 1945 HTTP/1.0 Standard that was released in May 1996, that is right it is about 12 years old. The newest HTTP/1.1 Standard, RFC 2616, was released in June 1999, and made some pretty drastic changes the the 3xx Redirect Status Codes. The goal of this post is to inform and familiarize developers with the HTTP/1.1 Standard, specifically the 3xx Redirect Status Code changes. This can have drastic effect on how you handle requests on your website and optimize your site for search engines. read more...

Add a comment add a comment | category: | Views: 12
tags: | tag it

2
kicks
submitted by zigamorph zigamorph 1 month, 17 days ago

coderjournal.com — The YUI Compressor yielded exceptional results, however it was missing one thing. Integration in to my build and deployment process. In IdeaPipe I use a MSBuild script to compile, manipulate, and prepare for publishing. So naturally I built a MSBuild Task to minimize my JavaScript and CSS files. read more...

Add a comment add a comment | category: | Views: 7
tags: | tag it

4
kicks
submitted by zigamorph zigamorph 1 month, 21 days ago

coderjournal.com — As you can see Norm MacDonald playing the character of Burt Reynolds transforms the category in Celebrity Jeopordy!, on purpose for comedy reasons. In my analogy Google is going to be the Burt Reynolds of your search, however instead of finding the wrong words on purpose it is going to do it because it is a dumb machine that does what it is asked even if the results are not contextually accurate. If you don’t control your URL, which is one of the highest ranking keywords on your site. You could end up decreasing the effectiveness of your keywords, as an almost duplicate keyword penalty. Granted I don’t know if something like this exists as a penalty, but when you are dealing with SEO it never hurts to be as careful and precise as possible. read more...

Add a comment add a comment | category: | Views: 3
| tag it

22
kicks
published 1 month, 22 days ago, submitted by zigamorph zigamorph 1 month, 22 days ago

coderjournal.com — So if you are to take anything away from this rant, take this, do what you love, and become the best at it. And if what you love isn’t your 9-5 job, deeply understand this and get out of the way of people who’s 9-5 job is what they love. read more...

Add a comment add a comment | category: | Views: 329
tags: | tag it

19
kicks
published 1 month, 21 days ago, submitted by zigamorph zigamorph 1 month, 22 days ago

coderjournal.com — Many of you probably have heard of OpenID, but have never had a chance to use it. However, I predict that most of you reading this will have used it by the end of the year. I can make this prediction with an almost 100% certainty because there is a growing movement behind it that has many big players actively buying developing and integrating their platforms with the OpenID protocol. To facilitate my prediction, of most of you using OpenID by the end of the year, I am going to give you 2 easy steps to turn your blog, or any website, in to a OpenID gateway. That will work for OpenID 1.0, 1.1, and 2.0 versions of the protocol. read more...

Add a comment add a comment | category: | Views: 126
| tag it

4
kicks
submitted by zigamorph zigamorph 2 months, 11 days ago

coderjournal.com — Slashdot has been around for over a decade now and many tech nerds first cut their teeth on Slashdot as an information source for everything tech related, because it predated the blogging revolution by almost a half decade. I can say with an almost certainty that every person who visits my blog each day, has at one point in their life read Slashdot. I know this because, many of you like myself, for many years Slashdot was the first place you visited in the morning to checkout the latest nerd-news, and it was such an honor if one of your stories actually made it the front page. Everything was bliss because the editors of Slashdot really tried to get good content to the viewers of the site, the editors were a little slanted towards the LAMP stack, but at least the content that made it to the front page was accurate. read more...

Add a comment add a comment | category: | Views: 1
tags: , | tag it

13
kicks
published 2 months, 11 days ago, submitted by zigamorph zigamorph 2 months, 12 days ago

coderjournal.com — Today I came across an interesting extension method pattern that I didn’t know how the runtime would react. Because I was calling a method from an object that was obviously null. Check it out it is pretty cool. read more...

Add a comment add a comment | category: | Views: 3
tags: | tag it

 

Sponsored Link: www.carlist.ie

Search:

Ads via The Lounge