Author Archive

Can’t do http.request? Are you behind the proxy?

Tuesday, December 20th, 2011

If that’s the case then instead of: http.get({ host: “www.google.com”, path: “/”, port: 80, method: “GET” }, function(res) { … }); do: http.get({ host: "proxy.url.com", // <- no protocol path: "http://www.google.com/#sclient=psy-ab&hl=en&safe=off&q=node.js&pbx=1", port: 8080, // <- your proxy port method: "GET", headers: { Host: "www.google.com" } }, function(res2) { … }); This will send your request [...]

e4x for ColdFusion, sort of…

Tuesday, May 17th, 2011

Coming from a Flex background I can’t imagine working with XML and not having e4x available. As you most likely know ColdFusion doesn’t have support for this fantastic notation. It has it’s own, clunky syntax for accessing XML elements within the document and an XmlSearch() function to query the document with XPath. I used to [...]

AppEmbassy Ltd

Monday, May 16th, 2011

There’s a new boy in the town – AppEmbassy Ltd.

ColdFusion 9 crashing? Try different garbage collection

Thursday, March 24th, 2011

For the ICS application we are using ColdFusion 9. For quite a while we had a major problem. Our CF server kept crashing at least once a day without any warning. One minute it was running just fine, 30 seconds later all memory was consumed (3GB assigned for the JVM). Server was totally becoming unresponsive [...]

What I’ve been up to for over 3.5 years

Wednesday, March 23rd, 2011

I’m sitting at the Miami International airport waiting for my flight back to London and looking at the past 3.5 years. I had a chance to work on a fantastic project that finally went live, 100% live. 3.5 years ago I joined Monochrome as a contractor to work on a project for a company trading [...]

Long time no see

Tuesday, November 23rd, 2010

It has been a long time since I last blogged anything here. There was a lot going on over last year. There’s been this massive project I was working on, ColdFusion, Flex, .NET, Java, Microsoft SQL Server 2008, moving away from green screen application and even some real time data synchronisation between two different geo [...]

Yet another ViewStack control for Silverlight

Tuesday, December 15th, 2009

In one of my recent Silverlight projects I had to use a ViewStack control. There is few of these already available here and there but I thought it might be fun to build new one from scratch. As image speaks more than words here is the sample. And here is the source code. Hope this [...]

Flex Builder 3 Linux Alpha 5 available on labs.adobe.com

Wednesday, November 25th, 2009

I’m sure everyone who’s interested in Flex Builder for Linux already knows that by following Twitter and Adobe JIRA. So what’s exactly happened? Today, just 5 days before Flex Builder alpha 4 was to expire Adobe released an alpha 5 update on labs.adobe.com which is going to expire in 401 days. I have the gut [...]

Printing data on multiple pages with Silverlight 4

Friday, November 20th, 2009

This week at PDC09 Microsoft unveiled latest Silverlight release – first beta of version 4. One of the new features is printing support. There is a great video introduction to printing published by Tim Heuer. It show the basics, after watching it my first question was how to print the data on multiple pages. Here [...]

Installing and connecting Apple Built-in iSight in Windows 7 x64 running under VMWare Fusion

Thursday, November 19th, 2009

It took me a while to figure out how to install Apple Built-in iSight driver so it could be used in Windows 7 x64 running inside VMWare Fusion. I have finally found a solution here. Installing the drivers: run cmd.exe as Administrator D: (or whatever the drive letter of mounted CD is) cd "Boot Camp\Drivers\Apple" [...]