CF Summit West in Las VegasAt Resorts World - New venue!!!
Sep 30 - Oct 1st for the Conference
Oct 2nd for the Certification
https://cfsummit.adobeevents.com/Pricing
$99 for the Session Pass right now.
Coupon code might be in your email if you are a previous attendee for even better pricing
$199 for the Professional Pass - include Certification Training on the 2nd of Oct.
https://cfsummit.adobeevents.com/register/registration/select Call for Speakers is Open!!!
https://cfsummit.adobeevents.com/speaker-application/ Accommodations
Resorts World
3000 S Las Vegas Blvd,
Las Vegas, NV, United States, Nevada
Looking for accommodations?
We've secured exclusive, low room rates of $105 + taxes/day especially for our attendees! Easy and hassle-free booking is just a click away.
Secure your spot now to make the most of your trip with comfortable and affordable accommodations
Ortus - Workshop - TBA
More conferencesNeed more conferences, this site has a huge list of conferences for almost any language/community.
https://confs.tech/Blogs, Tweets, and Videos of the Week
4/17/24 - Blog - Ben Nadel - Creating blockTrim(), inlineTrim(), and trailingTrim() Functions In ColdFusionIn terms of removing whitespace from a given string, ColdFusion has several built-in trimming functions: trim(), ltrim(), and rtrim(). On top of that, Lucee CFML has a trimWhitespace() function (which is a little confusing). And, as a code kata, I wanted to think about a few other trimming approaches: blockTrim(), inlineTrim(), and trailingTrim().
https://www.bennadel.com/blog/4635-creating-blocktrim-inlinetrim-and-trailingtrim-functions-in-coldfusion.htm4/19/24 - Blog - Ben Nadel - Paginating The Postmark Bounces API In ColdFusionAs I discussed in January, I've been sending out millions of emails in ColdFusion. I've never done anything at this scale before; and, I've been learning a lot of fun lessons along the way. With email delivery, the bounce rate is king. And, I've been doing whatever I can to keep our bounce rate low so that Postmark doesn't shut down our pipes. One valuable step in this regard was using the Postmark Bounces API to locate problematic email addresses from previous mailings so that I can remove them from the current mailing.
…
The Postmark Bounces API is both paginated and governed. You can only get 500 bounces in any individual API request. And, you can only read up to 10,000 bounces in a given From/To time-period. Which means, in order to gather up all the relevant bounces (at our scale), I need to implement a nested pagination workflow. That is, I need to incrementally step over both the entire window of a mass mailing and, for each segment within that window, incrementally step over the 500-result limit.
This results in a workflow that makes a lot of Postmark API calls. Any one of these API calls can break for a number of reasons; such as a network timeout or a server error. In order to create a resilient workflow, I need to persist the intermediary results such that if the workflow does break, I can pick up where I left off instead of having start over from the beginning.
https://www.bennadel.com/blog/4636-paginating-the-postmark-bounces-api-in-coldfusion.htm4/19/24 - Blog - Ben Nadel - Dedenting Text In ColdFusionI've been on a real regular expression kick this week. Between my previous post on parsing Postmark Bounce details and creating custom trim functions, it seems that regular expressions make a daily appearance in my programming life. And, today is no exception. As a fun code kata, I want to try dedenting text in ColdFusion. Spoiler alert: I use regular expressions.
Dedenting text is the act of removing the leading whitespace from each line of text. However, my dedent() function differs from my inlineTrim() function in that it maintains the relative indentation across lines. That is, it will dedent the text only until any one of the lines no longer has leading whitespace.
Basically, I examine every line of text, find the one with least amount of indentation characters, and then remove that amount of indentation from all lines of text.
https://www.bennadel.com/blog/4637-dedenting-text-in-coldfusion.htm4/20/24 - Blog - Ben Nadel - CF_SaveFile Custom Tag In ColdFusionA couple of years ago, on the Lucee Dev forum, I proposed a file attribute for the CFSaveContent tag in ColdFusion. This comes out of a pattern that I employ quite often in which I use the CFSaveContent tag to generate the contents of a static file; and then, use the fileWrite() function to save said content disk. So, why not combine these two steps into a single step using a ColdFusion custom tag.
https://www.bennadel.com/blog/4638-cf-savefile-custom-tag-in-coldfusion.htm4/21/24 - Blog - Ben Nadel - Using getApplicationMetadata() To Provide Global Defaults In ColdFusionA couple of weeks ago on Twitter, James Moberg and I were discussing ColdFusion application metadata. In recent years, ColdFusion has provided a getApplicationMetadata() function for retrieving the configuration associated with the current request (remember, the Application.cfc framework component is freshly instantiated on every single request). I've never used the getApplicationMetadata() function before; but, after my previous post on the ColdFusion custom tags, it occurred to me that I could use the ColdFusion application framework as a hook into providing global defaults for my custom tag attributes.
https://www.bennadel.com/blog/4639-using-getapplicationmetadata-to-provide-global-defaults-in-coldfusion.htm4/24/24 - Blog - Ben Nadel - Variables Scope Persists Across Custom Tag Execution Modes In ColdFusionColdFusion custom tags are just ordinary CFML templates that are executed using extraordinary mechanics. These mechanics allow custom tags templates to be used for looping, provide isolated rendering contexts, and allow for privately scopes template methods. These features aren't always obvious and are worth exploring. In this post, I want to demonstrate that the variables scope is persisted across the execution modes in a given tag invocation.
https://www.bennadel.com/blog/4641-variables-scope-persists-across-custom-tag-execution-modes-in-coldfusion.htm4/24/24 - Blog - Ben Nadel - ColdFusion Custom Tags Can Have Privately Scoped FunctionsIn my previous post on the CF_SaveFile ColdFusion custom tag, my SaveFile.cfm template contained a private method named dedent(). Because ColdFusion custom tags execute in an isolated page context, all of the variables defined within the custom tag remain encapsulated within the custom tag boundary. The same is true for any functions defined within the custom tag. Which means, ColdFusion custom tags can have privately scoped helper functions.
This behavior isn't surprising once you understand how ColdFusion custom tags operate; but, it may not be obvious. And, I think it's worth calling it out specifically.
https://www.bennadel.com/blog/4640-coldfusion-custom-tags-can-have-privately-scoped-functions.htm4/26/24 - Blog - Ben Nadel - Adding turbo-cfml To My ColdFusion + Hotwire Demos ProjectOut of the box, Hotwire Turbo doesn't work with ColdFusion / CFML because it doesn't recognize .cfm as a valid HTML file extension. To "fix this", I forked the Turbo project and created turbo-cfml, which does nothing but add cfm|cfml|cfc to the library's regular expression pattern matching. This morning, I then added a "hello world" demo, using turbo-cfml to my ColdFusion + Basecamp Hotwire Demos project.
https://www.bennadel.com/blog/4643-adding-turbo-cfml-to-my-coldfusion-hotwire-demos-project.htm4/28/24 - Blog - Ben Nadel - Inline Script Tag Execution In Hotwire Turbo And ColdFusionRight now, my Dig Deep Fitness application has no build process. And, every request to the application results in a full page refresh. I'm considering updating it to use Hotwire Turbo for faster navigation. But, I'm not confident in my understanding of how Turbo will interact with all of the inline <script> tags that currently drive the page interactions. As such, I wanted to put together a quick exploration of inline scripts operating within a multi-page ColdFusion application.
https://www.bennadel.com/blog/4644-inline-script-tag-execution-in-hotwire-turbo-and-coldfusion.htm4/24/24 - Blog - Robert Zehnder - Tidying up HTML with jSoupOne of the pet peeves I have with commandbox-ssg is that the output HTML has not been very tidy. If you have been developing with ColdFusion for a while you are probably familiar with the chunks of whitespace in your pages. One of the things that has been on the back burner for me is figuring out a way to remove this from generated output. I have considered looking in to ways to post process the HTML which I am sure node has some modules that will help with this, but I really wanted something ColdFusion specific to keep things simple.
https://kisdigital.com/posts/2024/04/tidying-up-html-with-jsoupCFML Jobs
Several positions available on
https://www.getcfmljobs.com/Listing over 123 ColdFusion positions from 76 companies across 52 locations in 5 Countries.
0 new jobs listed in the last few weeks
Other Job Links