Edy Ionescu
Member since Jul 1, 2010
- Profile: /members/6339-edy-ionescu.htm
- Comments: 8
Recent Blog Comments By Edy Ionescu
-
Win A Copy Of JavaScript Enlightenment By Cody Lindley
Posted on Aug 25, 2011 at 4:52 PM
http://img199.imageshack.us/img199/2615/imagehvc.jpg... read more »
-
Using jQuery's Deferred Functionality For Asynchronous Configuration
Posted on Jun 16, 2011 at 12:19 PM
Or, if the charset is important <cfset uuid = "üäßö"/> <cfcontent type="text/plain" variable="#uuid.getBytes("utf-8")#">... read more »
-
Using jQuery's Deferred Functionality For Asynchronous Configuration
Posted on Jun 16, 2011 at 12:14 PM
@Ben, You could do this too: <cfcontent type="text/plain" variable="#uuid.getBytes()#">... read more »
-
Awesome Tips For Using Firebug To Navigate And Augment The DOM
Posted on Jun 1, 2011 at 6:35 AM
@Loic Paul Irish is the Man :) http://vimeo.com/5954529... read more »
-
Awesome Tips For Using Firebug To Navigate And Augment The DOM
Posted on Jun 1, 2011 at 5:41 AM
There's more in Firebug's Command Line API http://getfirebug.com/wiki/index.php/Command_Line_API. Also, you should check the Chrome Dev Tools presentation given by Paul Irish and Pavel Feldman this year at Google I/O http://www.youtube.com/watch?v=N8SS-rUEZPg .... read more »
-
The Social Network Starring Jesse Eisenberg, Andrew Garfield, And Justin Timberlake
Posted on Oct 4, 2010 at 5:48 AM
an athlete "in the zone" . This expression is more often used in tennis and describes 'that special mental state where everything flows effortlessly and the player is playing at peak performance' ( http://www.tennismindgame.com/zone.html ). This term also reminds me of Andrei Tarkovsky's... read more »
-
Post-Instantiation CFC Method References Don't Show Up In CFDump In ColdFusion 9
Posted on Jul 21, 2010 at 4:57 AM
The cfdump documentation does not provide any informations on hiding the CFC method references. On the other hand, looping over the "test" collection doesn't miss any of its keys, so this would mean that the references are partially exposed which looks kinda buggy. Instead, the getMetaData func... read more »
-
CreateObject() In ColdFusion 9 No Longer Requires The Type Parameter
Posted on Jul 1, 2010 at 3:47 PM
I myself prefer this <cfset obj = new "#Request.p_cfc_root#.component"() /> to importing (assuming, of course, that the component contains the init() method).... read more »