From 506616e41969032c002e4d044ebdb7a892c043eb Mon Sep 17 00:00:00 2001 From: Sacha Chua Date: Sat, 5 Nov 2022 18:52:57 -0400 Subject: add onboarding e-mail --- 2022/organizers-notebook/index.org | 48 +++++++++++++++++++++++++++++++++++++- 1 file changed, 47 insertions(+), 1 deletion(-) (limited to '2022') diff --git a/2022/organizers-notebook/index.org b/2022/organizers-notebook/index.org index caccb0f5..1beb2511 100644 --- a/2022/organizers-notebook/index.org +++ b/2022/organizers-notebook/index.org @@ -663,6 +663,52 @@ CLOSED: [2022-10-22 Sat 23:16] *** CANCELLED [#C] Compare with Google Cloud Speech API CLOSED: [2022-10-29 Sat 09:58] ~/code/speech + +*** DONE E-mail for bringing new captioning volunteers onboard +CLOSED: [2022-10-29 Sat 09:58] +#+begin_src emacs-lisp +(defun emacsconf-mail-backstage-intro (volunteer &optional template) + (interactive (list (emacsconf-complete-volunteer))) + (emacsconf-mail-prepare + (or template (emacsconf-mail-merge-get-template "backstage-intro")) + (assoc-default "EMAIL" volunteer 'string=) + (list + :backstage "https://media.emacsconf.org/2022/backstage/" + :backstage-user "emacsconf" + :backstage-password emacsconf-backstage-password + :conf-name emacsconf-name + :year emacsconf-year + :name (assoc-default "NAME_SHORT" volunteer 'string=) + :email (assoc-default "EMAIL" volunteer 'string=)))) +#+end_src +**** Template +:PROPERTIES: +:TO: ${email} +:FUNCTION: emacsconf-mail-backstage-intro +:EMAIL_ID: backstage-intro +:SUBJECT: ${conf-name} ${year}: Thanks for volunteering! +:END: + +Hi ${name}! + +Thank you for volunteering for ${conf-name} ${year}! + +We've set up ${backstage} as the backstage area where you can view the +videos and resources uploaded so far. You can access it with the +username "${backstage-user}" and the password "${backstage-password}". +Please keep the backstage password and other speakers' talk resources +secret. + +For some ideas on ways to help, you can check out +https://emacsconf.org/2022/volunteer/ . You can also suggest other +things you might be interested in. + +To ask questions or chat with other volunteers, please e-mail the +mailing list at emacsconf-org@gnu.org or drop by #emacsconf on the +libera.chat IRC network. + +Sacha Chua + *** DONE E-mail for bringing new captioning volunteers onboard CLOSED: [2022-10-29 Sat 09:58] #+begin_src emacs-lisp @@ -981,7 +1027,7 @@ Goals: 3. Start up the VNC server if it's not already running - ssh emacsconf-$TRACK@res.emacsconf.org ~/bin/track-vnc + ssh emacsconf-$TRACK@res.emacsconf.org "~/bin/track-vnc" 4. Forward your local ports -- cgit v1.2.3 From 7501d9e1c060483d1bf1253fa6ae7d50ffbb06c9 Mon Sep 17 00:00:00 2001 From: Sacha Chua Date: Sat, 5 Nov 2022 18:56:09 -0400 Subject: Add more notes --- 2022/organizers-notebook.md | 122 +++++++++++++++++++++++++++---------- 2022/organizers-notebook/index.org | 9 ++- 2 files changed, 96 insertions(+), 35 deletions(-) (limited to '2022') diff --git a/2022/organizers-notebook.md b/2022/organizers-notebook.md index beb6516a..7f8598b6 100644 --- a/2022/organizers-notebook.md +++ b/2022/organizers-notebook.md @@ -868,13 +868,17 @@ You can then use - emacsconf-agenda-by-track - emacsconf-agenda -If things are going well, you can use C-c C-t on the agenda view to change a talk to PLAYING, CLOSED\_Q, or OPEN\_Q, and various things should appen in the background. +If things are going well, you can use C-c C-t on the agenda view to change a talk to PLAYING, CLOSED\_Q, or OPEN\_Q, and various things should happen in the background. If they don’t happen in the background, use emacsconf-add-org-after-todo-state-change-hook to add the todo state change hook, then try again. -Task shortcut: +Task state shortcuts for C-c C-t: - **m (mpv):** PLAYING - -stream-play-video, emacsconf-stream-set-talk-info, publish the files to the media directory - **q (Q&A):** CLOSED\_Q - **o (open):** update the BBB redirect URLs to let people into the room +- u (unstreamed) +- r (to archive) + +You can leave the emacsclient with `C-x 5 0` ### Checklist for later dry run @@ -945,7 +949,7 @@ Can I use aeneas for alignment instead? Reflow the .txt file and reupload to res if needed call ../run-aeneas.sh from the directory with the opus or ogg and the txt file -sachac@res-https://emacsconf.org/2022/talks/~/current/meetups$ python3 -m aeneas.tools.execute\_task emacsconf-2022-meetups–attending-and-organizing-emacs-meetups–bhavin-gandhi–main.opus reflowed.srt &lsquo ;task\_language=eng|os\_task\_file\_format=json|is\_text\_type=subtitles’ output.json +sachac@res-https://emacsconf.org/2022/talks/~/current/meetups$ python3 -m aeneas.tools.execute\_task emacsconf-2022-meetups–attending-and-organizing-emacs-meetups–bhavin-gandhi–main.opus reflowed.srt “task\_language=eng|os\_task\_file\_format=json|is\_text\_type=subtitles” output.json I might try out lhotse and torchaudio someday, but it’s low priority. aeneas seems to do a reasonable job of @@ -1024,6 +1028,46 @@ Large and medium might do better on a system with a GPU. I’ll default to t ~/code/speech +### DONE E-mail for bringing new captioning volunteers onboard + + (defun emacsconf-mail-backstage-intro (volunteer &optional template) + (interactive (list (emacsconf-complete-volunteer))) + (emacsconf-mail-prepare + (or template (emacsconf-mail-merge-get-template "backstage-intro")) + (assoc-default "EMAIL" volunteer 'string=) + (list + :backstage "https://media.emacsconf.org/2022/backstage/" + :backstage-user "emacsconf" + :backstage-password emacsconf-backstage-password + :conf-name emacsconf-name + :year emacsconf-year + :name (assoc-default "NAME_SHORT" volunteer 'string=) + :email (assoc-default "EMAIL" volunteer 'string=)))) + + +#### Template + +Hi ${name}! + +Thank you for volunteering for ${conf-name} ${year}! + +We’ve set up ${backstage} as the backstage area where you can view the +videos and resources uploaded so far. You can access it with the +username "${backstage-user}“ and the password ”${backstage-password}“. +Please keep the backstage password and other speakers’ talk resources +secret. + +For some ideas on ways to help, you can check out + . You can also suggest other +things you might be interested in. + +To ask questions or chat with other volunteers, please e-mail the +mailing list at emacsconf-org@gnu.org or drop by #emacsconf on the +libera.chat IRC network. + +Sacha Chua + + ### DONE E-mail for bringing new captioning volunteers onboard (defun emacsconf-mail-captioning-intro (volunteer &optional template) @@ -1055,8 +1099,8 @@ great to have you on board.${wrap} We’ve set up ${backstage} as the backstage area where you can view the videos and resources uploaded so far. You can access it with the -username "${backstage-user}&lsquo ; and the password ’${backstage-password}&lsquo ;. -Please keep the backstage password and other speakers” talk resources +username "${backstage-user}“ and the password ”${backstage-password}“. +Please keep the backstage password and other speakers’ talk resources secret. If you see a talk that you’d like to caption, you can e-mail me at sacha@sachachua.com and I can reserve it for you. Then you can correct any misrecognized words, fix capitalizations, remove filler @@ -1129,7 +1173,7 @@ in prod or docker container ### DONE icecast on live0 -(find-file &lsquo ;/ssh:live|sudo::/etc/icecast2/icecast.xml’) +(find-file “/ssh:live|sudo::/etc/icecast2/icecast.xml”) #### DONE Set up watch/gen-480p @@ -1311,7 +1355,7 @@ Goals: - [X] Have another session with the sound isolated - [X] Split the audio so that we can join the Q&A room before the MPV ends - handled by automatic scene switcher detecting mpv - [X] Control MPV from the commandline: track-mpv appears in the correct display, and it can also be controlled via the socket like this: - echo ’{ &lsquo ;command’: [&lsquo ;loadfile’, &lsquo ;test2.webm’] }’ | socat - ~/mpv-socket-emacsconf-dev + echo ’{ “command”: [“loadfile”, “test2.webm”] }’ | socat - ~/mpv-socket-emacsconf-dev - [ ] Share the window instead of the desktop? @@ -1328,7 +1372,7 @@ Goals: 3. Start up the VNC server if it’s not already running - ssh emacsconf-$TRACK@res.emacsconf.org ~/bin/track-vnc + ssh emacsconf-$TRACK@res.emacsconf.org “~/bin/track-vnc” 4. Forward your local ports @@ -1445,8 +1489,8 @@ and type your message in. #### Kill the VNC server: -ssh emacsconf-gen@res.emacsconf.org &lsquo ;vncserver -kill’ -ssh emacsconf-dev@res.emacsconf.org &lsquo ;vncserver -kill’ +ssh emacsconf-gen@res.emacsconf.org “vncserver -kill” +ssh emacsconf-dev@res.emacsconf.org “vncserver -kill” @@ -1474,7 +1518,7 @@ ssh emacsconf-dev@res.emacsconf.org &lsquo ;vncserver -kill’ ### Other notes There are sockets in the home directory for MPV control if you want to keep that process. -echo ’{ &lsquo ;command’: [&lsquo ;loadfile’, &lsquo ;test2.webm’] }’ | socat - ~/mpv-socket-emacsconf-dev +echo ’{ “command”: [“loadfile”, “test2.webm”] }’ | socat - ~/mpv-socket-emacsconf-dev ### DONE Move my conf.org setup to res so that we can control everything from there @@ -1487,11 +1531,23 @@ echo ’{ &lsquo ;command’: [&lsquo ;loadfile’, &lsquo ;test2.we (let ((emacsconf-schedule-strategies '(emacsconf-schedule-test-buffer))) (emacsconf-stream-schedule-timers (emacsconf-schedule-prepare (emacsconf-schedule-inflate-sexp - `(("Test" :start ,(format-time-string "%Y-%m-%d %H:%M" - (time-add (current-time) (seconds-to-time 60)))) - (journalism :time "1") - (school :time "1") - (handwritten :time "1")))))) + `(("Test gen" :start ,(format-time-string "%Y-%m-%d %H:%M" + (time-add (current-time) (seconds-to-time 60)))) + (journalism :time "1") + (school :time "2") + (handwritten :time "1") + ("Test dev" :start ,(format-time-string "%Y-%m-%d %H:%M" + (time-add (current-time) (seconds-to-time 60)))) + (treesitter :time "2") + (lspbridge :time "1") + (asmblox :time "1")))))) + +the dev one worked, but the gen one gets +Couldn’t find local shell prompt for /bin/sh +Tramp: Opening connection **Async Shell Command** for emacsconf-gen@res.emacsconf.org using ssh…failed + +Maybe I need to stagger them, or maybe I need to use a shell command. +Changed to call ssh directly instead of using tramp. ### TODO Figure out how to work with the layout @@ -1557,7 +1613,7 @@ so that the streamer can adjust volume offscreen? - -### TODO recruit at least one more person to help operate the &lsquo ;video bouncer’ +### TODO recruit at least one more person to help operate the “video bouncer” @@ -2441,7 +2497,7 @@ We tried using q56 before, but it was a little too aggressive. Q=32 is the defau Hi, ${speakers-short}! Just a quick note to let you know that I’ve downloaded your -submission for &lsquo ;${title}’. We’ve added your submission to the backstage +submission for “${title}”. We’ve added your submission to the backstage area at ${backstage} (username: ${backstage-user}, password: ${backstage-password}), and we’ll post the files on your talk page when the talk is public. A quick check shows that your video is about @@ -2772,9 +2828,9 @@ Exception: [CHECK is unavailable](#check-gone) with instructions, so please check there. Let me know if you don’t get them. - Private messages: - - (erc-message &lsquo ;PRIVMSG’ (format &lsquo ;%s You can use this BBB room: %s . I’ll join you there shortly to set up the room and do the last-minute tech check.’ nick room-url)) - - (erc-message &lsquo ;PRIVMSG’ (format &lsquo ;%s The collaborative pad we’ll be using for questions is at %s . We’ll collect questions from #emacsconf and put them there. If you’d like to jump to your part of the document, you might be able to keep an eye on questions. Alternatively, we can read questions to you.’ nick conf-collaborative-pad)) - - (erc-message &lsquo ;PRIVMSG’ (format &lsquo ;%s Leo Vivier will join when it’s time, and he will give you the go-ahead when it’s time to present. See you in the BBB room!’ nick)) + - (erc-message “PRIVMSG” (format “%s You can use this BBB room: %s . I’ll join you there shortly to set up the room and do the last-minute tech check.” nick room-url)) + - (erc-message “PRIVMSG” (format “%s The collaborative pad we’ll be using for questions is at %s . We’ll collect questions from #emacsconf and put them there. If you’d like to jump to your part of the document, you might be able to keep an eye on questions. Alternatively, we can read questions to you.” nick conf-collaborative-pad)) + - (erc-message “PRIVMSG” (format “%s Leo Vivier will join when it’s time, and he will give you the go-ahead when it’s time to present. See you in the BBB room!” nick)) - CHECK directs speaker to available room with `/checkin ` - Speaker joins talk room - CHECK makes speaker presenter and moderator, does last-minute tech check @@ -3088,7 +3144,7 @@ Probably focus on grabbing the audio first and seeing what’s worth keeping Make a table of the form -
+
@@ -3362,7 +3418,7 @@ mpv –vf=negate $url Extra stuff to consider adding: - DONE Suggestions for themes (especially wrt colourscape) -- DONE “Please don’t squeeze your talk by fast-forwarding your speech. Trimming silences and filler words can help, though. Sometimes it’s easier to write, record, and edit your voiceover, and then record the video to go along with it.&lsquo ; +- DONE “Please don’t squeeze your talk by fast-forwarding your speech. Trimming silences and filler words can help, though. Sometimes it’s easier to write, record, and edit your voiceover, and then record the video to go along with it.“ - DONE Allowing speakers to plant questions, esp. to cover tangential stuff that couldn’t fit in the prerec @@ -3386,7 +3442,7 @@ See the bottom of conf.org for some automated validation Extra stuff to consider adding: - DONE Suggestions for themes (especially wrt colourscape) -- DONE “Please don’t squeeze your talk by fast-forwarding your speech. Trimming silences and filler words can help, though. Sometimes it’s easier to write, record, and edit your voiceover, and then record the video to go along with it.&lsquo ; +- DONE “Please don’t squeeze your talk by fast-forwarding your speech. Trimming silences and filler words can help, though. Sometimes it’s easier to write, record, and edit your voiceover, and then record the video to go along with it.“ - DONE Allowing speakers to plant questions, esp. to cover tangential stuff that couldn’t fit in the prerec @@ -3494,7 +3550,7 @@ Slightly annoying to do with JS/CSS because I want it to fall back to an interle ## DONE Process confirmations as we receive them :sachac:zaeph: -- Reply to the speaker and Cc -submit to confirm the confirmation. Something like &lsquo ;Confirming your confirmation, no reply needed to this one. Thank you!’ +- Reply to the speaker and Cc -submit to confirm the confirmation. Something like “Confirming your confirmation, no reply needed to this one. Thank you!” - Update talk to WAITING\_FOR\_PREREC in conf.org - Add a note in the logbook (C-c C-z - org-add-note) for the talk entry - Add :PUBLIC\_EMAIL: t if given permission to use the e-mail on the @@ -3889,15 +3945,15 @@ It would be nice to have track-specific icals as well. zaeph: I can work on it, but I’m not experienced in this domain, so I’d prefer to be a back-up. task is currently with bandali -Lesson learned from last year: &lsquo ;Since people kept running into ftp +Lesson learned from last year: “Since people kept running into ftp problems, we might want to set up a web-frontend next year to minimise -problems.’ +problems.” Maybe we could ask some of the volunteers who wanted to help us with the infra? It shouldn’t be complicated to deploy a ready-made solution. -&lsquo ;file drop’ is a common keyword for looking for information. +“file drop” is a common keyword for looking for information. Considerations: - Probably run it on media.emacsconf.org @@ -4202,8 +4258,8 @@ generated captions that we can use as a starting point. We’ve set up ${backstage} as the backstage area where you can view the videos and resources uploaded so far. You can access it with the -username "${backstage-user}&lsquo ; and the password ’${backstage-password}&lsquo ;. -Please keep the backstage password and other speakers” talk resources +username "${backstage-user}“ and the password ”${backstage-password}“. +Please keep the backstage password and other speakers’ talk resources secret. ${backstage-use}${wrap} Thank you! @@ -4583,7 +4639,7 @@ ${captions} Hi, ${name}! I think we haven’t heard from you since we accepted your EmacsConf -${year} proposal for "${title}&lsquo ;. EmacsConf coming up soon, so I wanted +${year} proposal for "${title}“. EmacsConf coming up soon, so I wanted to check in with you to see how you’re doing. Could you please e-mail us to let us know if you’re still working on @@ -5292,10 +5348,10 @@ see emacsconf-import-comments-from-etherpad-text format makes it harder not only for the organizers, but also for the speakers themselves (since they will have to rethink their presentation). Maybe we can have an e-mail template for a quick - reply that says something like &lsquo ;Just in case we need to squeeze + reply that says something like “Just in case we need to squeeze talks into shorter times, could you please also propose an outline for a possible 10-minute talk that could get people interested in - your topic and point them to where they can find out more?’ + your topic and point them to where they can find out more?” - Two people is the sweet number of reviewers to have for the proposals before sending the notifications, and there’d be diminishing returns with more. Two is enough to release the pressure diff --git a/2022/organizers-notebook/index.org b/2022/organizers-notebook/index.org index c78b25b3..58862ec5 100644 --- a/2022/organizers-notebook/index.org +++ b/2022/organizers-notebook/index.org @@ -550,12 +550,17 @@ You can then use - emacsconf-agenda-by-track - emacsconf-agenda -If things are going well, you can use C-c C-t on the agenda view to change a talk to PLAYING, CLOSED_Q, or OPEN_Q, and various things should appen in the background. +If things are going well, you can use C-c C-t on the agenda view to change a talk to PLAYING, CLOSED_Q, or OPEN_Q, and various things should happen in the background. If they don't happen in the background, use emacsconf-add-org-after-todo-state-change-hook to add the todo state change hook, then try again. + +Task state shortcuts for C-c C-t: -Task shortcut: - m (mpv) :: PLAYING - -stream-play-video, emacsconf-stream-set-talk-info, publish the files to the media directory - q (Q&A) :: CLOSED_Q - o (open) :: update the BBB redirect URLs to let people into the room +- u (unstreamed) +- r (to archive) + +You can leave the emacsclient with ~C-x 5 0~ *** Checklist for later dry run -- cgit v1.2.3 From bb23a2baaae3c2dcb9842ac2070adbc5aa6fbafe Mon Sep 17 00:00:00 2001 From: Sacha Chua Date: Sat, 5 Nov 2022 21:37:35 -0400 Subject: Add devel talk --- 2022/info/asmblox-before.md | 8 ++++---- 2022/info/async-before.md | 6 +++--- 2022/info/buddy-before.md | 4 ++-- 2022/info/buttons-before.md | 2 +- 2022/info/community-before.md | 2 +- 2022/info/dbus-before.md | 2 +- 2022/info/detached-before.md | 6 +++--- 2022/info/devel-after.md | 7 +++++++ 2022/info/devel-before.md | 16 ++++++++++++++++ 2022/info/devel-nav.md | 7 +++++++ 2022/info/eev-before.md | 2 +- 2022/info/eshell-before.md | 2 +- 2022/info/fanfare-before.md | 4 ++-- 2022/info/fanfare-nav.md | 4 ++-- 2022/info/grail-before.md | 2 +- 2022/info/handwritten-before.md | 2 +- 2022/info/haskell-before.md | 2 +- 2022/info/health-before.md | 2 +- 2022/info/hyperorg-before.md | 2 +- 2022/info/indieweb-before.md | 6 +++--- 2022/info/indieweb-nav.md | 2 +- 2022/info/journalism-before.md | 2 +- 2022/info/jupyter-before.md | 2 +- 2022/info/justl-before.md | 4 ++-- 2022/info/localizing-before.md | 2 +- 2022/info/localizing-nav.md | 4 ++-- 2022/info/lspbridge-before.md | 2 +- 2022/info/mail-before.md | 2 +- 2022/info/maint-before.md | 2 +- 2022/info/meetups-before.md | 4 ++-- 2022/info/orgsuperlinks-before.md | 6 +++--- 2022/info/orgvm-before.md | 2 +- 2022/info/orgyear-before.md | 2 +- 2022/info/python-before.md | 2 +- 2022/info/rde-before.md | 8 ++++---- 2022/info/realestate-before.md | 4 ++-- 2022/info/rolodex-before.md | 6 +++--- 2022/info/sat-close-before.md | 2 +- 2022/info/sat-open-before.md | 2 +- 2022/info/school-before.md | 2 +- 2022/info/science-before.md | 4 ++-- 2022/info/sqlite-before.md | 2 +- 2022/info/sun-close-before.md | 2 +- 2022/info/sun-close-nav.md | 2 +- 2022/info/sun-open-before.md | 2 +- 2022/info/survey-before.md | 2 +- 2022/info/tramp-before.md | 2 +- 2022/info/treesitter-before.md | 6 +++--- 2022/info/wayland-before.md | 2 +- 2022/info/workflows-before.md | 2 +- 2022/organizers-notebook/schedule.svg | 2 +- 2022/schedule-2022-12-03.md | 2 +- 2022/schedule-2022-12-04.md | 2 +- 2022/schedule-details.md | 5 +++-- 2022/schedule-image.md | 2 +- 2022/talks/devel.md | 22 ++++++++++++++++++++++ 2022/watch/dev.md | 6 +++--- 2022/watch/gen.md | 15 +++++++++++---- 2022/watch/info.md | 2 +- 59 files changed, 147 insertions(+), 87 deletions(-) create mode 100644 2022/info/devel-after.md create mode 100644 2022/info/devel-before.md create mode 100644 2022/info/devel-nav.md create mode 100644 2022/talks/devel.md (limited to '2022') diff --git a/2022/info/asmblox-before.md b/2022/info/asmblox-before.md index d47d0a55..a01e5f6e 100644 --- a/2022/info/asmblox-before.md +++ b/2022/info/asmblox-before.md @@ -1,13 +1,13 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:10 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:00 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] -Format: 10-min talk followed by live Q&A () -Status: Waiting for video from speaker -
Times in different timezones:
Saturday, Dec 3 2022, ~10:50 AM - 11:00 AM EST (US/Eastern)
Saturday, Dec 3 2022, ~10:50 AM - 11:00 AM EST (US/Eastern)
+Format: 16:07 followed by live Q&A () +Status: Waiting for a caption volunteer +
Times in different timezones:
Saturday, Dec 3 2022, ~10:50 AM - 11:07 AM EST (US/Eastern)
Saturday, Dec 3 2022, ~10:50 AM - 11:07 AM EST (US/Eastern)
# Description diff --git a/2022/info/async-before.md b/2022/info/async-before.md index d64b65ec..23f5a333 100644 --- a/2022/info/async-before.md +++ b/2022/info/async-before.md @@ -1,12 +1,12 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:10 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:20 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] -Format: 20-min talk followed by live Q&A () -Status: Waiting for video from speaker +Format: 7:26 followed by live Q&A () +Status: Waiting for a caption volunteer
Times in different timezones:
Sunday, Dec 4 2022, ~2:10 PM - 2:30 PM EST (US/Eastern)
Sunday, Dec 4 2022, ~2:10 PM - 2:30 PM EST (US/Eastern)
diff --git a/2022/info/buddy-before.md b/2022/info/buddy-before.md index b348bcf8..e5d259f4 100644 --- a/2022/info/buddy-before.md +++ b/2022/info/buddy-before.md @@ -1,12 +1,12 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:10 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:00 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] Format: 7:49 followed by IRC Q&A (#emacsconf-gen) -Status: Waiting for a caption volunteer +Status: Talk captioned
Times in different timezones:
Saturday, Dec 3 2022, ~11:35 AM - 11:45 AM EST (US/Eastern)
Saturday, Dec 3 2022, ~11:35 AM - 11:45 AM EST (US/Eastern)
diff --git a/2022/info/buttons-before.md b/2022/info/buttons-before.md index 726fdf3f..5eb744b4 100644 --- a/2022/info/buttons-before.md +++ b/2022/info/buttons-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:10 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:20 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/community-before.md b/2022/info/community-before.md index a13e03c7..9c47e981 100644 --- a/2022/info/community-before.md +++ b/2022/info/community-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:10 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:00 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/dbus-before.md b/2022/info/dbus-before.md index 5ef80211..ff763f56 100644 --- a/2022/info/dbus-before.md +++ b/2022/info/dbus-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:10 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:20 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/detached-before.md b/2022/info/detached-before.md index b3e8844d..b12b0002 100644 --- a/2022/info/detached-before.md +++ b/2022/info/detached-before.md @@ -1,12 +1,12 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:10 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:20 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] -Format: 10-min talk followed by live Q&A () -Status: Waiting for video from speaker +Format: 10:11 followed by live Q&A () +Status: Waiting for a caption volunteer
Times in different timezones:
Sunday, Dec 4 2022, ~1:00 PM - 1:10 PM EST (US/Eastern)
Sunday, Dec 4 2022, ~1:00 PM - 1:10 PM EST (US/Eastern)
diff --git a/2022/info/devel-after.md b/2022/info/devel-after.md new file mode 100644 index 00000000..dcea755b --- /dev/null +++ b/2022/info/devel-after.md @@ -0,0 +1,7 @@ + + + +Questions or comments? Please e-mail [emacsconf-org-private@gnu.org](mailto:emacsconf-org-private@gnu.org?subject=Comment%20for%20EmacsConf%202022%20devel%3A%20Emacs%20development%20updates) + + + diff --git a/2022/info/devel-before.md b/2022/info/devel-before.md new file mode 100644 index 00000000..d6521643 --- /dev/null +++ b/2022/info/devel-before.md @@ -0,0 +1,16 @@ + + + + +[[!toc ]] +Format: 5-min talk followed by live Q&A () +Status: Waiting for video from speaker +
Times in different timezones:
Sunday, Dec 4 2022, ~4:00 PM - 4:05 PM EST (US/Eastern)
Sunday, Dec 4 2022, ~4:00 PM - 4:05 PM EST (US/Eastern)
+ + +# Description + + + \ No newline at end of file diff --git a/2022/info/devel-nav.md b/2022/info/devel-nav.md new file mode 100644 index 00000000..32bb7989 --- /dev/null +++ b/2022/info/devel-nav.md @@ -0,0 +1,7 @@ + +
+Back to the [[talks]] +Previous by time: Pre-localizing Emacs +Next by time: Fanfare for the Common Emacs User +Track: General +
diff --git a/2022/info/eev-before.md b/2022/info/eev-before.md index 0b8e92d0..85a67218 100644 --- a/2022/info/eev-before.md +++ b/2022/info/eev-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:10 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:00 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/eshell-before.md b/2022/info/eshell-before.md index 9fea3e09..99df52f8 100644 --- a/2022/info/eshell-before.md +++ b/2022/info/eshell-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:10 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:20 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/fanfare-before.md b/2022/info/fanfare-before.md index 1e3b76db..b1cb3cf8 100644 --- a/2022/info/fanfare-before.md +++ b/2022/info/fanfare-before.md @@ -1,13 +1,13 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:10 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:20 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] Format: 10-min talk followed by live Q&A () Status: Waiting for video from speaker -
Times in different timezones:
Sunday, Dec 4 2022, ~4:00 PM - 4:10 PM EST (US/Eastern)
Sunday, Dec 4 2022, ~4:00 PM - 4:10 PM EST (US/Eastern)
+
Times in different timezones:
Sunday, Dec 4 2022, ~4:25 PM - 4:35 PM EST (US/Eastern)
Sunday, Dec 4 2022, ~4:25 PM - 4:35 PM EST (US/Eastern)
# Description diff --git a/2022/info/fanfare-nav.md b/2022/info/fanfare-nav.md index a8c90a12..98668fde 100644 --- a/2022/info/fanfare-nav.md +++ b/2022/info/fanfare-nav.md @@ -1,7 +1,7 @@
Back to the [[talks]] -Previous by time: Putting Org Mode on the Indieweb -Next by time: Pre-localizing Emacs +Previous by time: Emacs development updates +Next by time: Sunday closing remarks Track: General
diff --git a/2022/info/grail-before.md b/2022/info/grail-before.md index 7e06e0b4..161546eb 100644 --- a/2022/info/grail-before.md +++ b/2022/info/grail-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:10 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:20 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/handwritten-before.md b/2022/info/handwritten-before.md index 5b02a0dd..591ba9fa 100644 --- a/2022/info/handwritten-before.md +++ b/2022/info/handwritten-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:10 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:00 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/haskell-before.md b/2022/info/haskell-before.md index 11964603..39d9d386 100644 --- a/2022/info/haskell-before.md +++ b/2022/info/haskell-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:10 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:00 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/health-before.md b/2022/info/health-before.md index 0b9a6e3b..950e23e1 100644 --- a/2022/info/health-before.md +++ b/2022/info/health-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:10 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:00 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/hyperorg-before.md b/2022/info/hyperorg-before.md index 9229a511..20a5219c 100644 --- a/2022/info/hyperorg-before.md +++ b/2022/info/hyperorg-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:10 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:20 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/indieweb-before.md b/2022/info/indieweb-before.md index d39aad2d..174773c5 100644 --- a/2022/info/indieweb-before.md +++ b/2022/info/indieweb-before.md @@ -1,12 +1,12 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:10 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:20 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] -Format: 20-min talk followed by live Q&A () -Status: Waiting for video from speaker +Format: 16:35 followed by live Q&A () +Status: Processing uploaded video
Times in different timezones:
Sunday, Dec 4 2022, ~3:20 PM - 3:40 PM EST (US/Eastern)
Sunday, Dec 4 2022, ~3:20 PM - 3:40 PM EST (US/Eastern)
diff --git a/2022/info/indieweb-nav.md b/2022/info/indieweb-nav.md index e0c4ccf9..41eeb73b 100644 --- a/2022/info/indieweb-nav.md +++ b/2022/info/indieweb-nav.md @@ -2,6 +2,6 @@
Back to the [[talks]] Previous by time: The Wheels on D-Bus -Next by time: Fanfare for the Common Emacs User +Next by time: Pre-localizing Emacs Track: General
diff --git a/2022/info/journalism-before.md b/2022/info/journalism-before.md index c1784aa4..007b13e9 100644 --- a/2022/info/journalism-before.md +++ b/2022/info/journalism-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:10 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:00 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/jupyter-before.md b/2022/info/jupyter-before.md index e0c7584d..9ebf99fd 100644 --- a/2022/info/jupyter-before.md +++ b/2022/info/jupyter-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:10 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:00 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/justl-before.md b/2022/info/justl-before.md index 9c76d0bd..91a59b6b 100644 --- a/2022/info/justl-before.md +++ b/2022/info/justl-before.md @@ -1,12 +1,12 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:10 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:20 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] Format: 10:03 followed by IRC Q&A (#emacsconf-dev) -Status: Waiting for a caption volunteer +Status: Talk captioned
Times in different timezones:
Sunday, Dec 4 2022, ~10:45 AM - 10:55 AM EST (US/Eastern)
Sunday, Dec 4 2022, ~10:45 AM - 10:55 AM EST (US/Eastern)
diff --git a/2022/info/localizing-before.md b/2022/info/localizing-before.md index 768a3d9c..57653482 100644 --- a/2022/info/localizing-before.md +++ b/2022/info/localizing-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:10 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:20 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/localizing-nav.md b/2022/info/localizing-nav.md index d2b15485..71acf4b9 100644 --- a/2022/info/localizing-nav.md +++ b/2022/info/localizing-nav.md @@ -1,7 +1,7 @@
Back to the [[talks]] -Previous by time: Fanfare for the Common Emacs User -Next by time: Sunday closing remarks +Previous by time: Putting Org Mode on the Indieweb +Next by time: Emacs development updates Track: Development
diff --git a/2022/info/lspbridge-before.md b/2022/info/lspbridge-before.md index 79fedb2c..de7878b0 100644 --- a/2022/info/lspbridge-before.md +++ b/2022/info/lspbridge-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:10 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:00 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/mail-before.md b/2022/info/mail-before.md index 34f1acd8..c28e16b3 100644 --- a/2022/info/mail-before.md +++ b/2022/info/mail-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:10 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:00 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/maint-before.md b/2022/info/maint-before.md index 3e26cc06..d8932a0f 100644 --- a/2022/info/maint-before.md +++ b/2022/info/maint-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:10 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:00 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/meetups-before.md b/2022/info/meetups-before.md index 48339fb1..f066c521 100644 --- a/2022/info/meetups-before.md +++ b/2022/info/meetups-before.md @@ -1,12 +1,12 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:10 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:00 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] Format: 19:35 followed by live Q&A () -Status: Processing uploaded video +Status: Talk captioned
Times in different timezones:
Saturday, Dec 3 2022, ~1:05 PM - 1:25 PM EST (US/Eastern)
Saturday, Dec 3 2022, ~1:05 PM - 1:25 PM EST (US/Eastern)
diff --git a/2022/info/orgsuperlinks-before.md b/2022/info/orgsuperlinks-before.md index 3c4a5562..17f6bdcc 100644 --- a/2022/info/orgsuperlinks-before.md +++ b/2022/info/orgsuperlinks-before.md @@ -1,12 +1,12 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:10 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:20 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] -Format: 10-min talk followed by live Q&A () -Status: Waiting for video from speaker +Format: 8:56 followed by live Q&A () +Status: Talk captioned
Times in different timezones:
Sunday, Dec 4 2022, ~10:40 AM - 10:50 AM EST (US/Eastern)
Sunday, Dec 4 2022, ~10:40 AM - 10:50 AM EST (US/Eastern)
diff --git a/2022/info/orgvm-before.md b/2022/info/orgvm-before.md index f6b64b5a..e5f23d0d 100644 --- a/2022/info/orgvm-before.md +++ b/2022/info/orgvm-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:10 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:00 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/orgyear-before.md b/2022/info/orgyear-before.md index cfcf15fb..f17b497c 100644 --- a/2022/info/orgyear-before.md +++ b/2022/info/orgyear-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:10 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:20 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/python-before.md b/2022/info/python-before.md index a22fdd27..344015fc 100644 --- a/2022/info/python-before.md +++ b/2022/info/python-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:10 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:00 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/rde-before.md b/2022/info/rde-before.md index bafc6c8a..fc70f785 100644 --- a/2022/info/rde-before.md +++ b/2022/info/rde-before.md @@ -1,13 +1,13 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:10 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:20 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] -Format: 20-min talk followed by live Q&A () -Status: Waiting for video from speaker -
Times in different timezones:
Sunday, Dec 4 2022, ~10:00 AM - 10:20 AM EST (US/Eastern)
Sunday, Dec 4 2022, ~10:00 AM - 10:20 AM EST (US/Eastern)
+Format: 23:34 followed by live Q&A () +Status: Talk captioned +
Times in different timezones:
Sunday, Dec 4 2022, ~10:00 AM - 10:25 AM EST (US/Eastern)
Sunday, Dec 4 2022, ~10:00 AM - 10:25 AM EST (US/Eastern)
# Description diff --git a/2022/info/realestate-before.md b/2022/info/realestate-before.md index 86358ce1..096f4fab 100644 --- a/2022/info/realestate-before.md +++ b/2022/info/realestate-before.md @@ -1,13 +1,13 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:10 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:00 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] Format: 24:25 followed by pad Q&A (#emacsconf-gen) Status: Processing uploaded video -
Times in different timezones:
Saturday, Dec 3 2022, ~2:50 PM - 3:10 PM EST (US/Eastern)
Saturday, Dec 3 2022, ~2:50 PM - 3:10 PM EST (US/Eastern)
+
Times in different timezones:
Saturday, Dec 3 2022, ~2:50 PM - 3:15 PM EST (US/Eastern)
Saturday, Dec 3 2022, ~2:50 PM - 3:15 PM EST (US/Eastern)
# Description diff --git a/2022/info/rolodex-before.md b/2022/info/rolodex-before.md index df10a2ae..d85d2ba5 100644 --- a/2022/info/rolodex-before.md +++ b/2022/info/rolodex-before.md @@ -1,12 +1,12 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:10 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:20 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] -Format: 20-min talk followed by IRC Q&A (#emacsconf-gen) -Status: Waiting for video from speaker +Format: 21:44 followed by IRC Q&A (#emacsconf-gen) +Status: Talk captioned
Times in different timezones:
Sunday, Dec 4 2022, ~10:00 AM - 10:20 AM EST (US/Eastern)
Sunday, Dec 4 2022, ~10:00 AM - 10:20 AM EST (US/Eastern)
diff --git a/2022/info/sat-close-before.md b/2022/info/sat-close-before.md index e727872b..9c22b402 100644 --- a/2022/info/sat-close-before.md +++ b/2022/info/sat-close-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:10 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:00 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/sat-open-before.md b/2022/info/sat-open-before.md index 6c342c86..2f3ca582 100644 --- a/2022/info/sat-open-before.md +++ b/2022/info/sat-open-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:10 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:00 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/school-before.md b/2022/info/school-before.md index ff36e829..02783958 100644 --- a/2022/info/school-before.md +++ b/2022/info/school-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:10 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:00 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/science-before.md b/2022/info/science-before.md index 3ee954c3..830e782d 100644 --- a/2022/info/science-before.md +++ b/2022/info/science-before.md @@ -1,12 +1,12 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:10 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:00 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] Format: 16:45 followed by live Q&A () -Status: Waiting for a caption volunteer +Status: Processing uploaded video
Times in different timezones:
Saturday, Dec 3 2022, ~10:55 AM - 11:15 AM EST (US/Eastern)
Saturday, Dec 3 2022, ~10:55 AM - 11:15 AM EST (US/Eastern)
diff --git a/2022/info/sqlite-before.md b/2022/info/sqlite-before.md index d089a749..c25900f5 100644 --- a/2022/info/sqlite-before.md +++ b/2022/info/sqlite-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:10 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:00 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/sun-close-before.md b/2022/info/sun-close-before.md index 0fed9ff2..c2e17455 100644 --- a/2022/info/sun-close-before.md +++ b/2022/info/sun-close-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:10 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:20 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/sun-close-nav.md b/2022/info/sun-close-nav.md index ecfb27d8..741c220b 100644 --- a/2022/info/sun-close-nav.md +++ b/2022/info/sun-close-nav.md @@ -1,6 +1,6 @@
Back to the [[talks]] -Previous by time: Pre-localizing Emacs +Previous by time: Fanfare for the Common Emacs User Track: General
diff --git a/2022/info/sun-open-before.md b/2022/info/sun-open-before.md index efdedf1d..bed72306 100644 --- a/2022/info/sun-open-before.md +++ b/2022/info/sun-open-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:10 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:20 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/survey-before.md b/2022/info/survey-before.md index 3e43d78e..a1c956d4 100644 --- a/2022/info/survey-before.md +++ b/2022/info/survey-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:10 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:20 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/tramp-before.md b/2022/info/tramp-before.md index b7e930c0..93adbd87 100644 --- a/2022/info/tramp-before.md +++ b/2022/info/tramp-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:10 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:20 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/treesitter-before.md b/2022/info/treesitter-before.md index 9888eee6..c5a21216 100644 --- a/2022/info/treesitter-before.md +++ b/2022/info/treesitter-before.md @@ -1,12 +1,12 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:10 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:00 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] -Format: 10-min talk followed by IRC Q&A (#emacsconf-dev) -Status: Waiting for video from speaker +Format: 11:04 followed by IRC Q&A (#emacsconf-dev) +Status: PROCESSING
Times in different timezones:
Saturday, Dec 3 2022, ~10:00 AM - 10:10 AM EST (US/Eastern)
Saturday, Dec 3 2022, ~10:00 AM - 10:10 AM EST (US/Eastern)
diff --git a/2022/info/wayland-before.md b/2022/info/wayland-before.md index cf3af592..9cdf0ed3 100644 --- a/2022/info/wayland-before.md +++ b/2022/info/wayland-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:10 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:00 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/workflows-before.md b/2022/info/workflows-before.md index dfce6d90..64e15cf6 100644 --- a/2022/info/workflows-before.md +++ b/2022/info/workflows-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:10 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:20 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/organizers-notebook/schedule.svg b/2022/organizers-notebook/schedule.svg index 65acea80..8671afd3 100644 --- a/2022/organizers-notebook/schedule.svg +++ b/2022/organizers-notebook/schedule.svg @@ -1 +1 @@ - Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:10 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 \ No newline at end of file + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 \ No newline at end of file diff --git a/2022/schedule-2022-12-03.md b/2022/schedule-2022-12-03.md index 21159456..0e83f36d 100644 --- a/2022/schedule-2022-12-03.md +++ b/2022/schedule-2022-12-03.md @@ -1 +1 @@ -
Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:00 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
\ No newline at end of file +
Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
\ No newline at end of file diff --git a/2022/schedule-2022-12-04.md b/2022/schedule-2022-12-04.md index dcf03db0..31f0be1a 100644 --- a/2022/schedule-2022-12-04.md +++ b/2022/schedule-2022-12-04.md @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/2022/schedule-details.md b/2022/schedule-details.md index 35e4cf20..914e5289 100644 --- a/2022/schedule-details.md +++ b/2022/schedule-details.md @@ -9,7 +9,7 @@ Jump to: Sat Dec 3 - S [[!template id=sched title="Tree-sitter beyond syntax highlighting" url="/2022/talks/treesitter" speakers="Abin Simon" q-and-a="IRC" track="Development" slug="treesitter" time="10" startutc="2022-12-03T15:00:00+0000" endutc="2022-12-03T15:10:00+0000" start="10:00" end="10:10"]] [[!template id=sched title="How to incorporate handwritten notes into Emacs Orgmode" url="/2022/talks/handwritten" speakers="Bala Ramadurai" q-and-a="live" track="General" slug="handwritten" time="10" startutc="2022-12-03T15:15:00+0000" endutc="2022-12-03T15:25:00+0000" start="10:15" end="10:25"]] [[!template id=sched title="lsp-bridge: complete asynchronous LSP client" url="/2022/talks/lspbridge" speakers="Andy Stewart, Matthew Zeng" q-and-a="IRC" track="Development" slug="lspbridge" time="20" startutc="2022-12-03T15:20:00+0000" endutc="2022-12-03T15:40:00+0000" start="10:20" end="10:40"]] -[[!template id=sched title="asm-blox: a game based on WebAssembly that no one asked for" url="/2022/talks/asmblox" speakers="Zachary Romero" q-and-a="live" track="Development" slug="asmblox" time="17" startutc="2022-12-03T15:50:00+0000" endutc="2022-12-03T16:00:00+0000" start="10:50" end="11:00"]] +[[!template id=sched title="asm-blox: a game based on WebAssembly that no one asked for" url="/2022/talks/asmblox" speakers="Zachary Romero" q-and-a="live" track="Development" slug="asmblox" time="17" startutc="2022-12-03T15:50:00+0000" endutc="2022-12-03T16:07:00+0000" start="10:50" end="11:07"]] [[!template id=sched title="Writing and organizing literature notes for scientific writing" url="/2022/talks/science" speakers="Vidianos Giannitsis" q-and-a="live" track="General" slug="science" time="20" startutc="2022-12-03T15:55:00+0000" endutc="2022-12-03T16:15:00+0000" start="10:55" end="11:15"]] [[!template id=sched title="Emacs should become a Wayland compositor" url="/2022/talks/wayland" speakers="Michael Bauer" q-and-a="live" track="Development" slug="wayland" time="10" startutc="2022-12-03T16:25:00+0000" endutc="2022-12-03T16:35:00+0000" start="11:25" end="11:35"]] [[!template id=sched title="The Emacs Buddy initiative" url="/2022/talks/buddy" speakers="Andrea" q-and-a="IRC" track="General" slug="buddy" time="10" startutc="2022-12-03T16:35:00+0000" endutc="2022-12-03T16:45:00+0000" start="11:35" end="11:45"]] @@ -50,7 +50,8 @@ Jump to: Sat Dec 3 - S [[!template id=sched title="GRAIL---A Generalized Representation and Aggregation of Information Layers" url="/2022/talks/grail" speakers="Sameer Pradhan" q-and-a="live" track="General" slug="grail" time="20" startutc="2022-12-04T19:30:00+0000" endutc="2022-12-04T19:50:00+0000" start="2:30" end="2:50"]] [[!template id=sched title="The Wheels on D-Bus" url="/2022/talks/dbus" speakers="Ian Eure" q-and-a="live" track="Development" slug="dbus" time="20" startutc="2022-12-04T20:05:00+0000" endutc="2022-12-04T20:25:00+0000" start="3:05" end="3:25"]] [[!template id=sched title="Putting Org Mode on the Indieweb" url="/2022/talks/indieweb" speakers="Michael Herstine" q-and-a="live" track="General" slug="indieweb" time="20" startutc="2022-12-04T20:20:00+0000" endutc="2022-12-04T20:40:00+0000" start="3:20" end="3:40"]] -[[!template id=sched title="Fanfare for the Common Emacs User" url="/2022/talks/fanfare" speakers="John Cummings" q-and-a="live" track="General" slug="fanfare" time="10" startutc="2022-12-04T21:00:00+0000" endutc="2022-12-04T21:10:00+0000" start="4:00" end="4:10"]] [[!template id=sched title="Pre-localizing Emacs" url="/2022/talks/localizing" speakers="Jean-Christophe Helary" q-and-a="live" track="Development" slug="localizing" time="20" startutc="2022-12-04T21:00:00+0000" endutc="2022-12-04T21:20:00+0000" start="4:00" end="4:20"]] +[[!template id=sched title="Emacs development updates" url="/2022/talks/devel" speakers="John Wiegley" q-and-a="live" track="General" slug="devel" time="5" startutc="2022-12-04T21:00:00+0000" endutc="2022-12-04T21:05:00+0000" start="4:00" end="4:05"]] +[[!template id=sched title="Fanfare for the Common Emacs User" url="/2022/talks/fanfare" speakers="John Cummings" q-and-a="live" track="General" slug="fanfare" time="10" startutc="2022-12-04T21:25:00+0000" endutc="2022-12-04T21:35:00+0000" start="4:25" end="4:35"]] [[!template id=sched title="Sunday closing remarks" url="/2022/talks/sun-close" track="General" slug="sun-close" time="10" startutc="2022-12-04T22:00:00+0000" endutc="2022-12-04T22:10:00+0000" start="5:00" end="5:10"]]
Cancelled:
  • Emacs News highlights - Sacha Chua
\ No newline at end of file diff --git a/2022/schedule-image.md b/2022/schedule-image.md index 6d37fa35..0d9fbd64 100644 --- a/2022/schedule-image.md +++ b/2022/schedule-image.md @@ -1 +1 @@ -
Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:00 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:10 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
\ No newline at end of file +
Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
\ No newline at end of file diff --git a/2022/talks/devel.md b/2022/talks/devel.md new file mode 100644 index 00000000..f852e953 --- /dev/null +++ b/2022/talks/devel.md @@ -0,0 +1,22 @@ +[[!meta title="Emacs development updates"]] +[[!meta copyright="Copyright © 2022 John Wiegley"]] +[[!inline pages="internal(2022/info/devel-nav)" raw="yes"]] + + + + + +# Emacs development updates +John Wiegley + +[[!inline pages="internal(2022/info/devel-before)" raw="yes"]] + +What has been happening and what is soon to come in Emacs development + + + +[[!inline pages="internal(2022/info/devel-after)" raw="yes"]] + +[[!inline pages="internal(2022/info/devel-nav)" raw="yes"]] + + diff --git a/2022/watch/dev.md b/2022/watch/dev.md index eb2cae6c..d8058b1f 100644 --- a/2022/watch/dev.md +++ b/2022/watch/dev.md @@ -16,7 +16,7 @@

Watch - Pad and Q&A links - Chat - Schedule | Tracks: General - Development
-
Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:00 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:10 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
+
Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5

Saturday, Dec 3, 2022

10:00 - 10:10 Development Q&A: IRC; id:treesitter
@@ -32,8 +32,8 @@
-
-
10:50 - 11:00 Development Q&A: live; id:asmblox
+
+
10:50 - 11:07 Development Q&A: live; id:asmblox
Zachary Romero
diff --git a/2022/watch/gen.md b/2022/watch/gen.md index a749e4fa..ef863281 100644 --- a/2022/watch/gen.md +++ b/2022/watch/gen.md @@ -9,14 +9,14 @@
Alternatively, load https://live0.emacsconf.org/emacsconf/gen.webm or https://live0.emacsconf.org/emacsconf/gen-480p.webm (low-res) in a streaming media player such as MPV.
-
Watch - Pad and Q&A links - Chat - Schedule | Tracks: General - Development
+
Watch - Pad and Q&A links - Chat - Schedule | Tracks: General - Development

Watch - Pad and Q&A links - Chat - Schedule | Tracks: General - Development
Chat: #emacsconf-gen on libera.chat

Watch - Pad and Q&A links - Chat - Schedule | Tracks: General - Development
-
Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:00 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:10 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
+
Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5

Saturday, Dec 3, 2022

9:00 - 9:05 General id:sat-open
@@ -180,8 +180,15 @@
-
-
4:00 - 4:10 General Q&A: live; id:fanfare
+
+
4:00 - 4:05 General Q&A: live; id:devel
+ +
John Wiegley
+ +
+ +
+
4:25 - 4:35 General Q&A: live; id:fanfare
John Cummings
diff --git a/2022/watch/info.md b/2022/watch/info.md index 9dd88b0b..9a4ca3a8 100644 --- a/2022/watch/info.md +++ b/2022/watch/info.md @@ -4,4 +4,4 @@
General#emacsconf-genhttps://live0.emacsconf.org/emacsconf/gen.webmgen-480p.webm
Development#emacsconf-devhttps://live0.emacsconf.org/emacsconf/dev.webmdev-480p.webm
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:00 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:10 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 \ No newline at end of file + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 \ No newline at end of file -- cgit v1.2.3 From e3864282d8fcaf289bca4800a6aac39eb13097e9 Mon Sep 17 00:00:00 2001 From: Sacha Chua Date: Sat, 5 Nov 2022 21:42:46 -0400 Subject: Update notebook --- 2022/organizers-notebook/index.org | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to '2022') diff --git a/2022/organizers-notebook/index.org b/2022/organizers-notebook/index.org index 58862ec5..56e0bfd8 100644 --- a/2022/organizers-notebook/index.org +++ b/2022/organizers-notebook/index.org @@ -3441,8 +3441,8 @@ talk page when your talk goes live. If you happen to have a script or a transcript, please include them as well (it’ll speed up the captioning for us). -Please start your filenames with the ID for the talk that it's for: -${slugs}. +Please add a comment or start your filenames with the ID for the talk +that it's for: ${slugs}. If you're still working on your talk, you might find the tips at https://emacsconf.org/2022/prepare useful. In brief: @@ -3451,8 +3451,10 @@ https://emacsconf.org/2022/prepare useful. In brief: - we recommend dark text on a light background, with enough contrast to make it easy to read - if possible, use a headset or external microphone to record audio -- leave 5 seconds of quiet at the end of the video to facilitate noise - reduction for us + in order to minimize computer noise +- upload a separate 5 second recording of quiet or leave 5 seconds + of quiet at the end of your talk video so that we can process your + video for noise reduction Please plan to upload your talk by November 4 (next Friday) so that we can get started preparing it for streaming. If you can't make it by -- cgit v1.2.3 From f0d31a758382a558663a0e32101e9e493d0deadd Mon Sep 17 00:00:00 2001 From: Sacha Chua Date: Sun, 6 Nov 2022 07:13:05 -0500 Subject: Reduce time for community talk --- 2022/info/asmblox-before.md | 2 +- 2022/info/async-before.md | 2 +- 2022/info/buddy-before.md | 2 +- 2022/info/buttons-before.md | 2 +- 2022/info/community-before.md | 6 +++--- 2022/info/dbus-before.md | 2 +- 2022/info/detached-before.md | 2 +- 2022/info/devel-before.md | 2 +- 2022/info/eev-before.md | 2 +- 2022/info/eshell-before.md | 2 +- 2022/info/fanfare-before.md | 2 +- 2022/info/grail-before.md | 2 +- 2022/info/handwritten-before.md | 2 +- 2022/info/haskell-before.md | 2 +- 2022/info/health-before.md | 4 ++-- 2022/info/hyperorg-before.md | 2 +- 2022/info/indieweb-before.md | 2 +- 2022/info/journalism-before.md | 2 +- 2022/info/jupyter-before.md | 4 ++-- 2022/info/justl-before.md | 2 +- 2022/info/localizing-before.md | 2 +- 2022/info/lspbridge-before.md | 2 +- 2022/info/mail-before.md | 2 +- 2022/info/maint-before.md | 2 +- 2022/info/meetups-before.md | 2 +- 2022/info/orgsuperlinks-before.md | 2 +- 2022/info/orgvm-before.md | 4 ++-- 2022/info/orgyear-before.md | 2 +- 2022/info/python-before.md | 2 +- 2022/info/rde-before.md | 2 +- 2022/info/realestate-before.md | 4 ++-- 2022/info/rolodex-before.md | 2 +- 2022/info/sat-close-before.md | 4 ++-- 2022/info/sat-open-before.md | 2 +- 2022/info/school-before.md | 2 +- 2022/info/science-before.md | 2 +- 2022/info/sqlite-before.md | 2 +- 2022/info/sun-close-before.md | 4 ++-- 2022/info/sun-open-before.md | 2 +- 2022/info/survey-before.md | 2 +- 2022/info/tramp-before.md | 2 +- 2022/info/treesitter-before.md | 2 +- 2022/info/wayland-before.md | 2 +- 2022/info/workflows-before.md | 2 +- 2022/organizers-notebook/index.org | 9 ++++++++- 2022/organizers-notebook/schedule.svg | 2 +- 46 files changed, 61 insertions(+), 54 deletions(-) (limited to '2022') diff --git a/2022/info/asmblox-before.md b/2022/info/asmblox-before.md index a01e5f6e..02f89f93 100644 --- a/2022/info/asmblox-before.md +++ b/2022/info/asmblox-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/async-before.md b/2022/info/async-before.md index 23f5a333..a96203a7 100644 --- a/2022/info/async-before.md +++ b/2022/info/async-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 4:50- 5:00 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/buddy-before.md b/2022/info/buddy-before.md index e5d259f4..f9da13b0 100644 --- a/2022/info/buddy-before.md +++ b/2022/info/buddy-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/buttons-before.md b/2022/info/buttons-before.md index 5eb744b4..6e6beea4 100644 --- a/2022/info/buttons-before.md +++ b/2022/info/buttons-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 4:50- 5:00 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/community-before.md b/2022/info/community-before.md index 9c47e981..c5c8b23b 100644 --- a/2022/info/community-before.md +++ b/2022/info/community-before.md @@ -1,13 +1,13 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] -Format: 30-min talk followed by live Q&A () +Format: 10-min talk followed by live Q&A () Status: Waiting for video from speaker -
Times in different timezones:
Saturday, Dec 3 2022, ~1:50 PM - 2:20 PM EST (US/Eastern)
Saturday, Dec 3 2022, ~1:50 PM - 2:20 PM EST (US/Eastern)
+
Times in different timezones:
Saturday, Dec 3 2022, ~1:45 PM - 1:55 PM EST (US/Eastern)
Saturday, Dec 3 2022, ~1:45 PM - 1:55 PM EST (US/Eastern)
# Description diff --git a/2022/info/dbus-before.md b/2022/info/dbus-before.md index ff763f56..ffcf797d 100644 --- a/2022/info/dbus-before.md +++ b/2022/info/dbus-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 4:50- 5:00 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/detached-before.md b/2022/info/detached-before.md index b12b0002..e136c5d1 100644 --- a/2022/info/detached-before.md +++ b/2022/info/detached-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 4:50- 5:00 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/devel-before.md b/2022/info/devel-before.md index d6521643..08328acc 100644 --- a/2022/info/devel-before.md +++ b/2022/info/devel-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 4:50- 5:00 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/eev-before.md b/2022/info/eev-before.md index 85a67218..02a7c2ef 100644 --- a/2022/info/eev-before.md +++ b/2022/info/eev-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/eshell-before.md b/2022/info/eshell-before.md index 99df52f8..da8e3201 100644 --- a/2022/info/eshell-before.md +++ b/2022/info/eshell-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 4:50- 5:00 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/fanfare-before.md b/2022/info/fanfare-before.md index b1cb3cf8..6192f772 100644 --- a/2022/info/fanfare-before.md +++ b/2022/info/fanfare-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 4:50- 5:00 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/grail-before.md b/2022/info/grail-before.md index 161546eb..0f8db912 100644 --- a/2022/info/grail-before.md +++ b/2022/info/grail-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 4:50- 5:00 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/handwritten-before.md b/2022/info/handwritten-before.md index 591ba9fa..c4922611 100644 --- a/2022/info/handwritten-before.md +++ b/2022/info/handwritten-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/haskell-before.md b/2022/info/haskell-before.md index 39d9d386..2f8d7ea9 100644 --- a/2022/info/haskell-before.md +++ b/2022/info/haskell-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/health-before.md b/2022/info/health-before.md index 950e23e1..e715199e 100644 --- a/2022/info/health-before.md +++ b/2022/info/health-before.md @@ -1,13 +1,13 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] Format: 20-min talk followed by live Q&A () Status: Waiting for video from speaker -
Times in different timezones:
Saturday, Dec 3 2022, ~3:20 PM - 3:40 PM EST (US/Eastern)
Saturday, Dec 3 2022, ~3:20 PM - 3:40 PM EST (US/Eastern)
+
Times in different timezones:
Saturday, Dec 3 2022, ~3:00 PM - 3:20 PM EST (US/Eastern)
Saturday, Dec 3 2022, ~3:00 PM - 3:20 PM EST (US/Eastern)
# Description diff --git a/2022/info/hyperorg-before.md b/2022/info/hyperorg-before.md index 20a5219c..7aac38d2 100644 --- a/2022/info/hyperorg-before.md +++ b/2022/info/hyperorg-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 4:50- 5:00 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/indieweb-before.md b/2022/info/indieweb-before.md index 174773c5..7a8ea2c5 100644 --- a/2022/info/indieweb-before.md +++ b/2022/info/indieweb-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 4:50- 5:00 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/journalism-before.md b/2022/info/journalism-before.md index 007b13e9..6aa95940 100644 --- a/2022/info/journalism-before.md +++ b/2022/info/journalism-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/jupyter-before.md b/2022/info/jupyter-before.md index 9ebf99fd..9f04b3d6 100644 --- a/2022/info/jupyter-before.md +++ b/2022/info/jupyter-before.md @@ -1,13 +1,13 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] Format: 10-min talk followed by live Q&A () Status: Waiting for video from speaker -
Times in different timezones:
Saturday, Dec 3 2022, ~4:00 PM - 4:10 PM EST (US/Eastern)
Saturday, Dec 3 2022, ~4:00 PM - 4:10 PM EST (US/Eastern)
+
Times in different timezones:
Saturday, Dec 3 2022, ~3:40 PM - 3:50 PM EST (US/Eastern)
Saturday, Dec 3 2022, ~3:40 PM - 3:50 PM EST (US/Eastern)
# Description diff --git a/2022/info/justl-before.md b/2022/info/justl-before.md index 91a59b6b..e432b340 100644 --- a/2022/info/justl-before.md +++ b/2022/info/justl-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 4:50- 5:00 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/localizing-before.md b/2022/info/localizing-before.md index 57653482..66229e8b 100644 --- a/2022/info/localizing-before.md +++ b/2022/info/localizing-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 4:50- 5:00 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/lspbridge-before.md b/2022/info/lspbridge-before.md index de7878b0..158e19f6 100644 --- a/2022/info/lspbridge-before.md +++ b/2022/info/lspbridge-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/mail-before.md b/2022/info/mail-before.md index c28e16b3..4ab8ab68 100644 --- a/2022/info/mail-before.md +++ b/2022/info/mail-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/maint-before.md b/2022/info/maint-before.md index d8932a0f..8dec0b90 100644 --- a/2022/info/maint-before.md +++ b/2022/info/maint-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/meetups-before.md b/2022/info/meetups-before.md index f066c521..e9f427cd 100644 --- a/2022/info/meetups-before.md +++ b/2022/info/meetups-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/orgsuperlinks-before.md b/2022/info/orgsuperlinks-before.md index 17f6bdcc..b304ccdc 100644 --- a/2022/info/orgsuperlinks-before.md +++ b/2022/info/orgsuperlinks-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 4:50- 5:00 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/orgvm-before.md b/2022/info/orgvm-before.md index e5f23d0d..eabae21b 100644 --- a/2022/info/orgvm-before.md +++ b/2022/info/orgvm-before.md @@ -1,13 +1,13 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] Format: 10-min talk followed by live Q&A () Status: Waiting for video from speaker -
Times in different timezones:
Saturday, Dec 3 2022, ~4:30 PM - 4:40 PM EST (US/Eastern)
Saturday, Dec 3 2022, ~4:30 PM - 4:40 PM EST (US/Eastern)
+
Times in different timezones:
Saturday, Dec 3 2022, ~4:10 PM - 4:20 PM EST (US/Eastern)
Saturday, Dec 3 2022, ~4:10 PM - 4:20 PM EST (US/Eastern)
# Description diff --git a/2022/info/orgyear-before.md b/2022/info/orgyear-before.md index f17b497c..553cca3a 100644 --- a/2022/info/orgyear-before.md +++ b/2022/info/orgyear-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 4:50- 5:00 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/python-before.md b/2022/info/python-before.md index 344015fc..2bbb320c 100644 --- a/2022/info/python-before.md +++ b/2022/info/python-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/rde-before.md b/2022/info/rde-before.md index fc70f785..1604e195 100644 --- a/2022/info/rde-before.md +++ b/2022/info/rde-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 4:50- 5:00 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/realestate-before.md b/2022/info/realestate-before.md index 096f4fab..0f0cca01 100644 --- a/2022/info/realestate-before.md +++ b/2022/info/realestate-before.md @@ -1,13 +1,13 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] Format: 24:25 followed by pad Q&A (#emacsconf-gen) Status: Processing uploaded video -
Times in different timezones:
Saturday, Dec 3 2022, ~2:50 PM - 3:15 PM EST (US/Eastern)
Saturday, Dec 3 2022, ~2:50 PM - 3:15 PM EST (US/Eastern)
+
Times in different timezones:
Saturday, Dec 3 2022, ~2:25 PM - 2:50 PM EST (US/Eastern)
Saturday, Dec 3 2022, ~2:25 PM - 2:50 PM EST (US/Eastern)
# Description diff --git a/2022/info/rolodex-before.md b/2022/info/rolodex-before.md index d85d2ba5..b6fa06d0 100644 --- a/2022/info/rolodex-before.md +++ b/2022/info/rolodex-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 4:50- 5:00 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/sat-close-before.md b/2022/info/sat-close-before.md index 9c22b402..eb632fc7 100644 --- a/2022/info/sat-close-before.md +++ b/2022/info/sat-close-before.md @@ -1,13 +1,13 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] Format: 5-min talk Status: TODO -
Times in different timezones:
Saturday, Dec 3 2022, ~5:00 PM - 5:05 PM EST (US/Eastern)
Saturday, Dec 3 2022, ~5:00 PM - 5:05 PM EST (US/Eastern)
+
Times in different timezones:
Saturday, Dec 3 2022, ~4:50 PM - 4:55 PM EST (US/Eastern)
Saturday, Dec 3 2022, ~4:50 PM - 4:55 PM EST (US/Eastern)
# Description diff --git a/2022/info/sat-open-before.md b/2022/info/sat-open-before.md index 2f3ca582..beb83aaa 100644 --- a/2022/info/sat-open-before.md +++ b/2022/info/sat-open-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/school-before.md b/2022/info/school-before.md index 02783958..0798e914 100644 --- a/2022/info/school-before.md +++ b/2022/info/school-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/science-before.md b/2022/info/science-before.md index 830e782d..6c58c2b5 100644 --- a/2022/info/science-before.md +++ b/2022/info/science-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/sqlite-before.md b/2022/info/sqlite-before.md index c25900f5..297b8b2d 100644 --- a/2022/info/sqlite-before.md +++ b/2022/info/sqlite-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/sun-close-before.md b/2022/info/sun-close-before.md index c2e17455..157d61ce 100644 --- a/2022/info/sun-close-before.md +++ b/2022/info/sun-close-before.md @@ -1,13 +1,13 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 4:50- 5:00 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] Format: 10-min talk Status: TODO -
Times in different timezones:
Sunday, Dec 4 2022, ~5:00 PM - 5:10 PM EST (US/Eastern)
Sunday, Dec 4 2022, ~5:00 PM - 5:10 PM EST (US/Eastern)
+
Times in different timezones:
Sunday, Dec 4 2022, ~4:50 PM - 5:00 PM EST (US/Eastern)
Sunday, Dec 4 2022, ~4:50 PM - 5:00 PM EST (US/Eastern)
# Description diff --git a/2022/info/sun-open-before.md b/2022/info/sun-open-before.md index bed72306..c65b0d95 100644 --- a/2022/info/sun-open-before.md +++ b/2022/info/sun-open-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 4:50- 5:00 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/survey-before.md b/2022/info/survey-before.md index a1c956d4..382ed14c 100644 --- a/2022/info/survey-before.md +++ b/2022/info/survey-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 4:50- 5:00 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/tramp-before.md b/2022/info/tramp-before.md index 93adbd87..bb78e649 100644 --- a/2022/info/tramp-before.md +++ b/2022/info/tramp-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 4:50- 5:00 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/treesitter-before.md b/2022/info/treesitter-before.md index c5a21216..fe61cae2 100644 --- a/2022/info/treesitter-before.md +++ b/2022/info/treesitter-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/wayland-before.md b/2022/info/wayland-before.md index 9cdf0ed3..08692de9 100644 --- a/2022/info/wayland-before.md +++ b/2022/info/wayland-before.md @@ -1,7 +1,7 @@
- Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/info/workflows-before.md b/2022/info/workflows-before.md index 64e15cf6..a8064b4e 100644 --- a/2022/info/workflows-before.md +++ b/2022/info/workflows-before.md @@ -1,7 +1,7 @@
- Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 + Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 4:50- 5:00 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
[[!toc ]] diff --git a/2022/organizers-notebook/index.org b/2022/organizers-notebook/index.org index 56e0bfd8..62b386c4 100644 --- a/2022/organizers-notebook/index.org +++ b/2022/organizers-notebook/index.org @@ -2745,7 +2745,14 @@ mpv --vf=negate $url - Test it using the blocks near the beginning of conf.org - emacsconf-publish-update-schedule - E-mail affected speakers - see emacsconf-mail-schedule-update function - +*** New talk +- Create entry in conf.org +- Fit it into the schedule using the emacsconf-schedule-plan variable +- When happy, execute the draft-schedule block to update the SCHEDULED properties +- emacsconf-generate-talk-page +- emacsconf-update-schedule +- emacsconf +- emacsconf-stream-generate-assets-for-talk * Task archive :PROPERTIES: :CUSTOM_ID: archive diff --git a/2022/organizers-notebook/schedule.svg b/2022/organizers-notebook/schedule.svg index 8671afd3..a2b2b518 100644 --- a/2022/organizers-notebook/schedule.svg +++ b/2022/organizers-notebook/schedule.svg @@ -1 +1 @@ - Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 \ No newline at end of file + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 4:50- 5:00 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 \ No newline at end of file -- cgit v1.2.3 From 58d66a07f242fbfd30982a0a329dccbca18a9cca Mon Sep 17 00:00:00 2001 From: Sacha Chua Date: Sun, 6 Nov 2022 07:15:17 -0500 Subject: Update nav --- 2022/info/community-nav.md | 4 ++-- 2022/info/eev-nav.md | 2 +- 2022/info/haskell-nav.md | 2 +- 2022/info/jupyter-nav.md | 4 ++-- 2022/info/mail-nav.md | 4 ++-- 2022/info/meetups-nav.md | 2 +- 2022/info/python-nav.md | 4 ++-- 2022/info/realestate-nav.md | 2 +- 2022/schedule-2022-12-03.md | 2 +- 2022/schedule-2022-12-04.md | 2 +- 2022/schedule-details.md | 14 +++++++------- 2022/schedule-image.md | 2 +- 2022/watch/dev.md | 2 +- 2022/watch/gen.md | 30 +++++++++++++++--------------- 2022/watch/info.md | 2 +- 15 files changed, 39 insertions(+), 39 deletions(-) (limited to '2022') diff --git a/2022/info/community-nav.md b/2022/info/community-nav.md index 728566e9..42f7e41d 100644 --- a/2022/info/community-nav.md +++ b/2022/info/community-nav.md @@ -1,7 +1,7 @@ diff --git a/2022/info/eev-nav.md b/2022/info/eev-nav.md index 43596f6f..69a1f640 100644 --- a/2022/info/eev-nav.md +++ b/2022/info/eev-nav.md @@ -2,6 +2,6 @@ diff --git a/2022/info/haskell-nav.md b/2022/info/haskell-nav.md index a635fdd1..eaf325da 100644 --- a/2022/info/haskell-nav.md +++ b/2022/info/haskell-nav.md @@ -1,7 +1,7 @@
Back to the [[talks]] -Previous by time: Edit live Jupyter notebook cells with Emacs +Previous by time: Short hyperlinks to Python docs Next by time: orgvm: a simple HTTP server for org Track: Development
diff --git a/2022/info/jupyter-nav.md b/2022/info/jupyter-nav.md index 164e8868..38661518 100644 --- a/2022/info/jupyter-nav.md +++ b/2022/info/jupyter-nav.md @@ -1,7 +1,7 @@
Back to the [[talks]] -Previous by time: Short hyperlinks to Python docs -Next by time: Haskell code exploration with Emacs +Previous by time: Bidirectional links with eev +Next by time: Short hyperlinks to Python docs Track: General
diff --git a/2022/info/mail-nav.md b/2022/info/mail-nav.md index c4be51f0..51649888 100644 --- a/2022/info/mail-nav.md +++ b/2022/info/mail-nav.md @@ -1,7 +1,7 @@ diff --git a/2022/info/meetups-nav.md b/2022/info/meetups-nav.md index c1566b5d..d6a656cc 100644 --- a/2022/info/meetups-nav.md +++ b/2022/info/meetups-nav.md @@ -2,6 +2,6 @@ diff --git a/2022/info/python-nav.md b/2022/info/python-nav.md index d7f28448..3167fb46 100644 --- a/2022/info/python-nav.md +++ b/2022/info/python-nav.md @@ -1,7 +1,7 @@
Back to the [[talks]] -Previous by time: Bidirectional links with eev -Next by time: Edit live Jupyter notebook cells with Emacs +Previous by time: Edit live Jupyter notebook cells with Emacs +Next by time: Haskell code exploration with Emacs Track: Development
diff --git a/2022/info/realestate-nav.md b/2022/info/realestate-nav.md index 67d6aa48..8d6a3ea3 100644 --- a/2022/info/realestate-nav.md +++ b/2022/info/realestate-nav.md @@ -1,7 +1,7 @@ diff --git a/2022/schedule-2022-12-03.md b/2022/schedule-2022-12-03.md index 0e83f36d..97c51e1a 100644 --- a/2022/schedule-2022-12-03.md +++ b/2022/schedule-2022-12-03.md @@ -1 +1 @@ -
Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
\ No newline at end of file +
Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5
\ No newline at end of file diff --git a/2022/schedule-2022-12-04.md b/2022/schedule-2022-12-04.md index 31f0be1a..d2f08971 100644 --- a/2022/schedule-2022-12-04.md +++ b/2022/schedule-2022-12-04.md @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/2022/schedule-details.md b/2022/schedule-details.md index 914e5289..ca9f2066 100644 --- a/2022/schedule-details.md +++ b/2022/schedule-details.md @@ -15,17 +15,17 @@ Jump to: Sat Dec 3 - S [[!template id=sched title="The Emacs Buddy initiative" url="/2022/talks/buddy" speakers="Andrea" q-and-a="IRC" track="General" slug="buddy" time="10" startutc="2022-12-03T16:35:00+0000" endutc="2022-12-03T16:45:00+0000" start="11:35" end="11:45"]] [[!template id=sched title="Using SQLite as a data source: a framework and an example" url="/2022/talks/sqlite" speakers="Andrew Hyatt" q-and-a="live" track="Development" slug="sqlite" time="20" startutc="2022-12-03T18:00:00+0000" endutc="2022-12-03T18:20:00+0000" start="1:00" end="1:20"]] [[!template id=sched title="Attending and organizing Emacs meetups" url="/2022/talks/meetups" speakers="Bhavin Gandhi" q-and-a="live" track="General" slug="meetups" time="20" startutc="2022-12-03T18:05:00+0000" endutc="2022-12-03T18:25:00+0000" start="1:05" end="1:25"]] +[[!template id=sched title="The ship that builds itself: How we used Emacs to develop a workshop for communities" url="/2022/talks/community" speakers="Noorah Alhasan, Joseph Corneli, Leo Vivier" q-and-a="live" track="General" slug="community" time="10" startutc="2022-12-03T18:45:00+0000" endutc="2022-12-03T18:55:00+0000" start="1:45" end="1:55"]] [[!template id=sched title="Revisiting the anatomy of Emacs mail user agents" url="/2022/talks/mail" speakers="Mohsen BANAN" q-and-a="live" track="Development" slug="mail" time="30" startutc="2022-12-03T18:45:00+0000" endutc="2022-12-03T19:15:00+0000" start="1:45" end="2:15"]] -[[!template id=sched title="The ship that builds itself: How we used Emacs to develop a workshop for communities" url="/2022/talks/community" speakers="Noorah Alhasan, Joseph Corneli, Leo Vivier" q-and-a="live" track="General" slug="community" time="30" startutc="2022-12-03T18:50:00+0000" endutc="2022-12-03T19:20:00+0000" start="1:50" end="2:20"]] -[[!template id=sched title="Real estate and Org table formulas" url="/2022/talks/realestate" speakers="Daniel Gopar" q-and-a="pad" track="General" slug="realestate" time="25" startutc="2022-12-03T19:50:00+0000" endutc="2022-12-03T20:15:00+0000" start="2:50" end="3:15"]] +[[!template id=sched title="Real estate and Org table formulas" url="/2022/talks/realestate" speakers="Daniel Gopar" q-and-a="pad" track="General" slug="realestate" time="25" startutc="2022-12-03T19:25:00+0000" endutc="2022-12-03T19:50:00+0000" start="2:25" end="2:50"]] [[!template id=sched title="Maintaining the Maintainers: Attribution as an Economic Model for Open Source" url="/2022/talks/maint" speakers="Sid Kasivajhula" q-and-a="live" track="Development" slug="maint" time="20" startutc="2022-12-03T19:50:00+0000" endutc="2022-12-03T20:10:00+0000" start="2:50" end="3:10"]] -[[!template id=sched title="Health data journaling and visualization with Org Mode and GNUplot" url="/2022/talks/health" speakers="David O'Toole" q-and-a="live" track="General" slug="health" time="20" startutc="2022-12-03T20:20:00+0000" endutc="2022-12-03T20:40:00+0000" start="3:20" end="3:40"]] +[[!template id=sched title="Health data journaling and visualization with Org Mode and GNUplot" url="/2022/talks/health" speakers="David O'Toole" q-and-a="live" track="General" slug="health" time="20" startutc="2022-12-03T20:00:00+0000" endutc="2022-12-03T20:20:00+0000" start="3:00" end="3:20"]] [[!template id=sched title="Bidirectional links with eev" url="/2022/talks/eev" speakers="Eduardo Ochs" q-and-a="IRC" track="Development" slug="eev" time="5" startutc="2022-12-03T20:35:00+0000" endutc="2022-12-03T20:40:00+0000" start="3:35" end="3:40"]] +[[!template id=sched title="Edit live Jupyter notebook cells with Emacs" url="/2022/talks/jupyter" speakers="Blaine Mooers" q-and-a="live" track="General" slug="jupyter" time="10" startutc="2022-12-03T20:40:00+0000" endutc="2022-12-03T20:50:00+0000" start="3:40" end="3:50"]] [[!template id=sched title="Short hyperlinks to Python docs" url="/2022/talks/python" speakers="Eduardo Ochs" q-and-a="IRC" track="Development" slug="python" time="5" startutc="2022-12-03T20:50:00+0000" endutc="2022-12-03T20:55:00+0000" start="3:50" end="3:55"]] -[[!template id=sched title="Edit live Jupyter notebook cells with Emacs" url="/2022/talks/jupyter" speakers="Blaine Mooers" q-and-a="live" track="General" slug="jupyter" time="10" startutc="2022-12-03T21:00:00+0000" endutc="2022-12-03T21:10:00+0000" start="4:00" end="4:10"]] [[!template id=sched title="Haskell code exploration with Emacs" url="/2022/talks/haskell" speakers="Yuchen Pei" q-and-a="live" track="Development" slug="haskell" time="30" startutc="2022-12-03T21:05:00+0000" endutc="2022-12-03T21:35:00+0000" start="4:05" end="4:35"]] -[[!template id=sched title="orgvm: a simple HTTP server for org" url="/2022/talks/orgvm" speakers="Corwin Brust" q-and-a="live" track="General" slug="orgvm" time="10" startutc="2022-12-03T21:30:00+0000" endutc="2022-12-03T21:40:00+0000" start="4:30" end="4:40"]] -[[!template id=sched title="Saturday closing remarks" url="/2022/talks/sat-close" track="General" slug="sat-close" time="5" startutc="2022-12-03T22:00:00+0000" endutc="2022-12-03T22:05:00+0000" start="5:00" end="5:05"]] +[[!template id=sched title="orgvm: a simple HTTP server for org" url="/2022/talks/orgvm" speakers="Corwin Brust" q-and-a="live" track="General" slug="orgvm" time="10" startutc="2022-12-03T21:10:00+0000" endutc="2022-12-03T21:20:00+0000" start="4:10" end="4:20"]] +[[!template id=sched title="Saturday closing remarks" url="/2022/talks/sat-close" track="General" slug="sat-close" time="5" startutc="2022-12-03T21:50:00+0000" endutc="2022-12-03T21:55:00+0000" start="4:50" end="4:55"]] Jump to: Sat Dec 3 - Sun Dec 4 @@ -53,5 +53,5 @@ Jump to: Sat Dec 3 - S [[!template id=sched title="Pre-localizing Emacs" url="/2022/talks/localizing" speakers="Jean-Christophe Helary" q-and-a="live" track="Development" slug="localizing" time="20" startutc="2022-12-04T21:00:00+0000" endutc="2022-12-04T21:20:00+0000" start="4:00" end="4:20"]] [[!template id=sched title="Emacs development updates" url="/2022/talks/devel" speakers="John Wiegley" q-and-a="live" track="General" slug="devel" time="5" startutc="2022-12-04T21:00:00+0000" endutc="2022-12-04T21:05:00+0000" start="4:00" end="4:05"]] [[!template id=sched title="Fanfare for the Common Emacs User" url="/2022/talks/fanfare" speakers="John Cummings" q-and-a="live" track="General" slug="fanfare" time="10" startutc="2022-12-04T21:25:00+0000" endutc="2022-12-04T21:35:00+0000" start="4:25" end="4:35"]] -[[!template id=sched title="Sunday closing remarks" url="/2022/talks/sun-close" track="General" slug="sun-close" time="10" startutc="2022-12-04T22:00:00+0000" endutc="2022-12-04T22:10:00+0000" start="5:00" end="5:10"]] +[[!template id=sched title="Sunday closing remarks" url="/2022/talks/sun-close" track="General" slug="sun-close" time="10" startutc="2022-12-04T21:50:00+0000" endutc="2022-12-04T22:00:00+0000" start="4:50" end="5:00"]]
Cancelled:
  • Emacs News highlights - Sacha Chua
