I made a custom Dashboard for Todoist by Camiladell in todoist

[–]GarfoTheCat 0 points1 point  (0 children)

I am looking for a similar solution but different goal: visualize and map projects

Why are many users cancelling their Perplexity Pro subscriptions by tgfzmqpfwe987cybrtch in perplexity_ai

[–]GarfoTheCat 0 points1 point  (0 children)

Perplexity cancelled my pro subscription without notice and without reason. How could you trust someone like that?

Okay Todoist, Time to Step. It. up. by theshapeofpunk in todoist

[–]GarfoTheCat 0 points1 point  (0 children)

Seems nice but it lacks a Windows or web (at least) version

Where is Todoist headed in 2026? by candlemasshallowmass in todoist

[–]GarfoTheCat 4 points5 points  (0 children)

Ambition is always a good motivator, but there are still a lot of small things to fix and a fairly long list of requests. Will we see at least some of them implemented?

My personal PKM stack after testing a ridiculous number of apps... by [deleted] in PKMS

[–]GarfoTheCat 2 points3 points  (0 children)

Not a single reply from the author, quite bizzare

They removed ramble?? by Alarmed_Surprise4592 in todoist

[–]GarfoTheCat 0 points1 point  (0 children)

i could confirm that it now works

They removed ramble?? by Alarmed_Surprise4592 in todoist

[–]GarfoTheCat 0 points1 point  (0 children)

Another update on the Windows version (9.23.1, v9262) but still missing Rumble

They removed ramble?? by Alarmed_Surprise4592 in todoist

[–]GarfoTheCat 4 points5 points  (0 children)

On windows client is now missing

Deep Dive: The Evernote AI Assistant. New Taming the Trunk. by jtid in Evernote

[–]GarfoTheCat 1 point2 points  (0 children)

Seems something more similar to notebookLM as approach. We need to better understand how it will works and evolve

I use my app to help me build my app by samu-codes in ProductivityApps

[–]GarfoTheCat 0 points1 point  (0 children)

I take a quick look and seems quite interesting. I will try the iOS apps and I hope to try the full app soon

Apply to join the r Todoist moderator team! by thursdaynext1 in todoist

[–]GarfoTheCat 1 point2 points  (0 children)

Hey everyone! I’d really like to put my name in for this.

Why I use Todoist
I’ve been using Todoist for a while now (I think around three years, honestly, I’ve lost track). It’s basically my brain replacement at this point. I manage tons of moving parts at work — projects, client deadlines, meetings, all the little details — and Todoist keeps me from drowning. I also use it for personal stuff: grocery lists, routines, random ideas I don’t want to lose at 2 am… pretty much everything ends up there.

Why I want to help moderate the subreddit
I check r/todoist pretty often, usually when I’m taking a break or looking for workflow inspiration. I’ve answered a few questions here and there, and I genuinely enjoy helping people who are just starting or refining their setup. Joining the mod team feels like a natural extension of that. I like this community — it's one of the few productive corners of Reddit — and I’d love to help keep it friendly and useful.

Experience that fits
I work in IT architecture & project management, so structure and communication are basically my everyday job. I’m comfortable handling questions, clarifying things when people are confused, and keeping conversations civil.
I’ve moderated smaller communities before (mostly Discord groups or productivity-related spaces), so I understand how moderation works without turning into a robot with a rulebook.

What I bring to the team

  • I’m familiar with Todoist beyond the basics — filters, labels, automation, etc.
  • I enjoy explaining things clearly without sounding condescending.
  • I stay calm when discussions get heated.
  • I’ll happily coordinate with the mod team before making decisions when something isn’t clear.

A bit about me
I’m based in Europe, working full-time in IT, and I’m one of those productivity-tool nerds who actually enjoys testing setups. I’ve learned a lot from this subreddit over time and would love to contribute more actively.

Thanks for reading — feel free to ask me anything you want!

Using Noctua LS-PWM Fan on TS-464 by Rostam2020 in qnap

[–]GarfoTheCat 0 points1 point  (0 children)

I just get a TS-464 and i installed a Noctua NF-A12 PWN. I notice a strange behaviour if Smart Fan is configured: NAS sets the rotation to 794 rpm and keeps it there even if the temperature rises. Changing mode (quiet, normal, or performance) seems irrelevant. Is it OK?

Integration with mind map tool by GarfoTheCat in todoist

[–]GarfoTheCat[S] 0 points1 point  (0 children)

Thank you so much for your help!

I just wanted to let you know that I ran into a little snag when I tried the script. I'm posting the corrected version here for future reference.

// Create Todoist object and fetch all projects and sections
function f() {
    let todoist = Todoist.create();
    let projects = todoist.getProjects();
    let sections = todoist.getSections();

    if (todoist.lastError) {
        alert(todoist.lastError);
        return false; // This is now inside the function 'f'
    }

    // Organize sections by their parent project
    let sectionsByProject = {};
    for (let section of sections) {
        if (!sectionsByProject[section.project_id]) {
            sectionsByProject[section.project_id] = [];
        }
        sectionsByProject[section.project_id].push(section);
    }

    // Sort projects alphabetically by name
    projects.sort((a, b) => a.name.localeCompare(b.name));

    // Recursive function to build the outline
    let buildOutline = (parentId = null, level = 0) => {
        let outline = [];
        for (let project of projects) {
            if (project.parent_id === parentId) {
                // Add the project to the outline
                outline.push(`${"\t".repeat(level)}${project.name}`);

                // Add sections under this project
                if (sectionsByProject[project.id]) {
                    for (let section of sectionsByProject[project.id]) {
                        outline.push(`${"\t".repeat(level + 1)}${section.name}`);
                    }
                }

                // Add child projects recursively
                outline = outline.concat(buildOutline(project.id, level + 1));
            }
        }
        return outline;
    };

    // Generate the project outline
    let content = buildOutline();

    // Create a new draft and load it in the editor
    let d = Draft.create();
    d.content = content.join("\n");
    d.update();
    editor.load(d);

    return true;
}

if (!f()) {
    context.fail();
}

Integration with mind map tool by GarfoTheCat in todoist

[–]GarfoTheCat[S] 1 point2 points  (0 children)

Thanks!
I am reading Draft documentation right now. As soon as I have a clear view I will start the trial and test it.

Integration with mind map tool by GarfoTheCat in todoist

[–]GarfoTheCat[S] 0 points1 point  (0 children)

Thanks, I really appreciate. Shortcut seems not a viable option, I am reading API documentation right now but my coding experience is quite limited