trying to fix
This commit is contained in:
parent
fa407dfeb6
commit
e013d7569e
22945 changed files with 447936 additions and 0 deletions
|
@ -0,0 +1 @@
|
|||
<p>Megyn Kelly is joined by co-founder of “The Intercept”, author of “Securing Democracy”, and Pulitzer-prize winning journalist, Glenn Greenwald, to discuss the new proof that the ‘Russiagate’ scandal targeting Donald Trump was created by the Hillary Clinton campaign, the unprecedented migrant problem in Texas, the drone ban placed on journalists trying to cover the surge, General Mark Milley’s defense of calls to China as ‘perfectly within the scope of the job’, Don Lemon’s pubic shunning of unvaccinated Americans, Anna Wintour’s crusade to make the Met Gala even more exclusive and insufferable, Meghan and Harry’s airbrushed Time Magazine cover (and life), and more.</p><p>Follow The Megyn Kelly Show on all social platforms:</p><p><br />YouTube: <a href="https://www.youtube.com/MegynKelly">https://www.youtube.com/MegynKelly</a></p><p>Twitter: <a href="http://twitter.com/MegynKellyShow">http://Twitter.com/MegynKellyShow</a></p><p>Instagram: <a href="http://instagram.com/MegynKellyShow">http://Instagram.com/MegynKellyShow</a></p><p>Facebook: <a href="http://facebook.com/MegynKellyShow">http://Facebook.com/MegynKellyShow</a><br /> </p><p>Find out more information at:</p><p> </p><p><a href="https://www.devilmaycaremedia.com/megynkellyshow">https://www.devilmaycaremedia.com/megynkellyshow</a></p>
|
|
@ -0,0 +1,25 @@
|
|||
|
||||
|
||||
<p>Raw link: <a href="https://www.youtube.com/watch?v=rLF9oTmVFsc">https://www.youtube.com/watch?v=rLF9oTmVFsc</a></p>
|
||||
|
||||
<p>In this video I demonstrate a few techniques to replace search matches
|
||||
across a number of files or buffers, using a variety of tools. The
|
||||
tools I use involve:</p>
|
||||
|
||||
<ul>
|
||||
<li><code>counsel-git-grep</code>, which is powered by the <code>ivy</code> completion
|
||||
framework and which can edit its output with <code>wgrep</code>.</li>
|
||||
<li><code>ivy-switch-buffer</code>, followed by <code>ibuffer</code> and <code>occur</code>.</li>
|
||||
<li><code>dired</code>, followed by an interface that looks like that of <code>occur</code>.</li>
|
||||
</ul>
|
||||
|
||||
<p>Other commands where <code>query-replace</code> and keyboard macros.</p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p>For my setup check <a href="https://protesilaos.com/emacs/dotemacs">my dotemacs</a>. The
|
||||
theme used in this video is “Modus Operandi” (<code>modus-operandi-theme</code>)
|
||||
which is available on MELPA. For more, check the <a href="https://gitlab.com/protesilaos/modus-themes">Modus themes on
|
||||
GitLab</a>.</p>
|
||||
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
<p>Timo Geusch has a nice quickie post on <a href="https://www.lonecpluspluscoder.com/2021/09/07/emacs-enable-multiple-minor-modes-from-major-mode/">setting multiple minor modes for a buffer</a>. Often it’s convenient to have several minor modes associated with a buffer. For example, when I’m writing blog or prose text I like to have</p>
|
||||
<ol class="org-ol">
|
||||
<li><code>visual-line-mode</code></li>
|
||||
<li><code>wc-mode</code></li>
|
||||
<li><code>flyspell-mode</code></li>
|
||||
</ol>
|
||||
<p>turned on and <code>auto-fill-mode</code> turned of. That’s enough modes that it’s inconvenient to set them by hand. The normal solution is to turn them on in the local variables list at the top or bottom of the file.</p>
|
||||
<pre class="example" id="orga5c742a"># -*- eval: (visual-line-mode 1); eval: (auto-fill-mode -1); eval: (wc-mode 1); eval: (flyspell-mode 1;) -*-
|
||||
</pre>
|
||||
<p>That works well and is what I do for non-blog writing but you have to take some sort of action to get it into each buffer such as including it or copying it by hand.</p>
|
||||
<p>Geusch has another solution. He wrote a simple function to turn on the minor modes he needs and then runs that function in a hook for the type of buffer he’s interested in. That’s really easy if you use the <code>use-package</code> macro to configure your packages because you can use its <code>:hook</code> keyword to cause the function to be called. See Geusch’s post for the details and sample code.</p>
|
||||
<p>It’s a simple idea and easy to implement but it can make your workflow a bit easier. Definitely worth taking a look at.</p>
|
|
@ -0,0 +1 @@
|
|||
<!-- SC_OFF --><div class="md"><p>I followed this <a href="https://wiki.archlinux.org/title/PRIME#PCI-Express_Runtime_D3_(RTD3">guide</a>_Power_Management) to set up RTD3 on my laptop, added udev rules, added module parameters, enabled nvidia-persistenced service then reboot the computer but the output of <code>cat /proc/driver/nvidia/gpus/0000:01:00.0/power</code> said that RTD3 is not supported:</p> <pre><code>Runtime D3 status: Not Supported Video Memory: Active GPU Hardware Support: Video Memory Self Refresh: Supported Video Memory Off: Supported Power Limits: Default: N/A milliwatts GPU Boost: N/A milliwatts </code></pre> <p>I booted to Window and used Asus armoury crate to check and after a few seconds of inactivity the GPU tab will stop reading core/memory clock, voltage, etc, and <a href="https://imgur.com/a/Ou904KB">show</a> "Power saving". And if I open a game (Apex legend) the GPU will turn on again and work normally. Which mean that RTD3 does work on my laptop and on Window only. Any ideas ?</p> <ul> <li>Operating System: Arch Linux</li> <li>KDE Plasma Version: 5.23.3</li> <li>KDE Frameworks Version: 5.88.0</li> <li>Qt Version: 5.15.2</li> <li>Kernel Version: 5.15.4-xanmod1-1 (64-bit)</li> <li>Graphics Platform: Wayland</li> <li>Processors: 16 × AMD Ryzen 7 4800H with Radeon Graphics</li> <li>Memory: 15.1 GiB of RAM</li> <li>Graphics Processor: AMD RENOIR / Nvidia GTX 1660Ti</li> </ul> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/minhduc66532"> /u/minhduc66532 </a> <br/> <span><a href="https://www.reddit.com/r/archlinux/comments/r1n3zt/nvidia_d3_runtime_power_management_only_works_on/">[link]</a></span>   <span><a href="https://www.reddit.com/r/archlinux/comments/r1n3zt/nvidia_d3_runtime_power_management_only_works_on/">[comments]</a></span>
|
|
@ -0,0 +1,13 @@
|
|||
|
||||
|
||||
<p>Raw link: <a href="https://www.youtube.com/watch?v=4-ubCJF9htw">https://www.youtube.com/watch?v=4-ubCJF9htw</a></p>
|
||||
|
||||
<p>In this screen cast I demonstrate some of the hacks and small tweaks
|
||||
that I have accumulated in my “dotemacs”. I also showcase some of the
|
||||
default key bindings and explain how I rely on them.</p>
|
||||
|
||||
<p>Here is my configuration file, with all the settings I showed in the
|
||||
video (as well as everything else, from previous screen casts…):
|
||||
<a href="https://protesilaos.com/emacs/dotemacs">protesilaos.com/emacs/dotemacs</a>.</p>
|
||||
|
||||
|
|
@ -0,0 +1 @@
|
|||
This is Toby Sumpter with your CrossPolitic Daily News Brief for Thursday, May 6, 2021. Huge thanks to everyone who attended and watched the Fight Laugh Feast Rally in Rapid City, South Dakota: all the talks were archived for Fight Laugh Feast Club Members in the club portal. Become a club member today so you […]
|
|
@ -0,0 +1 @@
|
|||
<!-- SC_OFF --><div class="md"><p>So I thought I might create a wrapper that uses advice to overwrite a function temporarily, re-routing it:</p> <pre><code>(defun ct/with-notmuch-as-compose-mail (&rest body) (progn (advice-add 'compose-mail :override #'notmuch-mua-mail) (unwind-protect (progn body) (advice-remove 'compose-mail #'notmuch-mua-mail)))) </code></pre> <p>Turns out this doesn't work when called via:</p> <pre><code>(ct/with-notmuch-as-compose-mail (compose-mail)) </code></pre> <p>What does work, though, is a macro!</p> <pre><code>(defmacro ct/with-notmuch-as-compose-mail (&rest body) `(progn (advice-add 'compose-mail :override #'notmuch-mua-mail) (unwind-protect (progn ,@body) (advice-remove 'compose-mail #'notmuch-mua-mail)))) </code></pre> <p>I don't understand the reason.</p> <p>Can anyone explain why the function doesn't do its thing?</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/divinedominion"> /u/divinedominion </a> <br/> <span><a href="https://www.reddit.com/r/emacs/comments/rcsgpi/function_vs_macro_why_does_adviceadd_to_override/">[link]</a></span>   <span><a href="https://www.reddit.com/r/emacs/comments/rcsgpi/function_vs_macro_why_does_adviceadd_to_override/">[comments]</a></span>
|
|
@ -0,0 +1,18 @@
|
|||
|
||||
|
||||
<p>Raw link: <a href="https://www.youtube.com/watch?v=bdcqRziKYT0">https://www.youtube.com/watch?v=bdcqRziKYT0</a></p>
|
||||
|
||||
<p>In this screen cast I demonstrate the main commenting functions that are
|
||||
exposed by the built-in <code>newcomment</code> library. Apart from the defaults,
|
||||
I also discuss the customisations I have introduced and my custom “do
|
||||
what I mean” function that I implemented to suit my use-case.</p>
|
||||
|
||||
<p>This demo also shows some practical ways of accessing documentation in
|
||||
Emacs, for libraries, key bindings, variables, functions. This is the
|
||||
“self-documenting” editor, after all…</p>
|
||||
|
||||
<p>And here is the link to my configuration file, with all the settings I
|
||||
showed in the video as well as everything else from previous screen
|
||||
casts: <a href="https://protesilaos.com/emacs/dotemacs">protesilaos.com/emacs/dotemacs</a>.</p>
|
||||
|
||||
|
|
@ -0,0 +1,40 @@
|
|||
<p>This week we detail exactly what you need to put a movie theater in your basement powered by Linux & open source. Plus your calls!</p>
|
||||
|
||||
<h3><strong>-- The Cliff Notes --</strong></h3>
|
||||
|
||||
<ul>
|
||||
<li><a href="http://amzn.to/2xK4gK4" rel="nofollow">NVidia Shield Pro 2017</a></li>
|
||||
<li><a href="http://amzn.to/2vZPXiy" rel="nofollow">Best Inexpensive Universal Remote</a></li>
|
||||
<li><a href="https://www.stereophile.com/content/carver-challenge" rel="nofollow">The Carver Challenge</a></li>
|
||||
<li><a href="http://portal.altispeed.com/kb/faq.php?id=163" rel="nofollow">http://portal.altispeed.com/kb/faq.php?id=163</a></li>
|
||||
</ul>
|
||||
|
||||
<h3><strong>-- Stay In Touch --</strong></h3>
|
||||
|
||||
<p><strong>Find all the resources for this show on the Ask Noah Dashboard</strong></p>
|
||||
|
||||
<blockquote>
|
||||
<p><a href="http://www.asknoahshow.com" rel="nofollow">Ask Noah Dashboard</a></p>
|
||||
</blockquote>
|
||||
|
||||
<p><strong>Need more help than a radio show can offer? Altispeed provides commercial IT services and they’re excited to offer you a great deal for listening to the Ask Noah Show. Call today and ask about the discount for listeners of the Ask Noah Show!</strong></p>
|
||||
|
||||
<blockquote>
|
||||
<p><a href="http://www.altispeed.com/" rel="nofollow">Altispeed Technologies</a></p>
|
||||
</blockquote>
|
||||
|
||||
<p><strong>Contact Noah</strong></p>
|
||||
|
||||
<blockquote>
|
||||
<p>asknoah [at] jupiterbroadcasting.com</p>
|
||||
</blockquote>
|
||||
|
||||
<p><strong>-- Twitter --</strong></p>
|
||||
|
||||
<ul>
|
||||
<li><a href="https://twitter.com/kernellinux" rel="nofollow">Noah - Kernellinux</a></li>
|
||||
<li><a href="https://twitter.com/asknoahshow" rel="nofollow">Ask Noah Show</a></li>
|
||||
<li><a href="https://twitter.com/altispeed" rel="nofollow">Altispeed Technologies</a></li>
|
||||
<li><a href="https://twitter.com/jbsignal" rel="nofollow">Jupiter Broadcasting</a></li>
|
||||
</ul><p><a href="https://patreon.com/linuxdelta" rel="payment">Support Ask Noah Show</a></p>
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
<p>SHOW NOTES: </p>
|
||||
|
||||
<p>- All the info you need to START is on our <a href='http://www.thebiblerecap.com'>website</a>! Seriously, go there.
|
||||
- Join our <a href='https://www.patreon.com/thebiblerecap'>PATREON</a> community for bonus perks!</p>
|
||||
|
||||
<p>- Get your <a href='https://www.theconnextion.com/tlcdgroup/index.cfm'>TBR merch</a></p>
|
||||
|
||||
<p>- <a href='http://thebiblerecap.com/contact'>Show credits</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>FROM TODAY’S PODCAST:
|
||||
- <a href='https://www.biblegateway.com/passage/?search=Deuteronomy+22%3A25&version=ESV'>Deuteronomy 22:25</a></p>
|
||||
|
||||
<p>- Document: <a href='https://drive.google.com/file/d/1ucnJdbmG--ebPwgTK6v6AYHFqVqLuPEr/view?usp=sharing'>Monotheism Info</a></p>
|
||||
|
||||
<p>- <a href='http://patreon.com/thebiblerecap'>Join our Patreon Family!</a></p>
|
||||
|
||||
<p>
|
||||
SOCIALS:</p>
|
||||
|
||||
<p>The Bible Recap:<a href='https://instagram.com/thebiblerecap'> Instagram</a> |<a href='https://www.facebook.com/thebiblerecap'> Facebook</a> |<a href='https://twitter.com/thebiblerecap'> Twitter</a></p>
|
||||
|
||||
<p>D-Group:<a href='https://instagram.com/mydgroup/'> Instagram</a> |<a href='https://www.facebook.com/ilovemydgroup'> Facebook</a> |<a href='https://mobile.twitter.com/mydgroup'> Twitter</a></p>
|
||||
|
||||
<p>TLC:<a href='https://instagram.com/taraleighcobble'> Instagram</a> |<a href='https://www.facebook.com/taraleighcobble'> Facebook</a> |<a href='https://twitter.com/taraleighcobble'> Twitter</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>D-GROUP:
|
||||
The Bible Recap is brought to you by<a href='https://www.mydgroup.org/'> D-Group</a> - an international network of discipleship and accountability groups that meet weekly in homes and churches:<a href='https://www.mydgroup.org/map'> Find or start one near you today</a>!</p>
|
517
var/elfeed/db/data/55/556429636b4c4c3d9eb05855c593f6f48c2b8ddc
Normal file
517
var/elfeed/db/data/55/556429636b4c4c3d9eb05855c593f6f48c2b8ddc
Normal file
|
@ -0,0 +1,517 @@
|
|||
|
||||
|
||||
<p>Just published version <code>1.5.0</code> of <a href="https://protesilaos.com/emacs/modus-themes">the Modus
|
||||
themes</a>. The detailed release
|
||||
notes are reproduced below.</p>
|
||||
|
||||
<p>For any questions pertaining to this publication, feel welcome to
|
||||
<a href="https://protesilaos.com/contact/">contact me</a>.</p>
|
||||
|
||||
<p>A patch to update the files that are shipped with Emacs28 will be sent
|
||||
upstream later today (I need a break after taking several hours to write
|
||||
this log). The modus-themes package in GNU ELPA fetches its contents
|
||||
from emacs.git, so expect an update shortly thereafter.</p>
|
||||
|
||||
<hr />
|
||||
|
||||
<h2>Modus themes version 1.5.0</h2>
|
||||
|
||||
<p>By Protesilaos Stavrou <a href="mailto:info@protesilaos.com">info@protesilaos.com</a> on 2021-07-15</p>
|
||||
|
||||
<p>This entry outlines the set of changes made to the project since the
|
||||
release of version 1.4.0 on 2021-05-25. There have been over 130
|
||||
commits since then.</p>
|
||||
|
||||
<p>Every colour-related modification referenced herein is always
|
||||
implemented in accordance with the primary accessibility objective of
|
||||
the themes for a minimum contrast ratio of 7:1 between background and
|
||||
foreground values in their given combination (the WCAG AAA standard).
|
||||
Such edits also account for colour-coding that is optimised for the
|
||||
needs of users with red-green colour deficiency (deuteranopia or
|
||||
variants).</p>
|
||||
|
||||
<p>Here is the URL of the manual: <a href="https://protesilaos.com/emacs/modus-themes">https://protesilaos.com/emacs/modus-themes</a>.
|
||||
Or read it from Emacs by evaluating this form:</p>
|
||||
|
||||
<pre><code>(info "(modus-themes) Top")
|
||||
</code></pre>
|
||||
|
||||
<p>The themes are built into Emacs version 28 (current development target),
|
||||
and are available on GNU ELPA as well as other archives.</p>
|
||||
|
||||
<h3>Customisation options</h3>
|
||||
|
||||
<h4>Overview of new style of sets of properties</h4>
|
||||
|
||||
<p>Several variables now accept a list of symbols as a value. Those
|
||||
represent properties, which can be combined with each other to realise
|
||||
the possible styles. The idea was to simplify their specification in
|
||||
order to make them easier to both maintain and extend. Thanks to Philip
|
||||
Kaludercic for introducing this concept in issue 210:
|
||||
<a href="https://gitlab.com/protesilaos/modus-themes/-/issues/210">https://gitlab.com/protesilaos/modus-themes/-/issues/210</a>.</p>
|
||||
|
||||
<p>The variables are:</p>
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
<p><code>modus-themes-prompts</code> by Philip Kaludercic in merge request 43:
|
||||
<a href="https://gitlab.com/protesilaos/modus-themes/-/merge_requests/43">https://gitlab.com/protesilaos/modus-themes/-/merge_requests/43</a></p>
|
||||
</li>
|
||||
<li>
|
||||
<p><code>modus-themes-mode-line</code> by Philip Kaludercic in merge request 40:
|
||||
<a href="https://gitlab.com/protesilaos/modus-themes/-/merge_requests/40">https://gitlab.com/protesilaos/modus-themes/-/merge_requests/40</a>.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p><code>modus-themes-lang-checkers</code> by Philip Kaludercic in merge request 46:
|
||||
<a href="https://gitlab.com/protesilaos/modus-themes/-/merge_requests/46">https://gitlab.com/protesilaos/modus-themes/-/merge_requests/46</a></p>
|
||||
</li>
|
||||
<li><code>modus-themes-org-agenda</code></li>
|
||||
<li><code>modus-themes-links</code></li>
|
||||
<li><code>modus-themes-headings</code></li>
|
||||
<li><code>modus-themes-hl-line</code></li>
|
||||
<li><code>modus-themes-paren-match</code></li>
|
||||
<li><code>modus-themes-region</code></li>
|
||||
<li><code>modus-themes-syntax</code></li>
|
||||
</ul>
|
||||
|
||||
<p>Take <code>modus-themes-syntax</code> as an example. Up until version 1.4.0, it
|
||||
would only accept a symbol, signifying a predefined style. So we had
|
||||
the possible value <code>faint</code> and another <code>faint-yellow-comments</code>. To make
|
||||
a third variant of the “faint” aesthetic, such as by combining it with
|
||||
the “alt syntax” and/or “green strings”, we would need to write new
|
||||
presets in the form of <code>faint-green-strings</code>, <code>faint-alt-syntax</code>,
|
||||
<code>faint-alt-syntax-green-strings</code>, <code>faint-green-strings-yellow-comments</code>,
|
||||
<code>faint-alt-syntax-green-strings-yellow-comments</code>. That would have been
|
||||
inefficient, hence why it was not done.</p>
|
||||
|
||||
<p>With the new approach of defining a list of properties, those
|
||||
combinations are all possible. Such as:</p>
|
||||
|
||||
<pre><code>(setq modus-themes-syntax '(faint alt-syntax))
|
||||
|
||||
(setq modus-themes-syntax '(yellow-comments alt-syntax green-strings))
|
||||
</code></pre>
|
||||
|
||||
<p>The order in which the properties are set is not significant.</p>
|
||||
|
||||
<p>The doc string of each of the aforementioned variables, or the
|
||||
corresponding entry in the manual, provides guidance on how to configure
|
||||
things. The old forms will continue to work for the time being, though
|
||||
they are considered deprecated and will stop being supported at a future
|
||||
date.</p>
|
||||
|
||||
<h4>Changes in stylistic variants for variables with sets of properties</h4>
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
<p>The meaning of the “alt syntax” style in <code>modus-themes-syntax</code> has
|
||||
been redefined. In the past, it used to have green-coloured strings
|
||||
and doc strings. Those are now red. Some other changes have been
|
||||
implemented to make the overall looks more consistent. Users who
|
||||
liked the old style can retain it by passing this list of properties:</p>
|
||||
|
||||
<pre><code>(alt-syntax green-strings)
|
||||
</code></pre>
|
||||
|
||||
<p>New styles for the “faint” aesthetic are possible, here shown as lists
|
||||
of properties:</p>
|
||||
|
||||
<pre><code>(faint green-strings)
|
||||
(faint alt-syntax)
|
||||
(faint alt-syntax green-strings)
|
||||
</code></pre>
|
||||
|
||||
<p>To each of those the <code>yellow-comments</code> property can be added as well.</p>
|
||||
|
||||
<p>Consult the doc string or the manual for the technicalities and code
|
||||
samples.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>The <code>modus-themes-hl-line</code> no longer has styles that include only an
|
||||
underline. Those proved to be problematic under certain circumstances
|
||||
and were thus removed.</p>
|
||||
|
||||
<p>Minor changes have been implemented to make the following combination
|
||||
of properties more consistent, by colourising the underline:</p>
|
||||
|
||||
<pre><code>(accented intense underline)
|
||||
</code></pre>
|
||||
</li>
|
||||
<li>
|
||||
<p>The <code>modus-themes-paren-match</code> now has styles that include an
|
||||
<code>underline</code> property. Those extend the old options, such as:</p>
|
||||
|
||||
<pre><code>(bold intense underline)
|
||||
</code></pre>
|
||||
</li>
|
||||
<li>
|
||||
<p>The <code>modus-themes-headings</code> have an improved set of styles for the “no
|
||||
text color” aesthetic. Those involve the <code>monochrome</code> property, which
|
||||
can now yield results that include a background (whereas before it was
|
||||
just colourless text for the headings, optionally without a bold
|
||||
weight). As this is an alist, here is an example (always check the
|
||||
docs for fully fledged code samples):</p>
|
||||
|
||||
<pre><code>(setq modus-themes-headings
|
||||
'((1 . (background overline))
|
||||
(2 . (overline background rainbow))
|
||||
(t . (monochrome no-bold background))))
|
||||
</code></pre>
|
||||
|
||||
<p>To allow a heading level N to retain its original style, a <code>t</code> value
|
||||
can be passed. In the previous version of the themes, it was possible
|
||||
to use <code>nil</code> for the same purpose, though that is no longer valid. In
|
||||
those cases, the fallback value of the alist will be used instead,
|
||||
such as what is noted above:</p>
|
||||
|
||||
<pre><code>(t . (monochrome no-bold background))
|
||||
</code></pre>
|
||||
</li>
|
||||
<li>
|
||||
<p>The <code>modus-themes-links</code> provide several new possible styles, due to
|
||||
an expanded set of properties that includes, among others, <code>bold</code>,
|
||||
<code>italic</code>, and <code>background</code>. The documentation covers the details.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>The <code>modus-themes-lang-checkers</code> can now attain a style that uses a
|
||||
prominently coloured background in addition to what was available
|
||||
before as a subtle background and the other variants.</p>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<h4>New variables</h4>
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
<p>The <code>modus-themes-org-agenda</code> provides the means to refashion the
|
||||
entirety of the Org agenda buffer. The value it accepts is an alist,
|
||||
with some keys expecting a symbol and others a list of properties.
|
||||
The minutia are covered in its doc string. A possible configuration
|
||||
can look like this:</p>
|
||||
|
||||
<pre><code>(setq modus-themes-org-agenda
|
||||
'((header-block . (variable-pitch scale-title))
|
||||
(header-date . (grayscale workaholic bold-today))
|
||||
(scheduled . uniform)
|
||||
(habit . traffic-light)))
|
||||
</code></pre>
|
||||
|
||||
<p><code>modus-themes-org-agenda</code> supersedes the old variable that was specific
|
||||
to the Org habit graph: <code>modus-themes-org-habit</code>. There now is a
|
||||
<code>habit</code> key which accepts the same values as before, plus a new style
|
||||
that is optimised for users with red-green colour deficiency:
|
||||
<code>traffic-light-deuteranopia</code>. Please consult the doc string of
|
||||
<code>modus-themes-org-agenda</code> or the relevant entry to the manual.</p>
|
||||
|
||||
<p>Thanks to Gustavo Barros for contributing to the creation of this
|
||||
variable as well as to all other changes in the relevant faces that
|
||||
were done in the interest of usability. A full report about
|
||||
<code>modus-themes-org-agenda</code> with screen shots is available here:
|
||||
<a href="https://protesilaos.com/codelog/2021-06-02-modus-themes-org-agenda/">https://protesilaos.com/codelog/2021-06-02-modus-themes-org-agenda/</a>.</p>
|
||||
|
||||
<p>A patch has been sent to upstream Org, with its review pending, which
|
||||
improves upon some of the areas we had identified:
|
||||
<a href="https://lists.gnu.org/archive/html/emacs-orgmode/2021-06/msg00092.html">https://lists.gnu.org/archive/html/emacs-orgmode/2021-06/msg00092.html</a>.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>The <code>modus-themes-inhibit-reload</code> controls a new behaviour of
|
||||
automatically reloading the active theme when an option is set via the
|
||||
Custom interfaces or with <code>customize-set-variable</code>. To opt-in to this
|
||||
feature, set the variable to a <code>nil</code> value.</p>
|
||||
|
||||
<p>Thanks to Philip Kaludercic for implementing this in merge request 40:
|
||||
<a href="https://gitlab.com/protesilaos/modus-themes/-/merge_requests/40">https://gitlab.com/protesilaos/modus-themes/-/merge_requests/40</a>.</p>
|
||||
|
||||
<p>In the development phase of this option, a bug was identified
|
||||
pertaining to recursion, as reported by Gustavo Barros in issue 213:
|
||||
<a href="https://gitlab.com/protesilaos/modus-themes/-/issues/213">https://gitlab.com/protesilaos/modus-themes/-/issues/213</a>. Changes
|
||||
have been made to remove that possibility, as found in merge request
|
||||
45: <a href="https://gitlab.com/protesilaos/modus-themes/-/merge_requests/45">https://gitlab.com/protesilaos/modus-themes/-/merge_requests/45</a>.</p>
|
||||
|
||||
<p>A thread was started on the emacs-devel mailing list to inquire upon
|
||||
the technicalities of this option, but it did not gain any traction:
|
||||
<a href="https://lists.gnu.org/archive/html/emacs-devel/2021-06/msg00828.html">https://lists.gnu.org/archive/html/emacs-devel/2021-06/msg00828.html</a>.</p>
|
||||
|
||||
<p>As such, we have decided to take our chances by pressing on with this
|
||||
feature. Users who are interested in it are encouraged to give it a
|
||||
try and report any possible complications. Issue 213 remains open.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>The <code>modus-themes-italic-constructs</code> is the new name of the variable
|
||||
<code>modus-themes-slanted-constructs</code>. The term “slant” was considered
|
||||
too vague or technical and some users could have missed the meaning of
|
||||
this option.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>The <code>modus-themes-scale-5</code> is renamed to <code>modus-themes-scale-title</code> to
|
||||
better convey its utility.</p>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<h3>Changes to the manual</h3>
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
<p>Rewrote or introduced the documentation for all the customisation
|
||||
options mentioned above. Also updated relevant code samples, such as
|
||||
in the manual’s introduction to the customisation options. Evaluate
|
||||
this form for an annotated code overview:</p>
|
||||
|
||||
<pre><code>(info "(modus-themes) Customization Options")
|
||||
</code></pre>
|
||||
</li>
|
||||
<li>
|
||||
<p>Rephrased a reference to “gamma ray values” as “gamma values”. Thanks
|
||||
to Anders Johansson for the contribution in merge request 42:
|
||||
<a href="https://gitlab.com/protesilaos/modus-themes/-/merge_requests/42">https://gitlab.com/protesilaos/modus-themes/-/merge_requests/42</a>.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Removed the Org macro that would insert the build date in the manual’s
|
||||
introduction. This was required to make the file reproducible,
|
||||
otherwise it would keep changing each time a new version of Emacs was
|
||||
built. Refer to Emacs bug#48661 by Glenn Morris:
|
||||
<a href="https://debbugs.gnu.org/cgi/bugreport.cgi?bug=48661">https://debbugs.gnu.org/cgi/bugreport.cgi?bug=48661</a>.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Included note on tweaking the key hints that the Avy package produces.
|
||||
This is in response to issue 215 by Rudolf Adamkovič:
|
||||
<a href="https://gitlab.com/protesilaos/modus-themes/-/issues/215">https://gitlab.com/protesilaos/modus-themes/-/issues/215</a>. Thanks to
|
||||
Nicolas De Jaeghere for providing the text.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Wrote a note on how to control the underlines that are generated in
|
||||
compilation-mode buffers and related. It is about configuring the
|
||||
variable <code>compilation-message-face</code>.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Documented how to configure the colours that are applied to the names
|
||||
of the days in the <code>M-x calendar</code> interface. The relevant variable is
|
||||
<code>calendar-weekend-days</code>.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Elaborated on a “do it yourself” (DIY) guide on how to benefit from
|
||||
the hidden feature of the themes about how they handle the bold weight
|
||||
and the italic slant. In short, we do not hardcode values and thus
|
||||
make it easy for users to specify the particularities of what it means
|
||||
for a face to have a <code>bold</code> or <code>italic</code> attribute.</p>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<h3>Faces and face groups</h3>
|
||||
|
||||
<h4>New entries</h4>
|
||||
|
||||
<p>Newly supported packages:</p>
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
<p><code>ledger-mode</code>. Thanks to Pengji Zhang for the feedback in issue 202:
|
||||
<a href="https://gitlab.com/protesilaos/modus-themes/-/issues/202">https://gitlab.com/protesilaos/modus-themes/-/issues/202</a>.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p><code>gotest</code>. Thanks to Jerry Zhang for the feedback in issue 226:
|
||||
<a href="https://gitlab.com/protesilaos/modus-themes/-/issues/226">https://gitlab.com/protesilaos/modus-themes/-/issues/226</a>.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p><code>css-mode</code></p>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<p>New faces for already supported groups:</p>
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
<p><code>shr-h1</code>, <code>shr-h2</code>, <code>shr-h3</code>, <code>shr-h4</code>, <code>shr-h5</code>, <code>shr-h6</code> of the
|
||||
shr.el library (simple HTML renderer, as experienced in, for example,
|
||||
EWW). Those are available for Emacs28, with a patch by me:
|
||||
<a href="http://debbugs.gnu.org/cgi/bugreport.cgi?bug=49433">http://debbugs.gnu.org/cgi/bugreport.cgi?bug=49433</a></p>
|
||||
</li>
|
||||
<li>
|
||||
<p><code>apropos-button</code> as a generic face that fontifies faces in apropos
|
||||
buffers. Available for Emacs28, with a patch by me:
|
||||
<a href="https://debbugs.gnu.org/cgi/bugreport.cgi?bug=49162">https://debbugs.gnu.org/cgi/bugreport.cgi?bug=49162</a>.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p><code>selectrum-mouse-highlight</code>. This makes the mouse hover effect for
|
||||
selectrum look the same as in most other contexts. Thanks to okamsn
|
||||
for the feedback in issue 203:
|
||||
<a href="https://gitlab.com/protesilaos/modus-themes/-/issues/203">https://gitlab.com/protesilaos/modus-themes/-/issues/203</a>.</p>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<h4>Review of existing entries</h4>
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
<p>Added an <code>:extend</code> property to <code>next-error</code> face. This face is used
|
||||
for pulse effects. It is good to have them extend to the edge of the
|
||||
window, so that they are easier to spot. Thanks to Gustavo Barros for
|
||||
the feedback in issue 200, which is about pulse.el:
|
||||
<a href="https://gitlab.com/protesilaos/modus-themes/-/issues/200">https://gitlab.com/protesilaos/modus-themes/-/issues/200</a>.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Tweaked the various Apropos faces. The idea was to remove the colour
|
||||
from the pseudo headings so that we would not get an exaggerated
|
||||
result of too much variety in the buffer (e.g. that of <code>M-x apropos</code>).
|
||||
The individual buttons retain their style as links, meaning that they
|
||||
are governed by the variable <code>modus-themes-links</code>.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Revised <code>whitespace-line</code> face to make it look like a warning, as it
|
||||
ought to be. Thanks to Pengji Zhang for the feedback in issue 204:
|
||||
<a href="https://gitlab.com/protesilaos/modus-themes/-/issues/204">https://gitlab.com/protesilaos/modus-themes/-/issues/204</a>.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Reworked the colour-coding of the Hydra and Transient packages. These
|
||||
are meant to tone down some excesses with the standard red and to
|
||||
adapt other colours to it. Thanks to Gustavo Barros for providing
|
||||
suggestions and helping me tweak those in issue 206:
|
||||
<a href="https://gitlab.com/protesilaos/modus-themes/-/issues/206">https://gitlab.com/protesilaos/modus-themes/-/issues/206</a>.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Recoloured <code>transient-argument</code> to improve its uniqueness in its
|
||||
context and to better comply with the expectation of hydra-style
|
||||
colour coding, as noted right above.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Made the <code>org-agenda-done</code> face conform with the customisation option
|
||||
<code>modus-themes-success-deuteranopia</code>. This means that it will be
|
||||
coloured in blue instead of green when the option is set to a non-nil
|
||||
value.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Grayed out the foreground of the Org block delimiter lines on the
|
||||
premise that any extra colouration was not needed, given the presence
|
||||
of a gray background and the overall markup of the block.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Toned down the colouration of the <code>org-code</code> face, so that it is
|
||||
consistent with <code>org-verbatim</code> as well as the colours used in opening
|
||||
and closing lines of blocks. Thanks to Gustavo Barros for suggesting
|
||||
this change in issue 206, though it went through a couple of reviews:
|
||||
<a href="https://gitlab.com/protesilaos/modus-themes/-/issues/206">https://gitlab.com/protesilaos/modus-themes/-/issues/206</a>.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Simplified the inheritance of the <code>fixed-pitch</code> face, which is used
|
||||
for internal purposes to ensure alignment of elements in buffers that
|
||||
must cope with mixed font configurations, such as an org-mode file
|
||||
with <code>M-x variable-pitch-font</code> enabled.</p>
|
||||
|
||||
<p>[ Recall that the option <code>modus-themes-no-mixed-fonts</code> can disable
|
||||
this feature. Also note that the <code>mixed-fonts</code> package, or
|
||||
equivalent, is not needed while using the Modus themes (though there
|
||||
is nothing wrong with having them together). ]</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Reduced the overall intensity of <code>org-mode-line-clock-overrun</code>.
|
||||
Thanks to Gustavo Barros for the feedback in issue 208:
|
||||
<a href="https://gitlab.com/protesilaos/modus-themes/-/issues/208">https://gitlab.com/protesilaos/modus-themes/-/issues/208</a>.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Simplified or otherwise tweaked several Org agenda faces to render
|
||||
possible the new <code>modus-themes-org-agenda</code> variable, as documented
|
||||
above. Thanks to Gustavo Barros for the feedback in issue 208:
|
||||
<a href="https://gitlab.com/protesilaos/modus-themes/-/issues/208">https://gitlab.com/protesilaos/modus-themes/-/issues/208</a>.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Increased ever so slightly the foreground colour of the <code>highlight</code>
|
||||
face. This can help improve the perception of highlights, such as
|
||||
upon hovering over a link with the mouse. Thanks to Rudolf Adamkovič
|
||||
for reporting the potential problem in issue 216:
|
||||
<a href="https://gitlab.com/protesilaos/modus-themes/-/issues/216">https://gitlab.com/protesilaos/modus-themes/-/issues/216</a>.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Prevented the override of the <code>diff-context</code> face when users assign a
|
||||
<code>bg-only</code> value to the <code>modus-themes-diffs</code> variable. This makes it
|
||||
consistent with the intent of this style, which is to work with a
|
||||
non-nil value for <code>diff-font-lock-syntax</code> (basically to allow the
|
||||
usual colour highlights of the underlying code syntax in diff
|
||||
buffers).</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Ensured consistency of all prompt-related faces by introducing a new
|
||||
face, <code>modus-themes-prompt</code>, that is inherited by all others (all
|
||||
prompt styles are controlled by the variable <code>modus-themes-prompts</code>).
|
||||
This was originally implemented with the <code>comint-highlight-prompt</code>
|
||||
face, though that could potentially lead to undefined faces if the
|
||||
comint library was not loaded. Whereas the <code>modus-themes-prompt</code>
|
||||
guarantees that we pass a known face at all times. Thanks to Philip
|
||||
Kaludercic for bringing this potential bug to my attention in a
|
||||
comment to merge request 43:
|
||||
<a href="https://gitlab.com/protesilaos/modus-themes/-/merge_requests/43#note_615224855">https://gitlab.com/protesilaos/modus-themes/-/merge_requests/43#note_615224855</a>.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Removed the background colour from the <code>widget-inactive</code> face. It
|
||||
would create problems in some cases, such as in Custom buffers for
|
||||
multiple choice options.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Refined <code>calendar-weekend-header</code> and <code>calendar-weekday-header</code> to
|
||||
emulate the design of physical calendars and remain truthful to the
|
||||
expectations set by the default configuration of the calendar.el
|
||||
library. Weekends now use a faint red, while weekdays are rendered in
|
||||
the same subtle gray they had before. The underlying principle is to
|
||||
make weekends convey a subtle warning to the effect that “this is not
|
||||
a day for work” (notwithstanding precarious economic realities). As
|
||||
noted above, there is an entry in the manual on how to make all days
|
||||
look the same, be it gray or faint red. Evaluate this form:</p>
|
||||
|
||||
<pre><code>(info "(modus-themes) Note on calendarel weekday and weekend colors")
|
||||
</code></pre>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<h3>Request for feedback on a potential version 2.0.0 of the Modus themes</h3>
|
||||
|
||||
<p>While we maintain a cautious stance towards preserving the default
|
||||
styles, there are some cases where we might be forced to introduce
|
||||
backward-incompatible changes.</p>
|
||||
|
||||
<p>Three such cases that can benefit from user feedback are:</p>
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
<p>Issue 196 on <code>modus-themes-no-mixed-fonts</code>
|
||||
<a href="https://gitlab.com/protesilaos/modus-themes/-/issues/196">https://gitlab.com/protesilaos/modus-themes/-/issues/196</a>.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Issue 198 on <code>modus-themes-hl-line</code>
|
||||
<a href="https://gitlab.com/protesilaos/modus-themes/-/issues/198">https://gitlab.com/protesilaos/modus-themes/-/issues/198</a></p>
|
||||
|
||||
<p>[ Note that <code>modus-themes-hl-line</code> now accepts a list of properties as
|
||||
described in the opening sections of this entry. ]</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Issue 218 on <code>modus-themes-diffs</code>
|
||||
<a href="https://gitlab.com/protesilaos/modus-themes/-/issues/218">https://gitlab.com/protesilaos/modus-themes/-/issues/218</a>.</p>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<h3>Miscellaneous</h3>
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
<p>Recalibrated the value of the colour <code>bg-hl-line-intense</code> in the
|
||||
palette <code>modus-themes-vivendi-colors</code>. The change should be
|
||||
practically indecipherable, though it slightly improves things in
|
||||
certain contexts.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Refined the intensity of the three main yellow colours in
|
||||
<code>modus-themes-vivendi-colors</code>.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Introduced a new <code>modus-themes-faces</code> group so that those are
|
||||
decoupled from the customisation options in the various Custom
|
||||
buffers. Thanks to Philip Kaludercic for the patch in merge request
|
||||
39: <a href="https://gitlab.com/protesilaos/modus-themes/-/merge_requests/39">https://gitlab.com/protesilaos/modus-themes/-/merge_requests/39</a>.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Updated the manual’s “Acknowledgements” section to include all new
|
||||
users who contributed to the project.</p>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<p>Thanks again to everyone involved!</p>
|
||||
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
<p>This is episode 2 in our series discussing the character and theme development of “God” in the Bible.</p>
|
||||
<p>In part 1, (0-17:25) the guys discuss the meaning of Monotheism in the Bible and Ancient Judaism. Tim offers a modern definition of monotheism as - “The belief or doctrine that there is only one God” -- Dictionary.com Tim says this is different than an ancient definition because last week, we’ve already seen that the biblical authors do not believe there’s only one Elohim. Rather, Biblical/Jewish Monotheism could be defined as = “The belief that there is one supreme Elohim (Creator and Ruler) who has no rivals among all other Elohim: Yahweh the God of Israel.”</p>
|
||||
<p>So, Tim offers resources for more accurate definitions of what the ancient Hebrews believed. William Horbury has proposed a nuanced definition: Inclusive Monotheism: Yahweh is the supreme deity in association with other divine spirits and powers. Exclusive Monotheism: Denies the existence of any divine beings other than Yahweh. However, there is no evidence that any ancient Israelites or Jews or Christians believed in that definition of “Exclusive Monotheism.”</p>
|
||||
<p>In part 2, (17:25-end) Tim continues to express his frustration with the current definition of exclusive monotheism. Tim cites several Old Testament examples. (NIV) Deuteronomy 4:35 “You were shown these things so that you might know that the LORD is God; beside him, there is no other.” In Hebrew it literally says …”know that Yahweh, he is the Elohim, there is not another besides him.” In these passages, Elohim has the Hebrew word “the” attached (ha-elohim), which means the claim being made is that Yahweh alone is the chief God, not that Yahweh is the only elohim that exists. Tim cites Michael Heiser on this point saying “ A close reading of these passages in Deuteronomy and Isaiah shows… that the denials are not claiming that other אֱלֹהִים (elohim) do not exist, but that Yahweh’s has unique and incomparable qualities in relation to other gods: Yahweh’s pre-existence, his role as creator of all things, including other elohim, his ability to save, and national deliverance. The focus is on Yahweh’s incomparable status and the impotence of the other gods. It would be empty praise to compare Yahweh to beings that did not exist. The biblical authors assume they do exists, but that they are “nothing” compared to Yahweh.” -- Michael Heiser, “The Divine Council,” The Lexham Bible Dictionary.</p>
|
||||
<p>Next week on the show, Tim and Jon discuss “The Divine Council” It will be an exciting and mind-bending episode!</p>
|
||||
<p>Show Resources:<br />
|
||||
William Horbury, "Jewish and Christian Monotheism in the Herodian Age."<br />
|
||||
Paul Jouon & T. Muraoka, A Grammar of Biblical Hebrew<br />
|
||||
Michael Heiser, “The Divine Council,” The Lexham Bible Dictionary.<br />
|
||||
Michael Heiser: The Naked Bible Podcast<br />
|
||||
Psalms 97:9</p>
|
||||
<p>Show Music:<br />
|
||||
Defender Instrumental: Rosasharn Music<br />
|
||||
Another Chance: Tae The Producer</p>
|
||||
<p>Produced by:<br />
|
||||
Dan Gummel. Jon Collins. Matthew Halbert Howen.</p>
|
|
@ -0,0 +1,88 @@
|
|||
<p>SHOW NOTES:
|
||||
Thanks for listening! We’ve posted some helpful info for you in our show notes below!</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>PODCAST BASICS:
|
||||
</p>
|
||||
|
||||
<p>- Subscribe where you listen!</p>
|
||||
|
||||
<p>- Check out the details on our <a href='http://www.thebiblerecap.com'>website
|
||||
</a></p>
|
||||
|
||||
<p>- Get the<a href='https://www.bible.com/app'> Bible app</a> (free)
|
||||
</p>
|
||||
|
||||
<p>- Follow our<a href='https://www.bible.com/reading-plans/5-chronological'> Bible reading plan</a></p>
|
||||
|
||||
<p>- Check out our customized <a href='https://www.theconnextion.com/tlcdgroup/index.cfm'>journal</a></p>
|
||||
|
||||
<p>- Join our <a href='https://www.patreon.com/thebiblerecap'>PATREON</a> community for bonus fun! </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>MERCH: Get your<a href='https://www.theconnextion.com/tlcdgroup/index.cfm'> TBR merch</a>! We’ve got t-shirts, coffee mugs, tote bags, phone wallets, and stickers! </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>FROM TODAY’S PODCAST: </p>
|
||||
|
||||
<p>- <a href='https://www.biblegateway.com/passage/?search=1+samuel+31&version=ESV'>1 Samuel 31</a></p>
|
||||
|
||||
<p>- <a href='https://www.biblegateway.com/passage/?search=1+samuel+16%3A13&version=ESV'>1 Samuel 16:13</a></p>
|
||||
|
||||
<p>- <a href='https://www.biblegateway.com/passage/?search=ezekiel+33%3A11&version=ESV'>Ezekiel 33:11</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>SOCIALS:</p>
|
||||
|
||||
<p>The Bible Recap:<a href='https://instagram.com/thebiblerecap'> Instagram</a> |<a href='https://www.facebook.com/thebiblerecap'> Facebook</a> |<a href='https://twitter.com/thebiblerecap'> Twitter</a> | <a href='http://pinterest.com/thebiblerecap'>Pinterest</a></p>
|
||||
|
||||
<p>D-Group:<a href='https://instagram.com/mydgroup/'> Instagram</a> |<a href='https://www.facebook.com/ilovemydgroup'> Facebook</a> |<a href='https://mobile.twitter.com/mydgroup'> Twitter</a> | <a href='http://pinterest.com/ilovemydgroup'>Pinterest</a></p>
|
||||
|
||||
<p>TLC:<a href='https://instagram.com/taraleighcobble'> Instagram</a> |<a href='https://www.facebook.com/taraleighcobble'> Facebook</a> |<a href='https://twitter.com/taraleighcobble'> Twitter</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>D-GROUP:
|
||||
The Bible Recap is brought to you by<a href='https://www.mydgroup.org/'> D-Group</a> - an international network of discipleship and accountability groups that meet weekly in homes and churches:<a href='https://www.mydgroup.org/map'> Find or start one near you today</a>!</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>TBR TEAM:
|
||||
</p>
|
||||
|
||||
<p>Written and Hosted by: <a href='http://taraleighcobble.com'>Tara-Leigh Cobble</a></p>
|
||||
|
||||
<p>Content Manager: <a href='http://mydgroup.org'>Courtney Vaughan
|
||||
</a></p>
|
||||
|
||||
<p>Podcast Operations: <a href='http://mydgroup.org'>Callie Summers
|
||||
</a></p>
|
||||
|
||||
<p>Website Management: <a href='http://mydgroup.org'>Joelle Smith</a></p>
|
||||
|
||||
<p>Sound Engineer: <a href='http://thebiblerecap.com'>Allison Congden</a></p>
|
||||
|
||||
<p>Content Design: <a href='http://misswyolene.com'>Morgan Young
|
||||
</a></p>
|
||||
|
||||
<p>Social Media Management: <a href='http://thebiblerecap.com'>Sarah Yocum</a></p>
|
||||
|
||||
<p>Journal Design: <a href='https://brittneyhmurray.weebly.com/'>Brittney Murray</a></p>
|
||||
|
||||
<p>Logo Design: <a href='mailto:landonhwade@gmail.com'>Landon Wade</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>Available on:<a href='https://itunes.apple.com/us/podcast/the-bible-recap/id1440833267'> iTunes</a> |<a href='https://open.spotify.com/show/2lWv2RlsyMSMzerbAb1uOx'> Spotify</a> |<a href='https://www.google.com/podcasts?feed=aHR0cHM6Ly93d3cuaXZvb3guY29tL3RoZS1iaWJsZS1yZWNhcF9mZ19mMTYzNzgzNF9maWx0cm9fMS54bWw'> Google</a> |<a href='https://www.stitcher.com/podcast/dgroup/the-bible-recap?refid=stpr'> Stitcher</a> |<a href='https://thebiblerecap.podbean.com/'> Podbean</a> | <a href='https://play.google.com/music/m/Ivmpjo6234pwcvclpwxzlklglpm?t=The_Bible_Recap'>Google Play</a> | <a href='http://youtube.com/c/TheBibleRecap'>YouTube
|
||||
</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>WEBSITE:
|
||||
<a href='http://www.thebiblerecap.com'>thebiblerecap.com</a></p>
|
||||
|
||||
<p> </p>
|
|
@ -0,0 +1 @@
|
|||
<p><img src="https://thumbnails.lbry.com/-njY0u180lw" width="480" alt="thumbnail" title="Unix for Normies?" /></p>A brief look at the good old days before soydevery took over the then non-existent Linux and other Eunuchs-based operating systems. This is actually a cute little guide to vi (vim) and document compilation on Unix based operating systems.<br /><br />I've done a playlist on groff I recommend people take a look at, it will show you all the minimalist magic you can get done on the command line without any modern bloatware:<br />https://www.youtube.com/playlist?list=PL-p5XmQHB_JRe2YeaMjPTKXSc5FqJZ_km<br /><br />My website: https://lukesmith.xyz<br />Please donate: https://lukesmith.xyz/donate<br /><br />OR affiliate links to things l use:<br />https://www.epik.com/?affid=we2ro7sa6 Get a cheap and reliable domain name with Epik.<br />https://www.vultr.com/?ref=8384069-6G Get a VPS and host a website or server for anything else.<br />https://brave.com/luk005 Get the Brave browser.<br />https://lbry.tv/$/invite/@Luke View my videos on LBRY. Get a bonus for joining.<br />https://www.coinbase.com/join/smith_5to1 Get crypto-rich on Coinbase. We both get $10 in Bitcoin when you buy or sell $100 in cryptocurrencies.<br />...<br />https://www.youtube.com/watch?v=-njY0u180lw
|
|
@ -0,0 +1 @@
|
|||
<p>Since it's spring break there is no TFC tonight, but parents, you've made it halfway through spring break! If you are still wondering what to do with you child who is normally in school, might I suggest… <a href='/story.php?story_fbid=128448839284924&id=115628967233578'>More</a> teaching them to play pitch?! It's never too late to learn some cards! After that, quiz them on some Bible trivia! This is one of the places I've gotten questions to stump kids on for a long time! <a href='https://lm.facebook.com/l.php?u=https%3A%2F%2Ficebreakerideas.com%2Fbible-trivia-questions-answers%2F&h=AT0NfcnCdPx9vSorl3GVuxsUqYe-vzjISgEkkE1I-tOzhRtXaZVwczchKuxi6pHL9lh1iViH5PuMHiRbZP-P7jVg6ku5U3Cc5OOwrFBo1MtrgHEBhTa38pT5lGCgzlMYxaGE_Xn2Z6-hplLsXI7wvjtA6yF5fQ' target='_blank' rel='noopener' data-sigil='MLynx_asynclazy'>https://icebreakerideas.com/bible-trivia-questions-answers/</a></p><a href='/story.php?story_fbid=128448839284924&id=115628967233578&m_entstream_source=timeline&__tn__=%2As%2As-R' aria-label='Open story' class='_5msj'></a><a href="https://lm.facebook.com/l.php?u=https%3A%2F%2Ficebreakerideas.com%2Fbible-trivia-questions-answers%2F&h=AT36O_YX3WiilVGv-0-np6Xzr9ONxWNaIWxr7rRUPHcNCSkTOPyBUCr1xtGhqYmJVgk6trilCleRMqYJ2dB09cvF-_0ePPq1pdlnr1s2LyBambVXkvGUSCrWUDPwrxEjP0w8IIwfpIYgdgZEueJxLwR-M16aiiZgjtM_GJ5ZS5bC3-MxkmL4_V0J"><section class='_2rea _24e1 _412_ _bpa _vyy _5t8z' data-store='{"globalShareID":980588488708526}'><section class='_32l5 _2rec'><h4 class='_52jc _52jg _5zgx _5tg_'>ICEBREAKERIDEAS.COM</h4><h3 class='_52jh _4act _16-5'>270 Bible Trivia Questions + Answers (New & Old Testament)</h3>Check your knowledge of Bible with our BIGGEST list of Bible Trivia Questions and Answers. Try our Bible Quiz NOW!</section><a aria-labelledby='u_0_op_5r' class='touchable _4qxt' href='https://lm.facebook.com/l.php?u=https%3A%2F%2Ficebreakerideas.com%2Fbible-trivia-questions-answers%2F&h=AT36O_YX3WiilVGv-0-np6Xzr9ONxWNaIWxr7rRUPHcNCSkTOPyBUCr1xtGhqYmJVgk6trilCleRMqYJ2dB09cvF-_0ePPq1pdlnr1s2LyBambVXkvGUSCrWUDPwrxEjP0w8IIwfpIYgdgZEueJxLwR-M16aiiZgjtM_GJ5ZS5bC3-MxkmL4_V0J' target='_blank' data-gt='{"tn":"H"}' rel='noopener' data-sigil='show-save-caret-nux-on-click MLynx_asynclazy'></a></section></a>
|
|
@ -0,0 +1,50 @@
|
|||
<p>SHOW NOTES: </p>
|
||||
|
||||
<p>- All the info you need to START is on our <a href='http://www.thebiblerecap.com'>website</a>! Seriously, go there.
|
||||
- Join our <a href='https://www.patreon.com/thebiblerecap'>PATREON</a> community for bonus perks!</p>
|
||||
|
||||
<p>- Get your <a href='https://www.theconnextion.com/tlcdgroup/index.cfm'>TBR merch</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>FROM TODAY’S PODCAST: </p>
|
||||
|
||||
<p>- Get the<a href='https://www.bible.com/app'> Bible app</a> (free)
|
||||
- Follow our<a href='https://www.bible.com/reading-plans/17553-the-bible-recap-with-tara-leigh-cobble'> Bible reading plan</a></p>
|
||||
|
||||
<p>- <a href='http://www.thebiblerecap.com/books'>Buy The Bible Recap book</a></p>
|
||||
|
||||
<p>- <a href='https://www.theconnextion.com/tbr'>Buy The Bible Recap journal, the Daily Study Guide, Weekly Discussion Guide</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>PREP EPISODES (in case you haven’t listened yet):</p>
|
||||
|
||||
<ol><li> <a href='https://thebiblerecap.podbean.com/e/prep-1-lets-read-the-bible-in-a-year-chronological-plan/?token=676d196e5781216fa0d0db185d401f23'>Let's Read the Bible in a Year (Chronological Plan)!</a></li>
|
||||
|
||||
<li> <a href='https://thebiblerecap.podbean.com/e/prep-2-how-i-learned-to-love-reading-the-bible/?token=55cf4fe795aca608b9097a790e04c4a9'>How I Learned to Love (Reading) the Bible</a></li>
|
||||
|
||||
<li> <a href='https://thebiblerecap.podbean.com/e/prep-3-why-reading-the-whole-bible-is-important-interview-with-lee-mcderment/?token=a4f95002d2da44cca8a60f827882279c'>Why Reading the Whole Bible is Important (interview with Lee McDerment)</a></li>
|
||||
|
||||
<li> <a href='https://thebiblerecap.podbean.com/e/prep-4-preparing-to-read-the-bible/?token=e106a078369d5a5bff17d09f04cccffe'>Preparing to Read the Bible</a></li>
|
||||
|
||||
<li> <a href='https://thebiblerecap.podbean.com/e/prep-5-avoiding-common-mistakes-what-to-look-for-when-you-read-the-bible/?token=436edc2474532b97073fdee1ef37fe35'>Avoiding Common Mistakes: What to Look for When You Read the Bible</a></li>
|
||||
|
||||
<li> <a href='https://thebiblerecap.podbean.com/e/prep-6-reading-the-bible-in-community/?token=0ccd19f77baf837ec914b3ced2428d29'>Reading the Bible in Community</a></li>
|
||||
|
||||
</ol><p> </p>
|
||||
|
||||
<p>SOCIALS:</p>
|
||||
|
||||
<p>The Bible Recap:<a href='https://instagram.com/thebiblerecap'> Instagram</a> |<a href='https://www.facebook.com/thebiblerecap'> Facebook</a> |<a href='https://twitter.com/thebiblerecap'> Twitter</a></p>
|
||||
|
||||
<p>D-Group:<a href='https://instagram.com/mydgroup/'> Instagram</a> |<a href='https://www.facebook.com/ilovemydgroup'> Facebook</a> |<a href='https://mobile.twitter.com/mydgroup'> Twitter</a></p>
|
||||
|
||||
<p>TLC:<a href='https://instagram.com/taraleighcobble'> Instagram</a> |<a href='https://www.facebook.com/taraleighcobble'> Facebook</a> |<a href='https://twitter.com/taraleighcobble'> Twitter</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>D-GROUP:
|
||||
The Bible Recap is brought to you by<a href='https://www.mydgroup.org/'> D-Group</a> - an international network of discipleship and accountability groups that meet weekly in homes and churches:<a href='https://www.mydgroup.org/map'> Find or start one near you today</a>!</p>
|
||||
|
||||
<p> </p>
|
|
@ -0,0 +1,31 @@
|
|||
<p>SHOW NOTES: </p>
|
||||
|
||||
<p>- All the info you need to START is on our <a href='http://www.thebiblerecap.com'>website</a>!
|
||||
- Join our <a href='https://www.patreon.com/thebiblerecap'>PATREON</a> family for bonus perks!</p>
|
||||
|
||||
<p>- Get your <a href='https://www.theconnextion.com/tlcdgroup/index.cfm'>TBR merch</a></p>
|
||||
|
||||
<p>- <a href='http://thebiblerecap.com/contact'>Show credits</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>FROM TODAY’S PODCAST: </p>
|
||||
|
||||
<p>- Video: <a href='https://www.youtube.com/watch?v=juPvv_xcX-U'>Haggai Overview</a></p>
|
||||
|
||||
<p>- The Bible Recap in <a href='http://thebiblerecap.com/espanol'>Spanish</a>!</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>SOCIALS:</p>
|
||||
|
||||
<p>The Bible Recap:<a href='https://instagram.com/thebiblerecap'> Instagram</a> |<a href='https://www.facebook.com/thebiblerecap'> Facebook</a> |<a href='https://twitter.com/thebiblerecap'> Twitter</a></p>
|
||||
|
||||
<p>D-Group:<a href='https://instagram.com/mydgroup/'> Instagram</a> |<a href='https://www.facebook.com/ilovemydgroup'> Facebook</a> |<a href='https://mobile.twitter.com/mydgroup'> Twitter</a></p>
|
||||
|
||||
<p>TLC:<a href='https://instagram.com/taraleighcobble'> Instagram</a> |<a href='https://www.facebook.com/taraleighcobble'> Facebook</a> |<a href='https://twitter.com/taraleighcobble'> Twitter</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>D-GROUP:
|
||||
The Bible Recap is brought to you by<a href='https://www.mydgroup.org/'> D-Group</a> - an international network of discipleship and accountability groups that meet weekly in homes and churches:<a href='https://www.mydgroup.org/map'> Find or start one near you today</a>!</p>
|
|
@ -0,0 +1,24 @@
|
|||
<p>Thanks for joining us. On DLN Xtend Episode 19, Nate spent time trying out some plugins for OBS Studio and Eric continues the hunt for the ideal video editor.</p>
|
||||
|
||||
<p>In our Listener Feedback segment, we have a follow up on Folding@Home.</p>
|
||||
|
||||
<p>We thank DigitalOcean for sponsoring DLN Xtend. DigitalOcean offers the simplest, most developer-friendly cloud platform. It’s optimized to make managing and scaling apps easy with an intuitive API, multiple storage options, integrated firewalls, load balancers and so much more. You can get all this plus access to their world-class customer support for as low as $5 per month. DigitalOcean also has 2,000 cloud-agnostic tutorials to help you stay up to date with the latest open source software, languages, and frameworks. Get started on Digital Ocean for 2 Months FREE with a $100 credit by going to <a href="https://do.co/dln" rel="nofollow">do.co/dln</a>. </p>
|
||||
|
||||
<p>Our Community Focus discusses ways to limit internet usage for children, particularly the focus on education and alternative activities.</p>
|
||||
|
||||
<p>On This Week in Linux, Michael covered the fourth edition of Linux Mint Debian Edition and we discuss using Debian as a desktop OS.</p>
|
||||
|
||||
<p>That's all for this week. Be sure to stop by DLN's <a href="https://discourse.destinationlinux.network/" rel="nofollow">Discourse</a>, <a href="https://destinationlinux.org/telegram" rel="nofollow">Telegram</a>, <a href="https://destinationlinux.network/mumble/" rel="nofollow">Mumble</a> and <a href="https://destinationlinux.org/discord" rel="nofollow">Discord</a> servers to continue the discussion. More information about this show and other Destination Linux Network <a href="https://destinationlinux.network/shows/" rel="nofollow">shows</a> and <a href="https://destinationlinux.network/creators/" rel="nofollow">creators</a> (like <a href="https://destinationlinux.network/creators/eric-adams/" rel="nofollow">Eric</a> and <a href="https://destinationlinux.network/creators/nathan-wolf/" rel="nofollow">Nate</a> for example) is available at <a href="https://destinationlinux.network" rel="nofollow">destinationlinux.network</a>.</p>
|
||||
|
||||
<p>Until next time, see yas!</p>
|
||||
|
||||
<p>Chapters:</p>
|
||||
|
||||
<p>00:41 Nate's Week - OBS Plugins<br>
|
||||
08:57 Eric's Week - Video Editors<br>
|
||||
17:21 Listener Feedback - Folding@Home<br>
|
||||
19:11 DLN Xtend Sponsored by DIgitalOcean<br>
|
||||
20:16 Community Focus - Limiting Internet Usage for Children<br>
|
||||
27:35 This Week in Linux - Linux Mint Debian Edition<br>
|
||||
33:12 Outro</p>
|
||||
|
|
@ -0,0 +1,89 @@
|
|||
<p>SHOW NOTES:
|
||||
Thanks for listening! We’ve posted some helpful info for you in our show notes below!</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>PODCAST BASICS:
|
||||
</p>
|
||||
|
||||
<p>- Subscribe where you listen!</p>
|
||||
|
||||
<p>- Check out the details on our <a href='http://www.thebiblerecap.com'>website
|
||||
</a></p>
|
||||
|
||||
<p>- Get the<a href='https://www.bible.com/app'> Bible app</a> (free)
|
||||
</p>
|
||||
|
||||
<p>- Follow our<a href='https://www.bible.com/reading-plans/5-chronological'> Bible reading plan</a></p>
|
||||
|
||||
<p>- Check out our customized <a href='https://www.theconnextion.com/tlcdgroup/index.cfm'>journal</a></p>
|
||||
|
||||
<p>- Join our <a href='https://www.patreon.com/thebiblerecap'>PATREON</a> community for bonus fun! </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>MERCH: Get your<a href='https://www.theconnextion.com/tlcdgroup/index.cfm'> TBR merch</a>! We’ve got t-shirts, coffee mugs, tote bags, phone wallets, and stickers! </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>FROM TODAY’S PODCAST: </p>
|
||||
|
||||
<p>- Article: <a href='https://www.nytimes.com/2005/08/05/world/middleeast/king-davids-palace-isfound-archaeologist-says.html'>King David's Palace is Found</a></p>
|
||||
|
||||
<p>- Article: <a href='https://www.i24news.tv/en/news/israel/1568040407-7th-century-stamp-bearing-name-of-king-david-s-son-unearthed-in-jerusalem'>7th Century BC Stamp Bearing Name of King David's Son Unearthed in Jerusalem</a></p>
|
||||
|
||||
<p>- Video: <a href='https://www.youtube.com/watch?v=HPGShWZ4Jvk'>Malachi Overview</a></p>
|
||||
|
||||
<p>- Invite your friends to join us: <a href='http://thebiblerecap.com/start'>NT Reading Plan & Journal</a>
|
||||
</p>
|
||||
|
||||
<p>- Have a question for TLC? <a href='http://patreon.com/thebiblerecap'>Submit it by joining Patreon at the $10+/month tier!</a> (Final day to join!) </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>SOCIALS:</p>
|
||||
|
||||
<p>The Bible Recap:<a href='https://instagram.com/thebiblerecap'> Instagram</a> |<a href='https://www.facebook.com/thebiblerecap'> Facebook</a> |<a href='https://twitter.com/thebiblerecap'> Twitter</a> | <a href='http://pinterest.com/thebiblerecap'>Pinterest</a> </p>
|
||||
|
||||
<p>D-Group:<a href='https://instagram.com/mydgroup/'> Instagram</a> |<a href='https://www.facebook.com/ilovemydgroup'> Facebook</a> |<a href='https://mobile.twitter.com/mydgroup'> Twitter</a> | <a href='http://pinterest.com/ilovemydgroup'>Pinterest</a></p>
|
||||
|
||||
<p>TLC:<a href='https://instagram.com/taraleighcobble'> Instagram</a> |<a href='https://www.facebook.com/taraleighcobble'> Facebook</a> |<a href='https://twitter.com/taraleighcobble'> Twitter</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>D-GROUP:
|
||||
The Bible Recap is brought to you by<a href='https://www.mydgroup.org/'> D-Group</a> - an international network of discipleship and accountability groups that meet weekly in homes and churches:<a href='https://www.mydgroup.org/map'> Find or start one near you today</a>!</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>TBR TEAM: </p>
|
||||
|
||||
<p>Written, Hosted, and Produced by: <a href='http://taraleighcobble.com'>Tara-Leigh Cobble</a></p>
|
||||
|
||||
<p>Content Manager:<a href='http://mydgroup.org/'> Courtney Vaughan</a></p>
|
||||
|
||||
<p>Podcast Operations:<a href='http://mydgroup.org/'> Callie Summers</a></p>
|
||||
|
||||
<p>Logistics Management:<a href='http://mydgroup.org/'> Joelle Smith</a></p>
|
||||
|
||||
<p>Sound Engineer:<a href='http://thebiblerecap.com/'> Allison Congden</a></p>
|
||||
|
||||
<p>Content Design:<a href='http://misswyolene.com/'> Morgan Young</a></p>
|
||||
|
||||
<p>Social Media Management:<a href='http://thebiblerecap.com/'> Sarah Yocum</a></p>
|
||||
|
||||
<p>Social Media Management:<a href='http://thebiblerecap.com/'> Sissy Shakely</a></p>
|
||||
|
||||
<p>Journal Design:<a href='https://brittneyhmurray.weebly.com/'> Brittney Murray</a></p>
|
||||
|
||||
<p>Logo Design: Landon Wade</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>Available on:<a href='https://itunes.apple.com/us/podcast/the-bible-recap/id1440833267'> iTunes</a> |<a href='https://open.spotify.com/show/2lWv2RlsyMSMzerbAb1uOx'> Spotify</a> |<a href='https://www.google.com/podcasts?feed=aHR0cHM6Ly93d3cuaXZvb3guY29tL3RoZS1iaWJsZS1yZWNhcF9mZ19mMTYzNzgzNF9maWx0cm9fMS54bWw'> Google</a> |<a href='https://www.stitcher.com/podcast/dgroup/the-bible-recap?refid=stpr'> Stitcher</a> |<a href='https://thebiblerecap.podbean.com/'> Podbean</a> | <a href='https://play.google.com/music/m/Ivmpjo6234pwcvclpwxzlklglpm?t=The_Bible_Recap'>Google Play</a> | <a href='http://youtube.com/c/TheBibleRecap'>YouTube
|
||||
</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>WEBSITE:
|
||||
<a href='http://www.thebiblerecap.com'>thebiblerecap.com</a></p>
|
|
@ -0,0 +1,37 @@
|
|||
<p><iframe loading="lazy" title="Destination Linux EP41 - Aiming at Goals" width="800" height="450" src="https://www.youtube.com/embed/NkiijvCcbpA?feature=oembed" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></p>
|
||||
<p><b>Intro:</b></p>
|
||||
<p><b>Welcome to episode 41 of Destination Linux</b></p>
|
||||
<p><a href="https://www.ghacks.net/2017/10/07/aim-shutdown-aol-instant-messenger-alternatives/?_m=3n%2e0038%2e2066%2eyz0ao08pez%2e25il"><span style="font-weight: 400;">AIM Shutdown: AOL Instant Messenger alternatives</span><span style="font-weight: 400;"><br />
|
||||
</span></a></p>
|
||||
<p><a href="https://puri.sm/posts/librem-5-phone-funding-target-met-one-week-after-50percent-mark/"><span style="font-weight: 400;">Purism Meets Its $1.5 Million Goal for Security Focused Librem 5 Smartphone One Week After Surging Past the 50% Mark</span></a></p>
|
||||
<p><a href="https://www.phoronix.com/scan.php?page=news_item&px=KDE-Plasma-5.11"><span style="font-weight: 400;">KDE Plasma 5.11 Officially Released With Vault, Better Wayland & More</span></a></p>
|
||||
<p><a href="https://www.kde.org/announcements/plasma-5.11.0.php"><span style="font-weight: 400;">Official Announcement</span></a></p>
|
||||
<p><a href="https://itsfoss.com/ubuntu-17-10-release-features/"><span style="font-weight: 400;">Ubuntu 17.10 New Features, Release Date and Upgrade Procedure</span></a></p>
|
||||
<p><a href="https://community.chakralinux.org/t/chakra-2017-10-goedel-released/6693"><span style="font-weight: 400;">Chakra 2017.10 “Goedel” released</span></a></p>
|
||||
<p><a href="https://smdavis.us/2017/10/01/development-release-xfce-pulseaudio-plugin-0-3-1/"><span style="font-weight: 400;">Development Release: Xfce PulseAudio Plugin 0.3.1</span></a></p>
|
||||
<p><a href="http://www.zdnet.com/article/firefox-tests-cliqz-engine-which-slurps-user-browsing-data/"><span style="font-weight: 400;">Mozilla pilots Cliqz engine in Firefox to slurp user browsing data</span></a></p>
|
||||
<p><a href="https://www.mozilla.org/en-US/privacy/firefox-cliqz/"><span style="font-weight: 400;">Firefox + Cliqz Privacy Notice</span></a></p>
|
||||
<p><a href="https://www.ghacks.net/2017/10/03/mozilla-changes-review-process-for-firefox-webextensions/?_m=3n%2e0038%2e2063%2eyz0ao08pez%2e25dm"><span style="font-weight: 400;">Mozilla changes review process for Firefox WebExtensions</span></a></p>
|
||||
<p><a href="http://www.omgubuntu.co.uk/2017/10/chrome-gtk-window-controls"><span style="font-weight: 400;">Google Chrome Now Uses Native GTK Window Buttons on Linux</span></a></p>
|
||||
<p><a href="https://arstechnica.com/information-technology/2017/10/the-cases-for-and-against-claims-kaspersky-helped-steal-secret-nsa-secrets/"><span style="font-weight: 400;">Russia reportedly stole NSA secrets with help of Kaspersky—what we know now</span></a></p>
|
||||
<p><a href="https://www.cyberscoop.com/kaspersky-dhs-ban/"><span style="font-weight: 400;">DHS bans Kaspersky from U.S. government networks</span></a></p>
|
||||
<p><a href="https://www.phoronix.com/scan.php?page=article&item=coffee-vulkan-nv&num=1"><span style="font-weight: 400;">NVIDIA 387.12 Vulkan vs. OpenGL Performance Across Multiple CPUs</span></a></p>
|
||||
<p><a href="https://www.greenmangaming.com/blog/ok-suck-games/"><span style="font-weight: 400;">It’s OK To Suck At Games</span></a><span style="font-weight: 400;"> Our Rocket League Theme?</span></p>
|
||||
<p><b>Gaming</b></p>
|
||||
<p><b>What have I been playing:</b></p>
|
||||
<p><span style="font-weight: 400;">Those still using AIM messenger will love this week’s pick. </span><a href="http://store.steampowered.com/app/32400/STAR_WARS__Dark_Forces/"><span style="font-weight: 400;">Star Wars Dark Forces</span></a></p>
|
||||
<p><a href="https://www.gamingonlinux.com/articles/battalion-1944-a-competitive-ww2-fps-looks-like-it-may-come-with-linux-support.10506"><span style="font-weight: 400;">BATTALION 1944, a competitive WW2 FPS looks like it may come with Linux support</span></a></p>
|
||||
<p><a href="https://www.greenmangaming.com/newsroom/2017/10/09/playerunknowns-battlegrounds-just-shy-2-million-concurrent-players/"><span style="font-weight: 400;">PlayerUnknown’s Battlegrounds Just Shy Of 2 Million Concurrent Players</span></a></p>
|
||||
<p><a href="https://www.greenmangaming.com/blog/middle-earth-shadow-war-releases-today/"><span style="font-weight: 400;">Middle-Earth: Shadow of War Release</span></a></p>
|
||||
<p><a href="https://www.humblebundle.com/endless-rpg-lands-bundle"><span style="font-weight: 400;">Humble “Endless RPG Lands” Bundle</span></a></p>
|
||||
<p><b>Admin</b></p>
|
||||
<p><a href="https://teespring.com/destinationlinuxpodcast?utm_swu=29&utm_source=Seller_mktauto_us&utm_campaign=seller_campaign_launch_2&utm_medium=email#pid=522&cid=101894&sid=front"><span style="font-weight: 400;">Destination Linux Apparel</span></a></p>
|
||||
<p><b>Where Can You Find Us This Week</b></p>
|
||||
<ul>
|
||||
<li style="font-weight: 400;"><span style="font-weight: 400;">Rocco and Ryan will be playing Rocket League live this week on DasGeek Channel</span></li>
|
||||
<li style="font-weight: 400;"><span style="font-weight: 400;">Friday Night Live on the BigDaddyLinux Channel</span></li>
|
||||
</ul>
|
||||
<p><span style="font-weight: 400;">Twitter @dasgeekchannel @bigdaddylinux</span></p>
|
||||
<p><span style="font-weight: 400;">A big thank you to each and every one of you for supporting us and Thank you For Watching Destination Linux</span></p>
|
||||
<p><span style="font-weight: 400;">Have a great week and remember the Journey ITSELF is just as important as the Destination</span></p>
|
||||
<p> </p>
|
|
@ -0,0 +1 @@
|
|||
<p><img src="https://thumbnails.lbry.com/Hu2FcmNirTQ" width="480" alt="thumbnail" title="The Wolf Among Us w/ Michael Tunnell of DLN | Game Sphere 15" /></p>On this episode of Game Sphere I am joined by Michael Tunnell (TuxDigital) of DLN as we discuss his love comic books, and why I recommended he try the Telltale game The Wolf Among Us.<br />...<br />https://www.youtube.com/watch?v=Hu2FcmNirTQ
|
|
@ -0,0 +1,12 @@
|
|||
<p>In this episode, the guys wrap up their discussion on the Kingdom of God. The biblical story ultimately becomes a clash between God’s Kingdom and human kingdoms. God responds to this rebellion throughout the Old Testament, but the good news of Jesus is that he came to bring the Kingdom again. What does this mean for us as followers of Jesus?</p>
|
||||
<p>In the first part of the episode (02:36-16:40), Tim and Jon talk about Jesus as King. What does it look like for Jesus to invite his followers to live under his reign in the upside-down Kingdom?</p>
|
||||
<p>In the last part of the episode (16:55-22:48), the guys continue to unpack this idea of the “now and not yet” Kingdom they introduced last time. There is incredible hope in the reality of God’s Kingdom. Death, injustice, and human failure are not the way the story ends! But joining in God’s Kingdom means resisting the kingdoms of the world and allowing Jesus to fully reign.</p>
|
||||
<p>Video:<br />
|
||||
This episode is designed to accompany our video called, “Gospel of the Kingdom." You can view it on our youtube channel here: https://www.youtube.com/watch?v=xmFPS0f-kzs</p>
|
||||
<p>Book References:<br />
|
||||
How God Became King by N.T. Wright<br />
|
||||
Simply Christian by N.T. Wright</p>
|
||||
<p>Show Music:<br />
|
||||
Defender Instrumental by Rosasharn Music<br />
|
||||
Blue Skies by Unwritten Stories<br />
|
||||
Flooded Meadows by Unwritten Stories</p>
|
|
@ -0,0 +1 @@
|
|||
  submitted by   <a href="https://www.reddit.com/user/Ok-Lengthiness3303"> /u/Ok-Lengthiness3303 </a> <br/> <span><a href="https://ibb.co/6Nfww8P">[link]</a></span>   <span><a href="https://www.reddit.com/r/archlinux/comments/q8lwzv/hey_guys_i_just_booted_my_laptop_and_got_this/">[comments]</a></span>
