Chat
-
Recent Posts
Recent Comments
Twitter Updates
- First time I noticed this being live…http://t.co/kAAW0LR3 #laravel 5 days ago
- @newscientist I believe your Maxwell's equations are incorrect. Need 'c squared' instead of 'c'. Even then only valid for charge free region 1 week ago
- @popmoney Any developer API for your service? I want to send money to someone using their email programmatically. 1 week ago
- @laravelphp How stable is 3.0 right now? I would assume fairly stable since release seems imminent. Really want bundles & migrations. 2 weeks ago
- @naomicbush Email me if you have questions. bob.cravens at diglabs dot com 3 weeks ago
Archives
- October 2011
- July 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
Categories
- .net
- .netmf
- agile
- ajax
- arduino
- asp.net
- best practice
- build
- business logic
- c#
- ci
- css
- dasBlog
- data access
- design
- di
- engineering
- geolocation
- GoDaddy
- hardware
- heartland
- html
- javascript
- jQuery
- linq
- linux
- mac
- mapping
- mono
- mr marky
- mvc
- mysql
- netduino
- nhibernate
- ninject
- paint.net
- photogallery
- php
- preso
- product review
- python
- release
- Remote Desktop
- repository
- security
- silverlight
- subversion
- technology
- testing
- tools
- Uncategorized
- VISTA
- visual studio
- WCF
- web
- web service
- WIN32
- WIN7
- winform
- wordpress
- wp7
Meta
Author Archives: rcravens
Automate Your Database Backups
I have a few blogs and other applications that leverage MySQL as a database. I wanted to automate the backup of the associated database data. My specific requirements are: Needs to work on Windows Server (my hosting machine). My database … Continue reading
Python Script to Build, Test and Pack .NET Projects
At work we use Jenkins as our continuous integration server. Our implementation at work has to integrate with ClearCase and does a few tasks before actually doing the build. This is pretty typical. Our setup then calls an external script … Continue reading
Posted in build, ci, python
Leave a comment
Busy, Busy, Busy…
Bookmark on Delicious Digg this post Recommend on Facebook share via Reddit Share with Stumblers Tweet about it Subscribe to the comments on this post
Posted in agile
3 Comments
4 Principles To Estimation Applied To Software Development
Estimating when a new software feature will be done is a tricky but important task. “When will you be done?” Typically on the other end of this question is the person writing your check. Maybe not directly, but follow the … Continue reading
Posted in agile, best practice
2 Comments
A .NET Generic Repository Pattern With Implementations
I previously blogged about the repository pattern and .NET implementations. Here are the links to those old posts: The Repository Pattern The Repository Pattern – Part 2 Since that time, I have zeroed in on a fairly robust implementation of … Continue reading
Posted in .net, data access, design, nhibernate, repository
2 Comments
Testing Your CRUD Using Generics
I often use a generic repository pattern as a wrapper around my data access logic. This wrapper generally serves the purpose of encapsulating specific implementation details. Here are the repository interfaces that I current use: public interface IReadOnlyRepository<TEntity> where TEntity:class … Continue reading
Posted in data access, nhibernate, testing
Leave a comment
Upload Multiple Files With Progress Using Uploadify
I previously posted on how to use Uploadify to upload files. The previous post covered really well how to upload single files to an ASP.NET MVC controller using Uploadify. This post will expand on that a bit. First we will … Continue reading
Posted in asp.net, jQuery, mvc, web
12 Comments
A Modal Dialog Plugin for jQuery
There are a number of great jQuery modal plug-ins that already exist. So, why am I cluttering the interwebs with yet another one? There are a number of reasons: Feature Bloat – A number of plug-ins offer a lot of … Continue reading
Posted in jQuery
Leave a comment
Loosely Coupled JavaScript Using PubSub
I recently watched a very interesting video by Rebecca Murphy that discussed using the pubsub architecture to create loosely coupled JavaScript. The concept is to develop your JavaScript objects and allow the communication between the objects to occur via events … Continue reading
Posted in jQuery, javascript
2 Comments
Web Charts Using jQuery Flot
Adding charts to your web application is simple using a library called ‘Flot’. Flot is a pure JavaScript plotting library for jQuery. It produces graphical plots of arbitrary datasets on-the-fly client side. During this post I will explore using the … Continue reading
Posted in jQuery, javascript, web
21 Comments