\ No newline at end of file diff --git a/2022/schedule-image.md b/2022/schedule-image.md index 0d9fbd64..3c62df69 100644 --- a/2022/schedule-image.md +++ b/2022/schedule-image.md @@ -1 +1 @@ -
Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
\ No newline at end of file +
Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 4:50- 5:00 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
\ No newline at end of file diff --git a/2022/watch/dev.md b/2022/watch/dev.md index d8058b1f..b17c4a7d 100644 --- a/2022/watch/dev.md +++ b/2022/watch/dev.md @@ -16,7 +16,7 @@

Watch - Pad and Q&A links - Chat - Schedule | Tracks: General - Development
-
Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
+
Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 4:50- 5:00 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5

Saturday, Dec 3, 2022

10:00 - 10:10 Development Q&A: IRC; id:treesitter
diff --git a/2022/watch/gen.md b/2022/watch/gen.md index ef863281..58d143cb 100644 --- a/2022/watch/gen.md +++ b/2022/watch/gen.md @@ -16,7 +16,7 @@

Watch - Pad and Q&A links - Chat - Schedule | Tracks: General - Development
-
Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5
+
Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 4:50- 5:00 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5

Saturday, Dec 3, 2022

9:00 - 9:05 General id:sat-open
@@ -67,43 +67,43 @@
-
-
1:50 - 2:20 General Q&A: live; id:community
+
+
1:45 - 1:55 General Q&A: live; id:community
Noorah Alhasan, Joseph Corneli, Leo Vivier
-
-
2:50 - 3:15 General Q&A: pad; id:realestate
+
+
2:25 - 2:50 General Q&A: pad; id:realestate
Daniel Gopar
-
-
3:20 - 3:40 General Q&A: live; id:health
+
+
3:00 - 3:20 General Q&A: live; id:health
David O'Toole
-
-
4:00 - 4:10 General Q&A: live; id:jupyter
+
+
3:40 - 3:50 General Q&A: live; id:jupyter
Blaine Mooers
-
-
4:30 - 4:40 General Q&A: live; id:orgvm
+
+
4:10 - 4:20 General Q&A: live; id:orgvm
Corwin Brust
-
-
5:00 - 5:05 General id:sat-close
+
+
4:50 - 4:55 General id:sat-close
@@ -194,8 +194,8 @@
-
-
5:00 - 5:10 General id:sun-close
+
+
4:50 - 5:00 General id:sun-close
diff --git a/2022/watch/info.md b/2022/watch/info.md index 9a4ca3a8..9b307cb7 100644 --- a/2022/watch/info.md +++ b/2022/watch/info.md @@ -4,4 +4,4 @@ General#emacsconf-genhttps://live0.emacsconf.org/emacsconf/gen.webmgen-480p.webm Development#emacsconf-devhttps://live0.emacsconf.org/emacsconf/dev.webmdev-480p.webm - Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:50- 2:20 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:50- 3:15 Real estate and Org table formulas realestate 3:20- 3:40 Health data journaling and visualization with Org Mode and GNUplot health 4:00- 4:10 Edit live Jupyter notebook cells with Emacs jupyter 4:30- 4:40 orgvm: a simple HTTP server for org orgvm 5:00- 5:05 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 5:00- 5:10 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 \ No newline at end of file + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 4:50- 5:00 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 \ No newline at end of file -- cgit v1.2.3 From b45dcba555e4bcc146d10c57991be5743c42a6aa Mon Sep 17 00:00:00 2001 From: Sacha Chua Date: Sun, 6 Nov 2022 08:45:54 -0500 Subject: color by schedule --- 2022/organizers-notebook/schedule.svg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '2022') diff --git a/2022/organizers-notebook/schedule.svg b/2022/organizers-notebook/schedule.svg index a2b2b518..18b46d11 100644 --- a/2022/organizers-notebook/schedule.svg +++ b/2022/organizers-notebook/schedule.svg @@ -1 +1 @@ - Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 4:50- 5:00 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 \ No newline at end of file + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 4:50- 5:00 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 \ No newline at end of file -- cgit v1.2.3 From df42ed225c44023a2a866440947d46ee5e319908 Mon Sep 17 00:00:00 2001 From: Sacha Chua Date: Sun, 6 Nov 2022 08:48:54 -0500 Subject: update color for treesitter --- 2022/organizers-notebook/schedule.svg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '2022') diff --git a/2022/organizers-notebook/schedule.svg b/2022/organizers-notebook/schedule.svg index 18b46d11..1b75cf56 100644 --- a/2022/organizers-notebook/schedule.svg +++ b/2022/organizers-notebook/schedule.svg @@ -1 +1 @@ - Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 4:50- 5:00 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 \ No newline at end of file + Saturday 9:00- 9:05 Saturday opening remarks sat-open 9:05- 9:25 Emacs journalism (or everything's a nail if you hit it with Emacs) journalism 9:45-10:05 Back to school with Emacs school 10:15-10:25 How to incorporate handwritten notes into Emacs Orgmode handwritten 10:55-11:15 Writing and organizing literature notes for scientific writing science 11:35-11:45 The Emacs Buddy initiative buddy 1:05- 1:25 Attending and organizing Emacs meetups meetups 1:45- 1:55 The ship that builds itself: How we used Emacs to develop a workshop for communities community 2:25- 2:50 Real estate and Org table formulas realestate 3:00- 3:20 Health data journaling and visualization with Org Mode and GNUplot health 3:40- 3:50 Edit live Jupyter notebook cells with Emacs jupyter 4:10- 4:20 orgvm: a simple HTTP server for org orgvm 4:50- 4:55 Saturday closing remarks sat-close 10:00-10:10 Tree-sitter beyond syntax highlighting treesitter 10:20-10:40 lsp-bridge: complete asynchronous LSP client lspbridge 10:50-11:07 asm-blox: a game based on WebAssembly that no one asked for asmblox 11:25-11:35 Emacs should become a Wayland compositor wayland 1:00- 1:20 Using SQLite as a data source: a framework and an example sqlite 1:45- 2:15 Revisiting the anatomy of Emacs mail user agents mail 2:50- 3:10 Maintaining the Maintainers: Attribution as an Economic Model for Open Source maint 3:35- 3:40 Bidirectional links with eev eev 3:50- 3:55 Short hyperlinks to Python docs python 4:05- 4:35 Haskell code exploration with Emacs haskell 9 10 11 12 1 2 3 4 5 Sunday 9:00- 9:05 Sunday opening remarks sun-open 9:05- 9:25 Results of the 2022 Emacs Survey survey 9:35- 9:45 This Year in Org orgyear 10:00-10:20 Build a Zettelkasten with the Hyperbole Rolodex rolodex 10:40-10:50 Linking headings with org-super-links (poor-man's Zettelkasten) orgsuperlinks 11:10-11:20 Linking personal info with Hyperbole implicit buttons buttons 1:00- 1:30 Powerful productivity with Hyperbole and Org Mode hyperorg 1:50- 2:10 Org workflows for developers workflows 2:30- 2:50 GRAIL---A Generalized Representation and Aggregation of Information Layers grail 3:20- 3:40 Putting Org Mode on the Indieweb indieweb 4:00- 4:05 Emacs development updates devel 4:25- 4:35 Fanfare for the Common Emacs User fanfare 4:50- 5:00 Sunday closing remarks sun-close 10:00-10:25 rde Emacs introduction rde 10:45-10:55 justl: Driving recipes within Emacs justl 11:05-11:35 Elisp and the TRAMP: How to NOT write code you don't have to tramp 1:00- 1:10 Getting detached from Emacs detached 1:35- 1:45 Top 10 reasons why you should be using Eshell eshell 2:10- 2:30 Emacs was async before async was cool async 3:05- 3:25 The Wheels on D-Bus dbus 4:00- 4:20 Pre-localizing Emacs localizing 9 10 11 12 1 2 3 4 5 \ No newline at end of file -- cgit v1.2.3 From 80dfeea90eff7ac34ff3d52b82654e1768b8c9ef Mon Sep 17 00:00:00 2001 From: Sacha Chua Date: Sun, 6 Nov 2022 10:30:50 -0500 Subject: Update status --- 2022/organizers-notebook/index.org | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '2022') diff --git a/2022/organizers-notebook/index.org b/2022/organizers-notebook/index.org index 62b386c4..1821db8c 100644 --- a/2022/organizers-notebook/index.org +++ b/2022/organizers-notebook/index.org @@ -103,8 +103,8 @@ interests you! | [[#video-platforms][other platforms]] | *S: Toobnix & YT after event* | | S: Toobnix + YT when live | | schedule view | text table | imagemap fallback | *DONE S: interactive SVG* | | [[#caption-workflow][caption workflow]] | YT autosubs | Whisper autosubs | *DONE: Whisper + more granular timestamps* | -| [[#wiki-design][wiki]] | plain text, markdown | *S: some JS and CSS enrichment* | more JS and CSS, embeds, videoplayer | -| [[#ansible][ansible]] | none | *S: some automation* | comprehensive, can also work against containers | +| [[#wiki-design][wiki]] | plain text, markdown | *DONE S: some JS and CSS enrichment* | more JS and CSS, embeds, videoplayer | +| [[#ansible][ansible]] | none | *DONE S: some automation* | comprehensive, can also work against containers | * Time-sensitive :PROPERTIES: -- cgit v1.2.3 From d824070cd03777d75614ec09a9c2cc8b777bcacf Mon Sep 17 00:00:00 2001 From: Karl Voit Date: Sun, 6 Nov 2022 17:57:15 +0100 Subject: Updated description for orgsuperlinks.md --- 2022/talks/orgsuperlinks.md | 47 ++++++++++++++++++++++++++++++++++++--------- 1 file changed, 38 insertions(+), 9 deletions(-) (limited to '2022') diff --git a/2022/talks/orgsuperlinks.md b/2022/talks/orgsuperlinks.md index b86d9624..aace7618 100644 --- a/2022/talks/orgsuperlinks.md +++ b/2022/talks/orgsuperlinks.md @@ -7,25 +7,54 @@ -# Linking headings with org-super-links (poor-man's Zettelkasten) +# Linking headings (poor-man's Zettelkasten) and defining advanced task dependencies Karl Voit (he/him, IRC: publicvoit, ) [[!inline pages="internal(2022/info/orgsuperlinks-before)" raw="yes"]] -As written on - Karl thinks -that a full-blown Zettelkasten workflow is not always a perfect match -for a given set of requirements. +As written in [this blog +article](https://karl-voit.at/2020/06/14/Zettelkasten-concerns), Karl +thinks that a full-blown Zettelkasten workflow is not always a perfect +match for a given set of requirements. -To him, the most important aspects of the Zettelkasten method are the +To him, the most important aspect of the Zettelkasten method are the bi-directional links between arbitrary headings. If you want to use such links without the additional burden and benefit of a Zettelkasten implementation, you might want to learn how -org-super-links is able to help you here. +bi-directional links are able to help you here. -In this talk, you will see how org-super-links are being used in -the author's setup for linking headings. +In this talk, you will see a demo how links are used in the author's +setup for linking headings and defining advanced dependencies between +todo headings. +You can find [the self-contained demo on +Gitlab.com](https://gitlab.com/publicvoit/orgmode-link-demo). It +consists of various packages and some Elisp glue to create these methods: + +- Bi-directional links between headings: + - [org-super-links](https://github.com/toshism/org-super-links) with `org-super-links-org-ql` and `org-super-links-org-rifle` + - `org-super-links-quick-insert-inline-link` + - `org-super-links-quick-insert-drawer-link` + - [org-linker](https://github.com/toshism/org-linker) + +- Advanced dependencies: + - [org-edna](https://www.nongnu.org/org-edna-el/) + - [org-linker-edna](https://github.com/toshism/org-linker-edna) + +- Search, completion and narrowing: + - [helm](https://emacs-helm.github.io/helm/) + - [helm-org](https://github.com/emacs-helm/helm-org) + - [org-ql](https://github.com/alphapapa/org-ql) with `helm-org-ql` + +- Adding CREATED properties for new headings: [org-expiry](https://git.sr.ht/~bzg/org-contrib/blob/master/lisp/org-expiry.el) (not necessary for any demo functionality) + +More on bi-directional links and Karl's Org mode projects: + +- [UOMF: Linking Headings With org-super-links (Poor-Man's Zettelkasten)](https://karl-voit.at/2020/07/22/org-super-links/) +- [UOMF: On How to Define Projects in Org Mode](https://karl-voit.at/2019/11/03/org-projects/) +- [A Draft Workflow for Advanced Project Management Using Org Mode and Org Edna](https://karl-voit.at/2020/08/14/project-mgt-draft/) +- [Zettelkasten/Org-roam/Org-brain Is Crap](https://karl-voit.at/2020/06/14/Zettelkasten-concerns/) +- [More Emacs-related articles by Karl](https://karl-voit.at/tags/emacs/) [[!inline pages="internal(2022/info/orgsuperlinks-after)" raw="yes"]] -- cgit v1.2.3 From 5b636a9c0fc6bfa9bb0decaa0d7dd0d37c951b62 Mon Sep 17 00:00:00 2001 From: Karl Voit Date: Sun, 6 Nov 2022 18:03:04 +0100 Subject: Updated description for orgsuperlinks.md --- 2022/talks/orgsuperlinks.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to '2022') diff --git a/2022/talks/orgsuperlinks.md b/2022/talks/orgsuperlinks.md index aace7618..1fcf4c15 100644 --- a/2022/talks/orgsuperlinks.md +++ b/2022/talks/orgsuperlinks.md @@ -18,16 +18,16 @@ thinks that a full-blown Zettelkasten workflow is not always a perfect match for a given set of requirements. To him, the most important aspect of the Zettelkasten method are the -bi-directional links between arbitrary headings. If you want to use +**bi-directional links between arbitrary headings**. If you want to use such links without the additional burden and benefit of a Zettelkasten implementation, you might want to learn how bi-directional links are able to help you here. In this talk, you will see a demo how links are used in the author's -setup for linking headings and defining advanced dependencies between -todo headings. +setup for linking headings and **defining advanced dependencies between +todo headings**. -You can find [the self-contained demo on +You can find [the **self-contained demo file** on Gitlab.com](https://gitlab.com/publicvoit/orgmode-link-demo). It consists of various packages and some Elisp glue to create these methods: @@ -54,7 +54,8 @@ More on bi-directional links and Karl's Org mode projects: - [UOMF: On How to Define Projects in Org Mode](https://karl-voit.at/2019/11/03/org-projects/) - [A Draft Workflow for Advanced Project Management Using Org Mode and Org Edna](https://karl-voit.at/2020/08/14/project-mgt-draft/) - [Zettelkasten/Org-roam/Org-brain Is Crap](https://karl-voit.at/2020/06/14/Zettelkasten-concerns/) -- [More Emacs-related articles by Karl](https://karl-voit.at/tags/emacs/) + +[More Emacs-related articles by Karl](https://karl-voit.at/tags/emacs/) [[!inline pages="internal(2022/info/orgsuperlinks-after)" raw="yes"]] -- cgit v1.2.3 From 82c8c10718078777109ef385cbe501a627e1ce2f Mon Sep 17 00:00:00 2001 From: Leo Vivier Date: Sun, 6 Nov 2022 18:14:56 +0100 Subject: Add task --- 2022/organizers-notebook.md | 94 +++++++++++++++++++++++--------------- 2022/organizers-notebook/index.org | 3 +- 2 files changed, 58 insertions(+), 39 deletions(-) (limited to '2022') diff --git a/2022/organizers-notebook.md b/2022/organizers-notebook.md index 7f8598b6..cd978ffc 100644 --- a/2022/organizers-notebook.md +++ b/2022/organizers-notebook.md @@ -49,6 +49,7 @@ Other projects: - [Set up BBB rooms and update conf.org](#create-bbb):sachac: - [Coordinate and help volunteers](#coordinate-volunteers):sachac: - [Investigate streaming options, maybe OBS in the cloud](#streaming):sachac: +- [Record intro/outro for day-1 and day-2](#org338fdaf):zaeph: @@ -358,7 +359,7 @@ interests you! wiki plain text, markdown -S: some JS and CSS enrichment +DONE S: some JS and CSS enrichment more JS and CSS, embeds, videoplayer @@ -366,7 +367,7 @@ interests you! ansible none -S: some automation +DONE S: some automation comprehensive, can also work against containers @@ -464,6 +465,7 @@ chatter in the other lists cc’d in this message; thank you. - [Set up BBB rooms and update conf.org](#create-bbb):sachac: - [Coordinate and help volunteers](#coordinate-volunteers):sachac: - [Investigate streaming options, maybe OBS in the cloud](#streaming):sachac: +- [Record intro/outro for day-1 and day-2](#org338fdaf):zaeph: Ordered by importance. @@ -784,7 +786,7 @@ Agenda: - Dev: rsync -avze ssh emacsconf-dev@res.emacsconf.org:~/.config/obs-studio/basic/profiles/ ~/.config/obs-studio/basic/profiles/ - Sacha will turn off the OBS recordings on res so that you can test streaming from your computer - - If you’re doing this independently, you can jump ahead to “Test connecting to the VNC” in order to stop the recording yourself + - If you’re doing this independently, you can jump ahead to &lsquo ;Test connecting to the VNC’ in order to stop the recording yourself - Verify with MPV: @@ -835,7 +837,7 @@ Agenda: cd /data/emacsconf/stream/2022 track-mpv filename.webm -11. Test Q&A. You can either wait for the video to finish or quit it with “q”. +11. Test Q&A. You can either wait for the video to finish or quit it with &lsquo ;q’. You can paste in the URLs or use `firefox /data/emacsconf/2022/index-$TRACK.html` @@ -949,7 +951,7 @@ Can I use aeneas for alignment instead? Reflow the .txt file and reupload to res if needed call ../run-aeneas.sh from the directory with the opus or ogg and the txt file -sachac@res-https://emacsconf.org/2022/talks/~/current/meetups$ python3 -m aeneas.tools.execute\_task emacsconf-2022-meetups–attending-and-organizing-emacs-meetups–bhavin-gandhi–main.opus reflowed.srt “task\_language=eng|os\_task\_file\_format=json|is\_text\_type=subtitles” output.json +sachac@res-https://emacsconf.org/2022/talks/~/current/meetups$ python3 -m aeneas.tools.execute\_task emacsconf-2022-meetups–attending-and-organizing-emacs-meetups–bhavin-gandhi–main.opus reflowed.srt &lsquo ;task\_language=eng|os\_task\_file\_format=json|is\_text\_type=subtitles’ output.json I might try out lhotse and torchaudio someday, but it’s low priority. aeneas seems to do a reasonable job of @@ -1053,8 +1055,8 @@ Thank you for volunteering for ${conf-name} ${year}! We’ve set up ${backstage} as the backstage area where you can view the videos and resources uploaded so far. You can access it with the -username "${backstage-user}“ and the password ”${backstage-password}“. -Please keep the backstage password and other speakers’ talk resources +username "${backstage-user}&lsquo ; and the password ’${backstage-password}&lsquo ;. +Please keep the backstage password and other speakers” talk resources secret. For some ideas on ways to help, you can check out @@ -1099,8 +1101,8 @@ great to have you on board.${wrap} We’ve set up ${backstage} as the backstage area where you can view the videos and resources uploaded so far. You can access it with the -username "${backstage-user}“ and the password ”${backstage-password}“. -Please keep the backstage password and other speakers’ talk resources +username "${backstage-user}&lsquo ; and the password ’${backstage-password}&lsquo ;. +Please keep the backstage password and other speakers” talk resources secret. If you see a talk that you’d like to caption, you can e-mail me at sacha@sachachua.com and I can reserve it for you. Then you can correct any misrecognized words, fix capitalizations, remove filler @@ -1173,7 +1175,7 @@ in prod or docker container ### DONE icecast on live0 -(find-file “/ssh:live|sudo::/etc/icecast2/icecast.xml”) +(find-file &lsquo ;/ssh:live|sudo::/etc/icecast2/icecast.xml’) #### DONE Set up watch/gen-480p @@ -1355,7 +1357,7 @@ Goals: - [X] Have another session with the sound isolated - [X] Split the audio so that we can join the Q&A room before the MPV ends - handled by automatic scene switcher detecting mpv - [X] Control MPV from the commandline: track-mpv appears in the correct display, and it can also be controlled via the socket like this: - echo ’{ “command”: [“loadfile”, “test2.webm”] }’ | socat - ~/mpv-socket-emacsconf-dev + echo ’{ &lsquo ;command’: [&lsquo ;loadfile’, &lsquo ;test2.webm’] }’ | socat - ~/mpv-socket-emacsconf-dev - [ ] Share the window instead of the desktop? @@ -1372,7 +1374,7 @@ Goals: 3. Start up the VNC server if it’s not already running - ssh emacsconf-$TRACK@res.emacsconf.org “~/bin/track-vnc” + ssh emacsconf-$TRACK@res.emacsconf.org &lsquo ;~/bin/track-vnc’ 4. Forward your local ports @@ -1489,8 +1491,8 @@ and type your message in. #### Kill the VNC server: -ssh emacsconf-gen@res.emacsconf.org “vncserver -kill” -ssh emacsconf-dev@res.emacsconf.org “vncserver -kill” +ssh emacsconf-gen@res.emacsconf.org &lsquo ;vncserver -kill’ +ssh emacsconf-dev@res.emacsconf.org &lsquo ;vncserver -kill’ @@ -1518,7 +1520,7 @@ ssh emacsconf-dev@res.emacsconf.org “vncserver -kill” ### Other notes There are sockets in the home directory for MPV control if you want to keep that process. -echo ’{ “command”: [“loadfile”, “test2.webm”] }’ | socat - ~/mpv-socket-emacsconf-dev +echo ’{ &lsquo ;command’: [&lsquo ;loadfile’, &lsquo ;test2.webm’] }’ | socat - ~/mpv-socket-emacsconf-dev ### DONE Move my conf.org setup to res so that we can control everything from there @@ -1613,7 +1615,12 @@ so that the streamer can adjust volume offscreen? - -### TODO recruit at least one more person to help operate the “video bouncer” +### TODO recruit at least one more person to help operate the &lsquo ;video bouncer’ + + + + +## TODO Record intro/outro for day-1 and day-2 :zaeph: @@ -2497,7 +2504,7 @@ We tried using q56 before, but it was a little too aggressive. Q=32 is the defau Hi, ${speakers-short}! Just a quick note to let you know that I’ve downloaded your -submission for “${title}”. We’ve added your submission to the backstage +submission for &lsquo ;${title}’. We’ve added your submission to the backstage area at ${backstage} (username: ${backstage-user}, password: ${backstage-password}), and we’ll post the files on your talk page when the talk is public. A quick check shows that your video is about @@ -2828,9 +2835,9 @@ Exception: [CHECK is unavailable](#check-gone) with instructions, so please check there. Let me know if you don’t get them. - Private messages: - - (erc-message “PRIVMSG” (format “%s You can use this BBB room: %s . I’ll join you there shortly to set up the room and do the last-minute tech check.” nick room-url)) - - (erc-message “PRIVMSG” (format “%s The collaborative pad we’ll be using for questions is at %s . We’ll collect questions from #emacsconf and put them there. If you’d like to jump to your part of the document, you might be able to keep an eye on questions. Alternatively, we can read questions to you.” nick conf-collaborative-pad)) - - (erc-message “PRIVMSG” (format “%s Leo Vivier will join when it’s time, and he will give you the go-ahead when it’s time to present. See you in the BBB room!” nick)) + - (erc-message &lsquo ;PRIVMSG’ (format &lsquo ;%s You can use this BBB room: %s . I’ll join you there shortly to set up the room and do the last-minute tech check.’ nick room-url)) + - (erc-message &lsquo ;PRIVMSG’ (format &lsquo ;%s The collaborative pad we’ll be using for questions is at %s . We’ll collect questions from #emacsconf and put them there. If you’d like to jump to your part of the document, you might be able to keep an eye on questions. Alternatively, we can read questions to you.’ nick conf-collaborative-pad)) + - (erc-message &lsquo ;PRIVMSG’ (format &lsquo ;%s Leo Vivier will join when it’s time, and he will give you the go-ahead when it’s time to present. See you in the BBB room!’ nick)) - CHECK directs speaker to available room with `/checkin ` - Speaker joins talk room - CHECK makes speaker presenter and moderator, does last-minute tech check @@ -3144,7 +3151,7 @@ Probably focus on grabbing the audio first and seeing what’s worth keeping Make a table of the form -
+
@@ -3406,6 +3413,17 @@ mpv –vf=negate $url - E-mail affected speakers - see emacsconf-mail-schedule-update function +### New talk + +- Create entry in conf.org +- Fit it into the schedule using the emacsconf-schedule-plan variable +- When happy, execute the draft-schedule block to update the SCHEDULED properties +- emacsconf-generate-talk-page +- emacsconf-update-schedule +- emacsconf +- emacsconf-stream-generate-assets-for-talk + + # Task archive @@ -3418,7 +3436,7 @@ mpv –vf=negate $url Extra stuff to consider adding: - DONE Suggestions for themes (especially wrt colourscape) -- DONE “Please don’t squeeze your talk by fast-forwarding your speech. Trimming silences and filler words can help, though. Sometimes it’s easier to write, record, and edit your voiceover, and then record the video to go along with it.“ +- DONE “Please don’t squeeze your talk by fast-forwarding your speech. Trimming silences and filler words can help, though. Sometimes it’s easier to write, record, and edit your voiceover, and then record the video to go along with it.&lsquo ; - DONE Allowing speakers to plant questions, esp. to cover tangential stuff that couldn’t fit in the prerec @@ -3442,7 +3460,7 @@ See the bottom of conf.org for some automated validation Extra stuff to consider adding: - DONE Suggestions for themes (especially wrt colourscape) -- DONE “Please don’t squeeze your talk by fast-forwarding your speech. Trimming silences and filler words can help, though. Sometimes it’s easier to write, record, and edit your voiceover, and then record the video to go along with it.“ +- DONE “Please don’t squeeze your talk by fast-forwarding your speech. Trimming silences and filler words can help, though. Sometimes it’s easier to write, record, and edit your voiceover, and then record the video to go along with it.&lsquo ; - DONE Allowing speakers to plant questions, esp. to cover tangential stuff that couldn’t fit in the prerec @@ -3550,7 +3568,7 @@ Slightly annoying to do with JS/CSS because I want it to fall back to an interle ## DONE Process confirmations as we receive them :sachac:zaeph: -- Reply to the speaker and Cc -submit to confirm the confirmation. Something like “Confirming your confirmation, no reply needed to this one. Thank you!” +- Reply to the speaker and Cc -submit to confirm the confirmation. Something like &lsquo ;Confirming your confirmation, no reply needed to this one. Thank you!’ - Update talk to WAITING\_FOR\_PREREC in conf.org - Add a note in the logbook (C-c C-z - org-add-note) for the talk entry - Add :PUBLIC\_EMAIL: t if given permission to use the e-mail on the @@ -3945,15 +3963,15 @@ It would be nice to have track-specific icals as well. zaeph: I can work on it, but I’m not experienced in this domain, so I’d prefer to be a back-up. task is currently with bandali -Lesson learned from last year: “Since people kept running into ftp +Lesson learned from last year: &lsquo ;Since people kept running into ftp problems, we might want to set up a web-frontend next year to minimise -problems.” +problems.’ Maybe we could ask some of the volunteers who wanted to help us with the infra? It shouldn’t be complicated to deploy a ready-made solution. -“file drop” is a common keyword for looking for information. +&lsquo ;file drop’ is a common keyword for looking for information. Considerations: - Probably run it on media.emacsconf.org @@ -4112,7 +4130,7 @@ Where: Nice if there’s an Ansible playbook sachac’s notes: - + - probably good to set it up on front It’s now on front. @@ -4167,8 +4185,8 @@ talk page when your talk goes live. If you happen to have a script or a transcript, please include them as well (it’ll speed up the captioning for us). -Please start your filenames with the ID for the talk that it’s for: -${slugs}. +Please add a comment or start your filenames with the ID for the talk +that it’s for: ${slugs}. If you’re still working on your talk, you might find the tips at useful. In brief: @@ -4177,8 +4195,10 @@ If you’re still working on your talk, you might find the tips at - we recommend dark text on a light background, with enough contrast to make it easy to read - if possible, use a headset or external microphone to record audio -- leave 5 seconds of quiet at the end of the video to facilitate noise - reduction for us + in order to minimize computer noise +- upload a separate 5 second recording of quiet or leave 5 seconds + of quiet at the end of your talk video so that we can process your + video for noise reduction Please plan to upload your talk by November 4 (next Friday) so that we can get started preparing it for streaming. If you can’t make it by @@ -4258,8 +4278,8 @@ generated captions that we can use as a starting point. We’ve set up ${backstage} as the backstage area where you can view the videos and resources uploaded so far. You can access it with the -username "${backstage-user}“ and the password ”${backstage-password}“. -Please keep the backstage password and other speakers’ talk resources +username "${backstage-user}&lsquo ; and the password ’${backstage-password}&lsquo ;. +Please keep the backstage password and other speakers” talk resources secret. ${backstage-use}${wrap} Thank you! @@ -4639,7 +4659,7 @@ ${captions} Hi, ${name}! I think we haven’t heard from you since we accepted your EmacsConf -${year} proposal for "${title}“. EmacsConf coming up soon, so I wanted +${year} proposal for "${title}&lsquo ;. EmacsConf coming up soon, so I wanted to check in with you to see how you’re doing. Could you please e-mail us to let us know if you’re still working on @@ -5348,10 +5368,10 @@ see emacsconf-import-comments-from-etherpad-text format makes it harder not only for the organizers, but also for the speakers themselves (since they will have to rethink their presentation). Maybe we can have an e-mail template for a quick - reply that says something like “Just in case we need to squeeze + reply that says something like &lsquo ;Just in case we need to squeeze talks into shorter times, could you please also propose an outline for a possible 10-minute talk that could get people interested in - your topic and point them to where they can find out more?” + your topic and point them to where they can find out more?’ - Two people is the sweet number of reviewers to have for the proposals before sending the notifications, and there’d be diminishing returns with more. Two is enough to release the pressure diff --git a/2022/organizers-notebook/index.org b/2022/organizers-notebook/index.org index 1821db8c..9d78d958 100644 --- a/2022/organizers-notebook/index.org +++ b/2022/organizers-notebook/index.org @@ -1202,8 +1202,7 @@ so that the streamer can adjust volume offscreen? - https://github.com/soonum/hubangl - https://obsproject.com/forum/threads/run-obs-on-vm-in-the-cloud.122543/ *** TODO recruit at least one more person to help operate the "video bouncer" - - +** TODO Record intro/outro for day-1 and day-2 :zaeph: * Projects to bear in mind but which are not actual :PROPERTIES: :CUSTOM_ID: maybe-projects -- cgit v1.2.3 From fc8d7403b89135450519702c7429f0f67671370a Mon Sep 17 00:00:00 2001 From: Leo Vivier Date: Sun, 6 Nov 2022 18:15:27 +0100 Subject: Move task to top --- 2022/organizers-notebook.md | 16 ++++++++-------- 2022/organizers-notebook/index.org | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) (limited to '2022') diff --git a/2022/organizers-notebook.md b/2022/organizers-notebook.md index cd978ffc..1a49bc1f 100644 --- a/2022/organizers-notebook.md +++ b/2022/organizers-notebook.md @@ -27,6 +27,7 @@ Time-sensitive tasks: Other projects: +- [Record intro/outro for day-1 and day-2](#org2b0e03a):zaeph: - [Prepare for prerecs](#prepare-prerec-process):zaeph: - [Work on the OBS scenes](#obs-scenes):zaeph:corwin: - [Make something to display between talks](#intro):akshay196: @@ -49,7 +50,6 @@ Other projects: - [Set up BBB rooms and update conf.org](#create-bbb):sachac: - [Coordinate and help volunteers](#coordinate-volunteers):sachac: - [Investigate streaming options, maybe OBS in the cloud](#streaming):sachac: -- [Record intro/outro for day-1 and day-2](#org338fdaf):zaeph: @@ -443,6 +443,7 @@ chatter in the other lists cc’d in this message; thank you. # Projects and other long-running tasks +- [Record intro/outro for day-1 and day-2](#org2b0e03a):zaeph: - [Prepare for prerecs](#prepare-prerec-process):zaeph: - [Work on the OBS scenes](#obs-scenes):zaeph:corwin: - [Make something to display between talks](#intro):akshay196: @@ -465,11 +466,15 @@ chatter in the other lists cc’d in this message; thank you. - [Set up BBB rooms and update conf.org](#create-bbb):sachac: - [Coordinate and help volunteers](#coordinate-volunteers):sachac: - [Investigate streaming options, maybe OBS in the cloud](#streaming):sachac: -- [Record intro/outro for day-1 and day-2](#org338fdaf):zaeph: Ordered by importance. + + +## TODO Record intro/outro for day-1 and day-2 :zaeph: + + ## DONE Prepare for prerecs :zaeph: @@ -1618,11 +1623,6 @@ so that the streamer can adjust volume offscreen? ### TODO recruit at least one more person to help operate the &lsquo ;video bouncer’ - - -## TODO Record intro/outro for day-1 and day-2 :zaeph: - - # Projects to bear in mind but which are not actual @@ -3151,7 +3151,7 @@ Probably focus on grabbing the audio first and seeing what’s worth keeping Make a table of the form -
+
diff --git a/2022/organizers-notebook/index.org b/2022/organizers-notebook/index.org index 9d78d958..b9c9bdb7 100644 --- a/2022/organizers-notebook/index.org +++ b/2022/organizers-notebook/index.org @@ -179,6 +179,7 @@ chatter in the other lists cc'd in this message; thank you. #+TOC: headlines 1 local Ordered by importance. +** TODO Record intro/outro for day-1 and day-2 :zaeph: ** DONE Prepare for prerecs :zaeph: CLOSED: [2022-10-29 Sat 09:58] DEADLINE: <2022-11-04 Fri> :PROPERTIES: @@ -1202,7 +1203,6 @@ so that the streamer can adjust volume offscreen? - https://github.com/soonum/hubangl - https://obsproject.com/forum/threads/run-obs-on-vm-in-the-cloud.122543/ *** TODO recruit at least one more person to help operate the "video bouncer" -** TODO Record intro/outro for day-1 and day-2 :zaeph: * Projects to bear in mind but which are not actual :PROPERTIES: :CUSTOM_ID: maybe-projects -- cgit v1.2.3 From d2b2d7208e0848636eeaab80d62189ae3332dc45 Mon Sep 17 00:00:00 2001 From: Leo Vivier Date: Sun, 6 Nov 2022 18:16:46 +0100 Subject: Update status on tasks --- 2022/organizers-notebook.md | 18 +++++++++--------- 2022/organizers-notebook/index.org | 8 ++++---- 2 files changed, 13 insertions(+), 13 deletions(-) (limited to '2022') diff --git a/2022/organizers-notebook.md b/2022/organizers-notebook.md index 1a49bc1f..0e4fd7e0 100644 --- a/2022/organizers-notebook.md +++ b/2022/organizers-notebook.md @@ -27,9 +27,9 @@ Time-sensitive tasks: Other projects: -- [Record intro/outro for day-1 and day-2](#org2b0e03a):zaeph: +- [Record intro/outro for day-1 and day-2](#org4067ddb):zaeph: - [Prepare for prerecs](#prepare-prerec-process):zaeph: -- [Work on the OBS scenes](#obs-scenes):zaeph:corwin: +- [Work on the OBS scenes](#obs-scenes):zaeph:corwin:sachac: - [Make something to display between talks](#intro):akshay196: - [Create protocol for live Q&A](#live-protocol):zaeph: - [Find volunteers for tech-checks](#tech-checks):zaeph: @@ -443,9 +443,9 @@ chatter in the other lists cc’d in this message; thank you. # Projects and other long-running tasks -- [Record intro/outro for day-1 and day-2](#org2b0e03a):zaeph: +- [Record intro/outro for day-1 and day-2](#org4067ddb):zaeph: - [Prepare for prerecs](#prepare-prerec-process):zaeph: -- [Work on the OBS scenes](#obs-scenes):zaeph:corwin: +- [Work on the OBS scenes](#obs-scenes):zaeph:corwin:sachac: - [Make something to display between talks](#intro):akshay196: - [Create protocol for live Q&A](#live-protocol):zaeph: - [Find volunteers for tech-checks](#tech-checks):zaeph: @@ -470,7 +470,7 @@ chatter in the other lists cc’d in this message; thank you. Ordered by importance. - + ## TODO Record intro/outro for day-1 and day-2 :zaeph: @@ -528,7 +528,7 @@ Make changes in [As prerecorded talks come in](#prerec-process) -## TODO Work on the OBS scenes :zaeph:corwin: +## INPROGRESS Work on the OBS scenes :zaeph:corwin:sachac: - [ ] corwin is out from Nov 11-20, and we should start working on them before then. @@ -1333,7 +1333,7 @@ see conf.org for the rest of the process -## TODO Coordinate and help volunteers :sachac: +## INPROGRESS Coordinate and help volunteers :sachac: - <../volunteer> - Figure out what information volunteers need in order to feel @@ -1350,7 +1350,7 @@ see conf.org for the rest of the process -## TODO Investigate streaming options, maybe OBS in the cloud :sachac: +## DONE Investigate streaming options, maybe OBS in the cloud :sachac: Current status @@ -3151,7 +3151,7 @@ Probably focus on grabbing the audio first and seeing what’s worth keeping Make a table of the form -
+
diff --git a/2022/organizers-notebook/index.org b/2022/organizers-notebook/index.org index b9c9bdb7..1b6605e7 100644 --- a/2022/organizers-notebook/index.org +++ b/2022/organizers-notebook/index.org @@ -228,7 +228,7 @@ We need time after the prerecs get submitted to: Make changes in [[#prerec-process]] -** TODO Work on the OBS scenes :zaeph:corwin: +** INPROGRESS Work on the OBS scenes :zaeph:corwin:sachac: DEADLINE: <2022-11-11 Fri> :PROPERTIES: :CUSTOM_ID: obs-scenes @@ -985,7 +985,7 @@ console.log(JSON.stringify([...document.querySelectorAll('.delete-room')].map((o see conf.org for the rest of the process *** TODO Add volunteers to the BBB rooms DEADLINE: <2022-11-05 Sat> -** TODO Coordinate and help volunteers :sachac: +** INPROGRESS Coordinate and help volunteers :sachac: :PROPERTIES: :CUSTOM_ID: coordinate-volunteers :END: @@ -1001,8 +1001,8 @@ DEADLINE: <2022-11-05 Sat> :PROPERTIES: :CUSTOM_ID: schedule-volunteer-qna :END: -** TODO Investigate streaming options, maybe OBS in the cloud :sachac: -DEADLINE: <2022-11-20 Sun> +** DONE Investigate streaming options, maybe OBS in the cloud :sachac: +CLOSED: [2022-11-06 Sun 18:16] DEADLINE: <2022-11-20 Sun> :PROPERTIES: :CUSTOM_ID: streaming :END: -- cgit v1.2.3 From ea4a102e94046238fe22fc0679c4dfe85be19e56 Mon Sep 17 00:00:00 2001 From: Sacha Chua Date: Sun, 6 Nov 2022 12:31:34 -0500 Subject: Update sched --- 2022/organizers-notebook.md | 38 ++++++++++++++++++++++++-------------- 2022/organizers-notebook/index.org | 11 ++++------- 2 files changed, 28 insertions(+), 21 deletions(-) (limited to '2022') diff --git a/2022/organizers-notebook.md b/2022/organizers-notebook.md index 7f8598b6..6539eb39 100644 --- a/2022/organizers-notebook.md +++ b/2022/organizers-notebook.md @@ -50,6 +50,10 @@ Other projects: - [Coordinate and help volunteers](#coordinate-volunteers):sachac: - [Investigate streaming options, maybe OBS in the cloud](#streaming):sachac: +Schedule by status: (gray: waiting, light yellow: processing, yellow: to assign, light green: captioning, green: captioned and ready) - Updated by conf.org and the wiki repository + +![img](schedule.svg) + @@ -358,7 +362,7 @@ interests you! - + @@ -366,7 +370,7 @@ interests you! - + @@ -1651,13 +1655,6 @@ Note on how DebConf handled incidents: ## How do we want to make the full schedule more manageable? -updated by conf.org -![img](schedule.svg) - -- Green: no availability constraints -- Red: invalid because of availability constraint -- Dashed: IRC/pad Q&A, not live - Host role: - Give the speaker a heads-up before their Q&A session begins @@ -3144,7 +3141,7 @@ Probably focus on grabbing the audio first and seeing what’s worth keeping Make a table of the form -
wiki plain text, markdownS: some JS and CSS enrichmentDONE S: some JS and CSS enrichment more JS and CSS, embeds, videoplayer
ansible noneS: some automationDONE S: some automation comprehensive, can also work against containers
+
@@ -3406,6 +3403,17 @@ mpv –vf=negate $url - E-mail affected speakers - see emacsconf-mail-schedule-update function +### New talk + +- Create entry in conf.org +- Fit it into the schedule using the emacsconf-schedule-plan variable +- When happy, execute the draft-schedule block to update the SCHEDULED properties +- emacsconf-generate-talk-page +- emacsconf-update-schedule +- emacsconf +- emacsconf-stream-generate-assets-for-talk + + # Task archive @@ -4167,8 +4175,8 @@ talk page when your talk goes live. If you happen to have a script or a transcript, please include them as well (it’ll speed up the captioning for us). -Please start your filenames with the ID for the talk that it’s for: -${slugs}. +Please add a comment or start your filenames with the ID for the talk +that it’s for: ${slugs}. If you’re still working on your talk, you might find the tips at useful. In brief: @@ -4177,8 +4185,10 @@ If you’re still working on your talk, you might find the tips at - we recommend dark text on a light background, with enough contrast to make it easy to read - if possible, use a headset or external microphone to record audio -- leave 5 seconds of quiet at the end of the video to facilitate noise - reduction for us + in order to minimize computer noise +- upload a separate 5 second recording of quiet or leave 5 seconds + of quiet at the end of your talk video so that we can process your + video for noise reduction Please plan to upload your talk by November 4 (next Friday) so that we can get started preparing it for streaming. If you can’t make it by diff --git a/2022/organizers-notebook/index.org b/2022/organizers-notebook/index.org index 1821db8c..e4185568 100644 --- a/2022/organizers-notebook/index.org +++ b/2022/organizers-notebook/index.org @@ -20,6 +20,10 @@ Other projects: #+TOC: headlines 1 :target #projects +Schedule by status: (gray: waiting, light yellow: processing, yellow: to assign, light green: captioning, green: captioned and ready) - Updated by conf.org and the wiki repository + +[[file:schedule.svg]] + * Working with this file :noexport: :PROPERTIES: :CUSTOM_ID: this @@ -1228,13 +1232,6 @@ https://www.mail-archive.com/search?l=debconf-team@lists.debian.org&q=subject:%2 :CUSTOM_ID: sched-decision :END: -updated by conf.org -[[file:schedule.svg]] - -- Green: no availability constraints -- Red: invalid because of availability constraint -- Dashed: IRC/pad Q&A, not live - Host role: - Give the speaker a heads-up before their Q&A session begins - If needed, read the questions from the pad to the speaker (Many speakers are comfortable reading the pad on their own.) -- cgit v1.2.3 From 97c6387b5aae0a186919e801221971068da75d78 Mon Sep 17 00:00:00 2001 From: Sacha Chua Date: Sun, 6 Nov 2022 15:15:25 -0500 Subject: dry run updates --- 2022/organizers-notebook/index.org | 54 +++++++++++++++++++++++--------------- 1 file changed, 33 insertions(+), 21 deletions(-) (limited to '2022') diff --git a/2022/organizers-notebook/index.org b/2022/organizers-notebook/index.org index 06167a87..895c8046 100644 --- a/2022/organizers-notebook/index.org +++ b/2022/organizers-notebook/index.org @@ -184,6 +184,21 @@ chatter in the other lists cc'd in this message; thank you. Ordered by importance. ** TODO Record intro/outro for day-1 and day-2 :zaeph: +:PROPERTIES: +:CUSTOM_ID: rec-intro +:END: + +- Opening remarks + - Schedule overview + - How to participate + +- Closing remarks Sat + - Thanks + - Come back tomorrow +- Closing remarks Sun + - Thanks + - + ** DONE Prepare for prerecs :zaeph: CLOSED: [2022-10-29 Sat 09:58] DEADLINE: <2022-11-04 Fri> :PROPERTIES: @@ -493,38 +508,36 @@ Agenda: - dev: export TRACK=dev; export TRACK_PORT=5906 4. Copy the password: - scp emacsconf-$TRACK@res:~/.vnc/passwd vnc-passwd-$TRACK + scp emacsconf-$TRACK@res.emacsconf.org:~/.vnc/passwd vnc-passwd-$TRACK - 5. Forward your local ports: + 5. Forward your local ports and connect via VNC viewer to the + appropriate forwarded port from your laptop: ssh emacsconf-$TRACK@res.emacsconf.org -N -L $TRACK_PORT:127.0.0.1:$TRACK_PORT & - - 6. Connect via VNC viewer to the appropriate forwarded port from your laptop - - xvncviewer 127.0.0.1:$TRACK_PORT -shared -geometry 1280x720 -passwd vnc-passwd-$TRACK + xvncviewer 127.0.0.1:$TRACK_PORT -shared -geometry 1280x720 -passwd vnc-passwd-$TRACK & (If this doesn't find a VNC server to connect to, you can start it with ~ssh emacsconf-$TRACK@res.emacsconf.org ~/bin/track-vnc~) - 7. Start recording. It's probably on workspace 2, so you can switch with Alt-2. Confirm that it is now broadcasting to the stream. + 6. Start recording. It's probably on workspace 2, so you can switch with Alt-2. Confirm that it is now broadcasting to the stream. - 8. Verify with MPV on your local system: + 7. Verify with MPV on your local system: #+begin_example - mpv https://live0.emacsconf.org/emacsconf/$TRACK.webm + mpv https://live0.emacsconf.org/emacsconf/$TRACK.webm & #+end_example - 9. With luck, the 480p streams will be up automatically as well. On your local system: + 8. With luck, the 480p streams will be up automatically as well. On your local system: #+begin_example - mpv https://live0.emacsconf.org/emacsconf/$TRACK-480p.webm + mpv https://live0.emacsconf.org/emacsconf/$TRACK-480p.webm & #+end_example - 10. Play a video. It should display the video and update the overlays. If you need to update the overlays manually, you can copy files from ~/data/emacsconf/overlays~ onto ~$HOME/other.png~ and ~$HOME/video.png~. + 9. Play a video. It should display the video and update the overlays. If you need to update the overlays manually, you can copy files from ~/data/emacsconf/overlays~ onto ~$HOME/other.png~ and ~$HOME/video.png~. - #+begin_example - cd /data/emacsconf/stream/2022 - track-mpv filename.webm - #+end_example + #+begin_example + cd /data/emacsconf/stream/2022 + track-mpv filename.webm + #+end_example - 11. Test Q&A. You can either wait for the video to finish or quit it with "q". + 10. Test Q&A. You can either wait for the video to finish or quit it with "q". You can paste in the URLs or use ~firefox /data/emacsconf/2022/index-$TRACK.html~ @@ -539,9 +552,9 @@ Agenda: - Alt-Shift-Left moves the current window to the left - Alt-Shift-Right moves the current window to the right - 12. Use OBS or ~pavucontrol~ to adjust the volume of BBB as needed. + - Use OBS or ~pavucontrol~ to adjust the volume of BBB as needed. - 13. Start an Emacs for emergency announcements. + - Start an Emacs for emergency announcements. *** Managing the stream from the agenda @@ -1118,8 +1131,7 @@ If that doesn't work, use the VNC session to switch to an Emacs window and type your message in. **** Kill the VNC server: -ssh emacsconf-gen@res.emacsconf.org "vncserver -kill" -ssh emacsconf-dev@res.emacsconf.org "vncserver -kill" +ssh emacsconf-$TRACK@res.emacsconf.org "vncserver -kill" | ~/bin/track-obs | start OBS with the track's profile and scene collection | | ~/bin/track-mpv file.webm | play the file using the track's sink | -- cgit v1.2.3