i'll be like "its so simple why cant i do it" but everything is a practice i suppose
Mostly yes. I use Notes and Google Calendar to keep my tasks and events organized.
They work for me because i get a small rush every time i check something off and seeing the list more complete lol
I use Apple notes. A to do list for each project. I just take things off as I go, and add ideas that come to me even when I'm not by my laptop
does anyone know how to do a list with custom bullet points like in the recent entry in css so i don't have to type it out everytime
You mean you want the bullets to automatically alternate between ☢ and ❀?
Try something like this: li:nth-child(odd) {list-style-type: "☢";} li:nth-child(even) {list-style-type: "❀";}
Cooking Mama<3