BlogHide Resteemstechnological (39)in steemit • 5 years agoHi Steemians! I am back. I am here to give it another shot!Reasons I am back I was missing the platform to share. I realized that I lost my voice. I never used any of the popular social media platforms much and I found Steemit to be the right platform…technological (39)in steemit • 6 years agoI Don't Care About SteemIt. It's Not Worth My TimeBbye Steemians. I don't think SteemIt is as great as I thought it to be initially. You need to keep submitting content without anyone caring about it. Or, you need to invest a considerable sum…technological (39)in ethereum • 6 years agoTop Reasons Why Ethereum Will Continue Ruling The CryptoSpace In 2018The Ethereum Blockchain network is an amazing platform that allows you to create your own DApps(Decentralized Apps), Smart Contracts and cryptocurrencies. Currently, Ethereum has more than $57…technological (39)in health • 6 years agoAll About Detoxification - Part 3(Free Radical Damage, Bio-film & Inflammation)If the toxins keep sitting in the extracellular matrix and the liver fix them up once it gets unoccupied, no harm is done to the body. However, situations can get far more complicated if the toxins…technological (39)in steemit • 6 years agoHow To Earn $10 A Day On Steemit - Day 7Hello Steemians!  I am publishing this post after 6 days. It seems to be more difficult to achieve the goal of earning ten dollars a day than I initially thought.   Nobody seems to care…technological (39)in programming • 6 years ago'If' Statement In 'Go'(Learn 'Go' - Part 12)The 'If' statement is used to check a certain condition within a function. We can create a simple program to see 'if' in action.   package main import "fmt" func main(){ x := 1technological (39)in programming • 6 years agoFor Loop In 'Go'(Learn 'Go' - Part 11)In Go, we use the 'For' statement to repeat a block of statements multiple times. Unlike other languages, Go has just one type of loop, i.e., 'for' and we can use it in a variety of ways.  For…technological (39)in ethereum • 6 years agoInstalling testRPC/ganache-cli(Learn 'Solidity' - Part9)testRPC/ganache-cli testRPC/ganache-cli is a node.js Ethereum client for testing and development of the Smart Contracts. To make it work, we need to have node.js installed first. To check, open…technological (39)in ethereum • 6 years agoUnderstanding ERC20 & ERC223 Tokens(Learn 'Solidity' - Part 8)ERC20 Tokens exist on the Ethereum blockchain. Ethereum consists of a blockchain which can store transactions and EVM(Ethereum Virtual Machine) that can run Smart Contracts. Tokens exist on the…technological (39)in ethereum • 6 years agoVisibility & Structs In 'Solidity'(Learn 'Solidity' - Part 7)After creating the contracts, if you look at the details, you won't find anything that describes your variables, i.e., name and age. This is where the visibility comes into play, like public…technological (39)in ethereum • 6 years agoVariables In 'Solidity'(Learn 'Solidity' - Part 6)Solidity is a statically typed language, i.e., the type of variable needs to be declared before the compile time, that's why it is important to define the type of variable.…technological (39)in ethereum • 6 years agoSmart Contract Vs DApp(Learn 'Solidity' - Part 5)A lot of people who join the crypto space talk about DApps and Smart Contracts and they use them interchangingly. DApps and Smart Contacts are closely related to each other but they are not one and…technological (39)in ethereum • 6 years agoBasic Smart Contract(Learn 'Solidity' - Part 4)Time to get started with the Smart Contract development using Solidity. We will begin development using the Remix IDE. It is a browser-based IDE for developing Smart Contracts for Ethereum.…technological (39)in ethereum • 7 years agoTips To Learn Solidity On Your Own(Learn 'Solidity - Part 3)It is important to make the best use of your time and learn Solidity in an efficient way. You can use the tips listed below so that you find learning Solidity more enjoyable.   Tip 1. Keep…technological (39)in programming • 7 years agoMultiple Variables In 'Go'(Learn 'Go' - Part10)You can define multiple variables in Go very quickly.   var ( a = 10 b = 20 c = 30 )    Previous Posts In The Series   Introduction To 'Go' Programming Language(Learn…technological (39)in programming • 7 years agoConstants In 'Go'(Learn 'Go' - Part 9)Just like variables, constants also have specific storage locations but their value remains fixed. We use 'const' keyword to create a constant. Constants are useful for the common values you would…technological (39)in programming • 7 years agoVariables In 'Go'(Learn 'Go' - Part 8)Variables allow you to build useful programs, you cannot do much with the basic types. They are specific storage locations with a name and a specific type.  For instance,  package main…technological (39)in programming • 7 years agoEthereum & Smart Contracts(Learn 'Solidity' - Part 2)Ethereum is a decentralized platform based on blockchain that runs smart contracts.  Smart Contracts are applications that run exactly the way they are programmed to run without any…technological (39)in programming • 7 years agoIntroduction To 'Solidity'(Learn 'Solidity' - Part 1)Ethereum is an open-source decentralized blockchain project having a huge presence in the crypto-space. Its cryptocurrency, Ether is similar to Bitcoin and other cryptocurrencies but the network…technological (39)in programming • 7 years agoNumbers In 'Go'(Learn 'Go' - Part 7)In Go, there are several types to represent numbers. For Integers, we have int8 int16 int32 int64 uint8 uint16 uint32 uint64   'uint' means unsigned…