Currently Browsing: jQuery

Toolset 2009

Most of my work so far this year has been with one client. This client was a Java shop for quite some time and is pretty green to Microsoft. Also, they don’t seem to ever have had real success with building enterprise class systems. That’s not to say that they haven’t wrote very large and very complex systems. They have done it all with either the bare minimum in tooling or a incorrect implementation of the tooling. In fact; one of their primary reasons for moving to .NET was to perform a tooling reset. They decided it was too hard to use technology like OR/M, DI, Messaging, and MVC. The...
read more

A completely biased comparison of ASP.NET MVC and Webforms

I have to admit I am total bias towards MVC but hear me out. I have yet to work in an organization that implements an OOP or even MVP when using WebForms. It’s all been directly bound controls to data readers/sets/tables. No object model, no business object layer, page_load is used and abused, etc. It can’t be stated enough that MVC will not save a project from the bullshit code that is forms over data crap but at least there is hope in the form of a tiny amount of guidance from Microsoft. </rant> Introduction In the .NET world the MVC pattern is relatively new but it has been the staple...
read more

Twitter Map Mashup

I did a search the other day for the a new blog post I saw fly by on Twitter about the top 100 twitter applications and ended up re-reading a post from RRW about the top 10 twitter applications.  Now the post is from 2007, so I am sure that the top 10 has changed quite a bit. What I took away from the article was a note about Twitter Atlas. What’s it missing? The ability to get only your Twitter group’s tweets shown on the map. First thought: really, that’s so silly there has to be a fun little mashup for that…and I on went to check out the top 100. Once there I pulled...
read more

jQuery, Ajax, prepend and events (onclick?)

Ok, why in gods name can’t I figure this out! Adding simple elements to the DOM works…no problem. 1: new_elem = '<a href="#" onclick="alert(\'alert\')">MyAdd</a>'; 2: var test = $(new_elem); 3: $('#home_column').prepend(test); .csharpcode, .csharpcode pre { font-size: small; color: black; font-family: consolas, "Courier New", courier, monospace; background-color: #ffffff; /*white-space: pre;*/ } .csharpcode pre { margin: 0em; } .csharpcode .rem { color: #008000; } .csharpcode .kwrd { color: #0000ff; } .csharpcode .str { color: #006080; } .csharpcode .op...
read more

Why would I not code stuff using Adobe Air?

Really, why have I waited so long to jump into a platform that is based on JavaScript…and HTML and CSS. Really, after spending 1.5 hours with Air I am totally amazed at my own stupidity. Oh’ and I started on YAAATC (Yet another adobe air twitter client) yaht-C…its like expresso and espresso… Its rather late and I have to get up early…to go to work and code more Air stuff I guess…
read more

Pinggr – meta micro blogging

Or just what I coded to I could lean how to use facebook connect… Background When facebook connect was released I wanted to code something to see how it all worked. I wanted to code something I could prop up relatively quick. Partly due to my lack of time but also because I have not released one single piece of software all year! I decided that, since I was just hopping into the land of twitter and I found it complicated to manage my twitter status and my facebook status, that I would write a small app that would allow me to update the status of each site either concurrently or independently. Specifications support...
read more

ASP.NET MVC SiteMap

Note: This code does not support caching or security trimming. It is simply a way to build something that compares to the .NET TreeView control using the MVC pattern. Recently one of my clients had the "perfect storm" of requirements, restrictions, deadlines and policies that lead to the need to develop a MVC TreeView(ish) control.   Requirements: Database storage – Site administrations needed a simple interface into editing and I was not about to write something to update XML files. NOT use the SQL Service Broker for easy SQL caching support – Security concerns….I...
read more

Thinking about the difference between frameworks

JavaScript Library Overview View SlideShare presentation or Upload your own. (tags: libraries javascript)
read more

My take on Microsoft shipping jQuery

First, if you have not heard, Microsoft will be shipping jQuery as part of visual studio. And if the swiftness that the .NET team moves I am sure we can see it in a the next SP. Update: Just re-read the article…The jQuery intellisense annotation support will be available as a free web-download in a few weeks…w00t. jQuery jQuery is great, its selector engine is by far the simplest and (I think) most powerful component. But, when using jQuery I always seem to be looking for pluggins…widgets…etc. Microsoft’s Challenge Even though my current shop uses dojo, which I love too!, I am truly...
read more