Skip to content

Instantly share code, notes, and snippets.

View joparara's full-sized avatar
👋
hello world!

Joe Palala joparara

👋
hello world!
View GitHub Profile
@joparara
joparara / gist:bf2751060c2075290d66b8ac7dafec84
Last active December 26, 2024 11:02
running java app with quarkus

First install java!

  sdk install java 17.0.11-graal

Run:

  ./gradlew wrapper --gradle-version=8.1.1 --distribution-type=bin
@joparara
joparara / run_the_app_email_service_provider.md
Created December 27, 2024 07:05
how to run email driver java

Your code defines a producer method in the EmailServiceProvider class that dynamically creates and provides an implementation of EmailService based on the configuration (email.driver). The choice of the email client to be used (e.g., SqsEmailServiceImpl or LocalSmtpEmailServiceImpl) is determined by the email.driver value.


How to Use This in Your Application

The produced EmailService can be injected wherever it's needed within your application. Here's a breakdown of the steps:


@joparara
joparara / better_ai_driven_coder_agile.md
Created July 11, 2025 04:29
better_ai_driven_coder_agile

How to Stand Out in an AI-Driven Industry

So, how do you ensure you’re not just another vibe coder lost in the sea of AI-assisted developers? Here are a few concrete steps to set yourself apart:

🔍 Understand the WHY – When AI generates code, take the time to dissect it. Why does it work? How does it compare to alternative solutions? What trade-offs does it introduce?

📝 Build Projects from Scratch – Don’t just copy-paste AI suggestions. Work on real-world projects where you have to make architectural decisions, optimize performance, and debug issues manually.

📖 Study Classic CS Topics – Algorithms, data structures, system design, and software architecture will always be valuable. Even as AI improves, these skills will keep you in demand.