How to create your private VPN on the cloudUsing OpenVPN to configure secure connectionsSep 20, 2023·3 min read·164
Deploying a custom-created cryptocurrency on the Ethereum network.Creating and Deploying an ERC20 TokenFeb 11, 2023·4 min read·72
Configuring PHP for debugging using Xdebug and VScodeExtending PHP for DebuggingJan 27, 2023·2 min read·139
2023 Writing Commitment2023! it's a new year that promises to be a really great one. There are technologies to master, products to build, etc. I believe there is also a growing demand for not just software developers but sound software developers that can build systems and...Jan 16, 2023·1 min read·62
Solidity VariablesSolidity is a statically typed language, which means that the type of each variable (state and local) needs to be specified. There are 3 types of variables in Solidity local declared inside a function not stored on the blockchain state declare...Jan 12, 2023·1 min read·30
Data types in SolidityHere we introduce you to some primitive data types available in Solidity. boolean The possible values are constants true and false uintint / uint: Signed and unsigned integers of various sizes. Keywords uint8 to uint256 in steps of 8 (unsigned of 8...Jan 12, 2023·2 min read·41
Solidity: ConstructorsA constructor is an optional function that is executed upon contract creation. Here are examples of how to pass arguments to constructors. // SPDX-License-Identifier: MIT pragma solidity ^0.7.3; // Base contract X contract X { string public name...Jan 12, 2023·1 min read·48