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.
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.
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
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
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
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
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
Earlier this week I wrote about how the JavaScript includes() method works on a string.
From: Jeffry Houser's Blog
Earlier this week I wrote about how the JavaScript includes() method works on a string.
From: Jeffry Houser's Blog
Javascript and its derivatives are immensely flexible.
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
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.
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
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
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.
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
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.
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
Early bird registration is open for my ColdFusion Security Training deep dive class in December.
From: Pete Freitag's Homepage
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.
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]
About a year I posted that I had deleted both my Twitter and Facebook accounts.
{ // 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
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
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.
We can implement a SQL Server equivalent of MySQL/MariaDB's "INSERT IGNORE" using MERGE INTO as follows...