deps.edn and monorepos X (Polylith)

This is part of an ongoing series of blog posts about our ever-evolving use of the Clojure CLI, deps.edn, and Polylith, with our monorepo at World Singles Networks.

From: Sean Corfield: An Architect's View

How do you Deploy an Angular app?

This question comes in from a reader of one of my books, who was curious about how to deploy an Angular application to his ColdFusion server.

From: Jeffry Houser's Blog

Speaking at ColdFusion Summit Online Next Week

I will be giving my talk Taming the Top 25 Most Dangerous Software Weaknesses (for ColdFusion Developers) next Tuesday, December 6th 2022 at 1pm US Eastern Time.

From: Pete Freitag's Homepage

Improving Lucee's QoQ Support Again- now 200% faster

Two years ago, I published this post detailing how I had refactored the Query of Query support in Lucee to be much better and also much faster: https://www.

From: Coders Revolution

What version of Node should I use with Angular?

Today I learned someone put together a chart to tell which version of NodeJS works best with which version of Angular.

From: Jeffry Houser's Blog

Sample Code for the ColdBox Master Class

Are you taking the ColdBox Master Class on CFCasts? Some folks were asking where to find the Vandelay Forum app that I used in the video training.

From: South of Shasta: Software Development, Web Design, Training

How does the includes() method work on a JavaScript Array of Objects??

Earlier this week I wrote about how the JavaScript includes() method works on a string.

From: Jeffry Houser's Blog

How does the includes() method work on JavaScript Arrays?

Earlier this week I wrote about how the JavaScript includes() method works on a string.

From: Jeffry Houser's Blog

Why I'm finally learning Rust

Javascript and its derivatives are immensely flexible.

From: Michael Walter Van Der Velden

How does the includes() method work on JavaScript Strings?

I have a discussion with another developer about a section of code that had the use of the includes method on a string, and there was some confusion about what it did, and I thought I'd write this full blog post.

From: Jeffry Houser's Blog

Adobe has started to open the prerelease Alpha for ColdFusion 2023 (codename Fortuna)

If you're active in social media you may have heard the news already, but for those who are not, Adobe has started to open the prerelease program for the next CF version, aka ColdFusion 2023--though known for now formally by its code name, Project Fortuna.

From: Charlie Arehart - Server Troubleshooting

More on Date Conversions

I was recently working on an app where the user was entering one date, but the date was turning into something else.

From: Jeffry Houser's Blog

How do I Publish my own Docker Image?

In the initial rendition of the LearnWith book series, I gave instructions on how to create a database and populate it with SQL, but left no instructions or details on how to set up or install a DB Server from scratch.

From: Jeffry Houser's Blog

deps.edn and monorepos IX (Polylith)

This is part of an ongoing series of blog posts about our ever-evolving use of the Clojure CLI, deps.edn, and Polylith, with our monorepo at World Singles Networks.

From: Sean Corfield: An Architect's View

Free ColdBox Training For The Rest Of 2022

CFML developers that still say "I don't know how to use ColdBox", your excuses are now officially invalid. ;) The ColdBox Master Class video training series that I produced for Ortus Solutions is FREE for the rest of the year!

From: South of Shasta: Software Development, Web Design, Training

Restoring the CF Admin logviewer removed in Oct 2022 CF updates, at your own risk

As of the Oct 2022 CF updates (CF2021 update 5 and CF2018 update 15), Adobe has chosen to remove the CF Admin feature to view, search, download, and delete CF logs, due to asserted (but as-yet undocumented) security concerns.

From: Charlie Arehart - Server Troubleshooting

OpenSSL and ColdFusion / Lucee / Tomcat

I've had a several people asking me about the openssl vulnerabilities that were patched this week: CVE-2022-3602 and CVE-2022-3786 aka Spooky SSL.

From: Pete Freitag's Homepage

ColdFusion Security Training Class December 2022

Early bird registration is open for my ColdFusion Security Training deep dive class in December.

From: Pete Freitag's Homepage

Special offer: upgrade to ColdFusion 2021 from CF2016 or earlier, saving perhaps thousands of $$

If you're running CF2016 or earlier, now's your chance (though the end of the year Feb 28, 2023) to save potentially thousands of dollars in upgrading to the latest current version, CF2021.

From: Charlie Arehart - Server Troubleshooting

How to solve "Failed Signature verification", for downloads of ColdFusion updates--since Oct 2022

If you try to download a CF update using the ColdFusion Administrator AND you get an error, "error occurred while installing the update: Failed Signature Verification", there are both a couple of possible explanations (one of them new), both with fairly simple solutions. [More]

From: Charlie Arehart - Server Troubleshooting

Social Media Revisited

About a year I posted that I had deleted both my Twitter and Facebook accounts.

From: Sean Corfield: An Architect's View

Why would I use an underscore as an argument to an arrow function?

{ // do stuff } This is weird syntax; what does it mean? First, you can create an arrow function in a few different ways.

From: Jeffry Houser's Blog

How Long Has Your ColdFusion Server Been Running?

Someone asked on the CFML slack recently how can you find out how long your ColdFusion (or Lucee) server has been running via code.

From: Pete Freitag's Homepage

New updates released for Java 8, 11, 17, and 19 as of Oct 18 2022

Here's a heads-up that some will want to hear about: there are new JVM updates released today (Oct 18, 2022) for the current long-term support (LTS) releases of Oracle Java, 8, 11, and 17, as well as the new interim update 19.

From: Charlie Arehart - Server Troubleshooting

Rerunnable data update scripts for Microsoft SQL Server

We can implement a SQL Server equivalent of MySQL/MariaDB's "INSERT IGNORE" using MERGE INTO as follows...

From: Steve Neiland: Blog of a Web Developer