Back to blog

Hello World: Building in Public

December 13, 20252 min read

Welcome to my blog! This is where I'll be sharing my thoughts, learnings, and experiences in the world of blockchain security and smart contract development.

What to Expect

I plan to cover a variety of topics including:

  • Security Writeups: Deep dives into smart contract vulnerabilities, audit findings, and security best practices
  • Technical Tutorials: Guides on Solidity development, testing with Foundry, and DeFi protocol analysis
  • CTF Writeups: Solutions and learnings from blockchain security CTF challenges
  • Building in Public: Updates on projects I'm working on and lessons learned along the way
  • General Thoughts: Industry related thoughts, opinions and personal experiences building and using the technology (Pretty much thinking out loud here)
  • Market sentiment: A little bit of price sentiment based on the happenings within the space (Not Financial Advice)

Why Blog?

Writing helps me solidify my understanding of complex topics. By explaining concepts clearly enough for others to understand, I ensure I truly grasp them myself. Plus, I hope these posts can help others on similar journeys in the blockchain security space.

Let's Connect

If you have questions, feedback, or just want to chat about blockchain security, feel free to reach out on Twitter or check out my work on GitHub.

Thanks for reading, and stay tuned for more content!

// Here's to many more posts to come
contract HelloWorld {
    string public message = "gm web3";

    function greet() external view returns (string memory) {
        return message;
    }
}