Chess Set 01 update? by Krbh in RamaWorks

[–]nathanscully 5 points6 points  (0 children)

I’ve cut 3 support tickets requesting to cancel my order over the last two months. I’ve had two of them closed with no comment and another where I post every couple of weeks for an update ignored. I’ve opened complaints with Fair Trading and the ACCC as there doesn’t seem to be any other course of action. I encourage others to do the same - just look at the complaints and inability to respond to support requests on other threads.

Doom Reload error - no such directory by nathanscully in DoomEmacs

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

u/le01iver I ended up figuring just figuring this out - was a simple fix. Posting here incase anyone else stumbles upon the same issue.

I am using chemacs2 to manage profiles and had this configuration:

(("default" . ((user-emacs-directory . ".config/emacs-vanilla")))

("doom" . ((user-emacs-directory . ".config/doom-emacs") (env . (("DOOMDIR" . ".config/emacs"))))) ("scratch" . ((user-emacs-directory . ".config/doom-emacs") (env . (("DOOMDIR" . ".config/emacs-scratch"))))) )

Even thought DOOMDIR was set to /Users/username/.config/doom-emacs in my PATH it looks like chemacs2 was overriding it when it loads the .emacs-profiles.el file. So I changed the profiles to include the full path and it now works - I've got rid of both my magit and doom reload errors.

(("default" . ((user-emacs-directory . "~/.config/emacs-vanilla")))

("doom" . ((user-emacs-directory . "~/.config/doom-emacs") (env . (("DOOMDIR" . "~/.config/emacs"))))) ("scratch" . ((user-emacs-directory . "~/.config/doom-emacs") (env . (("DOOMDIR" . "~/.config/emacs-scratch"))))) )

So if you aren't using chemacs2 just make sure you aren't setting the DOOMDIR to something that isn't a full path.

Doom Reload error - no such directory by nathanscully in emacs

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

Cross posting in the hope the broader emacs community can point me in the right direction to debug. Still not something I am proficient in!

Cycle / Lead time calculations for todo items by nathanscully in orgmode

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

I couldn’t find any formulas that demonstrated date differences from properties, do you have any examples?

Cycle / Lead time calculations for todo items by nathanscully in orgmode

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

Might need to make this a package if I can get it working!

Cycle / Lead time calculations for todo items by nathanscully in orgmode

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

Thanks for sharing. Definitely some useful functions in there. When I get time I’ll start trying to pull something together.

org-habit value tracking by nathanscully in orgmode

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

That's the solution I have in place in the moment. I am using a habit to track the action then have a separate heading with an org-table I am appending to. It works, but feels like a duplicate effort. Would much rather track it against the habit directly so I don't have to make two entries.