trying to fix

This commit is contained in:
Chris Cochrun 2022-01-03 12:41:35 -06:00
parent fa407dfeb6
commit e013d7569e
22945 changed files with 447936 additions and 0 deletions

View file

@ -0,0 +1,114 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<meta name="author" content="By John Mercouris" />
<title>Common Settings and Easy Configuration</title>
<style type="text/css">
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
span.underline{text-decoration: underline;}
div.column{display: inline-block; vertical-align: top; width: 50%;}
</style>
<style type="text/css">
a.sourceLine { display: inline-block; line-height: 1.25; }
a.sourceLine { pointer-events: none; color: inherit; text-decoration: inherit; }
a.sourceLine:empty { height: 1.2em; position: absolute; }
.sourceCode { overflow: visible; }
code.sourceCode { white-space: pre; position: relative; }
div.sourceCode { margin: 1em 0; }
pre.sourceCode { margin: 0; }
@media screen {
div.sourceCode { overflow: auto; }
}
@media print {
code.sourceCode { white-space: pre-wrap; }
a.sourceLine { text-indent: -1em; padding-left: 1em; }
}
pre.numberSource a.sourceLine
{ position: relative; }
pre.numberSource a.sourceLine:empty
{ position: absolute; }
pre.numberSource a.sourceLine::before
{ content: attr(data-line-number);
position: absolute; left: -5em; text-align: right; vertical-align: baseline;
border: none; pointer-events: all;
-webkit-touch-callout: none; -webkit-user-select: none;
-khtml-user-select: none; -moz-user-select: none;
-ms-user-select: none; user-select: none;
padding: 0 4px; width: 4em;
color: #aaaaaa;
}
pre.numberSource { margin-left: 3em; border-left: 1px solid #aaaaaa; padding-left: 4px; }
div.sourceCode
{ }
@media screen {
a.sourceLine::before { text-decoration: underline; }
}
code span.al { color: #ff0000; font-weight: bold; } /* Alert */
code span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */
code span.at { color: #7d9029; } /* Attribute */
code span.bn { color: #40a070; } /* BaseN */
code span.bu { } /* BuiltIn */
code span.cf { color: #007020; font-weight: bold; } /* ControlFlow */
code span.ch { color: #4070a0; } /* Char */
code span.cn { color: #880000; } /* Constant */
code span.co { color: #60a0b0; font-style: italic; } /* Comment */
code span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */
code span.do { color: #ba2121; font-style: italic; } /* Documentation */
code span.dt { color: #902000; } /* DataType */
code span.dv { color: #40a070; } /* DecVal */
code span.er { color: #ff0000; font-weight: bold; } /* Error */
code span.ex { } /* Extension */
code span.fl { color: #40a070; } /* Float */
code span.fu { color: #06287e; } /* Function */
code span.im { } /* Import */
code span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */
code span.kw { color: #007020; font-weight: bold; } /* Keyword */
code span.op { color: #666666; } /* Operator */
code span.ot { color: #007020; } /* Other */
code span.pp { color: #bc7a00; } /* Preprocessor */
code span.sc { color: #4070a0; } /* SpecialChar */
code span.ss { color: #bb6688; } /* SpecialString */
code span.st { color: #4070a0; } /* String */
code span.va { color: #19177c; } /* Variable */
code span.vs { color: #4070a0; } /* VerbatimString */
code span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */
</style>
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
</head>
<body>
<header>
<h1 class="title">Common Settings and Easy Configuration</h1>
<p class="author">By John Mercouris</p>
</header>
<p>Common settings and easy configuration recently landed in Nyxt! Now it is possible to set the value of any class/slot from the UI! You don't need to know any Lisp.</p>
<p>When you first start Nyxt, our new <code>*help*</code> page presents you with some helpful buttons to click on:</p>
<p><img src="../static/image/article/help-page.png" /></p>
<p>If you click on <code>Common settings</code>, you'll be presented with a simple menu where you can select your favorite keybinding scheme, home page URL, and zoom level.</p>
<p><img src="../static/image/article/common-settings.png" /></p>
<p>Your settings will automatically be saved and reloaded whenever you start Nyxt!</p>
<p>Don't worry about overwriting changes to your <code>init.lisp</code> file, these changes are automatically stored in a separate <code>auto-config.lisp</code> file. This file is loaded <strong>before</strong> your <code>init.lisp</code> file so that you can always override any configuration.</p>
<p>Here's what would be appended to your <code>auto-config.lisp</code> file if you clicked on <code>Use Emacs</code> in the common settings screen.</p>
<div class="sourceCode" id="configuration" data-org-language="lisp"><pre class="sourceCode commonlisp"><code class="sourceCode commonlisp"><a class="sourceLine" id="configuration-1" data-line-number="1">(DEFINE-CONFIGURATION WEB-BUFFER</a>
<a class="sourceLine" id="configuration-2" data-line-number="2"> ((DEFAULT-MODES &#39;(EMACS-MODE CERTIFICATE-EXCEPTION-MODE WEB-MODE BASE-MODE))))</a></code></pre></div>
<p>No magic. Transparent, straightforward Lisp.</p>
<p>Beyond customization of common settings, we've added the ability to customize any class or slot from the <code>describe-slot</code> and <code>describe-class</code> commands.</p>
<p>Below you can see an example of how we can customize a class:</p>
<p><img src="../static/image/article/describe-class.png" /></p>
<p>Every single slot marked with <code>Configure</code> will allow you to input whatever value you like. Anything that is introspectable is customizable!</p>
<p>Let's run through an example: let's change the height of our status buffer.</p>
<p>First you would find the slot that you are interested in, in this case the status buffer height slot.</p>
<p><img src="../static/image/article/describe-slot-status-buffer-query.png" /></p>
<p>Then you would view the current value, the default form, and the documentation. From this screen, you can press <code>Configure</code>. After pressing <code>Configure</code>, you will be prompted for a new value. Input any valid value you would like.</p>
<p><img src="../static/image/article/configure-slot-value.png" /></p>
<p>After you supply your new value, any new windows (even after restarting Nyxt) will utilize the new value for the status buffer height! That's it!</p>
<p><img src="../static/image/article/configure-result.png" /></p>
<p>Please note: configuration changes only affect new instances of an object, not existing ones.</p>
<p>Thanks for reading :-)</p>
</body>
</html>

View file

@ -0,0 +1 @@
<p>Megyn Kelly is joined by Malcolm Gladwell, best-selling author and host of "Revisionist History," to talk about the importance of forgiveness, the value of being disagreeable, Jeffrey Toobin's Zoom incident, the failures of journalists, why "The LIttle Mermaid" teaches terrible lessons, the cost of "cancel culture" in today's society (and historically), how to deal with criticism, and more.</p><p><br /></p><p>Follow The Megyn Kelly Show on all social platforms:</p><p><br /></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></p><p><br /></p><p>Find out more information at:</p><p><a href="https://www.devilmaycaremedia.com/megynkellyshow">https://www.devilmaycaremedia.com/megynkellyshow</a></p>

View file

@ -0,0 +1 @@
<p>How were the books of the Bible selected? What should we do if we have a hard time reading the Bible? How does the Bible apply to daily life? In this episode, Tim, Jon, and Carissa respond to your questions from the Paradigm series so far. Thanks to our audience for all your incredible questions!</p><p><a href="https://bibleproject.com/podcasts/the-bible-project-podcast/">View full show notes from this episode →</a></p><p>Timestamps </p><ul><li>Do Christians Need To Have a Daily Quiet Time? (0:38)</li><li>Whats the Difference Between Inspired and Inerrant? (9:57)</li><li>What Bible Did Jesus Use? (31:09)</li><li>Should We Call the Bible the Word of God? (37:14)</li><li>Should the Apocryphal Books Be in the Protestant Bible? (45:40)</li><li>What About the JEDP Theory? (55:52)</li><li>How Should We Apply Scripture to Our Lives? (1:03:30)</li><li>What Do You Do if the Bible Was Used Against You? (1:09:20)</li></ul><p>Referenced Resources</p><ul><li><a href="https://library.dts.edu/Pages/TL/Special/ICBI_1.pdf">The Chicago Statement on Biblical Inerrancy</a></li><li><a href="https://www.amazon.com/Five-Views-Biblical-Inerrancy-Counterpoints/dp/0310331366/ref=sr_1_5?crid=22T4CF4MLKCQW&dchild=1&keywords=counterpoints+series+zondervan&qid=1635199674&s=books&sprefix=counterpoints+%2Cstripbooks%2C241&sr=1-5"><i>Five Views on Biblical Inerrancy (Counterpoints: Bible and Theology)</i></a><i>, J. Merrick</i></li><li><i>The Pentateuch: International Perspectives on Current Research</i>, Thomas Dozeman</li><li><i>Paradigm Change in Pentateuchal Research</i>, Matthias Armgart</li><li>“<a href="https://www.thetorah.com/article/was-the-documentary-hypothesis-tainted-by-wellhausens-antisemitism">Was the Documentary Hypothesis Tainted by Wellhausens Antisemitism?</a>,” Alan T. Levenson</li><li>Interested in more? Check out <a href="https://bibleproject.com/tim-mackie/">Tims library here.</a></li></ul><p>Show Music </p><ul><li>“Defender (Instrumental)” by TENTS</li></ul><p>Show produced by Cooper Peltz. Edited by Dan Gummel and Zach McKinley. Show notes by Lindsey Ponder. </p><p>Powered and distributed by Simplecast.</p>

View file

@ -0,0 +1 @@
<table> <tr><td> <a href="https://www.reddit.com/r/unixporn/comments/q8k43g/gnome_sometimes_ubuntu_with_a_nice_wallpaper_is/"> <img src="https://external-preview.redd.it/oLZGTyfCbnM1K243snB5hVzT6aT6OT277LE2TNClPyI.jpg?width=640&amp;crop=smart&amp;auto=webp&amp;s=6ca3f8e0f81bdb8b46875d7f5bc486b4ca1eb9b0" alt="[GNOME] Sometimes Ubuntu with a nice wallpaper is endgame." title="[GNOME] Sometimes Ubuntu with a nice wallpaper is endgame." /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/eggytart91"> /u/eggytart91 </a> <br/> <span><a href="https://i.imgur.com/Wwebz5g.jpg">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/unixporn/comments/q8k43g/gnome_sometimes_ubuntu_with_a_nice_wallpaper_is/">[comments]</a></span> </td></tr></table>

View file

@ -0,0 +1 @@
<!-- SC_OFF --><div class="md"><p><a href="https://www.youtube.com/watch?v=iOgfyo1C8RY">https://www.youtube.com/watch?v=iOgfyo1C8RY</a></p> <p>Hi, I&#39;ve recently been red pilled into Linux and currently am running Fedora.</p> <p>I find navigating my computer via a &#39;Terminal&#39; (if that&#39;s the correct terminology) to be the ultimate way to use a computer for my use case of simplicity and productivity.</p> <p>Being new to Linux, how would I go about having a similar &#39;setup&#39; as shown in this video, being able to navigate my computer via this &#39;terminal&#39; with a file directory and have multiple windows etc?</p> <p>(I&#39;ve found I&#39;ll like to settle on using emacs if that helps/is relevant)</p> <p>Thank-you in advance</p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/thinlycuta4paper"> /u/thinlycuta4paper </a> <br/> <span><a href="https://www.reddit.com/r/emacs/comments/r4qyip/noob_question_how_do_i_make_my_computer_like_this/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/emacs/comments/r4qyip/noob_question_how_do_i_make_my_computer_like_this/">[comments]</a></span>

View file

@ -0,0 +1 @@
<table> <tr><td> <a href="https://www.reddit.com/r/unixporn/comments/ponb7c/xfce_dark_neon/"> <img src="https://preview.redd.it/9zw7qaiz6nn71.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=7276615bde9eedd12b953d92563edcb9e0d88324" alt="[Xfce] Dark Neon" title="[Xfce] Dark Neon" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/TeamAffe"> /u/TeamAffe </a> <br/> <span><a href="https://i.redd.it/9zw7qaiz6nn71.png">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/unixporn/comments/ponb7c/xfce_dark_neon/">[comments]</a></span> </td></tr></table>

View file

@ -0,0 +1 @@
Screw your freedom and more on todays CrossPolitic Daily News Brief This is Toby Sumpter. Today is Friday, August 13, 2021. Government-Funded Researchers Sought Aborted Minorities for Organ Harvesting https://freebeacon.com/policy/taxpayer-fund-aborted-babies-research/ The federal government gave at least $2.7 million in taxpayer money to researchers who sought out minority babies who had been aborted in order to [&#8230;]

View file

@ -0,0 +1 @@
<p><img src="https://thumbnails.lbry.com/60DiYI4B5gk" width="480" alt="thumbnail" title="VPNs You Can Buy on The Darknet" /></p>₿💰💵💲Help Support the Channel by Donating Crypto💲💵💰₿<br /><br /><br /><br />A few VPNs that you can buy off of the darknet.<br /><br /><br />Monero<br />45F2bNHVcRzXVBsvZ5giyvKGAgm6LFhMsjUUVPTEtdgJJ5SNyxzSNUmFSBR5qCCWLpjiUjYMkmZoX9b3cChNjvxR7kvh436<br /><br />Bitcoin<br />3MMKHXPQrGHEsmdHaAGD59FWhKFGeUsAxV<br /><br />Ethereum<br />0xeA4DA3F9BAb091Eb86921CA6E41712438f4E5079<br /><br />Litecoin<br />MBfrxLJMuw26hbVi2MjCVDFkkExz8rYvUF<br /><br />Dash<br />Xh9PXPEy5RoLJgFDGYCDjrbXdjshMaYerz<br /><br />Zcash<br />t1aWtU5SBpxuUWBSwDKy4gTkT2T1ZwtFvrr<br /><br />Chainlink<br />0x0f7f21D267d2C9dbae17fd8c20012eFEA3678F14<br /><br />Bitcoin Cash<br />qz2st00dtu9e79zrq5wshsgaxsjw299n7c69th8ryp<br /><br />Etherum Classic<br />0xeA641e59913960f578ad39A6B4d02051A5556BfC<br /><br />USD Coin<br />0x0B045f743A693b225630862a3464B52fefE79FdB<br /><br />Subscribe to my YouTube channel http://goo.gl/9U10Wz<br />and be sure to click that notification bell so you know when new videos are released.<br />...<br />https://www.youtube.com/watch?v=60DiYI4B5gk

View file

@ -0,0 +1 @@
<!-- SC_OFF --><div class="md"><p>When I installed arch on my first time I connected to the wifi using iwctl because I&#39;m using wireless. So after doing the whole install I set up network manager and enabled the service at systemctl enable NetworkManager.service. But when I boot into my new system I have no Internet. I am quite in a rush at the moment so I&#39;m sorry if I don&#39;t provide any logs or anything (I know you&#39;re not supposed to write up a post when you&#39;re in a rush). </p> <p>I suppose I have to connect to the internet using nmcli?</p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Robo_NinjaR"> /u/Robo_NinjaR </a> <br/> <span><a href="https://www.reddit.com/r/archlinux/comments/rd3onc/network_manager_not_connecting_to_wifi/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/archlinux/comments/rd3onc/network_manager_not_connecting_to_wifi/">[comments]</a></span>

View file

@ -0,0 +1 @@
Evidence indicates that slavery was a universal institution. It was practiced on every inhabited continent. It isnt a particularly western institution at all. What has been peculiar to the West is the effort to abolish it. That effort has been largely successful when it comes to legislation—nevertheless slavery is still with us. Why is that? [&#8230;]

View file

@ -0,0 +1 @@
<!-- SC_OFF --><div class="md"><p>After inserting empty line between brackets i got such result, is it possible to configure (without advices) electric pair mode for correct indentation? I have such result for any mode that i have.</p> <p><a href="https://preview.redd.it/d3at52rsx6t71.png?width=1582&amp;format=png&amp;auto=webp&amp;s=0e8954044705224efdc21d96775f467d76bfc14a">https://preview.redd.it/d3at52rsx6t71.png?width=1582&amp;format=png&amp;auto=webp&amp;s=0e8954044705224efdc21d96775f467d76bfc14a</a></p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/darkawower"> /u/darkawower </a> <br/> <span><a href="https://www.reddit.com/r/emacs/comments/q77vuo/how_do_i_fix_the_electric_pair_indentation_for_a/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/emacs/comments/q77vuo/how_do_i_fix_the_electric_pair_indentation_for_a/">[comments]</a></span>

View file

@ -0,0 +1 @@
<p><img src="https://thumbnails.lbry.com/o81PUKwU5ug" width="480" alt="thumbnail" title="Year of The Linux Desktop - GNU Not Required" /></p>I hope this year is good to all of you, and better than the last year, we're all going to make it Linux bros!<br /><br />₿💰💵💲Help Support the Channel by Donating Crypto💲💵💰₿<br /><br />Monero<br />45F2bNHVcRzXVBsvZ5giyvKGAgm6LFhMsjUUVPTEtdgJJ5SNyxzSNUmFSBR5qCCWLpjiUjYMkmZoX9b3cChNjvxR7kvh436<br /><br />Bitcoin<br />3MMKHXPQrGHEsmdHaAGD59FWhKFGeUsAxV<br /><br />Ethereum<br />0xeA4DA3F9BAb091Eb86921CA6E41712438f4E5079<br /><br />Litecoin<br />MBfrxLJMuw26hbVi2MjCVDFkkExz8rYvUF<br /><br />Dash<br />Xh9PXPEy5RoLJgFDGYCDjrbXdjshMaYerz<br /><br />Zcash<br />t1aWtU5SBpxuUWBSwDKy4gTkT2T1ZwtFvrr<br /><br />Chainlink<br />0x0f7f21D267d2C9dbae17fd8c20012eFEA3678F14<br /><br />Bitcoin Cash<br />qz2st00dtu9e79zrq5wshsgaxsjw299n7c69th8ryp<br /><br />Etherum Classic<br />0xeA641e59913960f578ad39A6B4d02051A5556BfC<br /><br />USD Coin<br />0x0B045f743A693b225630862a3464B52fefE79FdB<br /><br />Subscribe to my YouTube channel http://goo.gl/9U10Wz<br />and be sure to click that notification bell so you know when new videos are released.<br />...<br />https://www.youtube.com/watch?v=o81PUKwU5ug

View file

@ -0,0 +1 @@
<p><img src="https://thumbnails.lbry.com/U-iyFvB6EEs" width="480" alt="thumbnail" title="Vivid Knight - Its like slay the spire but super happy. (Linux)" /></p>Patreon: https://www.patreon.com/hexdsl<br />Amazon Wish list: https://www.amazon.co.uk/hz/wishlist/ls/OQECP17P4Q3B?ref_=wl_share<br /><br />https://store.steampowered.com/app/1569090/Vivid_Knight/<br /><br />My content is aimed at adults and I/we often swear in videos where we talk, please keep that in mind. This is channel for a mature audience.<br /><br />Thank you for watching. <br /><br />look at my words on https://hexdsl.co.uk<br />Join me on Discord: https://discord.gg/37GYAhj<br /><br />System Specs:<br />OS: Debian (testing) <br />DE: BSPWM<br />PC PARTS: https://uk.pcpartpicker.com/user/hexdsl/saved/wG6F8d<br /><br />Get me on... <br />web: https://hexdsl.co.uk<br />Stream: https://tv.hexdsl.co.uk<br />E-mail: HexDSL@posteo.net<br />...yes I am interested in collaborations.<br />...<br />https://www.youtube.com/watch?v=U-iyFvB6EEs

View file

@ -0,0 +1,31 @@
<p><div class="video-container"><iframe src="https://www.youtube-nocookie.com/embed/XQ1bpn_6JrQ?feature=oembed&start&end&wmode=opaque&loop=0&controls=1&mute=0&rel=0&modestbranding=1" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div></p>
<p></p>
<p><span id="more-1529"></span></p>
<p>Sponsored by: <a href="https://do.co/dl" target="_blank" rel="noopener noreferrer">do.co/dl</a><br />
<a href="https://do.co/dl" target="_blank" rel="noopener noreferrer"><img loading="lazy" class="alignnone size-full wp-image-1499" src="https://destinationlinux.org/wp-content/uploads/2019/01/digital-ocean-banner.png" alt="" width="468" height="60" /></a></p>
<p>Hosts of Destination Linux:<br />
<strong>Michael</strong> of TuxDigital = <a href="https://tuxdigital.com" target="_blank" rel="noopener noreferrer">https://tuxdigital.com</a><br />
<strong>Zeb</strong>, aka Zebedeeboss = <a href="https://youtube.com/zebedeeboss" target="_blank" rel="noopener noreferrer">https://youtube.com/zebedeeboss</a><br />
<strong>Noah</strong> of Ask Noah Show = <a href="http://asknoahshow.com" target="_blank" rel="noopener noreferrer">http://asknoahshow.com</a><br />
<strong>Ryan</strong>, aka DasGeek = <a href="https://dasgeekcommunity.com" target="_blank" rel="noopener noreferrer">https://dasgeekcommunity.com</a></p>
<p>Want to Support the Show?<br />
Support on <a href="https://destinationlinux.org/patreon" target="_blank" rel="noopener noreferrer">Patreon</a> or on <a href="https://destinationlinux.org/sponsus" target="_blank" rel="noopener noreferrer">Sponsus</a><br />
Destination Linux Network <a href="https://destinationlinux.network/store" target="_blank" rel="noopener noreferrer">Store</a></p>
<p>Want to follow the show and hosts on social media?<br />
You can find all of our social accounts at <a href="https://destinationlinux.org/contact" target="_blank" rel="noopener noreferrer">destinationlinux.org/contact</a></p>
<p>&#8212;</p>
<p>Topics covered in this episode:</p>
<p><a href="https://itsfoss.com/zorin-os-privacy-concerns/" target="_blank" rel="noopener noreferrer">ZorinOS Privacy Concerns</a><br />
<a href="https://news.softpedia.com/news/ubuntu-touch-can-now-run-on-raspberry-pi-3-with-the-official-7-touch-screen-lcd-528303.shtml" target="_blank" rel="noopener noreferrer">Ubuntu Touch Runs On Raspberry Pi</a><br />
<a href="https://www.reddit.com/r/Purism/comments/e2mqgb/i_have_my_librem_5_ama/" target="_blank" rel="noopener noreferrer">Librem 5 Birch Has Shipped</a><br />
<a href="https://www.phoronix.com/scan.php?page=news_item&#038;px=GNOME-Software-Promotes-Blobs" target="_blank" rel="noopener noreferrer">Fedora Users Concerned GNOME Software Proprietary Software</a><br />
<a href="http://linuxgizmos.com/linux-powered-handheld-is-like-a-pocketchip-on-steroids/" target="_blank" rel="noopener noreferrer">Linux Powered Handheld Returns</a></p>
<p>&#8212;</p>
<p>Software Spotlight:<br />
<a href="https://bitwarden.com" target="_blank" rel="noopener noreferrer">Bitwarden</a> &#8211; open source password manager</p>
<p>Ryan&#8217;s Bitwarden Video [Part 1 of 2]<br />
<a href="https://www.youtube.com/watch?v=4eteLdrE9tI" target="_blank" rel="noopener noreferrer">https://www.youtube.com/watch?v=4eteLdrE9tI</a></p>
<p>Michael&#8217;s Bitwarden Video [Part 2 of 2]<br />
<a href="https://www.youtube.com/watch?v=5t22YIeUTKE" target="_blank" rel="noopener noreferrer">https://www.youtube.com/watch?v=5t22YIeUTKE</a></p>
<p>Tips &amp; Tricks:<br />
<a href="https://www.turnkeylinux.org" target="_blank" rel="noopener noreferrer">TurnKeyLinux</a></p>

View file

@ -0,0 +1 @@
<a href="https://www.facebook.com/NorthernValleyTFC/"><img src="https://scontent.fict1-1.fna.fbcdn.net/v/t1.6435-1/cp0/p50x50/151177197_115670240562784_7305556504870656520_n.png?_nc_cat=105&ccb=1-5&_nc_sid=dbb9e7&_nc_ohc=xoFCcgZhpMsAX_xHxjk&_nc_ht=scontent.fict1-1.fna&oh=4ec63298f66f25af09c5755fa579e557&oe=616904E6" alt="" /></a><a href="https://www.facebook.com/NorthernValleyTFC/">NV TFC</a><a href="https://www.facebook.com/NorthernValleyTFC/photos/a.117554230374385/236314788498328/"></a><i></i><p>Spread the word! TFC is kicking off NEXT WEEK, Wednesday September 1! It's a new year and TFC is getting revamped! 😃<br /> 🎉Junior High will meet in Long Island, right after practice. 5:15 pm. Snacks will be provided. Rides will be available back to Almena School. Drop-off at 6:30 pm!<br /> 🎉High School will meet at the Almena Community Building at 6:30 pm. Supper will be provided!<br /> We are still in the process of nailing down the details of what each week will look like, and will provide those details on the first night of TFC!<br /> Please let others know! Invite a friend!!</p><a href="https://www.facebook.com/NorthernValleyTFC/photos/a.117554230374385/236314788498328/"><img src="https://scontent.fict1-1.fna.fbcdn.net/v/t1.6435-9/p526x296/239433359_236314798498327_4943153853425923248_n.png?_nc_cat=110&ccb=1-5&_nc_sid=8024bb&_nc_ohc=j1sN9yZOkU0AX_SGpE7&_nc_ht=scontent.fict1-1.fna&oh=bf469b61fd4afe5b1060eaf7358d6052&oe=616A089E" alt="May be an image of text that says 'A ministry of Teens for Christ TFE KICKOFFI Annie Annie Over A MIXTURE OF FOOTBALL, A HOUSE, THE LAST MAN STANDING Wednesday, 1 Junior High September 5:15 PM OUTSIDE LONG ISLAND METHODIST CHURCH SNACKS PROVIDED Come over after school/practice! Rides will be provided back Almena School. Pick-up at 6:30 pm. High school 6:30 PM ALMENA COMMUNITY BUILDING SUPPER PROVIDED'" width="500" height="667" caption="May be an image of text that says 'A ministry of Teens for Christ TFE KICKOFFI Annie Annie Over A MIXTURE OF FOOTBALL, A HOUSE, THE LAST MAN STANDING Wednesday, 1 Junior High September 5:15 PM OUTSIDE LONG ISLAND METHODIST CHURCH SNACKS PROVIDED Come over after school/practice! Rides will be provided back Almena School. Pick-up at 6:30 pm. High school 6:30 PM ALMENA COMMUNITY BUILDING SUPPER PROVIDED'" /></a>

View file

@ -0,0 +1,56 @@
<p>On this episode of DLN Xtend we discuss a new user question from the Discourse forum.</p>
<p>Welcome to episode 89 of DLN Xtend. DLN Xtend is a community powered podcast. We take conversations from the DLN Community from places like the DLN Discourse Forums, Telegram group, Discord server and more. We also take topics from other shows around the network to give our takes.</p>
<p>00:00 Introduction<br>
01:32 DisplayLink<br>
04:00 Christmas Baking<br>
05:18 Pi-Hole<br>
08:39 Episode 85 Feedback<br>
10:37 Name Change<br>
13:00 Newbie Questions<br>
28:25 Outdoor Christmas Light Dance<br>
32:07 Universe Sandbox<br>
38:25 Close</p>
<p>Main Topic</p>
<ul>
<li><a href="https://discourse.destinationlinux.network/t/newbie-questions/4611/4" rel="nofollow">https://discourse.destinationlinux.network/t/newbie-questions/4611/4</a></li>
</ul>
<p>Nate</p>
<ul>
<li>Pi-Hole Setup
<ul>
<li><a href="https://cubiclenate.com/2021/12/26/pi-hole-the-easy-way/" rel="nofollow">https://cubiclenate.com/2021/12/26/pi-hole-the-easy-way/</a></li>
</ul></li>
<li>Outdoor Christmas Light Dance
<ul>
<li><a href="https://www.youtube.com/channel/UCY6KdxWFOlKaIPand7ROwvw/playlists" rel="nofollow">https://www.youtube.com/channel/UCY6KdxWFOlKaIPand7ROwvw/playlists</a></li>
</ul></li>
</ul>
<p>Wendy</p>
<ul>
<li>Episode 85 Feedback
<ul>
<li><a href="https://discourse.destinationlinux.network/t/getting-cliche-dln-xtend-85/4531/3" rel="nofollow">https://discourse.destinationlinux.network/t/getting-cliche-dln-xtend-85/4531/3</a></li>
</ul></li>
<li>Universe Sandbox
<ul>
<li><a href="https://store.steampowered.com/app/230290/Universe_Sandbox/" rel="nofollow">https://store.steampowered.com/app/230290/Universe_Sandbox/</a></li>
</ul></li>
</ul>
<p>Contact info <br>
Matt (Twitter @MattDLN)<br>
Wendy (Mastodon @WendyDLN)<br>
Nate (Website CubicleNate.com)</p>

View file

@ -0,0 +1,28 @@
<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 TODAYS PODCAST: </p>
<p>- <a href='http://www.thebiblerecap.com/contact'>Donate to The Bible Recap!</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>
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>

View file

@ -0,0 +1 @@
<!-- SC_OFF --><div class="md"><p>Welcome</p> <p>I have a problem with sound, here is some history of it:</p> <p>2 years in the past the sound worked perfectly. Then it stopped, I needed to install sof-firmware package. From about 3 months it started not working again. Every sound device is detected, but nothing really works. I tryied many things but nothing helped.</p> <p>For arch linux specific problems i found <a href="https://bbs.archlinux.org/viewtopic.php?id=251153">https://bbs.archlinux.org/viewtopic.php?id=251153</a></p> <p>But i cant easily downgrade such a low-level package</p> <p>any ideaas?</p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Szybet"> /u/Szybet </a> <br/> <span><a href="https://www.reddit.com/r/archlinux/comments/qyuapq/problem_with_bytcrrt5640_sound_card_on_lenovo_mi/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/archlinux/comments/qyuapq/problem_with_bytcrrt5640_sound_card_on_lenovo_mi/">[comments]</a></span>

View file

@ -0,0 +1 @@
<p><img src="https://thumbnails.lbry.com/YER0qIttW-4" width="480" alt="thumbnail" title="How to Graphically Observe the Bible | How I Mark Up My Bible" /></p>TimeStamps:<br />00:56 A Bible and a Pen<br />02:31 Print Out a Text<br />04:37 PDF Digital Bible<br />06:04 Plain Text Bible<br />08:21 My Emacs Demo<br /><br />RESOURCE LINKS<br />https://obsidian.md<br />https://worldenglish.bible<br />https://www.youtube.com/watch?v=Uj79KqQhuJg - A video on writing in your bible<br /><br />MY LINKS<br />https://abepeters.com<br />https://github.com/biblecraft-abe/Spacemacs<br />https://instagram.com/braham_peters<br />https://facebook.com/braham.peters<br />...<br />https://www.youtube.com/watch?v=YER0qIttW-4

View file

@ -0,0 +1 @@
There are a lot of people that want to do things but when an opportunity shows up, the true colors start to show. 

View file

@ -0,0 +1 @@
Darren talks about the development of the music industry and how it bleeds into the film industry and being creative today. 

View file

@ -0,0 +1 @@
Apologize for using the backup audio it won&#8217;t happen next episode, thanks for understanding. We talk about Trump&#8217;s speech at CPAC, my support for Josh Hawley&#8217;s $15 minimum wage for billion dollar companies, Arizona&#8217;s approved vote audit importance, and Taiwan will be conquered by China in less than a year.   Show Marketing Powered By: Better [&#8230;]

View file

@ -0,0 +1,36 @@
<p>SHOW NOTES: </p>
<p>- All the info you need to START is on our <a href='http://www.thebiblerecap.com'>website</a>! </p>
<p>- 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 TODAYS PODCAST: </p>
<p>- <a href='https://www.biblegateway.com/passage/?search=john+16%3A13&version=ESV'>John 16:13</a></p>
<p>- <a href='https://www.biblegateway.com/passage/?search=john+14%3A26&version=ESV'>John 14:26</a></p>
<p>- <a href='https://www.biblegateway.com/passage/?search=isaiah+55%3A8&version=ESV'>Isaiah 55:8</a></p>
<p>- <a href='https://www.mydgroup.org/promo'>D-Group Promo Video</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>

View file

@ -0,0 +1,15 @@
<p>In this episode, Tim and Jon continue their discussion on Job. How exactly does Job fit in with the other wisdom book of the Bible? Its kind of a weird book. Job takes place in Uz, a non-Israelite town, and it features non-Israelite people. It seems out of place, but its also a book that other biblical authors refer to throughout Scripture. We have to wonder about the differences between Job and the other books of the Bible. Is Job a literal account, or is it a wisdom parable that is intentionally fiction?<br />
In the first part of the episode (02:14-09:42), the guys talk about the first two chapters of Job. In this section, Gods justice is questioned, but the story is not trying to teach about the origins of human suffering. The guys try to get at what this first part may be trying to teach us.</p>
<p>In the second part of the episode (09:57-22:50), Tim and Jon talk about the heavenly scene in Job and discuss why the author chose to include it. The point of the heavenly scene isnt to tell us how God makes decisions. It asks the question of whether or not it is a good policy for God to always reward the righteous.</p>
<p>In the next part of the episode (23:09-26:57), the guys break down the structure of the book, specifically chapters three through twenty-seven. These chapters are the poetic core of the book called “the cycles.”</p>
<p>In the final part of this episode (27:12-41:30), the guys spend some time discussing Jobs friends. His friends are working within a human framework that says that God rewards the righteous and brings wrath upon sinners, yet Job continues to defend his innocence throughout the book. What is really going on here?</p>
<p>Video:<br />
This episode is designed to accompany our video on the book of Job. You can view it on our youtube channel here: https://www.youtube.com/watch?v=GswSg2ohqmA</p>
<p>Scripture References:<br />
Job<br />
Ezekiel 14<br />
Numbers 22</p>
<p>Show Music:<br />
Defender Instrumental by Rosasharn Music<br />
Blue Skies by Unwritten Stories<br />
Flooded Meadows by Unwritten Stories</p>

View file

@ -0,0 +1 @@
<table> <tr><td> <a href="https://www.reddit.com/r/unixporn/comments/qxzm3n/sway_gruvboxesque_on_silverblue/"> <img src="https://preview.redd.it/9n1ue1rc2p081.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=b88ef47c39a867e2de9a8c7ed39c53301914b565" alt="[Sway] gruvbox-esque, on Silverblue" title="[Sway] gruvbox-esque, on Silverblue" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Eorika"> /u/Eorika </a> <br/> <span><a href="https://i.redd.it/9n1ue1rc2p081.png">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/unixporn/comments/qxzm3n/sway_gruvboxesque_on_silverblue/">[comments]</a></span> </td></tr></table>

View file

@ -0,0 +1 @@
Yes, that was the sound of a toilet flushing and more on todays CrossPolitic Daily News Brief. This is Toby Sumpter. Today is Tuesday, October 5, 2021. AD: Did you know that more than 75% of those raised in evangelical, Presbyterian, and Reformed churches dont pursue any kind of Christian higher education? Surprising isnt it. [&#8230;]

View file

@ -0,0 +1 @@
<table> <tr><td> <a href="https://www.reddit.com/r/unixporn/comments/q6rcv7/qtile_gentoo_but_its_arcolinux_iso_coming_soon/"> <img src="https://preview.redd.it/t0lo19lq12t71.jpg?width=640&amp;crop=smart&amp;auto=webp&amp;s=03156482bbf84fb929466cd5dd5f2a489f7b1615" alt="[qtile] Gentoo but its ArcoLinux, ISO coming soon with better panel just a preview" title="[qtile] Gentoo but its ArcoLinux, ISO coming soon with better panel just a preview" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/acubernoob"> /u/acubernoob </a> <br/> <span><a href="https://i.redd.it/t0lo19lq12t71.jpg">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/unixporn/comments/q6rcv7/qtile_gentoo_but_its_arcolinux_iso_coming_soon/">[comments]</a></span> </td></tr></table>

View file

@ -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 TODAYS PODCAST: </p>
<p>- <a href='https://www.biblegateway.com/passage/?search=Matthew+5%3A45&version=ESV'>Matthew 5:45</a></p>
<p>- <a href='http://www.patreon.com/thebiblerecap'>Join Patreon to receive additional content!</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>

View file

@ -0,0 +1 @@
Gretta Thunburg has an amazing rebuke: Roll Clip: https://gab.com/disclosetv/posts/107010196038125759 CWWI: Did you know that more than 75% of those raised in evangelical, Presbyterian, and Reformed churches dont pursue any kind of Christian higher education? Surprising isnt it. Cornerstone Work &#38; Worldview Institute is seeking to provide a new, exciting, and affordable option for Christians. Our [&#8230;]