Browsing Category
Software
11710 posts
Software Engineering & Development Frameworks
This hub covers practical engineering frameworks, development processes, and system design approaches used to build scalable and reliable systems.
You’ll find how-to guides, architectural breakdowns, and real-world insights focused on backend systems, cloud software, and modern developer tooling.
This content is designed for engineers, technical leads, and teams working on production-scale applications.
Key Engineering Guides
AI Image Classification for PEZ Collectors | Vertex AI & MediaPipe on Android
I’ve always had a soft spot for PEZ dispensers and have been collecting them for over 30 years.…
What’s the Best Question to Ask in a Meeting?
How do you maximize productivity and foster engagement by asking better questions in meetings? What are some of…
Chatbot with Multimodality Features using Flutter and Gemini
Artificial intelligence (AI) has revolutionized how we interact with technology. One intriguing innovation in the world of AI…
Kotlin Coroutine mechanisms: runBlocking v. launch
Introduction to coroutine behavior through playful examples Sometimes you think you know coroutines and then after a while, you’re…
MobX Mayhem: State Management for the Wicked
In the pantheon of state management solutions, MobX stands out with its magical and seemingly chaotic approach to…
Delegation is the last thing managers should do
Delegation is a vital skill of effective leadership. It involves entrusting tasks and responsibilities to team members based…
12章13
このJavaコードは、switchステートメントを使って文字列strの値に基づいて異なる操作をすることを意図しています。しかし、strが初期化されていないため、その値はnullです。switchステートメントはnull値を扱うことができないため、実行時にNullPointerExceptionが発生します。それを踏まえて、コードにコメントを追加して説明します。コメントを追加するには、行に対して直接説明を書きます。以下がその例です: public class Sample { // strはクラスレベルの変数で初期値はnull static String str; public static void main(String[] args) { // switch文にはstrが渡されるが、strはnullなのでNullPointerExceptionが投げられる…
You screwed your git history? Don’t panic!
Using git is a long journey. I’m still learning things even after a decade of using it daily…
Javascript Recursion
A recursive function in Javascript is a function that calls itself over and over until a certain base…
The Role of DAOs in Decentralized Finance, Governance, and Beyond
Decentralized autonomous organizations (DAOs) have become the cornerstone of the decentralized ecosystem, offering a unique approach to governance,…