|
|
@ -0,0 +1,35 @@
|
|||
<p>SHOW NOTES: </p>
|
||||
|
||||
<p>- All the info you need to START is on our <a href='http://www.thebiblerecap.com'>website</a>!
|
||||
- Join our <a href='https://www.patreon.com/thebiblerecap'>PATREON</a> family for bonus perks!</p>
|
||||
|
||||
<p>- Get your <a href='https://www.theconnextion.com/tlcdgroup/index.cfm'>TBR merch</a></p>
|
||||
|
||||
<p>- <a href='http://thebiblerecap.com/contact'>Show credits</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>FROM TODAY’S PODCAST: </p>
|
||||
|
||||
<p>- <a href='https://www.biblegateway.com/passage/?search=jeremiah+7%3A16&version=ESV'>Jeremiah 7:16</a></p>
|
||||
|
||||
<p>- <a href='https://www.biblegateway.com/passage/?search=isaiah+55%3A3&version=ESV'>Isaiah 55:3</a></p>
|
||||
|
||||
<p>- <a href='https://thebiblerecap.podbean.com/e/211-isaiah-54-58/'>The Bible Recap - Episode 211</a> </p>
|
||||
|
||||
<p>- <a href='https://www.patreon.com/thebiblerecap'>Join Patreon at our $10/month level to memorize scripture with us!</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>SOCIALS:</p>
|
||||
|
||||
<p>The Bible Recap:<a href='https://instagram.com/thebiblerecap'> Instagram</a> |<a href='https://www.facebook.com/thebiblerecap'> Facebook</a> |<a href='https://twitter.com/thebiblerecap'> Twitter</a></p>
|
||||
|
||||
<p>D-Group:<a href='https://instagram.com/mydgroup/'> Instagram</a> |<a href='https://www.facebook.com/ilovemydgroup'> Facebook</a> |<a href='https://mobile.twitter.com/mydgroup'> Twitter</a></p>
|
||||
|
||||
<p>TLC:<a href='https://instagram.com/taraleighcobble'> Instagram</a> |<a href='https://www.facebook.com/taraleighcobble'> Facebook</a> |<a href='https://twitter.com/taraleighcobble'> Twitter</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>D-GROUP:
|
||||
The Bible Recap is brought to you by<a href='https://www.mydgroup.org/'> D-Group</a> - an international network of discipleship and accountability groups that meet weekly in homes and churches:<a href='https://www.mydgroup.org/map'> Find or start one near you today</a>!</p>
|
|
@ -0,0 +1 @@
|
|||
  submitted by   <a href="https://www.reddit.com/user/unixbhaskar"> /u/unixbhaskar </a> <br/> <span><a href="https://youtube.com/watch?v=yKqu44bmpUw&feature=share">[link]</a></span>   <span><a href="https://www.reddit.com/r/emacs/comments/qykh9b/emacs_sign_git_commit_in_magit_2021_11_21_071700/">[comments]</a></span>
