A resizable and draggable component for React. Install use npm npm i -S react-rnd use yarn yarn add react-rnd
Mixed Reality
Mixed reality is the result of blending the physical world with the digital world. Mixed reality is the next evolution in human, computer, and environment interaction and unlocks possibilities that before now were restricted to our imaginations. It is made possible by advancements in computer vision, graphical processing power, display technology, and input systems. The …
worker-loader
This is npm package which enables to use WebWorker in webpack based projects. Importing the library import Worker from ‘worker-loader!./Worker.js’; Webpack config Use
Comma operator of JavaScript
var a = [0, 1, 2][0, 1, 2]; What is value of a? var b = 0, 1, 2; What is value of b? b is last element of 0, 1, 2 so b === 2 So a === [0, 1, 2][2]; a === 2; A grammar utility of JavaScript. 😉
Anti Flicker on Google Optimize
we normally use Google Optimize for A/B testing. A/B testing is redirecting pages with loading. But it is redirected to next page after original page is loaded. Users will feel flicker with first loading. So, we need to prevent the flicker. So, Google provides Anti Flicker Code for Google Optimize. https://support.google.com/optimize/answer/7100284?hl=en Please check the detail.
Testing sends email free!!!
https://www.pilotmail.io You can send your email templates via this service to any testing emails free. The free plan is 100 emails per month.
Remix – NPM
https://github.com/ethereum/remix-ide Install npm and node.js (see https://docs.npmjs.com/getting-started/installing-node), then do: Remix-ide has been published as an npm module: npm install remix-ide -g remix-ide
Nginxconfig Generator
(https://nginxconfig.io/) NGINX is so much more than just a webserver. You already knew that, probably. low memory usage high concurrency asynchronous event-driven architecture load balancing reverse proxying FastCGI support with caching (PHP) amazing fast handling of static files TLS/SSL with SNI A lot of features with corresponding configuration directives. You can deep dive into the NGINX …
PayPal integration – IPN
IPN (immediate payment notification) is a setting in PayPal account which works just like webhook in stripe. The difference is literally, it comes back as soon as payment is processed. We can do payment confirmation in your back-end using the notification. In order to activate it, you need to do it in your PayPal account. …
Screen on Linux
Introduction Screen or GNU Screen is a terminal multiplexer. In other words, it means that you can start a screen session and then open any number of windows (virtual terminals) inside that session. Processes running in Screen will continue to run when their window is not visible even if you get disconnected. Install Linux Screen …