
coldfused.blogspot.com
Coldfused?My Views on ColdFusion, Java and related technologies
http://coldfused.blogspot.com/
My Views on ColdFusion, Java and related technologies
http://coldfused.blogspot.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Saturday
LOAD TIME
1.4 seconds
PAGES IN
THIS WEBSITE
19
SSL
EXTERNAL LINKS
17
SITE IP
172.217.6.65
LOAD TIME
1.351 sec
SCORE
6.2
Coldfused? | coldfused.blogspot.com Reviews
https://coldfused.blogspot.com
My Views on ColdFusion, Java and related technologies
Coldfused?: June 2008
http://coldfused.blogspot.com/2008_06_01_archive.html
My Views on ColdFusion, Java and related technologies. Monday, June 30, 2008. New EvalAtPrint attribute in CFDocumentItem. A new evalAtPrint attribute has been added to cfdocumentitem tag in ColdFusion 801 which is applicable when the item type is header or footer. The default value of this attribute is false. The cfdocumentitem behavior with the default evalAtPrint value is identical to the behavior in ColdFusion MX 7, but differs from the behavior of the ColdFusion 8 release. In this case, ColdFusion e...
Coldfused?: November 2007
http://coldfused.blogspot.com/2007_11_01_archive.html
My Views on ColdFusion, Java and related technologies. Wednesday, November 21, 2007. 64 bit Support on ColdFusion 8 (Windows, Linux and Leopard). ColdFusion team is working to get ColdFusion 8 working on 64 Bit platforms(Windows, Linux and Leopard). If you are interested and want to participate in the testing of early releases of 64 Bit support on ColdFusion 8 on these platforms, please enroll yourself for prerelease program here. JRun updater 7 released. Some of the important platform support include.
Coldfused?: July 2009
http://coldfused.blogspot.com/2009_07_01_archive.html
My Views on ColdFusion, Java and related technologies. Friday, July 31, 2009. ColdFusion ORM : Troubleshooting - Lazy does not work. Few days back Manju. The related entity was in-fact getting loaded immediately. (Question for you - how will you know that lazy is working or not? This got me thinking - Why would a relation get loaded immediately even after it is marked lazy? And then suddenly it hit me - what if memory tracking is swithched on? So the lesson - If the 'memory tracking' is enabled on the se...
Coldfused?: December 2007
http://coldfused.blogspot.com/2007_12_01_archive.html
My Views on ColdFusion, Java and related technologies. Wednesday, December 19, 2007. Google to roll out wikipedia rival - Google Knol. Google is coming out with Google Knol (Knowledge) which is exactly what Wikipedia is all about. Read on. Http:/ googleblog.blogspot.com/2007/12/encouraging-people-to-contribute.html. Http:/ searchengineland.com/071213-213400.php. Friday, December 14, 2007. Firefox (Adblock plus) blocks even Google adsense. I have been using my new laptop at work (my old one crashed at MAX.
Coldfused?: July 2008
http://coldfused.blogspot.com/2008_07_01_archive.html
My Views on ColdFusion, Java and related technologies. Tuesday, July 01, 2008. ColdFusion Livedocs on AIR. I was doing a code review for Vinu today (dont ask me which feature it was :-) and we needed to check the reference doc for a tag. And instead of opening the local doc page, he opened this cool application that had livedocs and it was blazing fast (I know Livedocs sucks! And yes I work for Adobe ;-) . I was like 'whoa! Thats a cool app. Did you write it? Why dont you release it for public?
TOTAL PAGES IN THIS WEBSITE
19
Manjukiran Blogs here!: June 2007
http://manjukiranp.blogspot.com/2007_06_01_archive.html
ColdFusion, testing, etc. Enter your search terms. Wednesday, June 27, 2007. I promised to write about CFThread….but not finding enough time due to the hectic QA work. I am assigned to guage the performance of ColdFusion 8 and this is taking away all my time. Well performance testing is not all bad. It does throw you some cool challenges! And here is one such challenge I faced I like to share.And guess what, my story is a use-case for SERVER MONITORING! Well, rather easily! Sunday, June 10, 2007. Cfset f...
Manjukiran Blogs here!: Need testers for testing ColdFusion8 U1 64-bit support
http://manjukiranp.blogspot.com/2007/11/need-testers-for-testing-coldfusion8-u1.html
ColdFusion, testing, etc. Enter your search terms. Wednesday, November 21, 2007. Need testers for testing ColdFusion8 U1 64-bit support. ColdFusion8 U1 beta would be out soon. 64-bit support is one of the key features in CF 8 U1. We have a beta program running and would like to invite CF customers to test the 64-bit support. To sign up, visit Adobe Prerelease Programs. Posted by Manjukiran Pacchhipulusu. I still thought it had been practical. Excellent post! July 14, 2012 at 12:12 PM.
Rupesh's Blog: March 2005
http://rupeshk.blogspot.com/2005_03_01_archive.html
Saturday, March 19, 2005. Last 3 days have been playing around with DB isolation level trying to solve one customer issue. And this has confused me even more than I was till 3 days ago regarding this. I always had the impression that serializable. Here is what happened when I tried with SQL server and Oracle server. Select * from mytable where id=1;. Select * from mytable where id=2;. Insert into mytable values(1, 'name1');. Insert into mytable values(2, 'name2');. Here is what Oracle. The important thin...
Rupesh's Blog: Timestamp bugs..
http://rupeshk.blogspot.com/2005/11/timestamp-bugs.html
Monday, November 14, 2005. I hit upon two JDK 1.5 bugs today both related to Timestamp. Date date1 = new Date ();. Date date2 = new Timestamp(System.currentTimeMillis() ;. Int result = date2.compareTo(date1);. In some special cases, two different dates differing only in millisecond values are treated to be equal. You don't believe it? Long millis = System.currentTimeMillis();. Date date1 = new Date(millis/1000*1000);. Timestamp date2 = new Timestamp(millis);. Int i = date1.compareTo(date2);. The lesson i...
Rupesh's Blog: Do You Google ??
http://rupeshk.blogspot.com/2005/02/do-you-google.html
Saturday, February 26, 2005. Well All of us would say ofcourse! Several times a day. but most of us do not use its power. forget about using, most of us are not even aware of it. At least I was not until a few days back :-). 1 You can search for all the related words by using keyword search i.e by prefixing the word with . So searching for ' travel' will return the results for travel, vacation, hotel etc. 3 Similarly if you want to exclude some word from the search, you should prefix that with '-'. Word1...
Rupesh's Blog: February 2005
http://rupeshk.blogspot.com/2005_02_01_archive.html
Saturday, February 26, 2005. Well All of us would say ofcourse! Several times a day. but most of us do not use its power. forget about using, most of us are not even aware of it. At least I was not until a few days back :-). 1 You can search for all the related words by using keyword search i.e by prefixing the word with . So searching for ' travel' will return the results for travel, vacation, hotel etc. 3 Similarly if you want to exclude some word from the search, you should prefix that with '-'. Word1...
Rupesh's Blog: November 2005
http://rupeshk.blogspot.com/2005_11_01_archive.html
Saturday, November 19, 2005. Some nice Java puzzles. I came across these set of interesting java puzzles and for many of them I got trapped. See how do you fare ;) If you have a good explanation, don't hesitate to share it. Public static void main(String[] args){. Public static void foo(){. String s = "str4";. String s1 = "str" s.length();. System.out.println("(s= s1) = " (s1= s) ;. Public static void bar(){. String s = "str4";. String s1 = "str" "4";. System.out.println("(s= s1) = " (s1= s) ;. Public st...
Manjukiran Blogs here!: More Surveys from ColdFusion team!
http://manjukiranp.blogspot.com/2008/01/more-surveys-from-coldfusion-team.html
ColdFusion, testing, etc. Enter your search terms. Wednesday, January 16, 2008. More Surveys from ColdFusion team! Two more surveys from the ColdFusion team to collect data about ColdFusion features and Platforms/Vendors support for ColdFusion. Please fill out this survey. All the questions are straight forward and wouldn't take more than 5 minutes. Platform and Vendor Support. Http:/ www.surveymonkey.com/s.aspx? Sm= 2fJgulePMz 2f1GM6FGV6uMUQ 3d 3d. Http:/ www.surveymonkey.com/s.aspx?
TOTAL LINKS TO THIS WEBSITE
17
Welcome - Cold Fury Kickboxing Academy
Class Timetable and Locations. Membership and Class Prices. Contact Us and Links To Other Pages. Welcome to the Cold Fury Kickboxing Academy! Our classes offer an exciting opportunity to learn freestyle kickboxing in a family friendly and relaxed atmosphere. Our classes are suitable all sizes, all abilities and all levels of fitness. Our adult classes are for ages 12 to 80. Our children classes - the 'Junior Academy' - are for ages 6 to 12. We have a structured syllabus. Program for ages 6 to 12.
Acid Rain
I am a: bitch, a walking contradiction, a pathological dreamer. Take your pick. AcidRain, M.D.
ColdFusion Development Services
MySQL, MS SQL, Oracle. HTML5, CSS3, jQuery. ColdFusion Systems We Use. Editors (Eclipse, DreamWeaver etc.). Our company offers professional ColdFusion development solutions with valuable benefits for customers:. Rapid development of web-based apps. Top-quality apps with rich functionality. On time delivery of ColdFusion projects. Dedicated team of ColdFusion developers. Compliance with the W3C standards. Continuous technical support for ColdFusion projects.
coldfuse
A small digital agency, specialized in web development and web design. Its core team is very forward-thinking and agile. With them, the design and the user experience never take a second place, everything being developed with the end-user in mind. Spot a coldfuse project in the wild by looking after the purecold100%fuse*. Request a free quote.
Coldfused?
My Views on ColdFusion, Java and related technologies. Tuesday, September 15, 2009. ColdFusion ORM : Using DB Views instead of Table. Posted at http:/ www.rupeshk.org/blog/index.php/2009/09/coldfusion-orm-using-db-views-instead-of-table/. Monday, September 14, 2009. ColdFusion ORM : What is N 1 Select problem. Posted at http:/ www.rupeshk.org/blog/index.php/2009/09/coldfusion-orm-what-is-n1-select-problem/. Friday, September 11, 2009. ColdFusion ORM : Performance tuning - Lazy loading. Few days back Manju.
Blog de coldfused - Me & Mah FrIeNdz - Skyrock.com
Mot de passe :. J'ai oublié mon mot de passe. Me and Mah FrIeNdz. Bienvenue dans mon monde! Alors vu que tout le monde en fait y a pas de raison que moi, j en fasse pas un non plus =P, Alors vous trouverez ici les (jolies? Choses que je vois( dans la mesure du possible XD ), comment je les vois, et surtout.euh.et surout. bah en fait vous verrez koi =). N hesitez pas a lacher des coms lol, z etes la pour ca alors.faites dc! Mise à jour :. J ai vraiment la flemme de mettre a jour,. Abonne-toi à mon blog!
ColdFusion
Wednesday, September 10, 2008. Component methods may be made available as web services with no additional coding and configuration. All that is required is for a methods access to be declared remote. ColdFusion automatically generates a WSDL at the URL for the component thusly httppathtocomponentsComponent.cfc? Subscribe to: Posts (Atom). View my complete profile.
Home
Error Page cannot be displayed. Please contact your service provider for more details. (8).
Cloud Hosting, VPS, Windows & Linux Website Hosting
Register a Domain Name. Linux VPS w/ cPanel. System Alerts / Blog. Open a Support Ticket. Applies to New Subscriptions. From basic websites to Cloud Hosting,. All of our solutions include. Order Your Plan Now! Cloud Hosting Made Easy. Deploy cloud servers in seconds with our elegant yet powerful management tools. Our web hosting plans are optimized and tested against all of our major application platforms. Don't Miss Out on These Special Offers! 1st Month 99¢. Mdash; 30% Off. 1st Month for 99 Cents!
IIS7