GreaseMonkey: Helping To Make ColdFusion Developer's Journal NOT Suck

Posted March 14, 2007 at 1:59 PM

Tags: ColdFusion, Javascript / DHTML

I have to say that the ColdFusion Developer's Journal is one of those resources that I never use for the simple fact that interfacing with it is a horrible, horrible, horrible experience. I am on a T1 line here at work and CFDJ take about 14 seconds to load every page. Then, there's that Flash advert that always auto plays.

MAKES ME WANT TO KILL PEOPLE AND EAT THEIR BRAINS!

The problem is, CFDJ has great content - I just can't use it. Well, not any more! I finally sat down and wrote a GreaseMonkey script (FireFox, I love you) that rips all the annoying crap out of the page once it loads. This won't make the page load faster (as GreaseMonkey doesn't kick in until after the DOM is fully loaded), but at least it won't make me want to kill people any more (you are all finally safe!).

Who knows, I might even start to read CFDJ :)

If any one is interested, here is the GreaseMonkey script (click to install):

cfdj_clean.user.js

  • // ==UserScript==
  • // @name CFDJ - Cleaner
  • // @namespace http://www.bennadel.com/
  • // @description This cleans up the CFDJ page so that it
  • // does not drive me crazy and make me want
  • // to go around killing people.
  • // @include http://coldfusion.sys-con.com/*
  • // ==/UserScript==
  •  
  •  
  • // Get page elements.
  • var objHeader = document.getElementById( "pageheader" );
  • var objPanel1 = document.getElementById( "#panel1" );
  • var objPanel6 = document.getElementById( "#panel6" );
  • var objMainPanel = document.getElementById( "#mainpanel" );
  •  
  • // Try to manipulate the DOM.
  • try {
  •  
  • // Check to see if the header was found.
  • if (objHeader){
  •  
  • // Grab the tables from the header, but then get a
  • // to the first one. This is the main navigation
  • // table. We don't want to kill it.
  • var objHeaderTable = objHeader.getElementsByTagName( "table" )[ 0 ];
  •  
  • // Get the parent to this table.
  • var objParent = objHeaderTable.parentNode;
  •  
  •  
  • // Loop over the parent children in reverse order (so we
  • // don't go out of bounds).
  • for (
  • var intChild = (objParent.childNodes.length - 1) ;
  • intChild >= 0 ;
  • intChild--
  • ){
  •  
  • // Get a pointer to the current node.
  • var objNode = objParent.childNodes[ intChild ];
  •  
  • // Check to make sure the current node is NOT our
  • // main navigational table. Remember, we don't want
  • // to kill that one.
  • if (objNode != objHeaderTable){
  •  
  • // Remove this child.
  • objParent.removeChild(
  • objNode
  • );
  •  
  • }
  • }
  •  
  • }
  •  
  •  
  • // Check for elemnts and remove them.
  • if (objPanel1){
  • objPanel1.parentNode.removeChild( objPanel1 );
  • }
  •  
  • if (objPanel6){
  • objPanel6.parentNode.removeChild( objPanel6 );
  • }
  •  
  •  
  • // Now that we have more room, let's increase the width
  • // of the main content area.
  • if (objMainPanel){
  • objMainPanel.style.width = "700px";
  • }
  •  
  •  
  • } catch (objError){
  •  
  • // Something went wrong.
  • alert( "Greasemonkey Error:\n\n" + objError );
  •  
  • }


Reader Comments

Mar 14, 2007 at 2:54 PM // reply »
14 Comments

Nice script, and yes i agree, cfdj's interface really bites.

What upsets me, is that they are considering also to not print anymore, and go strictly to pdf's.

I am an old-schooler, i love having dozen's of cfdj's to peruse, look back at, in my hands.

Sometimes change is good, but sometimes it isn't.


Mar 14, 2007 at 2:59 PM // reply »
8,836 Comments

I agree... printing is nice. I guess, you can always print from PDF (which is cool to do at work when no one is looking ;)).... but something nice about being able to flip through a real mag on the subway or in the bathroom or something.


Mar 14, 2007 at 4:04 PM // reply »
4 Comments

Getting rid of those unwanted videos can be much easier using Adblock Plus that I use in place of Greasemonkey.


Mar 14, 2007 at 4:08 PM // reply »
8,836 Comments

What is AdBlock Plus? Is that a FireFox extension?


Mar 14, 2007 at 4:11 PM // reply »
4 Comments

Yep Ben,

Oh seems you havent heard of it.. Install it & believe me you will love it without any scripting you can control most of the unwanted stuff from a page.

I am using Adblock to even disable google ads(present in 90% of pages we visit)


Mar 14, 2007 at 4:44 PM // reply »
6 Comments

Make sure you install "Adblock Filterset.G Updater" with Adblock. This will keep your filter list current.


Mar 14, 2007 at 5:03 PM // reply »
8,836 Comments

Cool, thanks guys. I will check it out.


Mar 14, 2007 at 7:19 PM // reply »
4 Comments

This is awesome! No more Microsoft ads of noisy newspaper factories blasting over my speakers.

Thanks!


