Identity Verification by Civic

Reduce fraud. Onboard users faster.  AI-powered identity verification combined with human review to ensure that your users are real, always. This documentation serves as a guide to integrate with Civic’s Secure Identity Platform (SIP). The platform provides partners with functionality such as secure 2FA user login secure private 2FA user login onboarding of verified users …

How to load Sequelize Database connection asynchronously

How to load Sequelize Database connection asynchronously

Sometimes, we need to load database connection configuration asynchronously (for example loading env values from 3rd party secret store). Sequalize doesn’t have such feature in the official documentation. But There is a possibility to use Sequelize.beforeConnecthook. You can initialize the Sequelize object with empty credentials and inside the beforeConnect hook, you can load the env …

A Minimalist Python Web Framework – CherryPy

CHERRYPY IS AS EASY AS… CHERRYPY IS A PYTHONIC, OBJECT-ORIENTED WEB FRAMEWORK CherryPy allows developers to build web applications in much the same way they would build any other object-oriented Python program. This results in smaller source code developed in less time. CherryPy is now more than ten years old and it is has proven …

How to load env variables using AWS Secrets Manager

How to load env variables using AWS Secrets Manager

For some secure web application, especially backend services requires high security protection. Most of our environment variables such as database credentials, API secrets etc are stored in .env file in most of web applications. But this can bring us a big security hole if the server is breached. Thus, nowadays some products wants to store …

Continuous delivery, from code to deployment using Bamboo

Build Focus on coding and count on Bamboo as your CI and build server! Create multi-stage build plans, set up triggers to start builds upon commits, and assign agents to your critical builds and deployments. Test Testing is a key part of continuous integration. Run automated tests in Bamboo to regress your products thoroughly with …

Mapbox GL

Mapbox GL is a suite of open-source libraries for embedding customizable and responsive client-side maps in web, mobile, and desktop applications. Mapbox GL maps render at a high frame rate. The abbreviation “GL” comes from OpenGL, the industry-standard Open Graphics Library. Mapbox GL allows you to use custom styles designed in Mapbox Studio. You can also manipulate every aspect of …

Webkit browser

WebKit is a browser engine developed by Apple and primarily used in its Safari web browser, as well as all iOS web browsers. A fast, open sourceweb browser engine. WebKit is the web browser engine used by Safari, Mail, App Store, and many other apps on macOS, iOS, and Linux. Get started contributing code, or reporting bugs. Web developers can follow development, check feature status, download Safari Technology Preview to …

Testing Lambda function locally

Testing Lambda function locally

Lambda-local lets you test NodeJS Amazon Lambda functions on your local machine, by providing a simplistic API and command-line tool. npm install -g lambda-local A simple way you can run lambda functions locally, without the need to create any special template files (like Serverless plugin and SAM requires), just adding the parameter –watch. It will raise a http server listening to …