Simplifying Blockchain Development by Using Abstraction
Finally, the concept of abstraction is finding a place in web3 and should help make blockchain development less confusing and intimidatingBlockchain can potentially revolutionize how we interact with the digital world. It promises security, transparency, and decentralization. However, for most people, getting started with blockchain can be confusing and intimidating.
Read moreHow To Craft Effective Questions
One of the most important skills I’ve developed in my professional career is crafting effective questionsContinue reading on Better Programming »
Read moreRegular solids and Monte Carlo integration
Monte Carlo integration is not as simple in practice as it is often introduced. A homework problem might as you to integrate a function of two variables by selecting random points from a cube and counting how many of the points fall below the graph of the function. This would
Read moreWhich Backend Technology to Choose in 2023: Node vs Python?
This article compares Node.js and Python for backend development, discussing their key differences, advantages, and real-world use cases. Continue reading Which Backend Technology to Choose in 2023: Node vs Python? on SitePoint.
Read moreCross-platform way to enter Unicode characters
The previous post describes the hoops I jumped through to enter Unicode characters on a Mac. Here’s a script to run from the command line that will copy Unicode characters to the system clipboard. It runs anywhere the Python module pyperclip runs. #!/usr/bin/env python3 import sys import pyperclip cp =
Read moreUsing Unicode on MacOS
Setting up Unicode on my MacBook took some research, so I’m leaving myself a note here if I need to do it again. Maybe it’ll help someone else too. From the System Settings dialog, go to Keyboard and click the Edit button next to Input Sources. Click on the +
Read moreRunning Heavy SQL Queries in Production Using AWS
Run queries without compromising your production systemContinue reading on Better Programming »
Read moreDeploy an Astro JS Site to an AWS S3 Bucket
Want to deploy a simple website to AWS S3 for free?Continue reading on Better Programming »
Read moreMake Your Rust Code Unit Testable With Dependency Inversion
Use Traits to invert your Rust dependencies and keep your code loosely coupled and testableContinue reading on Better Programming »
Read more