Skip to main content

Compartmentalization helps with Deep Work

I had been trying to learn Solidity/Ethereum over the weekends for the past few months and the first 3-4 weekends were a drag as no matter what I do I wasnt able to focus and getting no where. The problem was not with motivation as I was trying to do it for many weeks but all I was able to do was read 100s of blog posts about it but not able to code anything.

Aparently I realized that on weekdays most of my work is in the "study" room whereas on weekend I was trying to do it in the living room. Now working in study on wekeend was an issue as it felt more like work than fun so last 2 weekends I tried changing the schedule and went 3 hours every Sunday to library with my son and while he was reading books I was coding in solidity.

I also had trouble writing code after 7:00 PM as I thought my brain was tired but last week I tried sitting in study around 10:00 -11:00 in night and boy I was able to focus and code.

Net Net I realized that:
  1. "Having a consistent Routine help with Deep Work"
  2. "Compartmentalization helps with Deep Work" as observed by me that if I am in "Study" room I am able to code even in nights.
Image found via google search

Anyway I compiled a list of best articles on Ethereum/Solidity I found and the list can help others in case they want to read up on it:

Bitcoin/Ethereum fundamentals:


  1. http://www.usv.com/blog/fat-protocols
  2. https://bitsonblocks.net/2015/09/09/a-gentle-introduction-to-blockchain-technology/
  3. https://bitsonblocks.net/2015/09/01/a-gentle-introduction-to-bitcoin/
  4. https://bitsonblocks.net/2015/09/21/a-gentle-introduction-to-bitcoin-mining/
  5. https://bitsonblocks.net/2016/10/02/a-gentle-introduction-to-ethereum/
  6. https://bitsonblocks.net/2016/02/01/a-gentle-introduction-to-smart-contracts/
  7. https://bitsonblocks.net/2015/09/28/a-gentle-introduction-to-digital-tokens/

ICO

  1. https://hbr.org/2017/03/what-initial-coin-offerings-are-and-why-vc-firms-care
  2. https://blog.coinbase.com/app-coins-and-the-dawn-of-the-decentralized-business-model-8b8c951e734f
  3. https://blog.gdax.com/how-to-raise-money-on-a-blockchain-with-a-token-510562c9cdfa
  4. https://medium.com/@richardreeze/how-to-tell-which-cryptocurrencies-are-here-to-stay-fa9428cf3cfc

Smart Contracts


    Beginner

  1. https://blog.zeppelin.solutions/the-hitchhikers-guide-to-smart-contracts-in-ethereum-848f08001f05
  2. https://dappsforbeginners.wordpress.com/tutorials/your-first-dapp
  3. https://auth0.com/blog/an-introduction-to-ethereum-and-smart-contracts-part-2/

    Security

  1. https://blog.zeppelin.solutions/onward-with-ethereum-smart-contract-security-97a827e47702

    Upgradable

  1. https://ethereum.stackexchange.com/questions/2404/upgradeable-smart-contracts

    ERC20

  1. Standard Interface  https://theethereum.wiki/w/index.php/ERC20_Token_Standard
  2. Sample implementation with tests https://github.com/dapphub/ds-token/tree/master/src
  3. Sample unbox coin with truffle http://truffleframework.com/tutorials/robust-smart-contracts-with-openzeppelin

Sharing a Secret Key Between Many Users


  1. https://crypto.stackexchange.com/questions/25933/sharing-a-secret-key-between-many-users
  2. https://coincenter.org/entry/what-is-multi-sig-and-what-can-it-do
  3. http://avc.com/2017/09/multi-sig-wallets

Comments

Popular posts from this blog

Adventures of a nature lover - 5 national parks in 14 days

To unplug from work and recharge myself I do a 2-3 week trip every year where I am unplugged. Few of the reasons I can totally unplug from work is Unlimited Vacation policy of Egnyte,  Excellent support by the Infrastructure team  Our ethos of pro-actively fixing issues before they become nuisance. TLDR; It's a long post so you can scroll down and first see see images if you need motivation to read it entirely. Me and my family like national parks and camping to recharge us as there is no cell phone  coverage in parks and you are completely unplugged from technology most of the times. We have done many of the national parks nearby and this year we want to see glacier national park as the glaciers may disappear in 10-15 years so see them before they are gone. Behind every successful trip is a "Trip planner" and for our family its my wife, she researched  and made a trip itinerary book. She booked camp sites 6 months in advance She researched trail...

Startup Engineers should learn this one trait

Engineers are creative creatures who like to solve problems and build things. When you build something it becomes a part of you, no wonder that IKEA desk that took you 2 hours to assemble in an apartment has a lot of sentimental value than the Haverty desk you paid 3 times the price and just shipped it to home. Gardeners are also like that and the blackberries I grow in my backyard have a lot of sentimental value than the sweet ones I can buy from the store even though the home grown are sour 50% or more times . Given a problem there can be many designs to solve it and sometimes we pick one design and worked tirelessly for days to add few new classes and a shining new framework and then send it for code review and someone outsider with a devil's advocate view comes up with a new simple design to solve the same problem or sometimes unconsciously you would come up with another simple solution to the same problem but you hold back and you keep investing time trying to make the ...