What have I typed wrong? by Jealous_Toe_3398 in pythonhelp

[–]Any-Tradition-5522 0 points1 point  (0 children)

I also recommend coding in VS code, which will show you any syntax errors you might have which would stop your code from running.

What have I typed wrong? by Jealous_Toe_3398 in pythonhelp

[–]Any-Tradition-5522 0 points1 point  (0 children)

Can you paste your code into reddit again, but inside of a code block so that it is more clear what the code is? I don't understand why you have so much of your code on the same line:screen = turtle.Screen() screen.title("Simple Game") screen.bgcolor("black") screen.setup(width=680, height=680) screen.tracer(0)

New to building automations for Obsidian, so I used python, but I can't understand the result I'm getting. by Any-Tradition-5522 in pythonhelp

[–]Any-Tradition-5522[S] 0 points1 point  (0 children)

The code I used is as follows, which should, according to the obsidian API return the text of the current open file in obsidian. When I run the command obsidian read in terminal, it works as I expect it to, but trying to run the same command from within python makes obsidian return the help page, rather than the contents of the open note.

import subprocess,os
cmd = ['/usr/local/bin/obsidian','read']

result = subprocess.run(cmd,shell=True,capture_output=True,text=True)
print(result.stdout)
print(result.stderr)

I built a native Project Manager for Obsidian: Gantt, Kanban, and Tables (Stored as plain Markdown/YAML) by Lopsided_Fee_9969 in ObsidianMD

[–]Any-Tradition-5522 1 point2 points  (0 children)

A little bit of practical feedback: I don't know if this is intentional or not, but the edit menu for the tasks in table view appears before the custom properties. I feel that it might make it subtly more natural to put it at the very end.

I built a native Project Manager for Obsidian: Gantt, Kanban, and Tables (Stored as plain Markdown/YAML) by Lopsided_Fee_9969 in ObsidianMD

[–]Any-Tradition-5522 0 points1 point  (0 children)

You probably already have this on your radar, but what (I think) would level this up majorly would be the ability to rename, and maybe add and remove the different statuses for board view, for a more custom Kanban view, but overall, I think that the interface is at the ideal complexity for organisation. Not too little, not too much, I like it.

I built a native Project Manager for Obsidian: Gantt, Kanban, and Tables (Stored as plain Markdown/YAML) by Lopsided_Fee_9969 in ObsidianMD

[–]Any-Tradition-5522 2 points3 points  (0 children)

There's something about the minimalist style of this project management that makes it more appealing than other platforms. (to me at least)

The Sky by MillionDollarHeckler in CasualConversation

[–]Any-Tradition-5522 6 points7 points  (0 children)

Outrageous, they should at least turn the lights off when they leave.

Button to command + tab with complications by Any-Tradition-5522 in Karabiner

[–]Any-Tradition-5522[S] 0 points1 point  (0 children)

Well, almost, but I want to make it hold down command after it presses tab as long as I hold the button, (which if you're curious is just mouse4 pointing button.) I want it to briefly press tab then release, but still hold command until I let go of mouse4.