In most programming languates, it is fairly easy to compare equality of strings. However, Solidity does not come with native functions to compare the strings. …
Solidity supports two types of functions; View Functions and Pure Functions. Understanding State Mutability is key to optimize your smart contracts and let use…
Solidity functions and state variables can be defined with visibility. According to the docs: public: visible externally and internally (creates a getter funct…
In order to write your own Solidity smart contracts on your local machines, you'll need to follow the below steps; Install Truffle Suite Truffle CLI Ganache Ne…
In this blog post, I'll give you a very quick introduction to write your own Ruby scripts and run on browsers using WASM. Demo At first, please have a look at …
I have been a big fan of using standing desks for a long time. It was 2014 when I first set up my standing desk; it was with cardboard on the shelf. It was my …
This blog post explains how I implemented togglable header in React.js. Implementation Let's have a simple Header component. This component assumes that useScr…