Skip to content
  • Obidos Technologies (P) Ltd
Obidos Technologies (P) Ltd

ObidosTech Knowledge Base

Help snippets on NodeJs, React, ColdFusion, PHP, Android, iOS and tech news

About Obidos Technologies (P) Ltd

Profile
ObidosTech

Obidos Technologies (P) Ltd is an off-shore development and maintenance center for ColdFusion applications, PHP application along with ReactJS, NodeJS

Menu
  • Obidos Technologies (P) Ltd
  • Prasanth Kumar.S

Category: JSON

7 Articles
Categories
Integration JavaScript JSON Lucee Node.JS Oracle PHP Server Technology Windows

Using Server Sent Events (SSE) with Session

March 13, 2020March 13, 2020
2 mins read
SSE or server sent events are a great choice for pushing data from server to the clients. The benefit of SSE over web-sockets is that unlike web-sockets SSE is a…
Read more
Categories
Apache Internet JavaScript JSON Node.JS Server Technology Windows

Create HTTPS server with Node.js

October 23, 2019October 23, 2019
1 min read
To start an HTTPS server, you need to have the private key.pem and also the certificate.pem of the SSL certificate. Then using the crypto and fs libraries, you can get…
Read more
Categories
Android App Internet JavaScript JSON Node.JS Server Technology

Initial references for creating a NodeJS and React application

July 6, 2019July 6, 2019
2 mins read
Below are few code snippets and links that are helpful when you start developing a NodeJS application. Ref: https://gist.github.com/gaearon/683e676101005de0add59e8bb345340c If you haven’t worked with JavaScript in the last few years,…
Read more
Categories
ColdFusion Internet JavaScript JSON Node.JS PHP Technology

Accurate way to round decimals in JavaScript

February 27, 2017February 27, 2017
1 min read
The rounding problem can be avoided by using numbers represented in exponential notation: Number(Math.round(1.005+'e2')+'e-2'); // 1.01 Source: http://www.jacklmoore.com/notes/rounding-in-javascript/
Read more
Categories
Internet JSON Node.JS Server

Basic requirements to create and run a Node JS app

February 7, 2017February 7, 2017
1 min read
To create a Node.js app that acts as a back end for an Angular JS app, these are the minimum required modules. (more…)
Read more
Categories
ColdFusion Integration JSON MySQL PHP QuickBooks Server Technology

*SOLVED* QuickBooks Integration Error – EDGE-CR-ERR-8090 – Auth ID does not exist

October 14, 2016October 19, 2016
2 mins read
Integration with QuickBooks is easy if you know the OAuth flow. QuickBooks uses the OAuth 1.0 specification. They provide libraries for PHP, Java and other popular languages. For ColdFusion/Railo, you…
Read more
Categories
ColdFusion Database JSON Technology

How to Store and Retrieve FORM variables or Objects to DB using Railo/ColdFusion

September 28, 2016
2 mins read
If we need to store all the URL variables to the DB, say, for tracking the user, it is easy. We can use a varchar field to store this information…
Read more