) everywhere in the org file?
- It's a custom #begin\_parallel block! See the main article linked below.
- Parallel section:
- What is used to produce colorful boxes around the cursor in your browser?
- Commercial software called ScreenBrush
- Why did you put optional arguments in a separate list rather than using cl-style argument lists? e.g. (defblock feedback (who &optional (color "red")) …) +1
- The first argument may take some meta-information when you define it, which is easier to handle with two arguments.
- Do you intend to try to upstream this amazing work into Org? :)+1
- no prior experience on how to upstream; suggestions and help appreciated
-
- Yes, I would suggest simply posting a short proposal for an org-defblock macro on the orgmode mailing list, and hopefully Bastien and other maintainers like Nicolas will discuss it with you. I think they would be excited to have this feature standardized in Org. +1+1+1+1 I am excited+1+1
- add a little beginner-focused documentation and this becomes another great reason to use org over markdown, I imagine the maintainers would love to have it
## Notes
- Main article: (HTML or 48 page PDF)
- Slides for this talk:
- [Reddit discussion](https://www.reddit.com/r/emacs/comments/k2whsy/declaring_new_special_blocks_with_arguments/)
- Elisp Reference Sheet:
- My Emacs init:
# [23: Tuấn-Anh Nguyễn: Incremental Parsing with emacs-tree-sitter](https://emacsconf.org/2020/schedule/23)
- Actual start and end time (EST): Start: 2020-11-29T09.49.24; Q&A: 2020-11-29T10.13.56; End: 2020-11-29T10.31.44
## Questions
- Q20: can we integrate it with spacemacs python layer
- Q19: The python mode example was pretty good. Is that something that one can use already?
- Yes, already using it at work right now
- Q18: Regarding Emacs integration, will it always need to be a foreign library or can it be included / linked directly in compilation?
- Building a parser from source needs Node.js so I don't know if it'll be in-tree and included at compile time
- Core library dynamic module, would be better to be included in core Emacs eventually. Language definitions might be better distributed separately.
- Q17: Is there a link to the slides?
- Yes, will post in IRC later. (FIXME: add link here).
- Slides:
- Q16: Are there any language major modes that have integrated already?
- Not yet (answered during talk)
- Typescript : discussing integration, not integrated yet
- Q15: Is it possible to use tree-sitter for structural editing?
- Covered by Q4 / Q8 / Q11.
- Q14: Is there a folding mode for tree-sitter?
- Not yet. There are multiple code folding frameworks inside Emacs, and it's better to integrate with these modes rather than writing something new entirely.
- +1 Would be nice if it worked with outshine mode or similar
- Q13: MaxCity on IRC asks: "That pop up M-x window. How do you get that?"
- ivy-posframe most likely . Or not. Cool!
- Custom helm code
- Q12: I'm new to the tree-sitter world. Is it easy to install/use it also on windows ? (I have to use winbloat at work)
- The usual approach is hoping someone else made a precompiled version for you and download it. Otherwise you'll have to set up a development environment with mingw-msys or whatever.
- Q11: Is it possible to use this for refactoring too?
- For the kind of refactoring inside a buffer, it's very doable right now with some glue code. For more extensive refactoring where you want to touch all files in a project, there needs to be some kind of understanding of the language model system, how they are laid out in the filesystem… even files that are not yet loaded into Emacs. That sounds like something a lot more extensive. Sounds like an IDE in Emacs.
- Q10: Can language major-mode authors start taking advantage of this now? Or is it intended to be used as a minor-mode? +1
- Minor mode depended on by the major modes
- Q9: I'm completely new to tree-sitter, how do I use it as an end user? Is there an easy example config out there by the organizer or otherwise that shows standard usage with whatever programming language? Or are we not there yet?
- Answering own question: Sounds like major mode maintainers need to integrate.
- Syntax highlighting is pretty easy to activate - nice, tree-sitter-hl-mode looks easy
- Need to add more examples to the documentation
- Q8: (Following on from Q4) Could there be a standardised approach to coding automatic refactorings in the future? e.g. so that whichever language mode you are using, you could see a menu of available refactoring operations?
- Not sure about this. Most refactoring operations are highly specific to a class of languages. Not one single approach for all the languages, but maybe one for object-oriented languages, one for Lisp-type languages, one for Javascript and Typescript…
- I meant the lisp and user interfaces being unified, not the implementations of the refactorings. But maybe it belongs in a separate mode on top. So you could have a defrefactor macro or similar.
- Q7: How extensive will the compatibility be between highlighting grammars for Emacs and those for Vim/Neovim with Tree-sitter?
- For the time being it looks like nvim-treesitter also uses the S-exp syntax for queries so it shouldn't be too hard. See
- Q6: Will it ever be possible to write tree-sitter grammars in a Lisp, or will JS be required?
- The grammar part is written in JSON, you don't need to actually understand JS to write it. Using Lisp would merely give you a s-expression version, that wouldn't buy you much.
- Ah, so all that is needed is (json-encode '(grammar …))? Great!
- Q5: Could you show the source that was matched by the parser in the debug view in addition to the grammar part matched?
- Q4: Could this be used with packages like \`smartparens\` that aim to bring structrual editing to non-s-expression based languages? AST-based refactoring?
- It is one of the goals, but not yet achieved.
- Q3: Do you think tree-sitter would be useful for Org buffers? I can imagine it being used to keep a parsed AST of an Org buffer (e.g. like org-element's output) updated in real time.+1+1
- An obstacle here is Org not having anything anywhere close to a formal grammar, so that would need to be corrected first.
-
-
- This is an informal description of it, not an actual grammar. Nevertheless, there's a few projects trying to codify a grammar. I'll dig up some links soonish.
- The element API is the formal grammar - canonic implementation. Org-syntax document is a draft of the text descrption of the grammar.
- Note: relevant mailing list discussion
- FIXME: Add link to a emacs-tree-sitter project/snippet for org-mode.
- Not sure if it is what you have in mind, but there is
- Q2: Will elisp performance be more competitive with gccemacs enough to make tree-sitter in elisp more attractive? (+1)+1
- The point of this project is to reuse other people's efforts, not rewriting them.
- The garbage collection may still pose some problems and introduce GC latency.
- Q1: Do you think that his package can be included into emacs/GNU ELPA?
- Yes, it is just matter of paperwork.
## Notes
- Project description: emacs-tree-sitter is an Emacs Lisp binding for tree-sitter, an incremental parsing library.
- (<- bindings)
- (<- parser)
- Regular expressions are not powerful enough.
- LSP has high latency and is resource intensive, oft.
- Extended video version will get uploaded eventually after the event. (FIXME: add link)
# [24: Andrea: Analyze code quality through Emacs: a smart forensics approach and the story of a hack](https://emacsconf.org/2020/schedule/24)
- Actual start and end time (EST): Start 2020-11-29T10.34.52; End: 2020-11-29T10.55.39
## Questions
- Q3: How large of a codebase could this be used to analyze? Are there known limits in size?
- Nope, so far I could create a microservice picture at work that has a few million of lines. I did not do stress test, but I am confident that (at least the hotspots analysis) does not break.
- Q2: Have you uploaded this file somewhere (or plan to do so)? This seems very useful so I would love to have these code snippets.
- It's totally my plan to make this accessible to everyone: we need more code quality for our feature (software is everywhere)! The plan was a series of blog and learn how to publish in MELPA later.
- That's great, make sure to announce it somewhere so we know when it comes out :D. Or maybe link the git repo that you are using for this.
- Q1: What is used to measure the complexity of a LISP file, from your point of view? The nesting level per chance?
- indentation is good enough to apply in general. Even lisp gets formatted in a standard way. Probably you can come up with a more specific and precise way, but indentation is a really rough metrics to give you a general idea. So take with a pinch of salt, but exploit to find weird things.
- OK, thanks for the response.
- Copied Q&A from IRC:
- How did you summon, resize and dismiss that window so seamlessly?
- org-roam and C-x0
- How did you resize it from 2/3 to 1/3 of the frame?
- golden-ratio-mode from golden-ratio
- Have you considered doing this analysis by function instead than by file?
- I did not have chance yet to integrate that, but the theory is described in Adam's 2nd book: Software Design -Rays
## Notes
- Book by Adam Tornhill "Your Code as a Crime Scene":
-
- Beautiful circles diagram.
- especially for big projects with many collaborators the codebase may become less transparent
- hotspots: files that have had many changes based on git history; likely sources of bugs
- Complexities of a file are measured in terms of the indentation, at least in the case of Java.
- "If a lot of lines are deleted, that's usually a good sign. If a lot of lines are added, it's a sign of technological debt"
- another beautiful diagram (big circle with files on periphery, linked together with curved lines) showing associations between changes in files: when this file gets changed, it usually means that this other file is also changed
-
# [25: Zen Monk Alain M. Lafon: Traverse complex JSON structures with live feedback](https://emacsconf.org/2020/schedule/25)
- Actual start and end time (EST): Start: 2020-11-29T10.57.19; End: 2020-11-29T11.07.08
## Questions
- Q4: Any plans for counsel-yq and/or -xq? ;-)
- counsel-jq currently just shells out to jq. Adding tools build on top of jq (at least yq is afaik) would be very easy. We could employ a strategy pattern to find the right tool based on the current major-mode with a configurable fallback. Here's the place where the shellout happens:
- Would you be interested in making a PR for that?(;
- Q3: Why repository\_url did not autocomplete in addition to the result (I know that it is ivy thing but possible to configure?)
- There's no autocompletion for the search query, but that would be a great addition. That would theoretically be possibe by employing jq to look ahead in the current tree and providing options for autocomplete. I'm not certain if Ivy does have autocomplete for search queries, though.
- If somebody has more knowledge on that and would like to ping me up or provide a (draft) PR, I'd be happy to help out in that endeavour!
- Q2: is it difficult to provide autocompletion for the json query in the minibuffer?+1
- Good question. I'd be curious, too. It's the same question as Q2 where I went into a possibe scenario.
- Q1: Is it possible to search in arbitrary deep objects? E.g., an AST represented in JSON.
- counsel-jq uses jq under the hood, so all queries that are valid queries in jq should be valid in jq. Hence, I'm inclined to say 'yes'(;
## Notes
- 200ok GmbH ()
- Play Emacs like an instrument:
- jq:
- ivy supports dynamic sources. So does helm I guess.
- counsel-jq:
- organice:
- Entire presentation inside Emacs, with a count down reminder.
# [39: Richard Stallman: NonGNU ELPA](https://emacsconf.org/2020/schedule/39)
- Actual start and end time (EST): Start: 2020-11-29T11.09.04 ; Q&A: 2020-11-29T11.15.59; End: 2020-11-29T12.04.31
## Questions (speaker can answer in any order or choose which ones to respond to)
- Lunch break is coming up - it's okay to continue this conversation in the pad or IRC if you like (or continue, if you like)
- Okay! Wrapping up, thank you so much for live questions and answers
- Q30: Would you mind sharing your Emacs configuration files?
- RMS: Configuration files are personal and will not be shared.
- Q29: Have you ever looked into magit?
- RMS: No, but I might when it gets merged into Emacs.
- RMS mentioned he heard it's being worked on and it indeed is, tarsius wrote about the progress on that on emacs-devel some time ago.
- Q28: Are there any more interesting projects you have in mind over and above NonGNU ELPA and look for people to contribute?
- Q27: Is interfacing with non-free hardware enablement libraries like OpenGL or Vulkan with free code considered a "big compromise" ? (those libraries are for hardware accelerated graphics, if you aren't familiar)
- Q26: How often do you personally use Emacs?
- Most of the day. Occasionally uses libre office and media players. Occasionally even SSH into a machine that runs Emacs on it.
- Read PDF files a lot. Would be nice to read and edit them in Emacs.
- (ann: pdf-tools might help.)
- Uses Xournal ( ) to annotate PDFs.
- Q25: What is your opinion on higher education, especially given the current situation with COVID-19 where students are required to use non-free software to comply with their courses?
- He'd resist. However, he admits that he is in a position where he can resist, especially as a Free Software advocator.
-
- However, there are a lot of points in-between saying "no" all the time and never saying "no" at all. You can still advocate Free Software and state your reluctance.
- exactly as a student that is tho only one in the department that uses GNU/Linux, if something doesn't work its my fault for using fedora (even when windows install doesnt work either) and i am on my own.
- Q24: Is there any plan to moving more packages from core emacs into ELPA? Would you be opposed to it? For example: newsticker, libraries with niche appeal.
- Q23: How do you see the future of GNU Emacs ? (btw, thank you !)
- RMS: I don't see the future.
- "From past experiences, there will be challenges."
- Q22: If you knew that you would get hit by a bus tomorrow, say because of a fortune-teller, what would you leave behind in terms of advice for stewardship of Emacs and its future?
- Focus on keeping the community strong in defending freedom.
- If given the choice to have more people developing the software or defending the software, choose the latter.
- Guard your soul carefully. :P
- (The question could be rephrased with, say a brain tumor or something. Not to be morbid! just wondering if you had such thoughts. about guidance
- Or even just "what do you want your legacy to be defined as?"
- Q21: Which are your preferred packages that you usually use?
- Q20: What tools from pre-UNIX days do you miss?
- DDT as login shell (!) (<- didn't he say gdb? don't think so. gdb is not pre-UNIX as it's GNU) NO. DDT was (I think) a TOPS20 thing.
- What is DDT? Dynamic Debugging Tool. (I guess) \_Manual.pdf
- Q19: Magic wand time: what would you change about free-software? (aside "yay, we won") [ETA: magic wand="make a wish about what you want to see happen, have happended differently, etc."]
- Don't give up! 20yrs is nothing! We'll get 'em yet.💪
- What is Magic wand time? Nah, if you can use the magic to change anything
- Show everyone why most software needs to be copylefted, so that our community does not need to use software produced by proprietary software developers.
- Q18: What do you recommend to a recent graduate who wants to get his first job but can't find one that deals with free-software and every job or interview he gets it's non-free software related?
- Very sad thing. I would get a different kind of job. I would live cheaply (more flexibility).
- Q17: You've been a very important part of the Free Software movement, some argue the most important part. I very much appreciate that! Thank you. I think it's necessary to encourage more diversity within Emacs, however, that's difficult to do with the instances of sexual harassment that have come out. Are you or do you plan to work on addressing those situations and preventing further situations going forward?
- Not going to be answered. (Everyone, please also remember CoC)
- I will forgive them if they stop bullying.
- Emacs is being extended in Emacs Lisp, and implementing something else will be hard to nearly impossible, though nice.
- Note from RMS: "If someone who has condemned me unjustly takes it back, that will make it safe for me to empathize with any feelings of hurt that pers might have felt as a result of the misunderstanding and I will be very glad to show compassion."
- Q16: How is the current state of the work in progress pagure git repository? Is it going to have the main Emacs repository on it?
- That's more of an FSF project (the FSF forge project). There is ongoing work on it by the FSF tech team. Also agreement to possibly run another VM of the forge software for the GNU project.
- Q14: Which is your favorite programming language ? if lisp, which variant?
- Don't exactly have a favourite variant.
- Emacs-Lisp was originally used in an environment with only a .5MB user memory environment. That also contributed to the design of elisp.
- Q13: Is it ok to use the AGPL for Emacs packages?
- Yes.
- Q12: Won't the non-GNU ELPA link to non-free sites like GitHub? This does:
- Mistake to talk about a non-free site. A site is not a program. Programs
- It also depends on whether the JavaScript is non-free.
- see for a description of what Free Software is.
- Same for GNU ELPA
- Q11: Who gets to make the final decision regarding NonGNU ELPA? Is this a community decision or something that you get the last word on?
- The Emacs maintainers will be in charge of this.
- Q10: Which distro of GNU/Linux do you use? guix? or something else?
- Trisquel
- Q9: Are there any plans to implement security considerations in NonGNU Elpa? Required code signing or other?
- Probably should. Emacs maintainers verifying can take care of the security. With automatic copying, we'll need to make sure we're fetching the packages securely
- Q8: Do you / have you used Vi(m) or evil mode?
- No.
- Q7: When you wrote that you could add a package to non-GNU ELPA, are you implying that you would add packages with or without package maintainers knowledge?
- Yes. Of course! The packages are free software. Everyone is entitled to redistribute them. That's the idea behind free software.
- The idea, that packages in a package archives must only be mirrors contradicts(?) the idea of free software.
- If a package is being maintained by developers cooperating with NonGNU ELPA, then they're (the NonELPA maintainers) are fine with it, as there is enough to do.
- Q6: Why do you insist on using 'per' and 'pers' when it's clear the LBGTQIA+ community is generally not happy with that language?
- not happy with using "they" as singular, causes gratuitous confusion
- do not accept the demands of other people re: changing my country grammar
- stallman.org/articles/genderneutrality.html - not a GNU Project policy, personal ideas on the subject
- seems to be the correct link
- If you feel offended: contact RMS privately and explain your reasons
- Q5: Any thoughts of packages being added as (a school of thought discarding licenses altogether) into ELPA ?
- Not familiar with the URL, unlikely to have much in common. Disregarding licenses - basically asking to lose. Not going to disregard the question of whether the software we recommend to people is free software or not. That's basically blindfolding yourself to the legal issues. If you want to contribute to the free world, put free licenses on your code
-
-
-
- Q4: Is it possible to work with the MELPA team to integrate that into Emacs in a better way?
- No. The goal doesn't make sense. MELPA, the way it's done, doesn't belong within Emacs. (Copyright assignments unfeasible). Could MELPA be merged with non-GNU ELPA? MELPA doesn't modify packages, puts packages in with only a little bit of checking. There are a lot of packages in MELPA that we'd like to get into non-GNU ELPA. They've got to be looked at one by one. If MELPA contributors want to get involved, that would be great. Haven't tried asking them, still getting things set up.
- Q3: I don't quite get the benefits of a non-GNU ELPA with respect to other archives such as MELPA. Can you please give use some more details on what you have in mind? Are you seeking for control?
- I hope that people now see the benefits.
- Q2: Does nonGNU ELPA already exist? Or is this a sort of "plan" for the future?
- In between. The creation of it has started. There's an archive and you can download packages. There's a repository to put it in. It's not supposed to be like ELPA where there's one repo for everything. Some packages will make an arrangement with the developers who will do things as things should be done, and their code will be copied over automatically (or manually with verification). In other cases, we'll need to have our own repo for particular packages. Still working out the procedures, how to make the arrangements with developers, etc.
- Q1: What is an example of a package currently in a non-ELPA repo that does not work well with Emacs? Since integration with Emacs is described as a problem.
- s.el - that made me aware that there's an issue here. Beautifully written package, very useful for people. There's just one thing wrong with it - it gobbled up the namespace of symbols starting with s-. I was shocked to discover that someone had used such a short prefix without coordinating. Any attempt to use s- for anything else = problem. New symbol renaming feature - the idea is that you rename that file to something else, and then you define symbol renaming to run the same code without interfering with global namespace. … We can put packages in non-GNU ELPA and make changes to them to help them fit in.
## Notes
- ELPA was created to make it possible to release Emacs packages independently of Emacs releases.
- Package archives in general lead to a boost of package development/generation. However, those packages were created without notifying the GNU Emacs team/GNU ELPA managers.
- NonGNU ELPA will not require copyright assignments, but must be free (as in freedom) software.
- GNU ELPA is one big git repository, and giving someone access grants them access to everything.
- Note from RMS: "If someone who has condemned me unjustly takes it back, that will make it safe for me to empathize with any feelings of hurt that pers might have felt as a result of the misunderstanding and I will be very glad to show compassion."
# Lunch break
- 2020-11-29T12.06.04 2020-11-29T13.05.00
# [26: Pierce Wang: Emacs as a Highschooler: How It Changed My Life](https://emacsconf.org/2020/schedule/26)
- Actual start and end time (EST): Start: 2020-11-29T13.06.20; Q&A: 2020-11-29T13.16.52; End: 2020-11-29T13.21.51
## Questions
- Q6: How would you introduce other classmates to emacs? Meaning what's the "gateway" drug to emacs?+1+1+1
- Would probably start with doom or spacemacs
- try to find their reason for using emacs
- Q5: What made you use Vim in the first place? Were you looking for a note-taking system in plain text (such as Markdown), or were you using it for programming?+1+1
- Used vim first time mainly for programming not for Markdown.
- Q4: I tend to think that life in school-age is somehow simple to organize since categories are easy to distinguish (years/classes, hobbies, …) in contrast to business life (many projects in parallel with many touch-points in-between them). From your point of view: do I have wrong memories on my time in school or did school change that much?
- School makes it easier to have a structured system.
- Q3: Assuming you keep real time notes during your lessons how do you manage to keep up with the lecturer's speed. I can write latex fragments pretty fast but I am not yet at the point that I can keep up with them. What are the tricks/snippets you use? Oh and do you have a git repo with your Emacs dots that we can see?
- Types pretty fast (~110 wpm); for math/science uses cdlatex, yasnippet expansion, and latex fragments
- Emacs config!
- Q2: What do your friends think :) ? (Do you collaborate with your friends?)
- Overwhelmed them by the positive experience at first :). Now that the configuration is somewhat stable Emacs doesn't come up as often in discussions, though. [someone can probably come up with a better summary of this answer]
- The general concensus is that it's an amazing piece of software, but they think it's too complicated for them to use. I think they also still have PTSD from the initial days when I was talking about Emacs **all** the time (whooops)
- Q1: Do you use Emacs for school assignments?
- answered in talk: yes, org-mode, export to latex -> PDF
- one org-mode template file with latex-fragments that is used for exporting
## Notes
- Discovered Emacs from:
- Tried various note taking tools - settled on Org mode in Emacs.
- YouTube channel:
- Emacs config:
# [27: Vasilij "wasamasa" Schneidermann: State of Retro Gaming in Emacs](https://emacsconf.org/2020/schedule/27)
- Actual start and end time (EST): Start 2020-11-29T13.23.01; End: 2020-11-29T13.33.00
- Alternative stream for extended talk: or
## Questions
- Q5: Do you think would be possible to write some compiler in order to write chip-8 games on elisp?
- It could be possible if you restrict yourself to some very limited elisp subset or lispy assembler. For the latter, here's some projects to draw inspiration from:
-
- ->
- ->
- Q4: What's the biggest perf bottleneck for your emulator? does it spend time executing your lisp or something else in the Emacs infrastructure (eg redisplay)?
- Redisplay was super slow, it's like 3-4x as slow as executing the CPU cycles
- Okay that's the reason why Gccemacs does not help :)
- Q3: do you think that you make our tiny console based in the chip ATMega like Arduboy?
- I'm sorry, I didn't quite understand the question, could you please clarify it? I'm not exactly a hardware person, might have to defer it to someone else.
- I've looked at Arduboy and I believe the DEFCON CHIP-8 Badge is the closest to this:
- Q2: Any tutorial to start? I want to make my game now, no, for chip8
- I'm not aware of tutorials, but there's CHIP-8 resources online. You can of course study the assembly of existing games, that's how I figured out the tricks that broke my emulator :>
- Q1: How did you manage to present a game engine without showing any game? :-) Show us!!
- See the alt stream, it has several demos not shown due to time constraints
## Notes
- Slides available at
- Repository available at
- More on the alt-stream:
# [28: Erik Elmshauser and Corwin Brust: Welcome To The Dungeon](https://emacscon.org/2020/schedule/28)
- Actual start and end time (EST): Start 2020-11-29T13.34.52
## Questions
- Q5: Which software did you use for your presentation
- Corwin: Everything you saw was OBS, Emacs or the desktop wallpaper engine from steam
- Q4: Have you played around with generating SVGs programatically in Elisp? Sorry if I missed that! missed the intro
- Q3: could you talk about getting the project into savannah/gnu?
- Not sure whether this is still canonical:
- Q2: Could you explain more of what the game is. It would help us comprehend this better. +1 Could you link the handbook. Would be interested in giving a read, I love RPGs.
- If you send me your thoughts on the most important bits to finish I will :)
- like RPG's but without the role-playing. Always 8 characters that can be divided between the players
- Q1: I'd like to see a demo as well! :) what does it look like, what can it do?
- (please add your question on the top of the list)
## Notes
-
# [29: Erik Elmshauser and Corwin Brust: Pathing of Least Resistance](https://emacsconf.org/2020/schedule/29)
*This time slot was combined with the previous.*
# [30: Gabriele Bozzola (@sbozzolo) : A tour of vterm](https://emacsconf.org/2020/schedule/30)
## Questions
- Q5: Does/will this work with 'emacs -nw'?
- yes, it does
- Q4: Thats a nice looking prompt, do you have it on a git repo we could see, or something of that manner? Thanks, I use bash right now so I didn't know it was the default on the others.
It is not the default, but it is available easily with oh-my-zsh or similar on fish. I think the prompt is this:
- Q3: Is there a plan to avoid the initial compilation step?
Not any time soon. You will have to compile vterm the first time you start it.
- Q2: What are differences between Eshell and Vterm?
- performance
- Vterm is like xterm but in Emacs, eshell is like bash but in Emacs.
-
- Q1: could you put your testing scripts up somewhere?
- 256colors:
- title:
- I cannot pastebin the 1MB of data, I pasted a sample of it:
## Notes
-
# [31: Grant Shangreaux: Lakota Language and Emacs](https://emacsconf.org/2020/schedule/31)
## Questions
- Q4: Did you write the company backend to complete on Lakota words?
- With a Lakota dictionary file, one could probably leverage other company methods for completion.
- seems to be company-dabbrev, it happens automatically when typing in org-mode at least. unfortunately the only digital Lakota dictionary I'm aware of is non-free, so I'm not sure what to do about that.
- yeah, I'm not sure, but the dictionary files needed would really just be word-lists, so maybe there is a way to find or produce something of this sort.
- Q3: Why did you decide on e.g. a' for á? In my country's input method (which is Dutch, and in french, german, etc.) the default is to put the accent first, so 'e -> é.
- for me, this was my first experience with it and it made more sense in my head to have the modifier come after. its possible i read about postfix notation in a tutorial i found (and lost) that demonstrated Quail input modes. The X11 input has it as a prefix, so I may change it in the future. I'd like to consult with other Lakota speakers and tribal members, however, as it seems worthwhile trying to get consensus from native speakers on usage.
- Q2:Can you give us a demo of you typing in either Lakota input method?+1+1
- Q1: Advantages of using Emacs Input Methods over something like xcompose?
- → Compose
- ah yes, i found something about this when making the X layout, but it was not immediately apparent. Emacs was easier for me to inspect and learn about than X, easier to iterate on as i was learning how it all worked. Emacs can re-eval the layout definition and give live feedback, while X required a restart to try different things. Emacs is also cross platform, so anyone can easily install this. also, sharing an X config seemed more difficult to me, I don't know how to tell someone to install it properly :(
## Notes
- Quail
-
# [32: Eric Abrahamsen: Object Oriented Code in the Gnus Newsreader](https://emacsconf.org/2020/schedule/32)
## Questions
- Q3: Have you done any other projects using EIEIO and/or defstruct?
- "Right, EBDB is super deep into EIEIO, and was kind of written as a project for learning it, and the new gnus-search library is a more restrained usage. The search engines are defclasses, and much of the code is shared, which works quite well."
- Q2: Is there may activity on maintenance of gnus today? (and is Lars involved/aware of this work?)
- "Yes, there's still development going on. I don't think Lars is very focused on Gnus right now, but I run all changes by him first. He fixes bugs, but as far as I know, I'm the only one adding features right now, which is a terrifying thought."
- Q1: How much of this 90's funny code :) can be replaced and how much will have to stay forever?
- Eventually I think we can get most of it out of there. I was
- happy to be able to replace obarrays-as-hashtables with real
- hashtables, though that was a very painful process
## Notes
- Famous last words: "Sometimes the only thing that's worse than not knowing why something doesn't work is not knowing why it does work."
# [33: Fermin MF: Maxima a computer algebra system in Emacs](https://emacsconf.org/2020/schedule/33)
## Questions
- Q9 Is it is possible to include maxima in org files similar to jupyter notebooks? (Does ob-maxima have support for the :results graphics header argument of org-src blocks?)
- Q8 Are you planning to upstream your package into Maxima? (would be nice :)
- Q7 In which University do you start to use Maxima?
- Q6. Is there support for images in maxima-mode?
- Q5: Is Maxima's syntax a strict infix lisp syntax or are there exceptions and special cases? Yes I mean Maxima itself.
- Q4. Is maxima easy to get into in your opinion? (has its quirks though!, mailing list is usually helpful)
- Q3: Do you plan to amend ob-maxima to support named session for maxima code blocks in org mode (e.g. begin\_src maxima :session **my-maxima**)? (the current implementation supports exactly onesession named **maxima**)
- Q2: how does maxima compare to sagemath in emacs? does maxima have more support because it is written in common lisp whereas sage math is written in python?
- Q1: So I am an avid octave user right now (had a matlab lesson in uni and so I knew the basics and it was easy to get into), what would you say are the advantages of Maxima over Octave as from my understanding they are pretty similar. I would be interested in trying it out but I am not sure if its worth it compared to Octave. (Octave is a matlab "clone", not meant for analytic calculations, more matrix multiplications etc.)
# [34: Matthew Zeng: Extend Emacs to Modern GUI Applications with EAF](https://emacsconf.org/2020/schedule/34)
- Actual start and end time (EST): Start 2020-11-29T16:05; Stop 2020-11-29T16:28
## Questions
- Q9: Do you think that this tecnology could to be on core of Emacs any time? or fork of Emacs?
- Not yet and I don't know if it ever will, since EAF uses many other dependencies that one needs to install themselves (see README); and I don't think all of them is GPL (though using open source licenses)
- Q8: I use pdf-tools currently for my pdfs inside Emacs, would you consider this a better alternative to that and if so why? Although I am definitely trying it because the browser looks incredible, possibly the best implementation of an Emacs browser I have seen, I would love to hear your opinion on the pdfs compared to something like pdf-tools.
- PDF-tools is great, it would be an awesome option if you can't run EAF on your machine. However EAF PDF Viewer is just **a lot faster and smoother** as it uses PyMuPDF as its backend.
- Oh, thats great actually, I have noticed it being a little choppy at times, I am excited to try EAF in general because it looks awesome and if its faster than pdf-tools I will probably also switch to it for my pdfs. Thanks a lot for the talk, one of my favourites in this EmacsConf, it gave me a lot of great tools to try inside Emacs!!
- Thank you!!!
- Also because pdf-tools is much older than EAF, it had more attention and more people working on it, so there are definitely more features than the current EAF
- Q7: Can you use the PDF viewer as a viewer for LaTeX files, with reverse search support with e.g. AucTeX?
- You could do that with some simple elisp functions, and EAF PDF Viewer now updates itself automatically whenever there is a change to the file
- Reverse search is currently not available, we need more people to help us work on it! :-)
- Q6: What javascript engine is the web browser in EAF using? Also, what web browser engine is it using?
- QtWebEngine,. (from the Qt Wiki: )
- Qt WebEngine uses code from the Chromium project. However, it is not containing all of Chrome/Chromium;
- Auxiliary services that talk to Google platforms are stripped out (nice)
- The codebase is modularized to allow use of system libraries like OpenSSL
- Binary files are stripped out
- Q5: Does the web rendering happen in a subprocess, or can loading a big page cause emacs to lag?
- Not at all! And that's one of the biggest advantage of the EAF project, it utilizes all the powerful Python features, like multithreading.
- Q4: Do you have control over the javascript that runs on these pages? Also is there a blocklist feature? (True ad blocking might be impossible, I understand)
- As my talk just (or will be shortly) mentioned, you can disable javascript altogether. So far there isn't a blocklist implemented, but I don't see a reason not to be able to implement this feature in the near future. EAF itself uses Javascript (free code) to implement some browser features (like the Vimium binding), so turning off Javascript will make the feature stop working as well.
- Q3: (Feel free to ignore this one if it is off-topic) How big is free software movement in China? Is there any organisation like FSF there?
- Very recent years there are A LOT of open source movement in China, however not free software strictly speaking;
- There are a lot of open source clubs in the chinese unversities now that people actually starting to get interested about open source in general, that's a huge improvement than decades ago i'd say. There are still many places to improve.
- Although not Free Software Foundation, literally this year the first ever open source foundation is established in China, called OpenAtom Foundation: (in chinese)
- Q2: Is there anyway to implement EAF without the reparenting behavior from X11?
- That's one of the challenges right now to get EAF working on other platforms. We're always looking for people to help out.
- Are there any ideas on this at all? I can try to help out but don't know what's even been tried (and perhaps has already been ruled out)
- So EAF is currently using \`QWindow::setParent \`, not Xreparent, so it in theory should be able to support at least Windows (iirc it provided API for setParent function to interact with)
- However QWindow::setParent doesn't work on native wayland, you can get more context in here:
- Q1: Have you experimented with using Hy (aka Hylang, a Lisp that compiles to/runs in Python) for EAF, to avoid having to write "real Python"?
- Not yet! Will have a look into it later :-)
## Notes
-
# [35: Zachary Kanfer: WAVEing at Repetitive Repetitive Repetitive Music](https://emacsconf.org/2020/schedule/35)
- Actual start and end time (EST): Start 2020-11-29T16:29; Stop 2020-11-29T16:46
## Questions (note that we don't have audio out from Zachary's computer in BigBlueButton, so any music demos will need to wait for a recorded video)
- Q9 : Any MIDI mapping possibilities? (Sorry Q8)
- Q8: What were some of the challenges with writing a special-mode for Emacs? I'm interested in getting into this in the future, but I'm not really sure where to start.
- That'd be awesome, thanks! Will do
- I used define-derived-mode () to make this mode. It's really useful! For more information, I recorded a talk about making major modes () a few years ago, at an EmacsNYC () meeting.
- Q6: Do you think would be possible to add a set of recorded sounds in order to use those?
- Yes! Part of zmusic is tooling to make wave files, so it should be possible to slice-and-dice input data, and output valid wave files.
- Q7: have you written any actual songs (in RRRM/WAVEing)? Can you play one ?
- Q5: Are there any open source musical instrument sample libraries that could be used? E.g. "play A 440 on Piano sample 1" to provide better quality notes than built-in tones
- Experimentation would be fun. However, the nice part about Emacs is that it doesn't have any external dependencies, you only need a way to play WAVes.
- Q4: What is your musical background? Do you play any instruments?
- Random instruments, started with recorder, played cello for a long time, now playing guitar.
- Q3: Any chance for an Emacs tracker/mod player? (plays several samples arranged in the same top-down fashion with effects applied to them for chiptune and keygen music)
- Q2: Will you play us another song? (RIP ears — who needs 'em, this is awesome! it is!)
- UPDATE: can confirm, it was easy to play a song myself :-) Very nice!
- However git clone didn't work, I wonder if I'm doing it wrong
- Had to browse to and copy/paste.
- It's mercurial! (I have Opinions about version control systems). Try \`hg clone\` instead, or copy/paste from the link directly.
- BAM! hg clone works fine
- Hooray!
- Q1: Why do you go top-to-bottom for time progression and left-to-right for low-to-high in stead of doing it pivoted? (e.g. higher is higher tone, left-to-right is time progression). This is awesome by the way!(+1)
- The initial app (the inspiration) worked this way. It is definitely something worth looking into.
## Notes
- notes, references, and links at
# Closing remarks (Sunday)
- Start: 2020-11-29T16:48; Q&A: ~2020-11-29T17:05; Stop: 2020-11-29T17:24.
> Emacs is very, very complicated. And using computers is hard. With Emacs we have an ideal opportunity to learn from our errors. To take on hard work with diverse groups. And to effect lasting solutions. To make Emacs, and thereby any word-or-software-thing, in practically any human and spoken language, easier to learn and to use. Forever. Life doesn't come with warning labels or margin notes. We have a blank map and an uncertain number of batteries for the torch. But there's a light in the darkness. It's freedom. It's the idea of giving to people something that cannot be taken away.
–Corwin Brust, as read by Leo Vivier
## Stats:
- 16 talks today, 37 total
- Peak of 320 viewers of /main.webm and 15 viewers of /main-480p.webm (last year: ~270)
- 126 people on the Etherpad
## Next steps:
- Emacs meetups - there are a few linked to in the Emacs News Highlights talk
- Collaborative pad:
- Meta-discussion at the end - add things that worked well, things that can be even better
- We'll make a copy and post it to
- We'll be posting videos and other resources to over the next few weeks.
- Follow-up questions
- If you spoke at the conference, please feel free to add follow-up information to your talk's page or contact an organizer to add things for you
- If you have questions, check the individual talk page for follow-up info or search for the speaker elsewhere
- Mailing list for updates:
## Thanks again
- the Free Software Foundation, especially the tech team, for support and sharing their BigBlueButton host
- Volunteers: bandali, bhavin192, bremner, dto, jcorneli, mplsCorwin, publicvoit, sachac, seabass, zaeph
- #emacsconf-accessible - thanks to jcorneli, seabass, dto
- Thank you to everyone!
## Oops! The stream will be quickly restored so that we can play wasamasa's demo
## Questions
- Q16: Will you publish the Etherpad as-is, or will you clean it up a little bit, e.g. fix spelling miztekes, grammar bad, identifiy answers to the questions and similar? (That might be time consuming)
- Q15: Will the Etherpad be archived somewhere on emacsconf.org?
- Yes, we'll link to it from emacsconf.org/2020 like last year, and we can copy the sections to the individual talk pages as well
- Q14: Also, it's bandali's birthday tomorrow! =) - sachac
- Happy birthday bandali!! Its not early, for me its already after 12 :D
- Happy birthday!!
- Q13: wasamasa's demos will be played after the closing remarks
- Q12: Congratulations on another emacsconf everybody! - <3 brett
- Q11: Many people seem to be interested in the video's that will be available later. I've got recordings of the entire conference and the ability to share them now. Do I have permission to do so? Is this OK copyright wise?
- The videos are CC By ShareAlike, although it might be nice to have people linking to the emacsconf.org site and video archive so that they can discover the other talks from the previous years, so it might be nice to wait
- So if I share a folder with the video's including a readme with the licence and a link to emacsconf.org its ok?
- let's check with bandali, it would be nice to have help getting stuff out =)
- @OP: The team would welcome help very much. Feel free to contact Amin on bandali@gnu.org
- I'll do the upload and will post the link in #emacsconf-org so you can see if its to everyone's liking. Also i'm happy to help with the cutting process.
- Most of last year's conference is also there
- Q10: Favorite moments/talks from this the past two days?
- Aside from all the awesomeness of the talks, I really appreciated how y'all kept things pretty friendly and respectful and kind. =) - sachac
- Q9: It's not a question but Sacha Chua, I am one of the people that created Emacs Planet in Spanish. Could you visit it and include in your news? :-)
- oh, is down right now, do I have the right URL? it's only temporally -
- Sure, I can pull in the RSS . Thanks, the next week will works.
- Q8: Thanks a lot for eveything these last two days!! This conference was so epic, I loved it. +
- Q7: Sacha, have you thought of organizing the whole library of Emacs News, so people could find things by category/topic (other than searching across all the web pages)?
- - happy parsing
- Q6: Great conference thank you very much. The schedule of the emacsconf this year is not so APAC-friendly. I wonder whether there is any plan to accommodate the APAC timezone in some way?
- Sure, want to organize one? =) - sachac
- I'll help (orgg) (thanks I'll get in touch - dragestil)
- Q5: Why Corwin Brust use Windows?
- It's currently a necessity.
- Q4: Are there any tools that you wish existed in Emacs that would help with organizing these confs?
- dungeon-mode as colaboration space? meet there and build groups? let emacs be THE GAME?+1 +1
- answer from random user: etherpad org-mode! Live-editing an org-file together!+1 (please somebody work on this project so that we get a good solution here!)
- Well, yeah, but that's pie-in-the-sky… Maybe next decade? haha :)
- There's already a project that has started some work on etherpad+Emacs: , but it's currently on hiatus and doesn't support collaborative editing. Maybe a challenge for someone who wants to tinker with Emacs Lisp? :)
- Wow, that's great!
- Look at crdt.el — it is very close to ready. Ray (RSP) and I were using it for some of our work together on ob-servant. Qiantan is responsive to bug reports, and has support for Org mode as a priority
- We weren't quite sure how it might deal with 100+ people, but maybe! (also, ob-servant is a great name =) )
- Only 100 choose 100 ways to find out :-)…
- But yeah to be clear it definitely wasn't ready for this year. Maybe next year!
- On ob-servant, all credit to Ray for the clever name (and 99% of the programming as well!)
- [Also looking forward to seeing crdt.el connect with emacs-tree-sitter — sync the tree!…]
- Q3: Amin, are you wearing a suit too next year?
- Q2: Where do y'all see Emacs going in the next year?
- More awesomeness!
- Q1: Why is Leo so sexy? Too Sexy even? I want a Leo Twitch Channel to can see he all days! Bandali isn't bad either!!!!
-
# General Feedback: What went well?
## Pre-recording the talks was a win … less chance of failure live.
## I really liked how questions where approached with this Etherpad. I think it is a very smart idea and better than most things I have seen in other kind of conferences. This is very nice and organized. Really excited for tommorow, could only watch the second half of the stream today (looking forward to see the rest when uploaded) but the talks where awesome. Thanks for everything. +1
## "here is a link for mpv" approach to livestreaming is much appreciated +1+1+1+1
## bandali super helpful and responsive with AV issues +1
## the timestamps on all talks in etherpad are very welcome!
- Sorry, I missed the first few talks to time-stamp :-(
- Ah, don't worry. How did you even do that? I saw some $… magic?
- $$tt is mapped to the current second like 2020-11-28T22.43.55 via autokey (Linux)
- See for "Snippets"
- Got it👍
## I love having the Etherpad available immediately during and after talks. I know recordings and more are coming out later, but having access to notes, questions, answers and links is amazing!
## The streaming setup is probably the best result I've seen when doing it with free software. Is the source/config available somewhere? Particularly curious about usage of gstreamer/icecast. Would love to see an organizer post-mortem talk/post so others can reproduce and improve on.
- (See colophon below)
## Karl's Etherpad maintenance tasks during the event (for reference)
- when a new talk starts:
- clear authorship colors by clicking the "strikethrough-eye" in the icon bar
- add current line number (approx) at the very top of the Pad to ease navigation
- cut title of upcoming talk and paste it in order to colorize the heading to ease navigation
- log starting time
- Karl was using an adapted ISO format like "2020-11-29T20.06.49" and manually corrected it from CET to EST (EST = CET-6hrs)
- log Q&A start time (if any Q&A)
- log end time
## We managed to get the alternate stream up and running! I just need to remember that my laptop has a mute microphone shortcut instead of fussing around with muting in both OBS and BigBlueButton… - sachac
## Low-resolution stream was appreciated, and running it on live0 worked fine.
## Super-nice to have so many people helping out. zaeph was monitoring audio, calling up speakers (yay emergency contact info), keeping track of the time, checking in people… jcorneli, dto, and seabass were describing things in #emacsconf-accessible. - sachac
## HUGE improvements / gains since 2013 :-) Which was awesome too — the first Emacs Conf! — but WOW this is a truly international event w/ 100+ participants at any given time. Amazing work. -Jcorneli
# General Feedback: What to improve?
## A few speakers jumped right into their talks without providing enough context. +1+1+1Perhaps the organizers can introduce the topic with a summary?
- +1: A short introduction on the topic might be helpful. "Hi, I'm and I'm going to talk about , a ".
- Added to pre-talk tech check
## why are talks starting ahead of the schedule? what if i want to skip some and come back later? can i count on the schedule being follwed?
- From conference experience I recommend showing up a talk earlier than planned :>
- Maybe add "roughly" infront of the very specific time-stamps of the schedule to emphasize its character of not being exactly planned?
- Sure, I'll add bold to "Please note that the times on this schedule are a rough approximation, and that the talks might be rearranged or dropped depending on speaker availability.", and move the disclaimer from the bottom of the individual talk pages further up.
- Since we've had the disclaimer and from my personal experience I know that people likely miss such disclaimers, I do think that "2:18 PM" -> "~2:18 PM" would be more visible.
- Added ~ =)
## Maybe provide the talk list as an org-file with timestamps? That way we can add it to our agenda :)
- Sure, you can look at 2020/submissions.org in the git repository you can check out via the instructions at
- Oh, wow. Thansk! Completely missed . Now I only need to come up with some elisp to change all timestamps into my timezone. :)
- See above discussion about the approximateness of the times. =) Just tune in when you want, and then check the schedule to see roughly where we are in terms of talk order, maybe? - SC
- Good point, thanks :)
## Etherpad
- "Put your questions below, most recent on top" did not work as expected because when a user is pressing RET on the line before the first itemize item, you end up without an itemize line. Speakers were not picking the questions from the bottom.
- Speakers probably don't have time to answer everything live, but they can review the pad for unanswered questions after the conference.
- Example:
- \*\* Questions
- Q2: sample text <– people started the first question here despite of three indicators right below, above and in-line
- Q1: sample text
- (please add your question on the top of the list)
- It turned out to work better with the following template - very nice!
- \*\* Questions
- Q4:
- Q3:
- Q2: sample text
- Q1: sample text
- (please add your question on the top of the list)
- Some questions were missed as subquestions were added with the same format as answers. Maybe we should prefix questions with "Q: " for better identification of questions? +1+1
- I guess that changes in Etherpad before the current viewport will shift the view slightly. E.g. add 10 lines at the top, and those who view lines ~100 will still look at line ~100, but at the contents of line 90. This probably confuses both moderators and speakers slightly and thus leads to a "small" re-synchronization issue for readers. If we reuse Etherpad next year, it would be great if a) there was an auto-scroll functionality (so that you always stay on the same content) and b) a way to create sections (and fold them in your personal view). It's also easier to jump to the current talk if the sections were indexed.
- Maybe have an etherpad per talk. That way, colors don't need to get deleted inbetween talks. A "meta" etherpad could contain meta information (like this general feedback) and also a link to the current etherpad. That way, one doesn't need the sections I mentioned above.
- Unmoderated etherpad worked great until bad faith questions started with RMS. This could have used a moderation process.
- I think it generally went well, and I'm glad that speakers and participants were pretty good at being civil and respectful. I think it's okay that people ask off-topic questions, like the way sometimes people were curious about what people used to draw boxes or highlight things on their screen. Even the tougher questions for rms were phrased more politely than they could have otherwise been, so I appreciate the thoughtfulness people put in. We'll make it clear that speakers can answer questions in any order and focus on any questions they like. I'm glad so many people wanted to talk to the speakers, and that the speakers were able to answer so many questions. We can also respectfully ask speakers if they want to be open to all questions, or to focus on just a few. - sachac
## It is a little difficult to keep up with the talks, IRC, and the Etherpad especially with just one monito. Love the Etherpad though.
- Karl thinks that chatting needs to have a separate place from the Etherpad. So I'd pleadge to keep it that way.
- Don't disagree, but too many questions were asked on IRC instead of the Etherpad.
- IRC can be too hard for speakers to monitor, so maybe we can ask more volunteers to copy questions to the Etherpad. What's a good way to manage this?
- Maybe use a template like "Q: (from IRC's ): ….."? That could prevent duplicate questions.
- I'm convinced that this would help a lot but I don't think that we can "enforce" people to stick to that pattern. Too many people are joining throughout the day and therefore we'd have to remind people all the time (in case the other Q:-examples do not provide enough clues).
- I gave up trying to monitor all three areas and decided to watch the chat as well as the presentations.
## Diversity
- What does it mean to be an Emacs user? What do others think about Emacs users? Do they think we're all men and free software zealots? I think it's very important to figure out why more women are not wanting to present at this conference. What is it about our community that's blocking women from presenting at EmacsConf? Let's try to work on that over the year so we can be better prepared for next year's conference.
- How many women submitted proposals that were turned down? — this would be an interesting question for a "community" discussion (as below…)
- We managed to not turn down **any** proposals! We squeezed all of them in! Mwahahaha! - sachac
- Also, the question above should probably be generalized to cover "who participates in discussions about Emacs… in any venue?"
- The initial question was definitely incomplete as any numbers are by themselves useless. Absolute counts and relative percentages would be more educational.
- Is something blocking women from presenting?
- Well, there are probably all sorts of structural issues: disproprotionate effects of COVID-related changes (ex: I'm not going to get a babysitter so that I can work on Emacs things), general life/culture things (ex: I'm the primary caregiver of a young child), so even if the Emacs community is super nice (or at least the parts of it I focus on), it's just tough to make time! =) Anyway, if you know more women who might have something interesting to share, maybe you can keep an eye out for the next call for proposals, encourage them to submit something, and help figure out how to make time for them to be able to do so? - sachac
- I was uncomfortable to see people hijacking RMS's talk to ask questions of a personal nature. This doesn't mean questions and concerns about diversity (or sexual harrassment allegations, etc.) shouldn't be addressed! However, a Paparazzi-style confrontation in a Q&A section isn't very professional (unless you're a professional Paparazzi) and I think "call out culture" doesn't actually match the ethos of Emacs. +1+1
- The action item that I'd suggest would be to have a "community discussion" section that is done in the form of a round table (maybe before the main conference starts for next time — this time it could be an optional "announced" unconference/breakout session). It might be enough for the organizers to have a public Jitsi call advertised, and invite people to join a conversation they were going to have anyway. This way, anyone with an interest in "community stuff" will have a chance to make themselves heard (by someone): and the code of conduct could also be discussed or clarified at that time.
- Disclosure: I am personally VERY interested in "community stuff", and would be happy to contribute to helping such an event! Or if someone wants to follow up with me about this 1-to-1, please feel free! — Joe / jcorneli / joseph.corneli@hyperreal.enterprises
- Let's start a public video chat conversation around this! (How to have more on-going user engagement, keep it fun, diverse, etc.)[corwin]. +1
- Sounds like fun. =) Feel free to put together something like this next time! - sachac
- Will do! -J
## Music
- bandali could add the URLs to the pieces of music he was using which was appreciated very much
- Casiopeia web interface and metadata created with Emacs
## Maybe auto gain and compressor can help with the different audio levels of speakers and pre-recorded videos
## Maybe some question moderation since some did not seem to be related to the prior talk.
## I would have liked some structured breaks. I wanted to see as many talks as possible, however I didn't have as much time between talks as I would have liked to take care of my body.
- We actually had a lunch break this time, yay! =) And most of the talks were prerecorded (usually with a heads-up), so if there's a talk you're less interested in, that's a perfect time to step away. - sachac
# Colophon
## BigBlueButton (thanks to Free Software Foundation)
## gstreamer for streaming
## Icecast for broadcast
## Etherpad for collaborative pad from
## Ikiwiki for wiki