Thu Jun 18 08:35:39 AM MDT 2026 Today is simply a day, what more do you want from it? I’m not sure. It will be whatever it will be and there’s nothing else that can matter because of it. We have to accept everything that comes from today and don’t worry about what tomorrow will bring. Today will never come again. The past is the past for a reason. It will never cease to exist. The past will forever be the past and we cannot overcome that. It isn’t a curse or anything, but a common foe that we must try and overcome. This life will be whatever it wants to be. It will turn out the way it’s meant to turn out. I don’t have a clue how either of those statements work, they just do. So it will always be whatever it wants to be. We don’t have a choice in the matter. Life will come and life will go, it won’t make a difference if it happens today or tomorrow. It will always take place and happen.
For some reason my installation of Java wouldn't let me use SimpleDateFormat to format my dates. So I had to google a different way to do this and found the following works as well. The Date class has a bunch of issues with it to begin with, so this is much cleaner and better as well.
LocalDateTime ldt = LocalDateTime.now();
DateTimeFormatter df = DateTimeFormatter.ofPattern("MM/dd/yyyy", Locale.ENGLISH);
String formattedString = df.format(ldt);
Comments
Post a Comment