From 5ff716129fc3a21b62daa8c853a9dc4a634815a5 Mon Sep 17 00:00:00 2001 From: Ken Fallon Date: Tue, 11 Jul 2023 03:53:38 +0200 Subject: [PATCH] database changed --- sql/hpr.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sql/hpr.sql b/sql/hpr.sql index 9be774b..b91423d 100644 --- a/sql/hpr.sql +++ b/sql/hpr.sql @@ -19941,7 +19941,7 @@ INSERT INTO `eps` (`id`, `date`, `title`, `duration`, `summary`, `notes`, `hosti (3892,'2023-07-04','Emacs package curation, part 1',2132,'Let\'s go through every single package installed in my Emacs configuration.','

Not really every single one, because straight.el installs\ndependencies automatically.

\n

Here\'s the file I went through during this recording. Some things may\nhave changed slightly since the time of recording. Save this file in\n~/.emacs.d/init.el to reproduce my exact Emacs\nconfiguration that I use at home and at work.

\n
;;; init.el ---  This is Tiago's init.el file\n;;; Commentary:\n;;; Thanks to everyone that curates Emacs packages.\n\n;;; Code:\n;; BEGIN Straight.el bootstrap\n(defvar bootstrap-version)\n(let ((bootstrap-file\n       (expand-file-name "straight/repos/straight.el/bootstrap.el" user-emacs-directory))\n      (bootstrap-version 6))\n  (unless (file-exists-p bootstrap-file)\n    (with-current-buffer\n        (url-retrieve-synchronously\n         "https://raw.githubusercontent.com/radian-software/straight.el/develop/install.el"\n         'silent 'inhibit-cookies)\n      (goto-char (point-max))\n      (eval-print-last-sexp)))\n  (load bootstrap-file nil 'nomessage))\n;; END Straight.el bootstrap\n\n(straight-use-package 'use-package)\n(setq straight-use-package-by-default t)\n\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;; <<< THE ESSENTIALS >>>  ;;;\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\n\n;; Get minor modes off the modeline\n(use-package diminish)\n\n(use-package evil\n  :init (setq evil-want-keybinding nil)\n  :config (evil-mode)\n  :custom (evil-undo-system 'undo-redo)\n  :bind ("C-u" . evil-scroll-up))\n\n(use-package evil-collection\n  :diminish evil-collection-unimpaired-mode\n  :after evil\n  :config (evil-collection-init))\n\n(use-package evil-surround\n  :after evil\n  :config\n  (global-evil-surround-mode 1))\n\n;; In-Buffer Completion\n(use-package company\n  :diminish\n  :config (global-company-mode))\n\n;; completion with extra info box\n(use-package company-box\n  :diminish\n  :hook (company-mode . company-box-mode))\n\n;; Show key bindings as you go\n(use-package which-key\n  :diminish\n  :config (which-key-mode))\n\n;; search query feedback in the buffer\n(use-package anzu\n  :diminish\n  :config (global-anzu-mode +1))\n\n(use-package evil-anzu)\n\n;; Completion in the minibuffer (snippet from vertico)\n(use-package vertico\n  :init\n  (vertico-mode)\n\n  ;; Different scroll margin\n  ;; (setq vertico-scroll-margin 0)\n\n  ;; Show more candidates\n  ;; (setq vertico-count 20)\n\n  ;; Grow and shrink the Vertico minibuffer\n  ;; (setq vertico-resize t)\n\n  ;; Optionally enable cycling for `vertico-next' and `vertico-previous'.\n  ;; (setq vertico-cycle t)\n  )\n\n;; Persist history over Emacs restarts. Vertico sorts by history position.\n;; (use-package savehist\n;;   :init\n;;   (savehist-mode))\n\n;; A few more useful configurations...\n(use-package emacs\n  :init\n  ;; Add prompt indicator to `completing-read-multiple'.\n  ;; We display [CRM<separator>], e.g., [CRM,] if the separator is a comma.\n  (defun crm-indicator (args)\n    (cons (format "[CRM%s] %s"\n                  (replace-regexp-in-string\n                   "\\\\`\\\\[.*?]\\\\*\\\\|\\\\[.*?]\\\\*\\\\'" ""\n                   crm-separator)\n                  (car args))\n          (cdr args)))\n  (advice-add #'completing-read-multiple :filter-args #'crm-indicator)\n\n  ;; Do not allow the cursor in the minibuffer prompt\n  (setq minibuffer-prompt-properties\n        '(read-only t cursor-intangible t face minibuffer-prompt))\n  (add-hook 'minibuffer-setup-hook #'cursor-intangible-mode)\n\n  ;; Emacs 28: Hide commands in M-x which do not work in the current mode.\n  ;; Vertico commands are hidden in normal buffers.\n  ;; (setq read-extended-command-predicate\n  ;;       #'command-completion-default-include-p)\n\n  ;; Enable recursive minibuffers\n  (setq enable-recursive-minibuffers t))\n\n;; Optionally use the `orderless' completion style.\n;; Get completion even if you type substrings that don't match in the\n;; same order you typed them in.\n(use-package orderless\n  :init\n  ;; Configure a custom style dispatcher (see the Consult wiki)\n  ;; (setq orderless-style-dispatchers '(+orderless-consult-dispatch orderless-affix-dispatch)\n  ;;       orderless-component-separator #'orderless-escapable-split-on-space)\n  (setq completion-styles '(orderless basic)\n        completion-category-defaults nil\n        completion-category-overrides '((file (styles partial-completion)))))\n\n;; Enable rich annotations in the completion\n(use-package marginalia\n  ;; Either bind `marginalia-cycle' globally or only in the minibuffer\n  :bind (("M-A" . marginalia-cycle)\n         :map minibuffer-local-map\n         ("M-A" . marginalia-cycle))\n\n  ;; The :init configuration is always executed (Not lazy!)\n  :init\n\n  ;; Must be in the :init section of use-package such that the mode gets\n  ;; enabled right away. Note that this forces loading the package.\n  (marginalia-mode))\n\n;; Searching commands and lots of other stuff\n;; This is a snippet taken from consult\n(use-package consult\n  ;; Replace bindings. Lazily loaded due by `use-package'.\n  :bind (;; C-c bindings in `mode-specific-map'\n         ("C-c M-x" . consult-mode-command)\n         ("C-c h" . consult-history)\n         ("C-c k" . consult-kmacro)\n         ("C-c m" . consult-man)\n         ("C-c i" . consult-info)\n         ([remap Info-search] . consult-info)\n         ;; C-x bindings in `ctl-x-map'\n         ("C-x M-:" . consult-complex-command)     ;; orig. repeat-complex-command\n         ("C-x b" . consult-buffer)                ;; orig. switch-to-buffer\n         ("C-x 4 b" . consult-buffer-other-window) ;; orig. switch-to-buffer-other-window\n         ("C-x 5 b" . consult-buffer-other-frame)  ;; orig. switch-to-buffer-other-frame\n         ("C-x r b" . consult-bookmark)            ;; orig. bookmark-jump\n         ("C-x p b" . consult-project-buffer)      ;; orig. project-switch-to-buffer\n         ;; Custom M-# bindings for fast register access\n         ("M-#" . consult-register-load)\n         ("M-'" . consult-register-store)          ;; orig. abbrev-prefix-mark (unrelated)\n         ("C-M-#" . consult-register)\n         ;; Other custom bindings\n         ("M-y" . consult-yank-pop)                ;; orig. yank-pop\n         ;; M-g bindings in `goto-map'\n         ("M-g e" . consult-compile-error)\n         ("M-g f" . consult-flymake)               ;; Alternative: consult-flycheck\n         ("M-g g" . consult-goto-line)             ;; orig. goto-line\n         ("M-g M-g" . consult-goto-line)           ;; orig. goto-line\n         ("M-g o" . consult-outline)               ;; Alternative: consult-org-heading\n         ("M-g m" . consult-mark)\n         ("M-g k" . consult-global-mark)\n         ("M-g i" . consult-imenu)\n         ("M-g I" . consult-imenu-multi)\n         ;; M-s bindings in `search-map'\n         ("M-s d" . consult-find)\n         ("M-s D" . consult-locate)\n         ("M-s g" . consult-grep)\n         ("M-s G" . consult-git-grep)\n         ("M-s r" . consult-ripgrep)\n         ("M-s l" . consult-line)\n         ("M-s L" . consult-line-multi)\n         ("M-s k" . consult-keep-lines)\n         ("M-s u" . consult-focus-lines)\n         ;; Isearch integration\n         ("M-s e" . consult-isearch-history)\n         :map isearch-mode-map\n         ("M-e" . consult-isearch-history)         ;; orig. isearch-edit-string\n         ("M-s e" . consult-isearch-history)       ;; orig. isearch-edit-string\n         ("M-s l" . consult-line)                  ;; needed by consult-line to detect isearch\n         ("M-s L" . consult-line-multi)            ;; needed by consult-line to detect isearch\n         ;; Minibuffer history\n         :map minibuffer-local-map\n         ("M-s" . consult-history)                 ;; orig. next-matching-history-element\n         ("M-r" . consult-history))                ;; orig. previous-matching-history-element\n\n  ;; Enable automatic preview at point in the *Completions* buffer. This is\n  ;; relevant when you use the default completion UI.\n  :hook (completion-list-mode . consult-preview-at-point-mode)\n\n  ;; The :init configuration is always executed (Not lazy)\n  :init\n\n  ;; Optionally configure the register formatting. This improves the register\n  ;; preview for `consult-register', `consult-register-load',\n  ;; `consult-register-store' and the Emacs built-ins.\n  (setq register-preview-delay 0.5\n        register-preview-function #'consult-register-format)\n\n  ;; Optionally tweak the register preview window.\n  ;; This adds thin lines, sorting and hides the mode line of the window.\n  (advice-add #'register-preview :override #'consult-register-window)\n\n  ;; Use Consult to select xref locations with preview\n  (setq xref-show-xrefs-function #'consult-xref\n        xref-show-definitions-function #'consult-xref)\n\n  ;; Configure other variables and modes in the :config section,\n  ;; after lazily loading the package.\n  :config\n\n  ;; Optionally configure preview. The default value\n  ;; is 'any, such that any key triggers the preview.\n  ;; (setq consult-preview-key 'any)\n  ;; (setq consult-preview-key "M-.")\n  ;; (setq consult-preview-key '("S-<down>" "S-<up>"))\n  ;; For some commands and buffer sources it is useful to configure the\n  ;; :preview-key on a per-command basis using the `consult-customize' macro.\n  (consult-customize\n   consult-theme :preview-key '(:debounce 0.2 any)\n   consult-ripgrep consult-git-grep consult-grep\n   consult-bookmark consult-recent-file consult-xref\n   consult--source-bookmark consult--source-file-register\n   consult--source-recent-file consult--source-project-recent-file\n   ;; :preview-key "M-."\n   :preview-key '(:debounce 0.4 any))\n\n  ;; Optionally configure the narrowing key.\n  ;; Both < and C-+ work reasonably well.\n  (setq consult-narrow-key "<") ;; "C-+"\n\n  ;; Optionally make narrowing help available in the minibuffer.\n  ;; You may want to use `embark-prefix-help-command' or which-key instead.\n  ;; (define-key consult-narrow-map (vconcat consult-narrow-key "?") #'consult-narrow-help)\n\n  ;; By default `consult-project-function' uses `project-root' from project.el.\n  ;; Optionally configure a different project root function.\n  ;;;; 1. project.el (the default)\n  ;; (setq consult-project-function #'consult--default-project--function)\n  ;;;; 2. vc.el (vc-root-dir)\n  ;; (setq consult-project-function (lambda (_) (vc-root-dir)))\n  ;;;; 3. locate-dominating-file\n  ;; (setq consult-project-function (lambda (_) (locate-dominating-file "." ".git")))\n  ;;;; 4. projectile.el (projectile-project-root)\n  ;; (autoload 'projectile-project-root "projectile")\n  ;; (setq consult-project-function (lambda (_) (projectile-project-root)))\n  ;;;; 5. No project support\n  ;; (setq consult-project-function nil)\n)\n\n;; workspaces\n(use-package perspective\n  :bind ("C-x C-b" . persp-list-buffers)         ; or use a nicer switcher, see below\n  :custom (persp-mode-prefix-key (kbd "C-c M-p"))  ; pick your own prefix key here\n  :init (persp-mode))\n\n;; theme\n(use-package doom-themes\n  :config\n  ;; Global settings (defaults)\n  (setq doom-themes-enable-bold t    ; if nil, bold is universally disabled\n        doom-themes-enable-italic t) ; if nil, italics is universally disabled\n  (load-theme 'doom-one t)\n\n  ;; Corrects (and improves) org-mode's native fontification.\n  (doom-themes-org-config))\n\n;; modeline\n(use-package powerline\n  :straight (:host github :repo "milkypostman/powerline")\n  :config (powerline-default-theme))\n\n;; modeline theme\n(use-package airline-themes\n  :config (load-theme 'airline-onedark t))\n\n;; makes temporary or non-editing buffers darker\n(use-package solaire-mode\n  :config (solaire-global-mode +1))\n\n;; snippets\n(use-package yasnippet\n  :diminish yas-minor-mode\n  :straight (:host github :repo "joaotavora/yasnippet")\n  :config (yas-global-mode 1))\n\n;; projects\n(use-package projectile\n  :bind-keymap\n  ("C-c p" . projectile-command-map))\n\n(use-package rg)\n\n;;;;;;;;;;;\n;;; Org ;;;\n;;;;;;;;;;;\n\n(use-package org\n  :commands (org-mode)\n  :init (setq org-directory "~/org/"\n              org-noter-notes-search-path '("~/org/roam/")\n              org-cite-global-bibliography '("~/org/biblio.bib")\n              org-capture-templates\n                     '(("n" "Note" entry\n                              (file "~/org/todo.org")\n                              "* %^{prompt}\\n%U\\n\\n%?")\n                       ("r" "Reading list note" entry\n                              (file "~/org/reading.org")\n                              "* %^{prompt}\\n%U\\n\\n%x"\n                              :immediate-finish :jump-to-captured)))\n  :config (require 'org-crypt)\n          (org-crypt-use-before-save-magic)\n          (require 'org-id)\n          (defun tgdnt/advice-org-ctrl-c-ctrl-c (&rest args)\n            "Run `org-todo' if point is on a visible heading."\n            (let ((do-not-run-orig-fn (org-at-heading-p t)))\n                (when do-not-run-orig-fn\n                (call-interactively #'org-todo))\n                do-not-run-orig-fn))\n          (advice-add 'org-ctrl-c-ctrl-c :before-until #'tgdnt/advice-org-ctrl-c-ctrl-c)\n  :hook (org-mode . auto-fill-mode)\n  :bind ("C-x h" . visible-mode)\n        ("C-c n a" . org-agenda)\n  :custom (org-tags-column 2)\n          (org-tags-exclude-from-inheritance '("crypt"))\n          (org-crypt-key "90A77BEA68A05915")\n          (org-crypt-disable-auto-save t)\n          (org-adapt-indentation nil)\n          (org-clock-ask-before-exiting nil)\n          (org-startup-folded t)\n          (org-startup-indented t)\n          (org-priority-start-cycle-with-default nil)\n          (org-id-link-to-org-use-id 'use-existing)\n          (org-agenda-files (append (directory-files "~/org/" t ".+\\.org$")))\n          (org-agenda-custom-commands\n                '(("A" "Agenda and Unscheduled TODOs"\n                   ((agenda "")\n                    (todo "TODO" ((org-agenda-overriding-header "Unscheduled actions:")))\n                    (todo "PROJ" ((org-agenda-overriding-header "Projects:")))\n                    (todo "OPEN" ((org-agenda-overriding-header "Open items:")))\n                    (todo "HOLD" ((org-agenda-overriding-header "On Hold:"))))\n                    ((org-agenda-dim-blocked-tasks 'invisible))\n                                    nil)))\n          (org-agenda-todo-ignore-with-date t)\n          (org-agenda-start-day nil)\n          (org-agenda-start-on-weekday nil)\n          (org-agenda-span 1)\n          (org-agenda-skip-deadline-prewarning-if-scheduled t)\n          (org-agenda-prefix-format '((agenda . "%?-12t% s")\n                                      (todo . "  ")\n                                      (tags . "  ")\n                                      (search . "  ")))\n          (org-agenda-deadline-leaders '("!" "%1d" "‼"))\n          (org-agenda-scheduled-leaders '("#" "%1d"))\n          (org-enforce-todo-dependencies t)\n          (org-refile-targets '((nil :maxlevel . 2)\n                                (org-agenda-files :maxlevel . 2)))\n          (org-attach-id-dir "~/org/attachments")\n          (org-crypt-disable-auto-save t)\n          (org-crypt-tag-matcher "crypt")\n          (org-archive-location "~/org/archive/archive.org::")\n          (org-deadline-warning-days 5)\n          (org-archive-save-context-info '(time file olpath ltags itags category))\n          (org-id-link-to-org-use-id 'use-existing)\n          (org-todo-keywords '((type "TODO(t)" ;; A clearly defined action\n                                     "OPEN(o)" ;; An open item, must be clarified\n                                     "HOLD(h)" ;; An open item, must be clarified\n                                     "PROJ(p)" ;; A project, with actions within it\n                                   "|" "DONE(d)" "QUIT(q)"))))\n\n;; make visible-mode automatic when entering insert mode\n(use-package org-appear\n  :init (setq org-hide-emphasis-markers t)\n  :hook (org-mode . org-appear-mode)\n  :custom (org-appear-autolinks t))\n\n(use-package evil-org\n  :after org\n  :hook (org-mode . (lambda () evil-org-mode))\n  :config\n  (require 'evil-org-agenda)\n  (evil-org-agenda-set-keys))\n\n;;;;;;;;;;;;;;;;;;;;;;;;;;;\n;;; more basic settings ;;;\n;;;;;;;;;;;;;;;;;;;;;;;;;;;\n(setq backup-directory-alist\n              `(("." . ,(concat user-emacs-directory "backups")))\n      backup-by-copying t\n      delete-old-versions t\n      kept-new-versions 6\n      kept-old-versions 2\n      version-control t)\n\n(setq-default fill-column 64\n              indent-tabs-mode nil\n              display-time-day-and-date t\n              display-time-24hr-format t)\n\n(setq custom-file (expand-file-name "custom.el" user-emacs-directory))\n(load custom-file t)\n\n(when window-system\n  (scroll-bar-mode -1)\n  (menu-bar-mode -1)\n  (tool-bar-mode -1))\n\n;; (toggle-frame-fullscreen)\n(display-time)\n(display-battery-mode)\n(server-start)\n(setq inhibit-startup-screen t)\n\n;; If on a graphical env, load init-base, if not on windows, load init-extra\n(when window-system\n  (load-file (expand-file-name "init-base.el" user-emacs-directory))\n  (require 'init-base)\n  (unless (string= (x-server-vendor) "Microsoft Corp.")\n      (load-file (expand-file-name "init-extra.el" user-emacs-directory))\n      (require 'init-extra)))\n\n(provide 'init)\n;;; init.el ends here
\n

In part 2, coming soon, we\'ll go through init-base.el and\ninit-extra.el.

\n',399,0,0,'CC-BY-SA','emacs,elisp',0,0,1), (3896,'2023-07-10','The Brochs of Glenelg',782,'A verbal tour in situ of one of the two brochs of Glenelg','In this episode I visit one of the best preserved brochs on the Scottish mainland called Dun Telve. It is one of two that are a few miles outside the village of Glenelg which is rare itself in that its name is a palindrome.\n\n

\"The

\n\n

\"The

\n',268,101,0,'CC-BY-SA','history,scotland,prehistoric',0,0,1), (3895,'2023-07-07','What\'s in my backpack',514,'Stache walks through the contents of his work backpack','

I have many things in my work backpack, to include a Raspberry Pico,\nmultiple USB drives, USB cables, two laptops, my glasses and a\nsunglasses case attached to the outside.

\n

It is a 5.11 RUSH MOAB 10 Sling Pack 18L, not because I want to be\n\"tacticool\" but because I like their products, and that they support\nveterans like myself.

\n',408,23,0,'CC-BY-SA','backpack contents, toolkit',0,0,1), -(3897,'2023-07-11','HPR AudioBook Club 22 - Murder at Avedon Hill',6119,'In this episode the HPR Audiobook Club discusses the audiobook Murder at Avedon Hill by P.G. Holyfie','In\nthis episode the HPR Audiobook Club discusses the audiobook Murder\nat Avedon Hill by P.G. Holyfield\n
\n

Non-Spoiler Thoughts

\n
\n
    \n
  • Great reading, great audio quality, fun setting and setup. It had\nthe feel of a role playing adventure at the beginning, but was well\nfleshed out by the middle. It would have been slightly better if all of\nthe guest voices had had a pronunciation guide for the names.
  • \n
\n

Beverage Reviews

\n
\n
    \n
  • Thaj: A delicious regular chocolate malt from the\nlocal ice cream shop \"The Comfy Cow\"
  • \n
  • x1101: Barton\'s 1795
  • \n
  • Pokey Leinenkugel\'s: I have a fall variety pack,\nbut this is not the fall. I\'m not enjoying this beer as much as I\nexpected. It\'s good, and I can taste the high quality of the\ningredients, but I think it\'s just the wrong season for this.
  • \n
\n

Things We Talked About

\n
\n\n

Our Next Audiobook

\n
\n

A\nPrincess of Mars by Edgar Rice Burroughs

\n

The Next Audiobook Club\nRecording

\n
\n

Right now we are working through a backlog of older episodes that\nhave already been recorded. Once that ends we fully anticipate recording\nnew episodes with listener participation.

\n

Feedback

\n
\n

Thank you very much for listening to this episode of the HPR\nAudioBookClub. We had a great time recording this show, and we hope you\nenjoyed it as well. We also hope you\'ll consider joining us next time we\nrecord a new episode. Please leave a few words in the episode\'s comment\nsection.

\n

As always; remember to visit the HPR contribution page HPR could\nreally use your help right now.

\n

Sincerely, The HPR Audiobook Club

\n

P.S. Some people really like finding mistakes. For their enjoyment,\nwe always include a few.

\n

Our Audio

\n
\n

This episode was processed using Audacity. We\'ve been making\nsmall adjustments to our audio mix each month in order to get the best\npossible sound. Its been especially challenging getting all of our\nvoices relatively level, because everyone has their own unique setup.\nMumble is great for bringing us all together, and for recording, but\nit\'s not good at making everyone\'s voice the same volume. We\'re pretty\nhappy with the way this month\'s show turned out, so we\'d like to share\nour editing process and settings with you and our future selves (who, of\ncourse, will have forgotten all this by then).

\n

We use the \"Truncate Silence\" effect with it\'s default settings to\nminimize the silence between people speaking. When used with it\'s\ndefault (or at least reasonable) settings, Truncate Silence is extremely\neffective and satisfying. It makes everyone sound smarter, it makes the\nfile shorter without destroying actual content, and it makes a\nconversations sound as easy and fluid during playback as it was while it\nwas recorded. It can be even more effective if you can train yourself to\nremain silent instead of saying \"uuuuummmm.\" Just remember to ONLY pass\nthe file through Truncate Silence ONCE. If you pass it through a second\ntime, or if you set it too aggressively your audio may sound sped up and\nchoppy.

\n

Next we use the \"Compressor\" effect with the following settings:

\n
Threshold: -30db\n\nNoise Floor: -50db\n\nRatio: 3:1\n\nAttack Time: 0.2sec\n\nDecay Time: 1.0 sec`
\n

\"Make-up Gain for 0db after compressing\" and \"compress based on\npeaks\" were both left un-checked.

\n

After compressing the audio we cut any pre-show and post-show chatter\nfrom the file and save them in a separate file for possible use as\nouttakes after the closing music.

\n

We adjust the Gain so that the VU meter in Audacity hovers around\n-12db while people are speaking, and we try to keep the peaks under\n-6db, and we adjust the Gain on each of the new tracks so that all\nvolumes are similar, and more importantly comfortable. Once this is done\nwe can \"Mix and Render\" all of our tracks into a single track for export\nto the .FLAC file which is uploaded to the HPR server.

\n

At this point we listen back to the whole file and we work on the\nshownotes. This is when we can cut out anything that needs to be cut,\nand we can also make sure that we put any links in the shownotes that\nwere talked about during the recording of the show. We finish the\nshownotes before exporting the .aup file to .FLAC so that we can paste a\ncopy of the shownotes into the audio file\'s metadata.

\n

At this point we add new, empty audio tracks into which we paste the\nintro, outro and possibly outtakes, and we rename each track\naccordingly.

\n

Remember to save often when using Audacity. We like to save after\neach of these steps. Audacity has a reputation for being \"crashy\" but if\nyou remember save after every major transform, you will wonder how it\never got that reputation.

\n',157,53,1,'CC-BY-SA','Audiobook club, audiobook, fantasy, fiction',0,0,1), +(3897,'2023-07-11','HPR AudioBook Club 22 - Murder at Avedon Hill',6119,'In this episode the HPR Audiobook Club discusses \"Murder at Avedon Hill\" by P.G. Holyfield','In\nthis episode the HPR Audiobook Club discusses the audiobook Murder\nat Avedon Hill by P.G. Holyfield\n
\n

Non-Spoiler Thoughts

\n
\n
    \n
  • Great reading, great audio quality, fun setting and setup. It had\nthe feel of a role playing adventure at the beginning, but was well\nfleshed out by the middle. It would have been slightly better if all of\nthe guest voices had had a pronunciation guide for the names.
  • \n
\n

Beverage Reviews

\n
\n
    \n
  • Thaj: A delicious regular chocolate malt from the\nlocal ice cream shop \"The Comfy Cow\"
  • \n
  • x1101: Barton\'s 1795
  • \n
  • Pokey Leinenkugel\'s: I have a fall variety pack,\nbut this is not the fall. I\'m not enjoying this beer as much as I\nexpected. It\'s good, and I can taste the high quality of the\ningredients, but I think it\'s just the wrong season for this.
  • \n
\n

Things We Talked About

\n
\n\n

Our Next Audiobook

\n
\n

A\nPrincess of Mars by Edgar Rice Burroughs

\n

The Next Audiobook Club\nRecording

\n
\n

Right now we are working through a backlog of older episodes that\nhave already been recorded. Once that ends we fully anticipate recording\nnew episodes with listener participation.

\n

Feedback

\n
\n

Thank you very much for listening to this episode of the HPR\nAudioBookClub. We had a great time recording this show, and we hope you\nenjoyed it as well. We also hope you\'ll consider joining us next time we\nrecord a new episode. Please leave a few words in the episode\'s comment\nsection.

\n

As always; remember to visit the HPR contribution page HPR could\nreally use your help right now.

\n

Sincerely, The HPR Audiobook Club

\n

P.S. Some people really like finding mistakes. For their enjoyment,\nwe always include a few.

\n

Our Audio

\n
\n

This episode was processed using Audacity. We\'ve been making\nsmall adjustments to our audio mix each month in order to get the best\npossible sound. Its been especially challenging getting all of our\nvoices relatively level, because everyone has their own unique setup.\nMumble is great for bringing us all together, and for recording, but\nit\'s not good at making everyone\'s voice the same volume. We\'re pretty\nhappy with the way this month\'s show turned out, so we\'d like to share\nour editing process and settings with you and our future selves (who, of\ncourse, will have forgotten all this by then).

\n

We use the \"Truncate Silence\" effect with it\'s default settings to\nminimize the silence between people speaking. When used with it\'s\ndefault (or at least reasonable) settings, Truncate Silence is extremely\neffective and satisfying. It makes everyone sound smarter, it makes the\nfile shorter without destroying actual content, and it makes a\nconversations sound as easy and fluid during playback as it was while it\nwas recorded. It can be even more effective if you can train yourself to\nremain silent instead of saying \"uuuuummmm.\" Just remember to ONLY pass\nthe file through Truncate Silence ONCE. If you pass it through a second\ntime, or if you set it too aggressively your audio may sound sped up and\nchoppy.

\n

Next we use the \"Compressor\" effect with the following settings:

\n
Threshold: -30db\n\nNoise Floor: -50db\n\nRatio: 3:1\n\nAttack Time: 0.2sec\n\nDecay Time: 1.0 sec`
\n

\"Make-up Gain for 0db after compressing\" and \"compress based on\npeaks\" were both left un-checked.

\n

After compressing the audio we cut any pre-show and post-show chatter\nfrom the file and save them in a separate file for possible use as\nouttakes after the closing music.

\n

We adjust the Gain so that the VU meter in Audacity hovers around\n-12db while people are speaking, and we try to keep the peaks under\n-6db, and we adjust the Gain on each of the new tracks so that all\nvolumes are similar, and more importantly comfortable. Once this is done\nwe can \"Mix and Render\" all of our tracks into a single track for export\nto the .FLAC file which is uploaded to the HPR server.

\n

At this point we listen back to the whole file and we work on the\nshownotes. This is when we can cut out anything that needs to be cut,\nand we can also make sure that we put any links in the shownotes that\nwere talked about during the recording of the show. We finish the\nshownotes before exporting the .aup file to .FLAC so that we can paste a\ncopy of the shownotes into the audio file\'s metadata.

\n

At this point we add new, empty audio tracks into which we paste the\nintro, outro and possibly outtakes, and we rename each track\naccordingly.

\n

Remember to save often when using Audacity. We like to save after\neach of these steps. Audacity has a reputation for being \"crashy\" but if\nyou remember save after every major transform, you will wonder how it\never got that reputation.

\n',157,53,1,'CC-BY-SA','Audiobook club, audiobook, fantasy, fiction',0,0,1), (3899,'2023-07-13','Repair corrupt video files for free with untruc',320,'This is how I fixed corrupt video files from my dash cam after an accident','

My original blog post on this topic: https://pquirk.com/posts/corruptvideo/

\n
    \n
  • Untruc at Github: https://github.com/anthwlock/untrunc
  • \n
  • Windows version: https://github.com/anthwlock/untrunc/releases
  • \n
  • Arch linux version: https://aur.archlinux.org/packages/untrunc-git
  • \n
\n

Make your donations to:
\nhttps://www.paypal.com/paypalme/anthwlock
\nhttps://vcg.isti.cnr.it/~ponchio/untrunc.php

\n',383,0,0,'CC-BY-NC-SA','video,corrupt,fix,file,linux',0,0,1), (3921,'2023-08-14','HPR AudioBook Club 23 - John Carter of Mars (Books 1-3)',6516,'In this episode the HPR Audiobook Club discusses the first three books of John Carter of Mars','In\nthis episode the HPR Audiobook Club discusses the audiobooks A\nPrincess of Mars, The\nGods of Mars, and The\nWarlord of Mars by Edgar Rice Burroughs\n
\n

Non-Spoiler Thoughts

\n
\n
    \n
  • Burroughs is kind of verbose, which is symbolic of the time period\nin which it was written.
  • \n
\n

Beverage Reviews

\n
\n
    \n
  • Thaj: Tempting fate with a tall glass of the highly\ntoxic, Dihydrogen\nMonoxide
  • \n
  • x1101: Shipyard\nLittle Horror of Hops Its a very amber IPA
  • \n
  • Pokey: Yellow Tail\nChardonay Its definitely a chardonay in flavor. You can taste the\ncost effectiveness up front, but it mellows out on the finish, and is\npretty okay for the price on average.
  • \n
  • FiftyOneFifty: Funky Pumpkin spiced\npumpkin ale
  • \n
  • Mark: Lagunitas IPA
  • \n
\n

Things We Talked About

\n
\n
    \n
  • Chat Secure secure XMPP,\nThink of the children!!!

  • \n
  • Technology on Barsoom

  • \n
  • Deus Ex Machina much???

  • \n
  • Names in fantasy books

  • \n
\n

Our Next Audiobook

\n
\n

See\nYou At The Morgue by Lawrence Blochman

\n

The Next Audiobook Club\nRecording

\n
\n

Right now we are working through a backlog of older episode that have\nalready been recorded. Once that ends we fully anticipate recording new\nepisodes with listener participation.

\n

Feedback

\n
\n

Thank you very much for listening to this episode of the HPR\nAudioBookClub. We had a great time recording this show, and we hope you\nenjoyed it as well. We also hope you\'ll consider joining us next time we\nrecord a new episode. Please leave a few words in the episode\'s comment\nsection.

\n

As always; remember to visit the HPR contribution page HPR could\nreally use your help right now.

\n

Sincerely, The HPR Audiobook Club

\n

P.S. Some people really like finding mistakes. For their enjoyment,\nwe always include a few.

\n

Our Audio

\n
\n

This episode was processed using Audacity. We\'ve been making\nsmall adjustments to our audio mix each month in order to get the best\npossible sound. Its been especially challenging getting all of our\nvoices relatively level, because everyone has their own unique setup.\nMumble is great for bringing us all together, and for recording, but\nit\'s not good at making everyone\'s voice the same volume. We\'re pretty\nhappy with the way this month\'s show turned out, so we\'d like to share\nour editing process and settings with you and our future selves (who, of\ncourse, will have forgotten all this by then).

\n

We use the \"Truncate Silence\" effect with it\'s default settings to\nminimize the silence between people speaking. When used with it\'s\ndefault (or at least reasonable) settings, Truncate Silence is extremely\neffective and satisfying. It makes everyone sound smarter, it makes the\nfile shorter without destroying actual content, and it makes a\nconversations sound as easy and fluid during playback as it was while it\nwas recorded. It can be even more effective if you can train yourself to\nremain silent instead of saying \"uuuuummmm.\" Just remember to ONLY pass\nthe file through Truncate Silence ONCE. If you pass it through a second\ntime, or if you set it too aggressively your audio may sound sped up and\nchoppy.

\n

Next we use the \"Compressor\" effect with the following settings:

\n
Threshold: -30db\n\nNoise Floor: -50db\n\nRatio: 3:1\n\nAttack Time: 0.2sec\n\nDecay Time: 1.0 sec
\n

\"Make-up Gain for 0db after compressing\" and \"compress based on\npeaks\" were both left un-checked.

\n

After compressing the audio we cut any pre-show and post-show chatter\nfrom the file and save them in a separate file for possible use as\nouttakes after the closing music.

\n

We adjust the Gain so that the VU meter in Audacity hovers around\n-12db while people are speaking, and we try to keep the peaks under\n-6db, and we adjust the Gain on each of the new tracks so that all\nvolumes are similar, and more importantly comfortable. Once this is done\nwe can \"Mix and Render\" all of our tracks into a single track for export\nto the .FLAC file which is uploaded to the HPR server.

\n

At this point we listen back to the whole file and we work on the\nshownotes. This is when we can cut out anything that needs to be cut,\nand we can also make sure that we put any links in the shownotes that\nwere talked about during the recording of the show. We finish the\nshownotes before exporting the .aup file to .FLAC so that we can paste a\ncopy of the shownotes into the audio file\'s metadata.

\n

At this point we add new, empty audio tracks into which we paste the\nintro, outro and possibly outtakes, and we rename each track\naccordingly.

\n

Remember to save often when using Audacity. We like to save after\neach of these steps. Audacity has a reputation for being \"crashy\" but if\nyou remember save after every major transform, you will wonder how it\never got that reputation.

\n

Attribution

\n
\n

Record\nScratch Creative Commons 0

\n',157,0,1,'CC-BY-SA','mars, audiobook club, fiction, scifi, audiobook',0,0,1), (4151,'2024-07-01','HPR Community News for June 2024',0,'HPR Volunteers talk about shows released and comments posted in June 2024','',159,47,1,'CC-BY-SA','Community News',0,0,1), @@ -20869,4 +20869,4 @@ UNLOCK TABLES; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2023-07-10 19:42:15 +-- Dump completed on 2023-07-11 1:47:27