LunaticThinker.me

Thoughts on code and poetry.

Welcome to LunaticThinker.me - thoughts on code and poetry.

Dumping Object Inside Cfscript Tag

I’ve been looking for this a few times now, until now i’ve found two interesting options.

One is creating a cffunction of your own, and using it inside a cfscript afterwards:


    
    

The other one is using a 100% cfscript approach, which can also be placed in a function of your own:

createObject("component", "cfide.adminapi.base").dump(var);

Also, starting ColdFusion 9, you can use the writeDump function.

Java Media Framework vs IP Camera JPEG/MJPEG – Reviewed

NOTE:

  • I will try not to re-write again all the informations I already wrote in “Java Media Framwork vs IP Camera JPEG/MJPEG” a few years ago. This article is only a review of what I wrote back then, plus more info about my implementation of DataSource for JPEG/MJPEG IP Cameras.
  • Another note is, that this project of mine, has been attached to my own company which I founded a few years ago and I’m still trying to grow it. Project licence will be LGPL.

OK… Since Oracle bought SUN a few years ago, but their website still doesn’t reflect all info about Java Media Framework, it’s still best do Google after the info about JMF, than give you a specific link.

0%