-
Recent Posts
Recent Comments
- elopezrios on Force .NET application to run in 32bit process on 64bit OS
- mck ☠ on Migrating to Git
- Michael Freidgeim on Dynamic reflection versus static reflection
- Groverboy on Synchronizing calls to the UI in a multi-threaded application
- Rvsawant21 on Step-by-step Introduction to Delegates and Lambda Expressions
Archives
Categories
- asynchronous
- book
- bootstrapper
- brownfield
- BUILD
- ClickOnce
- commands
- Conference
- CQRS
- data binding
- delegates
- design
- developer
- didactics
- Event sourcing
- Fluent NHibernate
- fluent Silverlight
- framework
- Git
- hiring
- How To
- installation
- interactive extensions
- introduction
- job
- jQuery
- lambda expressions
- learning
- legacy code
- methodology
- misc
- Mock
- mocking framework
- Mono
- Mono Cecil
- MSIL
- multi threading
- MVVM pattern
- NHibernate
- no-database
- NSIS
- patterns
- personal
- plugins
- practices
- presentation
- PTOM
- refactoring
- reflection
- reporting
- review
- Setup
- Silverlight
- SOLID
- Styles and Templates
- TDD
- tutorial
- Uncategorized
- validation
- Windows
- WIX
- Workflow
Meta
Category Archives: jQuery
Event Aggregator And/Or/vs Mediator: A Tale Of Two Patterns
Design patterns often differ only in semantics and intent. That is, the language used to describe the pattern is what sets it apart, more than an implementation of that specific pattern. It often comes down to squares vs rectangles vs … Continue reading
using the asp.net lego blocks to create a synchronized Kanban board.
Over the last 1-2 years the capabilities of the web lego blocks (libraries) have really come together to allow us, the web development community. to start putting together some really interesting applications. The best part is all of the plumbing … Continue reading
Twitter.Bootstrap.MVC4– new release 1.0.71
To learn more about the Package read these blog posts: Introduction Release 1.0.71 Bootstrap MVC – Menu System Some interesting stats for the project. It has gotten a bunch of attention on the interwebs. The package has over 2,500 downloads, … Continue reading
Code review of a Publish/Subscribe Architecture using SignalR in Home Automation – Part 4
Part 1 – Synchronizing webpages across devices with SignalR Part 2 – Architecture for a SignalR Synchronized Webpage Application Part 3 – Publish Subscribe using SignalR Part 4 – Front End Code Review Previously, I covered an example of synchronizing … Continue reading
Publish and Subscribe using SignalR in Home Automation – Part 3
using signalR aspnetmvc knockoutjs javascript jquerymobile x10 Part 1 – Synchronizing webpages across devices with SignalR Part 2 – Architecture for a SignalR Synchronized Webpage Application Part 3 – Publish Subscribe using SignalR Part 4 – Front End Code Review … Continue reading
Architecture for a SignalR Synchronized Webpage Application
using: signalR aspnetmvc knockoutjs javascript jquerymobile x10 Part 1 – Synchronizing webpages across devices with SignalR Part 2 – Architecture for a SignalR Synchronized Webpage Application Part 3 – Publish Subscribe using SignalR Part 4 – Front End Code Review … Continue reading
Comments Off
Synchronizing webpages across devices with SignalR – Part 1
After your done with this post, explore the others in this series: Part 1 – Synchronizing webpages across devices with SignalR Part 2 – Architecture for a SignalR Synchronized Webpage Application Part 3 – Publish Subscribe using SignalR Part 4 … Continue reading
Comments Off
Extending Objects in jQuery
Welcome to my journey of extending objects in JavaScript frameworks; let’s explore jQuery! Extending an object in jQuery is simple, there are just a few rules you need to understand. Extension works from left to right and you’re allowed to … Continue reading
$(function(){…}) vs (function($){…})($) or DOMReady vs The Module Pattern
This was originally a StackOverflow question. I’m re-posting here because I think the question is fairly common, and I like the answer that I provided. Why define anonymous function and pass it jQuery as the argument? This is the original … Continue reading
Backbone.Syphon: Serialize Form Inputs To JavaScript Objects
Working with form elements in a Backbone view can become very tedious very quickly. You will either end up writing a lot of repetitive code to read values from the form, or end up using a key-value-observer or data-binding solution … Continue reading
