this post was submitted on 08 Feb 2024
231 points (98.7% liked)

Linux

46734 readers
2501 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

I'm in a bit of a productivity rut and whilst I suspect the issue is mainly between the keyboard and chair I'm also interested in what (FOSS) tools there are that people find effective.

One of my issues at the moment is cross managing different workstreams particularly with personal projects which are more in the "if I have time category".

I'm interested in anything that helps manage time or limit distractions or anything that makes it easier to keep track of progress/next steps for project when there may be a bit of a time gap between.

you are viewing a single comment's thread
view the rest of the comments
[–] yieldsfalsehood@lemmy.ml 5 points 6 months ago

I capture all my predictable work items in icalendar-encoded files that I mostly author by hand in emacs. I use evolution for a conventional calendar view on my computer. I adb push to my phone and use icsx5 to import so I can view events there as well.

I've also been working on a project to produce a printable view that's reasonably mature at this point. It accepts VEVENT, VJOURNAL, and VTODO entries and groups them by day, month, or year. Todo items are rendered as lists so I have a little circle to fill in when I've completed the work. I display both the title and description for all types, with the description processed as Markdown. So for instance a VJOURNAL with a weekly recurrence, a title like "This Week", and a description like * \n* \n will appear every week in the printout as a blank list for jotting down two items not captured in my calendars.

I've been using the daily grouping so far to produce a weekly "checklist". Every few weeks or so I hack on my RRULEs based on what's working for me. For instance I bake a loaf of sourdough every week so I have events for feeding the starter, mixing the dough, then baking. I set each of those to recur on subsequent days of the week so they all magically fall into place then I shifted the start days around until I found my ideal baking day. I also have an entry for changing the bed sheets every week, and another for washing the washing machine scheduled for the same day of week at a slower frequency. Capturing everything that needs to be done (with some editorializing on granularity) and evolving their recurrences is the fundamental way I synchronize independent work, leaning on icalendar for expressiveness like this recurrence for planting the garden on the Saturday before Memorial Day weekend:

RRULE:FREQ=YEARLY;BYMONTH=5;BYDAY=SA;BYMONTHDAY=16,17,18,19,20,21,22

The workflow doesn't require the bespoke tooling since I can see all my maintenance items alongside my meetings using any application that can render icalendar. That was key to getting moving, but having the print out lets me feel more productive. I knock out all the routine stuff throughout the day and find that "if I have time" becomes "what do I want to do with this time".

There are tools in the project for generating events for solstices and equinoxes as well as sunrises and sunsets. I include all of those in my printed daily view but exclude the sunrises and sunsets from evolution by capturing them in separate files. I also separate routine/noisy tasks like "change the bed sheets" from holidays and operational work like "plant the garden" or "change the water filters" so those become more visible.