NHacker Next
  • new
  • past
  • show
  • ask
  • show
  • jobs
  • submit
Yearly Organiser (neatnik.net)
abetusk 15 days ago [-]
I made an updated version, which I called "neatocal", that allows for different options (and doesn't have the initial popup), including allowing for year changes, differing month counts, different start months, etc.

See the "Parameters" list:

https://github.com/abetusk/neatocal?tab=readme-ov-file#param...

Neatnik is a very nice project.

pekim 15 days ago [-]
The page's html and css are reasonably small, 3.3kB and 1.5kB. There are three fonts, totalling about 51kB. So altogether about 56kB.

But then somewhat spoiling the page's nice light weight is a 576kB favicon.

Brajeshwar 15 days ago [-]
Nice. I did something in 2020 in a spreadsheet to calculate some sort of a Big Picture Timeline of the family with a our own definition of Success and Failures. For me, I found that it is easier to see Weekends in a Straight line rather than the starting date (I have school going kids).

I did it pretty manually because this is something I do once every year around the year-end.

Here is the Google Sheet Template. Change/Add/Edit the "YYYY" sheet to the year you want and fix the dates (should not take you more than 5-min). I have included the year a family member is born in the "Data" sheet to calculate the key events in life - Kids Graduation, and whatever else you want to in sync with you, your partner’s age, and any event you want to track.

https://docs.google.com/spreadsheets/d/1YwAf8vgVR0FbTU6n1dVO...

metalrain 15 days ago [-]
Neat, but how do you close the message blocking the calendar?
gherkinnn 15 days ago [-]
Print it
_Algernon_ 15 days ago [-]
It would be nice to be able to preview the result before printing it, so the question still stands.
jen729w 15 days ago [-]
Cmd-P brings up a preview immediately? Laid out on A4, like it'll print, unlike your arbitrarily-sized browser window.
rpdillon 14 days ago [-]
The layout of the page is going to be a function of the paper size you put it on and the orientation of that paper. Use the print preview.
15 days ago [-]
seanhunter 15 days ago [-]
I used dev tools to nuke it, but it’s really annoying
throwaboneaway 15 days ago [-]
Print it :)
plaguna 15 days ago [-]
Feature request: make it so you can pick the starting month. For example, school year is around the corner in September and that will be nice to have.
quibus 15 days ago [-]
+1 for fiscal years.
15 days ago [-]
jp1016 15 days ago [-]
I’ve been thinking about the same challenge. Most calendars feel too rigid and don’t really work well when your goals or routines shift over time. I started building something called BeaverGrow, a simple dashboard with separate widgets for goals, habits, notes, and timelines. The idea is to let you piece things together the way you want, kind of like Lego blocks.

It’s still pretty minimal, but if you’re curious, you can check it out at https://beavergrow.com

deafpolygon 15 days ago [-]

    #!/bin/bash

    year=2025
    start="2025-01-01"
    end="2025-12-31"
    
    start_epoch=$(gdate -d "$start" +%s)
    end_epoch=$(gdate -d "$end" +%s)
    
    day_seconds=86400
    
    for ((t = $start_epoch; t <= $end_epoch; t += $day_seconds)); do
        gdate -d "@$t" "+%F w%V %a - " | tr '[:upper:]' '[:lower:]'
    done
mrweasel 15 days ago [-]
There's a Danish website: https://ugenr.dk/ which displays the current week number, it also have a printable calendar, but it seems a lille more useful as it already have holidays marked, week numbers and the layout is generally better.
bbx 15 days ago [-]
If you want to print ahead: https://neatnik.net/calendar/?year=3000
santiagobasulto 15 days ago [-]
I feel like 3000 will be my best year
b0wen 19 days ago [-]
This reminds me that not much of this year is remaining :(
Dilettante_ 15 days ago [-]
Don't worry, there's a fresh one coming right after :)
Tallain 15 days ago [-]
At this rate, we'll be done in no time!
thefluffytoucan 15 days ago [-]
Useful, thanks!

Now if someone made one with the ability to drag colored blocks of days around..

callahad 15 days ago [-]
Cassidy Williams recently published an open source calendar that might scratch that itch: https://pocketcal.com

Source at https://github.com/cassidoo/pocketcal

abetusk 15 days ago [-]
No drag ability but you can put different color data into a data JSON file that gets used when rendering for Neatocal [0] (fork/extension of Neatnik's calendar).

Example: https://abetusk.github.io/neatocal/?data=example/sched.json

[0] https://github.com/abetusk/neatocal

butz 15 days ago [-]
I think "printing" in 2025 usually means "Save to PDF" :)
lippihom 15 days ago [-]
Cool.
sandeep1998 15 days ago [-]
thanks
Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact
Rendered at 16:53:05 GMT+0000 (Coordinated Universal Time) with Vercel.