Medieval Realms Player Stats

So yeah, this is happening. I’ve never attempted anything like this before, so this is going to be quite interesting. Going to need to push SQL data from a local database to remote database. Then create a WordPress Plugin using HTML, PHP, CSS, JS, and SQL and...

Indexing in MySQL

I have been working a lot with JavaFX recently and it’s been a while since doing any SQL work. After loading my project and running a few test commands I was pretty shocked to see that the SELECT statements were taking almost 15 seconds to produce a response!...

Convert Milliseconds to Weeks, Days, Hours, Minutes, Seconds

Some basic math to calculate Weeks, Days, Hours, Minutes, and Seconds from a given time in milliseconds. Super useful for process timing. public String getElapsedTimeString(long milliseconds){ int seconds = (int) (milliseconds / 1000) % 60 ; int minutes = (int)...