|
|
@ -0,0 +1,4 @@
|
|||
<p>Joe Ressington of Late Night Linux joins Wes to discuss just what makes a “Proper” distribution. Then the latest news about Libreboot and the Free Software Foundation, Containers explained in pictures & our complaints about the latest Telegram release.</p>
|
||||
|
||||
<p>Plus Fedora has the perfect desktop for Hacker News & Android is now king of the internet.</p><p><a href="https://jupitersignal.memberful.com/checkout?plan=52946" rel="payment">Support LINUX Unplugged</a></p>
|
||||
|
|
@ -0,0 +1 @@
|
|||
<p><img src="https://thumbnails.lbry.com/JMP8JjmS3ds" width="480" alt="thumbnail" title="System Crafters Live! - The Many Varieties of Emacs (Part 2)" /></p>This is Part 2 of the Friday stream after I crashed it by killing OBS by accident!<br /><br />The first part is here: https://youtu.be/PE714pm1kvE<br /><br />In this stream, we'll dig into Emacs history and take a look at some of the variants that have come and gone over the years. I'm not an expert in Emacs history so I'm hoping some of you will be able to help fill in the gaps!<br /><br />Show notes: https://systemcrafters.net/live-streams/september-17-2021/<br /><br />If you enjoy the content I make on this channel, please consider supporting my work: https://systemcrafters.net/support-the-channel/<br /><br />Get System Crafters merch here: https://store.systemcrafters.net?utm_source=stream<br /><br />Follow me on Twitter for more Emacs content!<br />https://twitter.com/SystemCrafters<br /><br />Chat with the System Crafters community on Discord and IRC: http://systemcrafters.chat<br /><br />Check out my other video series!<br /><br />- Emacs Essentials: https://www.youtube.com/watch?v=48JlgiBpw_I&list=PLEoMzSkcN8oPZvSdewHG8uApD7THlLLCV<br />- Emacs From Scratch: https://www.youtube.com/watch?v=74zOY-vgkyw&list=PLEoMzSkcN8oPH1au7H6B7bBJ4ZO7BXjSZ<br />- Emacs Tips: https://www.youtube.com/watch?v=wKTKmE1wLyw&list=PLEoMzSkcN8oMHJ6Xil1YdnYtlWd5hHZql<br />- Emacs Desktop Environment: https://www.youtube.com/watch?v=f7xB2fFk1tQ&list=PLEoMzSkcN8oNPbEMYEtswOVTvq7CVddCS<br />- Emacs IDE: https://www.youtube.com/watch?v=E-NAM9U5JYE&list=PLEoMzSkcN8oNvsrtk_iZSb94krGRofFjN<br />- Emacs Mail: https://www.youtube.com/watch?v=yZRyEhi4y44&list=PLEoMzSkcN8oM-kA19xOQc8s0gr0PpFGJQ<br />- Learning Emacs Lisp: https://www.youtube.com/watch?v=RQK_DaaX34Q&list=PLEoMzSkcN8oPQtn7FQEF3D7sroZbXuPZ7<br />- Craft Your System with GNU Guix: https://www.youtube.com/watch?v=iBaqOK75cho&list=PLEoMzSkcN8oNxnj7jm5V2ZcGc52002pQU<br /><br />Music credits:<br /><br />Coriolis Effect by logos feat. stefsax, licensed Creative Commons 3.0 CC-BY http://ccmixter.org/files/mseq/26296<br />reNovation by airtone, licensed Creative Commons 3.0 CC-BY http://ccmixter.org/files/airtone/60674<br />ukeSounds by airtone, licensed Creative Commons 3.0 CC-BY http://ccmixter.org/files/airtone/32655<br />Between Worlds (Instrumental) by Aussens@iter, licensed Creative Commons 3.0 CC-BY http://ccmixter.org/files/tobias_weber/56664<br />...<br />https://www.youtube.com/watch?v=JMP8JjmS3ds
|
|
@ -0,0 +1,27 @@
|
|||
<p><iframe loading="lazy" title="Destination Linux EP10 - Chat with Matt" width="800" height="450" src="https://www.youtube.com/embed/sKXGKjdCZTs?feature=oembed" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></p>
|
||||
<p>Welcome to Destination Linux Episode 10 A Chat With Matt for 02-24-17</p>
|
||||
<p><b>News</b></p>
|
||||
<p><a href="http://www.techspot.com/news/68253-amd-ryzen-goes-sale-march-2nd-under-500.html">AMD Ryzen goes on sale March 2nd for under $500</a></p>
|
||||
<p><a href="https://fossbytes.com/amd-ryzen-7-price-specs/">fossbytes article on specs</a></p>
|
||||
<p><a href="https://www.newegg.com/Product/Product.aspx?Item=N82E16819117645">Intel Core i7-6900K comparable to the 1800k</a></p>
|
||||
<p><a href="https://www.theregister.co.uk/2017/02/20/linux_4_10_released/">Oh happy day! Linus Torvalds has given the world Linux 4.10 </a></p>
|
||||
<p><a href="https://fossbytes.com/linux-kernel-4-10-released-new-features/">fossbytes article on new features</a></p>
|
||||
<p><a href="http://www.cio.com/article/3173609/security/eleven-year-old-root-flaw-found-and-patched-in-the-linux-kernel.html#jump">Eleven-year-old root flaw found and patched in the Linux kernel</a></p>
|
||||
<p><a href="http://google.com/newsstand/s/CBIwzfjotjk">New Chrome hack prompts users to download ‘missing font’ to sneak in malware</a></p>
|
||||
<p><a href="http://google.com/newsstand/s/CBIwzMCWrzQ">The Verge: Jide’s new OS is like an Android version of Windows 10’s Continuum</a></p>
|
||||
<p><a href="http://fullcirclemagazine.org/2017/02/23/valve-launches-steamvr-support-for-linux/">Valve launches SteamVR support for Linux</a></p>
|
||||
<p><a href="http://news.softpedia.com/news/kde-plasma-5-8-6-released-for-lts-users-with-over-50-improvements-bug-fixes-513128.shtml">KDE Plasma 5.8.6 Released for LTS Users with over 80 Improvements, Bug Fixes</a></p>
|
||||
<p><a href="http://news.softpedia.com/news/descent-os-is-dead-arkas-os-takes-its-place-and-it-s-based-on-ubuntu-16-04-lts-513125.shtml">Descent OS Is Dead, Arkas OS Takes Its Place and It’s Based on Ubuntu 16.04 LTS</a></p>
|
||||
<p><span style="text-decoration: underline;"><b>Distrowatch</b></span></p>
|
||||
<p><a href="https://www.kubuntu.org/news/kubuntu-17-04-beta-1-released-for-testers/">Kubuntu 17.04 Beta 1 released for testers</a></p>
|
||||
<p><a href="http://news.softpedia.com/news/kaos-2017-02-is-out-with-linux-4-9-10-kde-plasma-5-9-2-and-x-org-server-1-19-1-513168.shtml">KaOS 2017.02 Is Out with Linux 4.9.10, KDE Plasma 5.9.2, and X.Org Server 1.19.1</a></p>
|
||||
<p><a href="http://linux.softpedia.com/blog/reactos-0-5-open-source-windows-compatible-os-to-offer-windows-vista-like-style-513165.shtml">ReactOS 0.5 Open Source Windows-Compatible OS to Offer Windows Vista-like Style</a></p>
|
||||
<p><a href="http://distrowatch.com/9731">Zenwalk</a></p>
|
||||
<p><a href="http://distrowatch.com/9730">Rebellin Linux 3.5</a></p>
|
||||
<p>YouTube Corner</p>
|
||||
<p><b>SomeGuy</b></p>
|
||||
<p>There is a shortage of FreeBSD and Linux talk shows. Please focus on the technical aspects, not just Window Manger X vs Y or Distro A vs B.</p>
|
||||
<p><b>Discussion</b></p>
|
||||
<p>What do you recommend for a new user</p>
|
||||
<p><b>Interview With Matt</b></p>
|
||||
<p>Thanks for Watching</p>
|
|
@ -0,0 +1 @@
|
|||
<table> <tr><td> <a href="https://www.reddit.com/r/unixporn/comments/qzigyx/awesomewm_my_humble_setup_first_time_ricing_up/"> <img src="https://preview.redd.it/jm3ieqqwi4181.png?width=640&crop=smart&auto=webp&s=2fc41c74c7b2f1eef7ef7feafc522341932a140e" alt="[awesomewm] my humble setup, first time ricing up properly." title="[awesomewm] my humble setup, first time ricing up properly." /> </a> </td><td>   submitted by   <a href="https://www.reddit.com/user/Expensive_Register19"> /u/Expensive_Register19 </a> <br/> <span><a href="https://i.redd.it/jm3ieqqwi4181.png">[link]</a></span>   <span><a href="https://www.reddit.com/r/unixporn/comments/qzigyx/awesomewm_my_humble_setup_first_time_ricing_up/">[comments]</a></span> </td></tr></table>
|
|
@ -0,0 +1 @@
|
|||
<!-- SC_OFF --><div class="md"><p>Hi all,</p> <p>I recently bought a Intel i5 11400 and paired it with an Aorus B560M from Gigabyte. It came with a UEFI/BIOS F3 and when I updated to the F6 (latest made for enabling Intel PTT by default for Windows 11) I found a bunch of ACPI table problems.</p> <p>​</p> <p>The first one already was present in my F3 UEFI/BIOS and it's "classic": FADT doesn't declare support for PCIe ASPM. Even with the BIOS/UEFI settings enabled, the table pass to the OS that the system doesn't support it. I don't know why. I know, though, that decompiling the FADT binary table to ASL (Acpi Source Language) let's me change that hex code to enable the support. Just need to recompile in the AML (binary - Acpi machine language).</p> <p>​</p> <p>The second one is a bunch of errors from pointers in the early tables. I didn't even try to touch it (yet). From my new found knowledge, this is the basic structure of the tables, in loading order is:</p> <p>RSDP (Root table. Non-modifiable).XSDT (successor for the RSDT [acpi 1.0] with 64-bit support. Non-modifiable).FACP (alias for the FADT table. Indicates the power capabilities and call 3 other tables).MADT/APIC (I/O controllers), DSDT (i/o mappings) and multiple SSDT (dynamic or statics; complements of i/o mappings for specific devices for the DSDT table).</p> <p>​</p> <p>My bet is that with windows 11, the tables got all messed up to cater to MS bullshit stuff. Since the kernel has an "upgrade" feature, I thought of correcting the tables and upgrading them in the UEFI. Has anyone done that? The following link will lead to the <a href="https://Kernel.org">Kernel.org</a> doc page that presents the function. I am still learning C, but I guess I could rewrite all the tables that I may "upgrade" to actually make them clean and ready for Linux with C and ASL.</p> <p><a href="https://www.kernel.org/doc/html/latest/admin-guide/acpi/initrd_table_override.html">https://www.kernel.org/doc/html/latest/admin-guide/acpi/initrd_table_override.html</a></p> <p>In suma: Has anyone here attempted to upgrade or use a substitute in the initramfs? Is there some resource for the procedure in Arch's Wiki that I missed, or outside the wiki? ACPI is in rev 6.1 and MS lobbies to keep things back in 2.0 still.</p> <p>EDIT: Adding some resources.</p> <p><a href="https://wiki.osdev.org/RSDP">https://wiki.osdev.org/RSDP</a> <a href="https://wiki.osdev.org/XSDT">https://wiki.osdev.org/XSDT</a> <a href="https://wiki.osdev.org/FADT">https://wiki.osdev.org/FADT</a> <a href="https://01.org/linux-acpi/documentation/overriding-dsdt">https://01.org/linux-acpi/documentation/overriding-dsdt</a></p> <p>​</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/Ohlav"> /u/Ohlav </a> <br/> <span><a href="https://www.reddit.com/r/archlinux/comments/q6texl/acpi_tables_upgrade_modification/">[link]</a></span>   <span><a href="https://www.reddit.com/r/archlinux/comments/q6texl/acpi_tables_upgrade_modification/">[comments]</a></span>
|
Loading…
Add table
Add a link
Reference in a new issue