category: UNIX
2
comm

Disclaimer: I figured this out from other sites and other’s hard work. Not only that but another classic case for how much we take advantage of the amazing functionality of OpenSSL.
To import your certificate to Windows, you will first need to combine your primary certificate with your private key file in a .pfx type backup [...]

category: DHTML
2
comm

Use jQuery’s jQuery.extend( TRUE, target, object1, [objectN] ) “DEEP EXTEND” instead.

var tt = {one:[{two:1}]};
var ttt = $.extend(true, {}, tt);
alert(ttt.one[0].two == tt.one[0].two);   // output true
ttt.one[0].two = 2;
alert(ttt.one[0].two == tt.one[0].two)// output false
category: DHTML
9
comm

I’ve seen my share of Dynamic HTML Date Pickers, Javascript Calendar controls, and the like. Each of which have a more horrifically ugly interface and are bloated with features. I found a need to create a simple calender piece so that a user could add a product to their cart when clicking on a specific [...]

category: DHTML
0
comm

UPDATED - 11/28/2007

Fixed issue with scrollable document window. It will not properly position in IE6.2800, IE7, and FF2 with loose.dtd. Will test with Safari shortly.

UPDATED - 10/16/2007

fixed issue with not properly aligning the balloon vertically when on the “top” of the element it’s pointing at. This was an obvious problem when the balloon was pointing [...]

0
comm

Have you needed to acquire the exact values of a specific request header from the client? Do the default CGI variables in Coldfusion not offer access to a specific request header that you need?
If so, the fabled getPageContext() method offers easy access to the string values of these request headers.
<cfoutput>#getPageContext().getRequest().getHeader(”Host”)#</cfoutput>
<cfoutput>#getPageContext().getRequest().getHeader(”Cookie”)#</cfoutput>
<cfoutput>#getPageContext().getRequest().getHeader(”User-Agent”)#</cfoutput>
<cfoutput>#getPageContext().getRequest().getHeader(”Referer”)#</cfoutput>

0
comm

Ever been stuck with a CFAJAX-driven application that throws a CFERROR that causes the AJAX application to “break” when it comes to the user-experience…?
One problem with the development cycle and regression testing of CFAJAX-based applications is the inability to easily “capture” errors as they happen in the Coldfusion code that makes up the actual AJAX [...]

6
comm

Mammoth Mountain Ski Area in simple and barely interactive Papervision3D demonstration. This is using USGS DEM (Digital Elevation Map) data and properly applied black and white orthography from terra-server:

2
comm

Yes, another 3D terrain map done in Papervision3D. Below is a proof of concept that USGS D.E.M. (Digital Elevation Model) information can be easily placed into a Papervision3D Mesh.
I will be developing this further to make the [x,y,z] more “visually correct”. There are many more things to be done, but this is a simple example [...]

category: DHTML, UNIX
2
comm

If you have seen this error appear in your Apache logs:
(104)Connection reset by peer: proxy: prefetch request body failed to 10.0.0.2:80 (10.0.0.2) from 10.0.0.2 ()
.. or any error related to what appears to be your mod_proxy declarations failing - as we have - I have discovered two things that will help prevent this issue. This [...]

0
comm

Every CFAJAX example I’ve seen thus far has only shown the transmission of simple datatypes from Javascript to a CFAJAX handler Coldfusion file. I wanted to go a step further and bring a completely native Javascript JSON object into Coldfusion.
Make sure you have the newest implementations of the following:

json.js version ‘2007-01-10′ or later from http://www.json.org/js.html [...]

Newer Posts
monetary contributions are always accepted $
2.284s