Calendar
61–70 of 141 posts
Re: Calendar
#62CSS rules for printing is one of my favorite features of the web. You get a powerful typesetter directly in your browser. For those wondering how it's done, I wrote about it [0] recently for my friends who frequently asked how I generated PDFs for my blogs. [0] https://barish.me/blog/make-your-website-printable-with-css/
Thank you for the nice (and still short) article - I really liked it. However, while these rules apply for web pages, I would like to... let's say warn all developers expecting CSS is a good option for accurate printing. It may work for single page printouts or "make this page more printable" approaches, but don't expect it to be an easy opt out of providing PDFs for every single use case. CSS for printing gets annoy…
Re: Calendar
#63Re: Calendar
#64This is like a video that I saw where a carpenter uses very high end equipment and skills to create a phone holder to be placed on a desk. We ran out of real work and real problems. Tech and machinery is far ahead of the needs of humanity. Yes, you can create and print a single page calendar or carve out a phone holder, but when you think of it's usage, you are not going to need it - YAGNI.
There are proven advantages to hand-writing out notes and planning on paper over digital tools - the physical, tactile experience engages your brain in different ways, and this has been proven by multiple studies. Digital tools are great. They're why they're here. But a lot of people want paper for good reasons, and it's a very different experience to wanting a wooden holder for your phone.
When information finds its natural habitat in the digital space, we need to re-orient ourselves.
Re: Calendar
#65Re: Calendar
#66Re: Calendar
#67Earlier quoted context omitted.
These look great for people who like to plan their tasks. I found that when I plan my tasks and plan my day and plan my time bubbles, I spend so much time planning that I don't have time left for doing. This planner explicitly encourages having only three planned tasks for the day. What's wrong with just doing those tasks without writing them down? I ask in full seriousness, as someone struggling decades with how to…
Writing down is a sign-post for you to stay in your lane. Otherwise, you were working on a task and something fail in your terminal; by evening you realize you spent the last 4 hours fixing your entire dotfiles, fixing environment, shell, and what-not to move easily between machines smoothly (you also realized you are not moving machines anytime soon). The Frog to Eat that you wrote down yesterday for today, and the…
> Writing down is a sign-post for you to stay in your lane.
I think I get it now. When I'm developing a feature, I'll first write a commented git commit message. I'll refer back to it every so often to ensure that whatever that commit message says, that's what I'm doing. Everything else that I want to do should go into an Org mode file that is not committed. > #git commit -m "Foo the bar"
Is what I'm debugging now directly related to fooing the bar? If not, write it down and get back to fooing the bar.Re: Calendar
#68I took the complete opposite approach with Wiseday, giving each day its own page (and each waking hour some space too.)
Example: https://imgur.com/a/LjSDPw9
V1 releasing on iOS as soon as Apple finishes reviewing if anyone wants to try (waitlist at https://wisedayplanner.com/waitlist/)
Re: Calendar
#69Re: Calendar
#70Earlier quoted context omitted.
Awesome! Totally love your version as my first gripe was that I can't adjust naming to fit my needs (localized, non-english). Your JS version is awesome, thanks! If you want something for your examples, this would be the German-localized version for 2026: https://abetusk.github.io/neatocal/?year=2026&weekday_code=S...
Added to the list of presets in the README [0]. Thanks! [0] https://github.com/abetusk/neatocal?tab=readme-ov-file#prese...
d = new Date();
console.log(d.toLocaleString(window.navigator.language, {
weekday: 'short'
}));
[0] https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refe...