Re: Bug: org-highest-priority not defined [9.3.6 (release_9.3.6-399-ge6df03 @ /home/n/.emacs.d/straight/build/org/)]
No Wayman writes: > Subject: [PATCH] Use defvaralias for prioirity variable aliases Thank you for the initial report and the follow-up patch. I'm confused why e062ca719 (org.el: Use `defalias' for priority aliases, 2020-02-24) did the exact opposite reversal, but your patch looks obviously correct. Applied in 097b4e6ca, filling in the commit message.
Re: OrgNV - alternative to deft
Bob Newell writes: > You might take a look at my 'scraps' package. I created it a > little while back and it does a fair amount of what you > mention. Thanks, looks very interesting. Does some of what I need, but I differ in some design choices: - I prefer the incremental search scheme a-la-deft instead of dired. - I also do not care for file names and prefer to have editable titles / summaries. - A reason for this is that I care about linking and backlinking notes. Fixing file name <-> title association makes the database static and difficult to edit. - I am also into having multiple folders for separating big categories and areas of interest (hence the recursive approach). - I also would like to attach multimedia / PDF's / images to the notes as linked or embedded assets. This is easy if directories are allowed and files filtered by extension. In any case... > I've got over 3,000 files taking up over 64 MB and it's still quite > fast. ... your work proves that using grep is not such a bad idea after all because of available memory and SSD's, as you say in the PDF. -- Juan José García Ripoll Quantum Information and Foundations Group http://quinfog.hbar.es - http://juanjose.garciaripoll.com
Re: OrgNV - alternative to deft
Juan, You might take a look at my 'scraps' package. I created it a little while back and it does a fair amount of what you mention. I've got over 3,000 files taking up over 64 MB and it's still quite fast. http://www.bobnewell.net/filez/scraps.zip -- Bob Newell Honolulu, Hawai`i - Via Gnus/BBDB/Org/Emacs/Linux
Re: Org mode for meeting minutes
Pankaj Jangid writes: > I have an off-topic query though: How do you right align tags? > > > , | org-tags-column is a variable defined in ‘org.el’. | Its value is -120 | Original value was -77 | | You can customize this variable. | | Documentation: | The column to which tags should be indented in a headline. | If this number is positive, it specifies the column. If it is negative, | it means that the tags should be flushright to that column. For example, | -80 works well for a normal 80 character screen. | When 0, place tags directly after headline text, with only one space in | between. ` -- Nick "There are only two hard problems in computer science: cache invalidation, naming things, and off-by-one errors." -Martin Fowler
OrgNV - alternative to deft
Hi, I have started a personal project, with no aims to create a package yet, to create an alternative to deft. I have very specific reasons: - Open the library to being used programatically, similar to how completing-read works. - Built around 'grep', to allow more sophisticated queries in the future. - No databases. No "Xapian"-like interfaces. No cache files. - Multiple source directories. - Focus on org-mode nodes. - Easier interface to org-mode for creating links directly from an org-mode file. The result feels pretty snappy. Reading 1000 files with 'grep' and parsing them takes less than 0.5s in an old laptop. It is so fast that I don't really feel like adding a cache around it. I feel this paradigm can scale to more interesting features, such as querying #+KEYWORD or tags in files, which I am using in my personal knowledge database. Feedback is very much welcome. This is the first such "interactive" project I start with Emacs and I am unfamiliar with the programming conventions. http://juanjose.garciaripoll.com/blog/orgnv-navigate-notes-with-grep/index.html Cheers -- Juan José García Ripoll Quantum Information and Foundations Group http://quinfog.hbar.es - http://juanjose.garciaripoll.com
Re: Org mode for meeting minutes
Just for your amusement: I've developed a very different but effective way of taking minutes with org-mode that uses just lists and enumerations. I have been using this solution for more than a year on a daily basis and I'm really happy with it (and colleagues don't complain). Speed, simplicity and readability for non-emacsers is critical in my job, so the solutions you are proposing would be overkill. You can have a look at the style and code here: https://github.com/timmli/org-minutes-dev Any feedback is greatly appreciated. But keep in mind that the code is not polished at all -- this is a hobby project of an elisp dilettante. Best, Timm Am 23.03.20 um 10:36 schrieb Christian Egli: Hi all I'm picking up this thread again since I think I have solved the issue for myself. I do use org-mode for meeting minutes now. Thanks to the input from this list I managed to solve the outstanding issues such as tabular reports of action items. I wrote a blog post summarizing my findings which you can find here https://egli.dev/posts/using-org-mode-for-meeting-minutes/ Hope that helps Christian "Fraga, Eric" writes: On Thursday, 31 Oct 2019 at 15:03, Christian Egli wrote: His mail is from 2008 and a lot has happened in the mean time. Although a lot has happened in the meantime, I've not seen anything pass by which addresses minutes of meetings and tracking actions. I used to use org to take minutes but haven't done so in a very long time (advantage of having somebody else do it for me now ;-)). What you've done with an active dblock (and TODO states being the names of people!) looks good and should definitely be put on Worg at the very least.
Re: Org mode for meeting minutes
Christian Egli writes: > I'm picking up this thread again since I think I have solved the issue > for myself. I do use org-mode for meeting minutes now. Thanks to the > input from this list I managed to solve the outstanding issues such as > tabular reports of action items. > > I wrote a blog post summarizing my findings which you can find here > https://egli.dev/posts/using-org-mode-for-meeting-minutes/ Thanks for this really useful blog post. I have an off-topic query though: How do you right align tags?
export org tables to html, configure the borders
Hi I have the following table #+begin_src | Product | online clases with pdf | share screen | whiteboard | stability of the connection | |-+-+---+---+-| | collaborate | yes | not with the iPad | yes but | disconnects every 30 min| | | | | big letter distortion | | | | | | de delete function| | | | | | does not work properly: | | | | | | all the text gets deleted | | |-+-+---+---+-| | Google meet | yes | yes with the iPad | there is none | disconnects every 5 min once| | | | | | share screen is activated | |-+-+---+---+-| | zoom| yes | yes with the iPad | decent whiteboard | very well, however the free version | | | | | | only allows 40 min sessions | |-+-+---+---+-| #+end_src Now I would like to export it to html precisely with these vertical and horizontal borders. The standard setting of org-html-table-default-attributes is (:border "2" :cellspacing "0" :cellpadding "6" :rules "groups" :frame "hsides") Which does not insert the borders. However the setting (:border "2" :cellspacing "0" :cellpadding "6" :frame "border" :rules "all") Inserts borders but to many of them, each line gets a horizontal border, which I don't want. 1. What is the correct setting 2. How can I have such a setting locally just for one table? Thanks and regards Uwe Brauer
Re: Org mode for meeting minutes
Hi Christian, very useful blog post indeed, thank you. Thanks for finding the :match parameter and for pointing out that it is not documented in the manual. I have fixed that in org-manual.org. Carsten - Carsten On Mon, Mar 23, 2020 at 10:37 AM Christian Egli wrote: > Hi all > > I'm picking up this thread again since I think I have solved the issue > for myself. I do use org-mode for meeting minutes now. Thanks to the > input from this list I managed to solve the outstanding issues such as > tabular reports of action items. > > I wrote a blog post summarizing my findings which you can find here > https://egli.dev/posts/using-org-mode-for-meeting-minutes/ > > Hope that helps > Christian > > "Fraga, Eric" writes: > > > On Thursday, 31 Oct 2019 at 15:03, Christian Egli wrote: > >> His mail is from 2008 and a lot has happened in the mean time. > > > > Although a lot has happened in the meantime, I've not seen anything pass > > by which addresses minutes of meetings and tracking actions. I used to > > use org to take minutes but haven't done so in a very long time > > (advantage of having somebody else do it for me now ;-)). What you've > > done with an active dblock (and TODO states being the names of people!) > > looks good and should definitely be put on Worg at the very least. > > -- > Christian Egli > Swiss Library for the Blind, Visually Impaired and Print Disabled > Grubenstrasse 12, CH-8045 Zürich, Switzerland > > >
Re: Org mode for meeting minutes
> Am 23.03.2020 um 10:36 schrieb Christian Egli : > > Hi all > > I'm picking up this thread again since I think I have solved the issue > for myself. I do use org-mode for meeting minutes now. Thanks to the > input from this list I managed to solve the outstanding issues such as > tabular reports of action items. > > I wrote a blog post summarizing my findings which you can find here > https://egli.dev/posts/using-org-mode-for-meeting-minutes/ > > Hope that helps > Christian It really did. I’m adjusting my template right now to include the :match Thanks for sharing that information! Axel
Re: Org mode for meeting minutes
Thank you for the blog post. Very useful. -- : Eric S Fraga via Emacs 28.0.50, Org release_9.3.6-433-g4b2628
Re: Org mode for meeting minutes
Hi all I'm picking up this thread again since I think I have solved the issue for myself. I do use org-mode for meeting minutes now. Thanks to the input from this list I managed to solve the outstanding issues such as tabular reports of action items. I wrote a blog post summarizing my findings which you can find here https://egli.dev/posts/using-org-mode-for-meeting-minutes/ Hope that helps Christian "Fraga, Eric" writes: > On Thursday, 31 Oct 2019 at 15:03, Christian Egli wrote: >> His mail is from 2008 and a lot has happened in the mean time. > > Although a lot has happened in the meantime, I've not seen anything pass > by which addresses minutes of meetings and tracking actions. I used to > use org to take minutes but haven't done so in a very long time > (advantage of having somebody else do it for me now ;-)). What you've > done with an active dblock (and TODO states being the names of people!) > looks good and should definitely be put on Worg at the very least. -- Christian Egli Swiss Library for the Blind, Visually Impaired and Print Disabled Grubenstrasse 12, CH-8045 Zürich, Switzerland