2024
-
How to Stop Your Solidity Code from Guzzling Gas (and ETH!)
June 18, 2024Gas optimization tips for Solidity developers. Learn how to write smart contracts that are lean and efficient, so they consume less gas and save you precious ETH.
4 min read · solidity, ethereum +1 -
Mastering Solidity Pragma: 6 Ways to Specify Compiler Versions
June 11, 2024The pragma statement is an essential part of your Solidity code that tells the compiler which version to use. Learn 6 different ways to specify compiler versions.
1 min read · solidity, ethereum -
"Pull over Push" pattern in solidity
May 31, 2024The "Pull over Push" pattern is a method that shifts the responsibility of withdrawing funds from the contract to the user, ensuring smoother and safer transactions.
2 min read · solidity, ethereum +1 -
Understanding Deadlocks in Python with Examples
May 19, 2024Deadlocks are a common issue in concurrent programming that can cause applications to become unresponsive. Learn what causes them and how to avoid them.
2 min read · python, concurrency