Windows Subsystem for Linux

Windows Subsystem is a technique to emulate Linux environment on Windows Operating System. https://en.wikipedia.org/wiki/Windows_Subsystem_for_Linux Here is Windows subsystem installation guide. https://docs.microsoft.com/en-us/windows/wsl/install-win10 Windows Subsystem is similar to VM but much faster. It provides command line tool where all Linux commands are available to use. In order to access outside data using VM, we need to setup …

Redux-Saga, Redux-Thunk

Redux-saga and redux-thunk are redux middleware libraries, that are designed to make handling side effects(asynchronous things like data fetching) easier to manage and better at handling failures. The difference of those 2 libraries stands on processing the data fetched from back-end api. Redux-thunk handles the data in a callback function and redux-saga uses async-await functions …

WebRTC

Web Real-Time Communication (WebRTC) is a collection of standards, protocols, and JavaScript APIs, the combination of which enables peer-to-peer audio, video, and data sharing between browsers (peers). Instead of relying on third-party plug-ins or proprietary software, WebRTC turns real-time communication into a standard feature that any web application can leverage via a simple JavaScript API. …

Blockchain Explorer

Blockchain explorer is a website which lists all information about blockchain. Latest transactions, block details, transaction history by address, balance by address, etc. Every blockchain in crypto world has their own blockchain explorers. https://blockexplorer.com/ https://www.blockchain.com/explorer There are several blockchain explorer open source projects which we can reuse when we develop our own explorers. One of …

Laravel – Soft Deleting

In addition to actually removing records from your database, Eloquent can also “soft delete” models. When models are soft deleted, they are not actually removed from your database. Instead, a deleted_at attribute is set on the model and inserted into the database. If a model has a non-null deleted_at value, the model has been soft deleted. To enable soft …