Mar 14, 2007 at 11:13 PM // reply »
1 Comments

Then there's Aardvark -- you activate it, then you can focus on just the center box, and one key (I think it's "I") to isolate that box. Really cool stuff.


Mar 15, 2007 at 1:15 AM // reply »
43 Comments

Are you aware of this:
http://cfdj.sys-con.com/index.rss

Some sites have the whole articles this way, but CFDJ just has the headlines. You could write a CF app that reads them all (And other sites you like) and collate all the results into a collected CF Resource site.

They also have free RSS Readers that you could view this in. example: http://www.feedreader.com/screenshots.php

I think you should make a Mashup site that pulls content from lots of CF feeds and strips out the garbage.

Glen


Mar 15, 2007 at 9:14 AM // reply »
9 Comments

then there's Platypus
http://platypus.mozdev.org/
a nice little extension that along with Greasemonkey can make your life easier and everything in a couple of clicks.

It's basically a graphical way of creating GM scripts for specific websites.

I live near DC so having to read washingtonpost online was a miserable experience, ads everywhere and the content always broken in multiple sections.

After Platypus I get rid of all the fat and just concentrate in the meat of the articles.

Try it, you'll see.


Mar 15, 2007 at 9:44 AM // reply »
8,836 Comments

Awesome. I will check it out. FireFox is so awesome.


Mar 16, 2007 at 7:47 AM // reply »
8,836 Comments

I just installed AdBlock Plus. Works awesome! Not only that, my pages are loading much faster. Thanks.


May 3, 2007 at 7:30 AM // reply »
4 Comments

LMFAO.. Superb article and inspiring GM script - top job.

Reading this article really does fill me with joy as I have been getting more and more angry with sys-con.com. The website is a total joke - packed full of commercial crap and adverts, adverts, adverts..
That's why it's strange how good CFDJ is.

I was getting incredibly angry with sys-con over that past month or so as we paid for a 2 year subscription, saw it was billed on the company credit card, but our account status was stuck on 'Pending Approval'! I must have submitted about 6 support mails which claims a 12 hour response but to this date have received *nothing*. Absolutely pathetic customer service.. I'm amazed they stay in business...

All said and done though, CFDJ is a superb resource and well worth paying for.. Just a shame sys-con.com isn't on the same level...

Will install the script now.. brilliant work.


May 3, 2007 at 7:58 PM // reply »
8,836 Comments

Glad you like it (and my writing ;)).



Post A Comment

Comment Etiquette: Please do not post spam. Please keep the comments on-topic. Please do not post unrelated questions or large chunks of code. And, above all, please be nice to each other - we're trying to have a good conversation here.

Please review the following issues:

Author Name:


Author Email:

Author Website:

Comment:

Formatting: <strong>bold</strong> <em>italic<em>







  • Help Wanted - Find Your Next ColdFusion Job
Recent Blog Comments
Sep 9, 2010 at 12:50 AM
New ColdFusion Error: Form Entries Incomplete Or Invalid
Once again you save my day Ben. Just migrated from Railo to CF9 and that error was everywhere, I was on the verge of tears... ... read »
Sep 8, 2010 at 7:28 PM
What ColdFusion Teaches Us About The Ultimate "Roll Your Own" Solution
This is how good enterprise software and good enterprise architecture is built. In addition to the time factor and the abstraction potential, the most compelling reason I've ever found to incorporate ... read »
Sep 8, 2010 at 4:47 PM
Ask Ben: Reading In A File Using CFFile And CFInclude
@Ben, Thanks for the quick reply. That was the idea. The getFileFromPath returns a "52648.tmp" file name which is generated by the server not the actual file name. I'm not sure how to extract t ... read »
Sep 8, 2010 at 4:10 PM
Strange ColdFusion URLDecode() and GetEncoding() Behavior
Yep - too strange since the second arg in urldecode is optional. I did run across the error and googled it and landed safely here. Thanks, Ben! ... read »
Sep 8, 2010 at 3:33 PM
What ColdFusion Teaches Us About The Ultimate "Roll Your Own" Solution
@Steve, @Darren, Excellent point! Keeping a platform API (any API at that matter) allows for a much easier time to swap underlying libraries, or even to build your own. @Rick, @Jacob, @JC, I thin ... read »
JC
Sep 8, 2010 at 2:02 PM
What ColdFusion Teaches Us About The Ultimate "Roll Your Own" Solution
@Jacob -- absolutely. The trick is knowing when it'll take less time to do it yourself than wedge someone else's oval shaped application into your round hole. ... read »
Sep 8, 2010 at 1:49 PM
What ColdFusion Teaches Us About The Ultimate "Roll Your Own" Solution
@Rick, I hope this isn't too off topic but, is this true? I've only been programming in the workplace for 4 years. I often look at what others have done and adapt it to my particular needs. Often t ... read »
Sep 8, 2010 at 12:39 PM
ColdFusion CFMailParam's New "Content" Attribute Is Awesome
Ben, Mine is version 8 and tried to download the update but still did not recognized content attribute in cfmailparam. May be I installed a wrong update, so many of them not sure which one I need wit ... read »