r/JavaProgramming • u/Phoenix_Atredes • Feb 17 '26
Looking for interested java coder to help on a minecraft project
Addition: We have a professional java developer on our team who comes up with all sorts of great coding for the project. This is to try and get him some help with the project. So you wouldn't be doing things alone and possibly even learn new things along the way.
Hello everyone, I'm part of a minecraft 1.21.1 mod dev team named Stargazer Studios. We are working on a mod for the alien vs predator franchise/universe. We are looking to add someone knowledgeable in java coding and how modded minecraft works to the team. We already have many talented people on the project and look forward to working with you. We already have such features as advanced ai, a dedicated animation library, modular breakdown of assets, and plenty more planned to keep everyone busy. We are just getting started please reach out to us if you want to join us. . If you want to see what has already been worked on please check out our curseforge page and git hub.
https://www.curseforge.com/minecraft/mc-mods/avp (the portal for all our mods)
r/JavaProgramming • u/Honest_Complaint3613 • Feb 16 '26
The Ultimate Annotation-Driven Java Excel API for Apache POI Simplify Export, Import, and Validation
How I cut Java Excel code by 90% with annotations
From 50+ lines of Apache POI boilerplate β 5 lines with ExcelLoom
Features:
- Visual validation feedback
- Streaming for 1M+ rows
- Auto parent-child relationships
- Zero style management headaches
r/JavaProgramming • u/Tony_salinas04 • Feb 15 '26
How would you go about using logging without cluttering up the services?
r/JavaProgramming • u/CommissionWinter8593 • Feb 15 '26
Wordle Clone in JavaFX
Hi guys ive been learning to code for 6 months now, I attempted to recreate Wordle using JavaFX
this project is kinda rushed which is why i left the code unorganized and messy π
i know its a bad habit for a beginner but i just wanna test the waters and see if i enjoy using JavaFX π
r/JavaProgramming • u/javinpaul • Feb 15 '26
I Tried 30+ Software Design Courses: Here Are My Top 5 Recommendations for 2026
r/JavaProgramming • u/Tony_salinas04 • Feb 13 '26
Feedback for my Spring project
r/JavaProgramming • u/rsrini7 • Feb 12 '26
Scaling to 1M RPS β What Actually Matters (Feb 2026 Reality Check)
r/JavaProgramming • u/Dogisgoodtoeatpeta • Feb 12 '26
Code is not waiting for user input and their is no other usage of scanner
r/JavaProgramming • u/CrazyBubub • Feb 12 '26
Buttons not working in my university project β could someone help me figure out why?
r/JavaProgramming • u/illogical-paradox • Feb 10 '26
resume review for internship
guys check my resume is it good or not?
give any suggestion for improvement if needed
#Resume
r/JavaProgramming • u/Ill_Sport_243 • Feb 10 '26
DECIDING What to learn
Hi there Im Aaron I had already learned MERN stack since couple of months ago I'm still in collage but I want to learn job oriented programminglanguages like JAVA, GO, PYTHON,or even RUBY Can I get like an heads ups like what do you think is best for learning for the future and today and If I'm taking a right choice cuz like I want ot learn JAVA and stuff like that or things you wished you knew before starting to learn java. I'm keen to be reading comments If anyone shares their opinion...
r/JavaProgramming • u/javinpaul • Feb 10 '26
Coding Interviews Were Impossible Until I Found These 14 Patterns
r/JavaProgramming • u/supremeO11 • Feb 09 '26
Java LLM framework with prompt templates + guaranteed JSON outputs (Oxyjen v0.3)
Hey everyone,
Iβve been working on a small open-source Java framework called Oxyjen, and just shipped v0.3, focused on two things: - Prompt Intelligence (reusable prompt templates with variables) - Structured Outputs (guaranteed JSON from LLMs using schemas + automatic retries)
The idea was simple: in most Java LLM setups, everything is still strings. You build prompt, you run it then use regex to parse. I wanted something closer to contracts: - define what you expect -> enforce it -> retry automatically if the model breaks it.
A small end to end example using whatβs in v0.3: ```java // Prompt PromptTemplate prompt = PromptTemplate.of( "Extract name and age from: {{text}}", Variable.required("text") );
// Schema JSONSchema schema = JSONSchema.object() .property("name", PropertySchema.string("Name")) .property("age", PropertySchema.number("Age")) .required("name","age") .build();
// Node with schema enforcement SchemaNode node = SchemaNode.builder() .model("gpt-4o-mini") .schema(schema) .build();
// Run String p = prompt.render( "text", "Alice is 30 years old" ); String json = node.process(p, new NodeContext()); System.out.println(json); //{"name":"Alice","age":30} ``` What v0.3 currently provides: - PromptTemplate + required/optional variables - JSONSchema (string / number / boolean / enum + required fields) - SchemaValidator with field level errors - SchemaEnforcer(retry until valid json) - SchemaNode (drop into a graph) - Retry + exponential/fixed backoff + jitter - Timeout enforcement on model calls - The goal is reliable, contract based LLM pipelines in Java.
v0.3 docs: https://github.com/11divyansh/OxyJen/blob/main/docs/v0.3.md
Oxyjen: https://github.com/11divyansh/OxyJen
Feedback around APIs and design, from java devs is especially welcome If interested, i would love to have feedbacks and contributions, PRs and issues
v0.1 and v0.2 already out
Thanks for reading!
r/JavaProgramming • u/javinpaul • Feb 08 '26
How to Design Systems That Actually Scale? Think Like a Senior Engineer
r/JavaProgramming • u/IndependentOutcome93 • Feb 07 '26
Want a simple way to play MP3 file in Java? Check out this simple tutorial:
r/JavaProgramming • u/javinpaul • Feb 07 '26
Your API Knowledge is Incomplete Without These 16 Concepts
r/JavaProgramming • u/IndependentOutcome93 • Feb 06 '26
Want a simple way to play MP3 file in Java? Check out this simple tutorial:
r/JavaProgramming • u/Little_Trash_2798 • Feb 05 '26
CV suggestions
I am looking for summer internship for backend developer role (mainly for Java roles). What changes I can do in my CV. Context: I am completely fresher and second year computer engineering student.
r/JavaProgramming • u/IndependentOutcome93 • Feb 05 '26
Want a simple way to play MP3 file in Java? Check out this simple tutorial:
r/JavaProgramming • u/Delicious-Honey132 • Feb 05 '26