Articles with tag : programming
Repositorieshttps://github.com/jmohler1970/WordExtractor https://github.com/jmohler1970/WordExtractor_demoIntroductionWe are going to be extracting out HTML from a Word (.docx) file..docx is an example of an Open Document Format for Office Applicatio...
With advances in computing and transition from single-user desktop application to web-based application, multi-threading emerged as a core feature for all modern programming languages. In ColdFusion, you can implement threads using cfthread. However,...
I talked a lot about Buefy in video 8, but I didn't have a chance to dive into the HTML. Rather than having a long video, I split it at the end of the `assets/app.js` discussion.PATTERNS VUEJS `{{ }}` ie `{{login_token}}` `v-` ie `v-mod...
Changes include * Updating DB schema * Updating Bean/Entity * New Taffy endpoint for loggin in * Validating taken * Granting and denying access [video width="1920" height="1080" mp4="https://coldfusion.adobe.com/files/2018/11/Taffy-for-REST-Part...
VUEJS FOR COLDFUSION DEVELOPERS: FIRST 10 MINUTES What is it? It is a Javascript technology that does all kinds of front-end DOM manipulation. It takes dull HTML and turns it into an application. If you are familiar with jQuery or AngularJS or Angula...
NUMBER2TEXTCONVERTER.CFC This is a component that takes a number as an argument and returns a string representation of that number. It can convert numbers in the range from 1 to 999999999.Clone or download from GitHub// Create an object c = new num...
Functional programming has gained popularity in the recent past. Using functional programming techniques, you can write code that is relatively bug-free, easier to debug and test, and easier to refactor. One of the reasons why functional programming ...