cryptoizotx(25)•in #swift•2574 days agoKeyframe animations with SwiftSwiftAnimations Description SwiftAnimations it's a library created to visualize changes to array. It might be a helpful tool for studying sorting algorithms. Yo...3cryptoizotx(25)•in swift•2574 days agoKeyframe animations with SwiftSwiftAnimations Description SwiftAnimations it's a library created to visualize changes to array. It might be a helpful tool for studying sorting algorithms. Yo...3
cryptoizotx(25)•in #programming•2575 days agoOne algorithm a day: Keeping track of the largest element in a stackImagine that you want to be able to access the largest element in a stack. I know you were dying to do it ! You already have implementation of the stack class: ...0cryptoizotx(25)•in programming•2575 days agoOne algorithm a day: Keeping track of the largest element in a stackImagine that you want to be able to access the largest element in a stack. I know you were dying to do it ! You already have implementation of the stack class: ...0
cryptoizotx(25)•in #swift•2577 days agoOne algorithm a day. Write a function that returns best profit you could made from trading.Write an efficient function that takes stockPrices and returns the best profit I could have made from one purchase and one sale of one share of Apple stock yest...0cryptoizotx(25)•in swift•2577 days agoOne algorithm a day. Write a function that returns best profit you could made from trading.Write an efficient function that takes stockPrices and returns the best profit I could have made from one purchase and one sale of one share of Apple stock yest...0
cryptoizotx(25)•in #programming•2579 days agoOne algorithm a day: floor of the square root of the inputDescription Implement a function that takes in a 32 bit integer and returns another 32 bit unsigned integer that is the floor of the square root of the input Im...0cryptoizotx(25)•in programming•2579 days agoOne algorithm a day: floor of the square root of the inputDescription Implement a function that takes in a 32 bit integer and returns another 32 bit unsigned integer that is the floor of the square root of the input Im...0
cryptoizotx(25)•in #ios•2605 days agoiOS Interview: Delegation Pattern in SwiftIt's a continuation of my previous post about implementing delegate pattern in iOS. This time it is written in Swift. App Delegate import UIKit @UIApplicationMa...0cryptoizotx(25)•in ios•2605 days agoiOS Interview: Delegation Pattern in SwiftIt's a continuation of my previous post about implementing delegate pattern in iOS. This time it is written in Swift. App Delegate import UIKit @UIApplicationMa...0
cryptoizotx(25)•in #programming•2605 days agoDelegation Pattern in Objective-CIt's been a long time since I had to work with old good Objective-C, the king of brackets [[[[]]]]]]]. I recently had to revisit implementation of one of the fu...0cryptoizotx(25)•in programming•2605 days agoDelegation Pattern in Objective-CIt's been a long time since I had to work with old good Objective-C, the king of brackets [[[[]]]]]]]. I recently had to revisit implementation of one of the fu...0
cryptoizotx(25)•in #swift•2605 days agoSwift Interview Questions Recursion: Print numbers from 0 to n without using for loop.This one is tricky! How can you print all those numbers with for loop, enumeration, or similar techniques that would make this task trivial? The answer is recur...0cryptoizotx(25)•in swift•2605 days agoSwift Interview Questions Recursion: Print numbers from 0 to n without using for loop.This one is tricky! How can you print all those numbers with for loop, enumeration, or similar techniques that would make this task trivial? The answer is recur...0
cryptoizotx(25)•in #swift•2619 days agoBitwise Operators in SwiftIt's not frequently used in a regular job but loved by interviewers. Remember to to represent a bit add 0b to a number. For example 0b1 would be one bit that is...1cryptoizotx(25)•in swift•2619 days agoBitwise Operators in SwiftIt's not frequently used in a regular job but loved by interviewers. Remember to to represent a bit add 0b to a number. For example 0b1 would be one bit that is...1
cryptoizotx(25)•in #ios•2621 days agoS O L I D Principle Rules in iOS- The Single Responsibility principle tells us to separate responsibilities. But to know what these responsibilities are, we have to look at the bigger picture ...1cryptoizotx(25)•in ios•2621 days agoS O L I D Principle Rules in iOS- The Single Responsibility principle tells us to separate responsibilities. But to know what these responsibilities are, we have to look at the bigger picture ...1
cryptoizotx(25)•in #solidity•2637 days agoDecentralized Programmer: Solidity 101Solidity primer What is solidity? Solidity is a contract-oriented, high-level language for implementing smart contracts. It was influenced by C++, Python and Ja...0cryptoizotx(25)•in solidity•2637 days agoDecentralized Programmer: Solidity 101Solidity primer What is solidity? Solidity is a contract-oriented, high-level language for implementing smart contracts. It was influenced by C++, Python and Ja...0
cryptoizotx(25)•in #ethereum•2651 days agoDecentralized Programmer: My first Erc20 token on Ethereum blockchain!I just deployed my first ERC20 token to Ethereum blockchain. Property | Value ------------ | ------------- Symbol|IZX Name| IZOTX Total supply|100,000.000000000...1cryptoizotx(25)•in ethereum•2651 days agoDecentralized Programmer: My first Erc20 token on Ethereum blockchain!I just deployed my first ERC20 token to Ethereum blockchain. Property | Value ------------ | ------------- Symbol|IZX Name| IZOTX Total supply|100,000.000000000...1
cryptoizotx(25)•in #ipfs•2721 days agoHow to decentralize your resumeStoring data on a blockchain is non trivial and often expensive task. Fortunately there is a solution to it called InterPlanetary File System (IPFS). I will use...1cryptoizotx(25)•in ipfs•2721 days agoHow to decentralize your resumeStoring data on a blockchain is non trivial and often expensive task. Fortunately there is a solution to it called InterPlanetary File System (IPFS). I will use...1
cryptoizotx(25)•in #trading•2735 days agoDecentralized Programmer: Simple KuCoin Trading BotThe code below illustrates how easy is to create a trading bot that buys and sells currency within preset boundaries. In this example it's set to trade CV (Car ...0cryptoizotx(25)•in trading•2735 days agoDecentralized Programmer: Simple KuCoin Trading BotThe code below illustrates how easy is to create a trading bot that buys and sells currency within preset boundaries. In this example it's set to trade CV (Car ...0
cryptoizotx(25)•in #solidity•2801 days agoDecentralized Programmer Part 6 My very first Dapp!Come check out my very first dapp: http://cryptoname.izotx.com/ I just deployed my very first decentralized application. It's very simple, and lets you save you...1cryptoizotx(25)•in solidity•2801 days agoDecentralized Programmer Part 6 My very first Dapp!Come check out my very first dapp: http://cryptoname.izotx.com/ I just deployed my very first decentralized application. It's very simple, and lets you save you...1
cryptoizotx(25)•in #solidity•2801 days agoDecentralized Programmer Part 5 Deployment of your contract with Remix IDE!Deploying contracts on main or test net is very simple. At first you need to make sure you tested thoroughly your Dapp and contracts. Then decide if you want to...0cryptoizotx(25)•in solidity•2801 days agoDecentralized Programmer Part 5 Deployment of your contract with Remix IDE!Deploying contracts on main or test net is very simple. At first you need to make sure you tested thoroughly your Dapp and contracts. Then decide if you want to...0
cryptoizotx(25)•in #ethereum•2804 days agoDecentralized Programmer Part 4 web3 and specifying value of the transactionIt's just a quick tip that can save you some time. Whenever you web app calls a contract method, you can't modify the value of the transaction using Metamask! T...0cryptoizotx(25)•in ethereum•2804 days agoDecentralized Programmer Part 4 web3 and specifying value of the transactionIt's just a quick tip that can save you some time. Whenever you web app calls a contract method, you can't modify the value of the transaction using Metamask! T...0
cryptoizotx(25)•in #ethereum•2819 days agoDecentralized Programmer: Part 3 Remix IDE + Ganache-CLIhttps://steemitimages.com/DQmTGGcy74p5PY25oumyb97LaWtNzt71dqMR9PmjVQf2v2m/internet.png! Remix IDE Remix IDE is a full featured Solidity smart contract IDE (Inte...0cryptoizotx(25)•in ethereum•2819 days agoDecentralized Programmer: Part 3 Remix IDE + Ganache-CLIhttps://steemitimages.com/DQmTGGcy74p5PY25oumyb97LaWtNzt71dqMR9PmjVQf2v2m/internet.png! Remix IDE Remix IDE is a full featured Solidity smart contract IDE (Inte...0
cryptoizotx(25)•in #ethereum•2821 days agoDecentralized Programmer: Part 2 TruffleIn this tutorial you will learn about Truffle. Truffle is must-have tool for an Ethereum programmer. It serves several purposes: - development environment - tes...0cryptoizotx(25)•in ethereum•2821 days agoDecentralized Programmer: Part 2 TruffleIn this tutorial you will learn about Truffle. Truffle is must-have tool for an Ethereum programmer. It serves several purposes: - development environment - tes...0
cryptoizotx(25)•in #ethereum•2821 days agoDecentralized Programmer: Part 1 Environment Metamask and GanacheThis first part of Decentralized Programming Tutorials. Although I have been programmer for several years, those are my first steps in this exciting space. I ap...1cryptoizotx(25)•in ethereum•2821 days agoDecentralized Programmer: Part 1 Environment Metamask and GanacheThis first part of Decentralized Programming Tutorials. Although I have been programmer for several years, those are my first steps in this exciting space. I ap...1
nomadicsoul(25)•in #bitshares•2863 days agoWhy Bitshares Will Be Your Best Investment to Create Wealthhttps://s10.postimg.org/6yoph39ex/bitsharespathtowealththumbnail.jpg Let me share a little bit about why I think Bitshares will be your best long-term investmen...83nomadicsoul(25)•in bitshares•2863 days agoWhy Bitshares Will Be Your Best Investment to Create Wealthhttps://s10.postimg.org/6yoph39ex/bitsharespathtowealththumbnail.jpg Let me share a little bit about why I think Bitshares will be your best long-term investmen...83