IOS 27 dev beta 3 or 4 which is more stable for iPhone 11?

I’ve seen some complaints about QR code scanning not working on certain beta builds. I’m not planning to update to Beta 5. So, if anyone has used Betas 3 or 4, could you share which one you found more stable? Any suggestions would be appreciated!

reddit.com
u/Party_Rub9763 — 6 days ago
▲ 6 r/emacs

(New to Emacs) Is This the Right Way to Load Packages?

Hey everyone, I’m new to Emacs and Elisp in general. I’ve gone through the documentation to grasp enough basic knowledge of Elisp for setting up my init file. I went with a modularized approach where I load packages from three different folders under the modules directory. Are there any caveats to this setup, or is it fine?

init.el:

   ;; Loading Modules

   (defvar module-list '("modules/config")   "List of module")
   (mapc (lambda (path)
   (add-to-list 'load-path (format "%s%s" user-emacs-directory path))) module-list)

   (load "options")
   (load "elpaca")
   (load "setup-package-archive")

   ;;Load core package
   (setq core-packages (directory-files-recursively (concat user-emacs-directory "modules/core-packages") "\\.el$"))
   (mapc (lambda (x) (load-file (format "%s" x))) core-packages)
   ;;Load external packages
   (setq external-packages (directory-files-recursively (concat user-emacs-directory "modules/external-packages") "\\.el$"))
   (mapc (lambda (x) (load-file (format "%s" x))) external-packages)

Modules directory:

.
├── config
│   ├── elpaca.el (setup elpaca)
│   ├── options.el 
│   └── setup-package.el (source package archives (e.g. Melpa))
├── core-packages
│   ├── dired.el
│   ├── eldoc.el
│   ├── emacs.el
│   ├── erc.el
│   ├── flymake.el
│   ├── isearch.el
│   ├── org-mode.el
│   ├── smerge.el
│   ├── vc.el
│   ├── which-key.el
│   └── window.el
└── external-packages
    ├── add-node-modules-path.el
    ├── corfu.el
    ├── ...
reddit.com
u/Party_Rub9763 — 3 months ago