When a person believes life is a simulation it’s difficult to think of it as anything else. If life isn’t real, what is it? I mean it has to be something right? I’m not sure anymore what this life is. Life is such a fragile thing. It comes and goes in the blink of an eye. Who knows how long we have been plugged into the great machine. How long have we been connected? Unable to actually move. Our minds are fed what the machine wants us to think and believe. If the thinking is done for us, then we do not control this life. It is being controlled for us. If we don’t control our lives, who is in control? Do we have the ability to make choices in this life? Simulation theory suggests we don’t control anything in this life. If that’s the case, who is in control of it all? I don’t have the answer for that. I doubt anyone in the simulation knows who is in charge. I feel like a lab rat most of my days. How else can I explain the things that take place in life? I don’t know that I can. To sa...
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