InterWorks Blog - Anything Dev

Get Your Web App On!

Monday, January 23, 2012
With iOS5 boasting such an wide array of HTML5 and CSS3 support there's no better time to start dipping your toes in the world of web app creation. So I thought I'd go ahead and put together a quick ...  [ More ] ...

Coldfusion 9.0.1 Secure JSESSIONID Cookie

Thursday, December 8, 2011
We are running a couple Coldfusion 9.0.1 servers with all the latest hotfixes and updates. We also needed secure cookies for these particular servers and we are using JSESSIONID instead of the CFID ...  [ More ] ...

Tortoise SVN PowerShell helper function

Tags:
Wednesday, October 12, 2011
Do you work from the command line? Use PowerShell? SVN? While the SVN command line client is certainly usable, there are definitely times where a GUI is more convenient. Specifically during a ...  [ More ] ...

Querying Specifc Inheritance Types in Entity Framework

Tags: .Net, C#, EF, Linq
Friday, April 15, 2011
The Problem When using Entity Framework let's say you set up a model with inheritance. Let's make ourselves a simple example (with psuedo-code) to illustrate: abstract class Product{ int Id { get ...  [ More ] ...

Scripting Tips: Take your PowerShell profile everywhere with Dropbox

Friday, March 25, 2011
Scripting Tips is an on-again-off-again series for command line fiends. I'll try to keep these short and sweet. To dig a 'lil deeper you can find me on Twitter. I'll cover these prerequisites in ...  [ More ] ...

Internet Explorer ignoring CSS files

Monday, February 14, 2011
Like most web developers, I do most of my development work in one browser (in my case, Firefox) and then do cross browser checks after I've finished my work. One issue that I recently saw crop up was ...  [ More ] ...

Wrapping Text in a Cocos2d CCLabel

Monday, September 20, 2010
Have you ever wanted to insert a new line character or set the appropriate height for some font size when you know the width to wrap text on a CCLabel in Cocos2d? Here is a quick snippet on how to ...  [ More ] ...

ColdFusion Scheduled Tasks and SSL

Friday, August 13, 2010
There appears to be much trouble and confusion using ColdFusion and scheduled tasks over SSL. If you Google search or check out the official Adobe forums there are numbers of threads mentioning this ...  [ More ] ...

Simple Long Polling in WCF - Server

Tags: .Net, C#, WCF
Friday, July 30, 2010
Recently I've been working on a RESTful HTTP server in WCF for a really cool project that isn't public yet, but should be soon.  I say RESTful, but it's not religiously so; more accurately its ...  [ More ] ...

SQL Server: The index "[IndexName]" on table "[TableName]" cannot be reorganized because page level locking is disabled.

Monday, May 10, 2010
If you've managed production database servers for any amount of time, you may have run into this error message in your maintenance plan logs. "The index "[IndexName]" on table "[TableName]" cannot be ...  [ More ] ...