Sacha Chua <sa...@sachachua.com> writes:

> Ihor Radchenko <yanta...@posteo.net> writes:
>
>> 34. consider searching for people to create screencasts of the new Org 
>> features; maybe Sacha?
>
> I might not be a good fit for this one yet, but I'd be happy to help
> eventually once the kid settles into school. Maybe other people might be
> a good fit for now?

That was a just dump of rough ideas. Basically "someday" list.
I wrote your name because you may know people who are willing to do the
screencasts, not because I expected that you will make them :)

>> 40. link to the latest Org videos from emacstv (but only worg; cannot link 
>> to youtube from main website)
>
> I added <category>...</category> elements to https://emacs.tv/videos.rss
> and tags to https://emacs.tv/videos.json in case that helps.

Thanks!
We can make a src block that auto-generates org text.
Here is a draft fetching titles and urls from emacs.tv:

(let* ((json-data
        (with-current-buffer (url-retrieve-synchronously 
"https://emacs.tv/videos.json"; t)
          (goto-char url-http-end-of-headers)
          (json-read)))
       (org-items
        (delq nil
              (seq-map
               (lambda (item)
                 (when (seq-find (lambda (tag) (string= tag "org")) (alist-get 
'TAGS item))
                   (cons
                    (alist-get 'ITEM item)
                    (or (alist-get 'PEERTUBE_URL item)
                        (alist-get 'YOUTUBE_URL item)))))
               json-data))))
  org-items)

> Quite a few Org links turn up in Emacs News. Here's the raw Org file:
> https://raw.githubusercontent.com/sachac/emacs-news/refs/heads/master/index.org

If you remember, I already put these links in https://orgmode.org/ under
Project heartbeat section.

> ... There are
> probably a number of resources that could be included on
> https://orgmode.org/worg/org-contrib/babel/uses.html and in the workflow
> sections of https://orgmode.org/worg/ . Beginner resources, workflows,
> notes, tasks, agenda, capture templates, tables and calculations,
> organization and refiling, import/export/integration, literate
> programming, custom links, AI, Org Roam and similar packages, Denote...?
> Even on my blog, I've found it useful to organize by subtopic:
> https://sachachua.com/topic/org/

> I can add this to my TODO list and get around to it eventually, although
> if someone else thinks it might be interesting to do, feel free to jump in!

+1

-- 
Ihor Radchenko // yantar92,
Org mode maintainer,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>

Reply via email to