13 Dec 2020 (Sun)

09:58:09 # Life What's your config for sharing emacs ? In a remote-primary world coding with peers I share my emacs a lot; I think most of the video streams are optimized for 720p which is 1280x720; and tuning emacs config; probably fonts with 10 pixels width each is about right. A frame with 160x50 or 128x40 is probably reasonable.


;; 9px
(defun make-frame-video-split ()
  "Create a frame suitable for 720p in the current font config"
  (interactive)
  (make-frame '((name . "video-split") (width . 160) (height . 50))))

;; 10px
(defun make-frame-video-split ()
  "Create a frame suitable for 720p in the current font config"
  (interactive)
  (make-frame '((name . "video-split") (width . 128) (height . 40))))
	

12:13:06 # Life I created a video of how to use the web app to record video. Only supports Chrome browser due to the codec. video here. The app itself is here. My wish is that if everyone has this kind of tooling then it's easy to record your hacks and we can share our hacks to each other. This is the new normal.

Junichi Uekawa