Welcome to the official website for all things Java Stugg! Java Stugg is a collection of Java programs made by Jyomama28 on GitHub. Here you can find updates, links, news, and much more!
Welcome To: Java Stugg. This is all my random programs to help me better understand Java. If you are on this repository, please do as you wish with any of my programs. I spend a lot of time trying to learn code in the hopes that maybe one day it might help someone. If you’d like to work with me and tell me anything, please email me at: jyomama28@gmail.com. You will receive a response from my email in 1-2 days maximum. To anyone reading this, I truly thank you for stopping on my repo; it isn’t much, but I hope you like it. I have been working hard on it :)
UPDATE CENTER
LATEST RELEASE UPDATES: Added simplestopwatch.java in version 1.4 of Java Stugg. Added randomnumber.java in version 1.5 of Java Stugg. Added random3dshape.java in version 1.6 of Java Stugg. Added stackoverflowthing.java in version 1.7 of Java Stugg. Added leetcode.java in version 1.8 of Java Stugg. Added SeasonFinder.java in version 1.9 of Java Stugg. Added nestedifelse.java, ifelsestatement.java, and formattingoutput.java in version 2.0 of Java Stugg. Added scannerusage.java, trueorfalse.java, variablescanner.java, and morescanner.java in version 2.1 of Java Stugg. Added whilendo.java, and breakstatement.java in version 2.2 of Java Stugg. Added advancedswitchstatement.java in verison 2.3 of Java Stugg. Added breakandcontinue.java and elementsandtraversal.java in version 2.4 of Java Stugg. Added ATM.java, polymorphisim.java, and arrayofparentandchildclasses.java in version 2.5 of Java Stugg LATEST GENERAL UPDATES: Added a cool new website for news and information about Java Stugg.
TABLE OF CONTENTS
- main.java – A simple "Hello World" program in the console.
- main2.java – Asks for your name and greets you using it.
- main3.java – A calculator program for the terminal (called Termainally Calculated).
- DemoViewer.java – A simple 3D renderer by Rogach.
Original post: Gist.
Modified to render a pink torus. Credit goes to Rogach.
- PasswordGen.java – A simple terminal password generator.
- SimpleTodo.java – A terminal-based todo list program.
- ShapeCodeGenerator.java – Generates faces & vertices for different shapes (used in DemoViewer.java).
- random2.java – A number guessing game (1–10).
- Welcome2JavaStugg.java – A simple welcome program.
- TicTacToe.java – A simple Tic Tac Toe game.
- CommandX (gui.java) – A GUI tool to execute terminal commands.
- guitest.java – My first GUI program in Java!
- SnakeGame.java – A simple snake game.
- simplestopwatch.java – A terminal stopwatch (press enter to start/stop).
- randomnumber.java – Generates a random number (1–100).
- random3dshape.java - Shows a really fat donut render. Credit goes to Rogach.
- stackoverflowthing.java - Force opens a rickroll on youtube. Found most of the code in an old stackoverflow post. Check the github for the link to the post!
- leetcode.java - A basic array in java.
- SeasonFinder.java - A basic switch statement in java.
- formattingoutput.java - A basic formatted output in java.
- ifelsestatement.java - A basic if else statement in java.
- nestedifelse.java - A basic nested if else statement in java.
- whilendo.java - A basic if statement using while and do in java.
- breakstatement.java - A basic break statement in java that stops a loop when it reaches the number 5.
- advancedswitchstatement.java - A advanced swith statement in java.
- breakandcontinue.java - A basic break statement in java that stops a loop using break; and then continues the loop.
- elementsandtraversal.java - Lots of me praticing using elements in java.
- ATM.java - A fake atm system in java.
- polymorphisim.java - Basic usuage of polymorphisim in java
- arrayofparentandchildclasses.java - A array that uses parent and child classes. Used mostly for my personal refrence.