This is an introduction to APIkey based authorization with Taffy. StackOverflow definition An application programming interface key (API key) is a code passed in by computer programs calling an API (application programming interface) to identify the calling program, its developer, or its user to the Web site. API keys are used to track and control how the API is being used, for example to prevent malicious use or abuse of the API (as defined perhaps by terms of service). Resources: […]
This is a fancy replacement Landing page. This is also an example of VueJS Bulma, a css responsive design library Buefy, a VueJS plugin that expands on Bulma Axois, an AJAX library that we will be pluggin into VueJS and FontAwesome which provides lots icons Ortus CommandBox And, of course, Adobe ColdFusion Resources https://github.com/jmohler1970/Landing https://vuejs.org/ https://github.com/vuejs/vue https://github.com/axios/axios https://bulma.io/ https://buefy.github.io/
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 Angular you are kind of in the right neighborhood. It is perhaps a prefect complement to ColdFusion development VueJS describes itself as Vue is a progressive framework for building user interfaces. Unlike other monolithic frameworks, Vue is designed […]
Getting started with ColdFusion There are two good ways to get Adobe ColdFusion – Go to https://www.adobe.com/coldfusion . You will be a redirected to ColdFusion. After you fill out their survey form, you can download the free trial. For the first 30 days, it will become the Developer Edition automatically. Unless you are doing some highly advanced developement, the Developer Edition will work fine. And its free – Another way to get ColdFusion, Ortus Solutions, and download and install CommandBox. […]
1. Go get Corretto https://aws.amazon.com/corretto/ 2. Install it It will be installed into: /Library/Java/JavaVirtualMachines/amazon-corretto-8.jdk/Contents/Home/lib/jvm/openjdk8-preview 3. Change `server.box` As shown. Type box Type start And for me nothing happened 4. Install XQuartz https://www.xquartz.org/ Install Restart Computer 5. Try it again Type box Type start Good news it works Note: I way in the video the port does not work. The port is just find. I just had a typo in the file name Resources https://aws.amazon.com/corretto/ https://commandbox.ortusbooks.com/embedded-server https://github.com/OpenKinect/libfreenect/issues/503 https://github.com/jmohler1970/Commandbox-Corretto https://www.xquartz.org/
Repository https://github.com/jmohler1970/Taffy_Verbs Introduction Video starts on how Github fits into the Software Development Life Cycle (SDLC). Then it covers even more verbs. Ends with a demo of the REST services in action. Resources https://github.com/atuttle/Taffy http://taffy.io/ https://stackoverflow.com/questions/tagged/taffy https://github.com/jmohler1970/Taffy_Verbs
Repositories https://github.com/jmohler1970/WordExtractor https://github.com/jmohler1970/WordExtractor_demo Introduction We are going to be extracting out HTML from a Word (.docx) file. .docx is an example of an Open Document Format for Office Applications (ODF) file. It is a ZIP of an XML document. By unzipping the file and locating the appropriate XML file, we can process the data an generate HTML Resources https://en.wikipedia.org/wiki/OpenDocument https://helpx.adobe.com/coldfusion/cfml-reference/coldfusion-tags/tags-u-z/cfzip.html https://helpx.adobe.com/coldfusion/cfml-reference/coldfusion-functions/functions-t-z/xmlparse.html
Repository https://github.com/jmohler1970/Taffy_Verbs Introduction This video is on a newer repository that covers many more verbs and endpoints than the previous. Resources: https://github.com/atuttle/Taffy http://taffy.io/ https://stackoverflow.com/questions/tagged/taffy https://github.com/jmohler1970/Taffy_Verbs
This video picks up where the last one ended. Let’s do a quick recap of what have done done so far. We have the Commandbox’s box.json and server.json ready. We have done and install of the Github repositories We need. I can see Taffy is ready Formutils, is ready And the database setup needs to be done The primary focus of this video will be to get that going Resources: https://github.com/atuttle/Taffy http://taffy.io/ https://stackoverflow.com/questions/tagged/taffy […]
TaffY: The REST Web Service Framework for ColdFusion
Have you ever had to work with HTML tables filled with rows and columns of data? If you have, you know that picking out all the data out of the form scope can be difficult. As a ColdFusion developer, I wish forms could submit arrays and structs.