by Yahwho | Sep 19, 2023 | GoDot
Yelp!
by Yahwho | Jul 6, 2023 | WordPress
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...
by Yahwho | Jun 26, 2023 | Security
openfiles /local on shutdown -r -t 00 openfiles |clip netstat -ano
by Yahwho | Oct 11, 2022 | SQL
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!...
by Yahwho | Aug 9, 2022 | Java
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)...