Solidity concatenate strings

Solidity concatenate strings

Introduction In the old versions, Solidity didn’t offer a straightforward way to concatenate or compare strings as other programming languages.  Solidity with the new versions from v0.8.12 offers a simple string manipulation through standardized usage. string.concat is supported from Solidity…

NFT under the hood

NFT

Introduction to NFT NFT stand for Non-fungible token, NFT is a token that may represent something physical in real life. For example, NFT may be a digital representation of an image, in-game item, videos, or anything else. NFTs are sold…

Solidity require function

Solidity

Introduction Solidity, blockchain, and a variety of other related concepts and technologies can become relatively new for novices, it may become difficult to grasp the process behind them. The Solidity programming language is also young. Various programming languages exist that…

Angular Share Data Between Components

Angular share data between components

Definitions and illustration In angular, sharing data between components may cause headache for many of developers, specially in case you need to handle large scale application. In this post, I will introduce the different ways of handling shared data between…

Angular Shared Library

angular

Angular shared library definitions and illustration Angular shared library allows you to share logic betwen different applications easly, with giving you the ability to reduce code duplications and its issues. Creating the library Creating the library is important when u…

.Net Core Clean Architecture

Clean Architecture .NET Core

.Net Core Clean Architecture definitions and illustration Clear architecure get a high level idea about this architecture where it put the business or domain in the center of the application. While in traditional application (monolithic application) the data access layer…

Best Open Source Nodejs Applications

  Introduction In this post, I’m going to explore some of the most important open source nodejs based applications. NodeJS is a server-side platform that’s built on the google chrome v8 engine. Node.js is an open-source, cross-platform, back-end, JavaScript runtime…

Automapper using .net

Mapping in .net, the problem Automapper using .net is a good way to map betwen different classes in .net. Lets learn automapper by example. If you have object in a data access layer and you want to send to another…