BlogHide Resteemscryptoizotx (40)in swift • 6 years 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. You can find out source code with…cryptoizotx (40)in programming • 6 years 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: class Stack {cryptoizotx (40)in swift • 6 years 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 yesterday.cryptoizotx (40)in programming • 6 years 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 Implementation Function can be…cryptoizotx (40)in ios • 6 years 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 UIKitcryptoizotx (40)in programming • 6 years 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 fundamental design pattern in iOS…cryptoizotx (40)in swift • 6 years 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 recursion. Most computer programming…cryptoizotx (40)in swift • 6 years 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 equal 1 in decimal value.…cryptoizotx (40)in ios • 6 years agoS O L I D Principle Rules in iOSThe Single Responsibility principle tells us to separate responsibilities. But to know what these responsibilities are, we have to look at the bigger picture of our app. The MVC pattern already…cryptoizotx (40)in solidity • 6 years 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 JavaScript and is designed to target…cryptoizotx (40)in ethereum • 6 years 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.000000000000000000 Decimals 18 Token…cryptoizotx (40)in ipfs • 6 years 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 it to upload and decentralize my…cryptoizotx (40)in trading • 6 years 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 Vertical) on KuCoin exchange. It…cryptoizotx (40)in solidity • 7 years agoDecentralized Programmer Part 6 My very first Dapp!Come check out my very first dapp: I just deployed my very first decentralized application. It's very simple, and lets you save your name on the Ethereum blockchain. Since blockchain is…cryptoizotx (40)in solidity • 7 years 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 deploy your contract on main or…cryptoizotx (40)in ethereum • 7 years 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! This value has to be specified in your…cryptoizotx (40)in ethereum • 7 years agoDecentralized Programmer: Part 3 Remix IDE + Ganache-CLIRemix IDE Remix IDE is a full featured Solidity smart contract IDE (Integrated Development Environment). It can be used to: Develop smart contracts (remix integrates a solidity editor).…cryptoizotx (40)in ethereum • 7 years 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 testing framework deployment…cryptoizotx (40)in ethereum • 7 years 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 appreciate any comments and suggestions…resteemednomadicsoul (68)in bitshares • 7 years agoWhy Bitshares Will Be Your Best Investment to Create WealthLet me share a little bit about why I think Bitshares will be your best long-term investment… Dan Larimer, the dude who created Bitshares with his father, Stan (you may know it as the…