TJ's silly new year wish Happy New Year y'all!!! package  com.tjisblogging ;   import  java.time.LocalDate ; import  java.time.Month ; import  java.util.Vector ;   public  class  NewYear {       private  static  final  LocalDate END_OF_2022 =  LocalDate             . of ( 2022 , Month. DECEMBER , 31 ) ;       public  static  void  main ( String [ ]  args )  {         Life yourLife =  Life. getInstance ( ) ;         while  ( ! LocalDate. now ( ) . equals ( END_OF_2022 ) )  {             yourLife. push ( "Love" ) ;             yourLife. push ( "Joy" ) ;             yourLife. push ( "Happiness" ) ;             yourLife. push ( "Prosperity" ) ;             yourLife. push ( "Money" ) ;             yourLife. push ( "Health" ) ;         }     } }   class  Life {     private  Vector < String >  lifeQueue =  new  Vector <> ( ) ;     private  static  Life instance =  new  Life ( ) ;       private  Life ( )  {     }  ...
Just another tech blog, also my personal blog. I'll be posting interesting articles about tech, programming and tricks, dev life, and any timely topics.