Wed Jun 10 08:43:42 AM MDT 2026 Life, you’re such a fickle son of a bitch. I’m not sure how you do it, day in and day out. There’s always something going on where we don’t have a clue about what to do. If swearing up a storm would fix things? I would be swearing all day long. But it doesn’t fix a damn thing. See I just swore, and it didn’t do anything. I rest my case. If life had a purpose, what would it be exactly? I’m not sure I know the difference between life’s purpose and anything else that’s out there. To speak of such things, feels rather illogical at times. Why pursue something that you cannot obtain? Maybe that is the goal in this life. See what you can do, and see what will become of it? Not sure. Don’t know. Wed Jun 10 09:33:27 AM MDT 2026 If today had a theme, what would it be? I wonder. I think it would be psychosis is a bad thing that can happen to you and you don’t know how it will affect you. Yeah, something like that. Wed Jun 10 10:37:25 AM MDT 2026 If I had a do...
A simple way to create html tags in Java. It won't create a tree that you can parse, but it will create the text needed. You see we'll use the StringBuilder class along with the Formatter class to accomplish this. This provides a simple way to format a string without using String.format inside of a sb.append call. import java.util.Formatter; import java.util.Locale; public class LocalMe { public static void main(String[] args) { StringBuilder sb = new StringBuilder(); Formatter formatter = new Formatter(sb, Locale.ENGLISH); formatter.format("<%s>%s</%s>", "greeting", "Hello World", "greeting"); System.out.println(formatter.toString()); } }