Make fixed length random number / string in JavaScript with sample codes

How to make the following in JavaScript… Fixed length random numbers, Fixed length random string, This article explains how to do it in JavaScript with example codes. Table of ContentsMake fixed length random numbersMake fixed length string [a-zA-Z]Generate fixed length… Read moreMake fixed length random number / string in JavaScript with sample codes

How to require / export module(s) in node.js with sample codes

How to export / require custom module(s) in node.js This article explain the way and sample codes. Table of ContentsExport/Require just one moduleExport/Require multiple modulesExport/Require just one module How to require only one module. Sample code for exported module :… Read moreHow to require / export module(s) in node.js with sample codes

How to save SurfaceView to Bitmap on Android in Kotlin

eye catch Android

How to save SurfaceView to Bitmap on Android. There are PixelCopy class on Android SDK. Provides a mechanisms to issue pixel copy requests to allow for copy operations from Surface to Bitmap Quotes : https://developer.android.com/reference/android/view/PixelCopy This class makes it easy to save a… Read moreHow to save SurfaceView to Bitmap on Android in Kotlin