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,140 @@
<p>I came up with my own solution to managing my task list. Yes, there
probably are a zillion such approaches in the libre software world. And
yes, mine is not the best of the bunch. But I am happy with what I got,
so I might as well share my experience.</p>
<p>It all starts with the realisation that a task list is just a plain text
file. You do not need a spreadsheet or some other type of structured
data. Manipulating text is what the terminal is good at. The point is
to be able to control everything with standard shell programs, such
as <code>cat</code>, <code>sed</code>, <code>grep</code>, <code>sort</code>.</p>
<p>Here is a sample of my task list:</p>
<pre><code>cat ~/.my_task_list
Continue with the work @swätzchen =2019-01-23
This should pop up first =2016-12-21
Contact &lt;person&gt; @chat =2019-01-22
Another test @dots =2017-01-20
Date is not added @dots
this task starts with a lower case letter
</code></pre>
<p>I can add items to the list by editing the file. Such as:</p>
<ul>
<li>By using Vim or another text editor.</li>
<li>Or by appending some text directly <code>echo 'string' &gt;&gt; ~/.my_task_list</code>.</li>
</ul>
<p>As this is plain text, no markup is needed, no further requirements.
<em>Just write</em>.</p>
<h2>Managing the task list</h2>
<p>Writing to a file is only the beginning. Now we get to manipulate that
text. Some examples are in order.</p>
<p>Print the contents of the file and capitalise the first letter on each
sentence:</p>
<pre><code>cat ~/.my_task_list | sed 's/\(^[a-z]\)/\U\1/'
Continue with the work @swätzchen =2019-01-23
This should pop up first =2016-12-21
Contact &lt;person&gt; @chat =2019-01-22
Another test @dots =2017-01-20
Date is not added @dots
This task starts with a lower case letter
</code></pre>
<p>Print only the tasks that have a due date assigned to them. Also sort
numerically and put the date at the beginning of the line:</p>
<pre><code>grep -e '=[0-9-]*' ~/.my_task_list | sed 's/\(^.*\) =\([0-9-]*\)/\2: \1/g' | sort -g
2016-12-21: This should pop up first
2017-01-20: Another test @dots
2019-01-22: Contact &lt;person&gt; @chat
2019-01-23: Continue with the work @swätzchen
</code></pre>
<p>Sort and display tasks that match a specific string or pattern:</p>
<pre><code>grep -e '^This\|^this' ~/.my_task_list
This should pop up first =2016-12-21
this task starts with a lower case letter
</code></pre>
<p>You get the idea… It is new to me, so I might figure out more use cases
and better ways of doing things. Everything will be made clear in time
as I believe I am on the right track.</p>
<h2>Simple formatting</h2>
<p>While everything is plain text, we can still use typographic symbols to
give a sense of structure and assign meaning to different parts of the
string.</p>
<p>This is particularly useful for printing the data in a different format
than its original. Such as what I did in the example above where I got
the tasks with a date assigned to them. The date appears first and then
the task description, even though the actual file has the date <em>after</em>
the tasks description.</p>
<p>Without any kind of structure we find ourselves more limited in what we
can do. Adding a few minor things here and there can help us greatly.
As such, I follow this pattern for marking my tasks:</p>
<pre><code>&lt;description&gt; @&lt;context&gt; #&lt;tag&gt; =&lt;date in YYYY-MM-DD&gt;
</code></pre>
<p>I usually need only the <code>&lt;description&gt;</code>. Every other piece of
“meta-data” is added in that given order, so that the context always
precedes the tag, which always precedes the date.</p>
<h2>Introducing a couple of scripts</h2>
<p>To further improve my workflow, I just finished writing two scripts that
iterate on my task list file:</p>
<ul>
<li>The first is <code>stm</code>, the <em>Simplistic Task Manager</em> which is a wrapper
for the scenaria I showcased above. So I can run <code>stm</code> to get a list
of my pending tasks; <code>stm due</code> to show those with a due date; and
<code>stm list &lt;string&gt;</code> to search for something specific.</li>
<li>The second is <code>stmmenu</code>, which is a <code>dmenu</code> tool that displays a list
with all my tasks. If I select an existing item, it is removed from
the list. If I type something new, it is appended to the list.</li>
</ul>
<p>While <code>stm</code> is meant to be used in the terminal, <code>stmmenu</code> is invoked
with a hotkey. <em>Need to quickly write down a task?</em> Press the key
binding and start typing <code>&lt;description&gt; @context #tag =&lt;date&gt;</code>. Done!</p>
<p>These new scripts are part of <a href="https://gitlab.com/protesilaos/dotfiles">my
dotfiles</a>. Look inside the
“bin” directory. Note though that I plan to review them, so things
might change in the future.</p>
<h2>“Do one thing and do it well”</h2>
<p>Plain text. Standard shell utilities. A user-defined methodology for
writing things. Minimal. Super effective.</p>
<p>I am so satisfied with the results that I have completely removed <code>task</code>
(aka “Taskwarrior”) from my workflow. That tool has served me well over
the last couple of years or so, but I always felt it offered more than
I ever needed. Or it tried to perform too many specialised functions
outside the narrow confines of controlling a task list. Something was
amiss.</p>
<p>Now I have found solace in the simplest of tools which, rather
unsurprisingly, involve the application of UNIX principles and use of
relevant commands.</p>

View file

@ -0,0 +1,4 @@
<p>We each like different blogging platforms, and share why. Then our tips for keeping your server secure. </p>
<p>Plus a great way to score cheap drives, a Project Off-Grid update, making your household light switches smart, and Alex&#39;s review of the HDHomeRun.</p><p><a href="https://jupitersignal.memberful.com/checkout?plan=53744" rel="payment">Support Self-Hosted</a></p><p>Links:</p><ul><li><a href="https://t.me/hddsale" title="Telegram: Contact @hddsale" rel="nofollow">Telegram: Contact @hddsale</a> &mdash; HDD Sales Telegram Channel </li><li><a href="https://www.backblaze.com/blog/backblaze-hard-drive-stats-q3-2019/" title="What SMART Stats Are Telling Us About Hard Drive Reliability" rel="nofollow">What SMART Stats Are Telling Us About Hard Drive Reliability</a> &mdash; As of September 30, 2019, Backblaze had 115,151 spinning hard drives spread across four data centers on two continents. Of that number, there were 2,098 boot drives and 113,053 data drives.</li><li><a href="https://www.youtube.com/watch?v=1YqMn1pCRd8" title="How to disable the 3.3v pin on Western Digital USB White Label Drives - YouTube" rel="nofollow">How to disable the 3.3v pin on Western Digital USB White Label Drives - YouTube</a> &mdash; This is an amazing way to get super cheap storage for your #Plex Media Server. The catch? The shucked #Western #Digital White label drives may not work right out of the box. Don't worry, the fix is simple..</li><li><a href="https://www.amazon.com/StarTech-com-Power-Splitter-Adapter-PYO4SATA/dp/B0086OGN9E" title="Amazon.com: StarTech.com 4X SATA Power Splitter Adapter Cable (PYO4SATA): Home Audio & Theater" rel="nofollow">Amazon.com: StarTech.com 4X SATA Power Splitter Adapter Cable (PYO4SATA): Home Audio & Theater</a> &mdash; The PYO4SATA SATA power splitter cable (1-to-4) features a SATA male power connector that connects to a single computer power supply SATA connector and breaks out into four SATA female power connectors. </li><li><a href="https://cloud.linode.com/stackscripts/443929" title="OpenLiteSpeed-WordPress - Linode Manager" rel="nofollow">OpenLiteSpeed-WordPress - Linode Manager</a> &mdash; Blazing-fast WordPress with LSCache, 300+ times faster than regular WordPress</li><li><a href="https://blog.linuxserver.io/" title="LinuxServer.io Blog" rel="nofollow">LinuxServer.io Blog</a></li><li><a href="https://blog.ktz.me/" title="ktz. - Alex's Blog" rel="nofollow">ktz. - Alex's Blog</a></li><li><a href="https://shelly.cloud/shelly-25-wifi-smart-relay-roller-shutter-home-automation/" title="Shelly 2.5 - Shelly Cloud" rel="nofollow">Shelly 2.5 - Shelly Cloud</a> &mdash; Shelly 2.5 comes with a programming/debug header which can be used to flash alternative firmware on the device. It has an ESP8266 inside, with a 2MB flash chip. A USB-to-UART adapter is needed as well as a reliable 3.3V with at least 350 mA drive capability.</li></ul>

View file

@ -0,0 +1 @@
<!-- SC_OFF --><div class="md"><p>Theres Helm, Ivy/Counsel, Selectrum, Ido, etc. </p> <p>How does one find a good list of completion frameworks? </p> <p>Lately Ive been thinking of trying different ones. Ive been a Helm user since I started using Emacs (at the time the only choices were Helm, or Ido related packages). </p> <p>I dont ever take advantage of Helm specific features - I just started selecting multiple buffers a week ago. It makes me think that maybe I should check out other frameworks. </p> <p>Ive been interested in the Ivy family of packages because counsel-company looks great! Im also a fan of counsel-Etags (<a href="https://github.com/redguardtoo/counsel-etags">https://github.com/redguardtoo/counsel-etags</a>) especially since you can define your own command to use for tags (like replacing crags with ripper tags). </p> <p>(Im also a big fan of binchen in general, I love his Emacs usage and philosophy).</p> <p>Anyway - what completion framework do you use and why? Id love to learn more and try each one out.</p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/bashmydotfiles"> /u/bashmydotfiles </a> <br/> <span><a href="https://www.reddit.com/r/emacs/comments/ppg98f/which_completion_framework_do_you_use_and_why/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/emacs/comments/ppg98f/which_completion_framework_do_you_use_and_why/">[comments]</a></span>

View file

@ -0,0 +1 @@
<!-- SC_OFF --><div class="md"><p>Im a long time Windows user. Ive been using the OS since the days of Windows XP, and I honestly never really gave Linux a second thought. I was getting disappointed with newer Windows releases, theyve been getting more bloated and theres been a ton of UI inconsistency with Windows 11. So I thought, why not try Linux? I had considered trying it once before, but that was before Proton allowed me to play my Windows games with the same performance. My previous Linux experience was just using Ubuntu 14.04 on a computer at a public library, so I didnt exactly know a lot. At first I was going to install Ubuntu, because I heard it was a good distro for beginners. But while I was doing my research, I came across this thing called “Arch” that could supposedly be configured exactly to the users liking, but was only recommended for more advanced users. I thought what the hell, Im gonna give it a shot! So I booted up a live USB on a secondary laptop, opened the wiki on my desktop and started the process. The hardest part of the install was honestly partitioning the drive, but once I figured out stuff like where to mount the EFI partition it was pretty straightforward. Fast forward to today, Ive been using Arch for three weeks without any problems! I installed GNOME and the newest NVIDIA drivers, got my entire steam library running with Proton and even installed the Zen kernel! I do a weekly pacman -Syu and everything is running super smoothly.</p> <p>TL;DR I installed Arch as my first Linux distro and honestly found it super simple. Is that weird? xD</p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Relevant_Dog_6115"> /u/Relevant_Dog_6115 </a> <br/> <span><a href="https://www.reddit.com/r/archlinux/comments/r5yilr/is_it_weird_that_i_found_arch_super_easy_to_set/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/archlinux/comments/r5yilr/is_it_weird_that_i_found_arch_super_easy_to_set/">[comments]</a></span>

View file

@ -0,0 +1,84 @@
<p>SHOW NOTES:
Thanks for listening! Weve 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>! Weve got t-shirts, coffee mugs, tote bags, phone wallets, and stickers! </p>
<p> </p>
<p>FROM TODAYS PODCAST: </p>
<p>- <a href='https://www.biblegateway.com/passage/?search=1+samuel+21&version=ESV'>1 Samuel 21</a></p>
<p>- <a href='https://www.biblegateway.com/passage/?search=john+19%3A36&version=ESV'>John 19:36</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>

View file

@ -0,0 +1,57 @@
<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="Hindsight is 2020, Looking Back at How 2020 Affected Technology | Destination Linux 206" width="800" height="450" src="https://www.youtube.com/embed/rNvHkfSFXCM?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div></figure>
<p>This week we&#8217;re going to be looking back on 2020 to end out this &#8216;most interesting&#8217; year. While 2020 is a year many of us want to forget, from an open-source standpoint there are still plenty of exciting things that took place we&#8217;re going to cover in this episode. We&#8217;ll name our favorite open-source software, the big events of the year making headlines and our favorite distros of 2020. Of course, we&#8217;ve also got our famous tips, tricks and software picks. All of this and so much more this week on Destination Linux.</p>
<figure class="wp-block-image size-large is-resized"><img loading="lazy" src="https://tuxdigital.com/wp-content/uploads/2019/01/digital-ocean-banner.png" alt="" class="wp-image-1499" width="468" height="60"/><figcaption>Sponsored by: <a rel="noopener" href="https://do.co/dln" target="_blank">do.co/dln</a></figcaption></figure>
<figure class="wp-block-image size-large is-resized"><img loading="lazy" src="https://destinationlinux.org/wp-content/uploads/2020/07/bitwarden-banner-1.jpg" alt="" class="wp-image-2301" width="468" height="60" srcset="https://destinationlinux.org/wp-content/uploads/2020/07/bitwarden-banner-1.jpg 469w, https://destinationlinux.org/wp-content/uploads/2020/07/bitwarden-banner-1-300x39.jpg 300w, https://destinationlinux.org/wp-content/uploads/2020/07/bitwarden-banner-1-150x20.jpg 150w" sizes="(max-width: 468px) 100vw, 468px" /><figcaption>Sponsored by: <a href="https://bitwarden.com/dln" target="_blank" rel="noopener">bitwarden.com/dln</a></figcaption></figure>
<h4>Hosts of Destination Linux:</h4>
<p>Ryan (DasGeek) = <a href="https://dasgeekcommunity.com" target="_blank" rel="noopener">dasgeekcommunity.com</a><br>Michael Tunnell = <a href="https://tuxdigital.com" target="_blank" rel="noopener">tuxdigital.com</a><br>Jill Bryant = <a href="https://twitter.com/jill_linuxgirl" target="_blank" rel="noreferrer noopener">twitter.com/jill_linuxgirl</a><br>Noah Chelliah = <a href="http://asknoahshow.com/" target="_blank" rel="noopener">asknoahshow.com</a></p>
<h4>Want to Support the Show?</h4>
<p>Support us on Patreon = <a href="https://destinationlinux.org/patreon" target="_blank" rel="noopener">https://destinationlinux.org/patreon</a><br>Support us on Sponsus = <a href="https://destinationlinux.org/sponsus" target="_blank" rel="noopener">https://destinationlinux.org/sponsus</a><br>Destination Linux Network Store = <a href="https://destinationlinux.network/store" target="_blank" rel="noopener">http://dlnstore.com</a></p>
<h4>Want to follow the show and hosts on social media?</h4>
<p>You can find all of our social accounts at <a href="https://destinationlinux.org/contact">https://destinationlinux.org/contact</a></p>
<h3>Segment Index</h3>
<ul><li><a href="https://www.youtube.com/watch?v=rNvHkfSFXCM&amp;t=00m00s" target="_blank" rel="noopener">00:00</a> = Welcome to Destination Linux 206</li><li><a href="https://www.youtube.com/watch?v=rNvHkfSFXCM&amp;t=01m27s" target="_blank" rel="noopener">01:27</a> = Community Feedback: Advice for Remote Desktop Support software</li><li><a href="https://www.youtube.com/watch?v=rNvHkfSFXCM&amp;t=11m30s" target="_blank" rel="noopener">11:30</a> = How to send in Community Feedback</li><li><a href="https://www.youtube.com/watch?v=rNvHkfSFXCM&amp;t=12m08s" target="_blank" rel="noopener">12:08</a> = Digital Ocean &#8211; App Platform / Cloud ( <a href="https://do.co/dln" target="_blank" rel="noopener">https://do.co/dln</a> )</li><li><a href="https://www.youtube.com/watch?v=rNvHkfSFXCM&amp;t=13m03s" target="_blank" rel="noopener">13:03</a> = Our Favorite Distros of 2020</li><li><a href="https://www.youtube.com/watch?v=rNvHkfSFXCM&amp;t=26m15s" target="_blank" rel="noopener">26:15</a> = Bitwarden Password Manager ( <a href="https://bitwarden.com/dln" target="_blank" rel="noopener">https://bitwarden.com/dln</a> )</li><li><a href="https://www.youtube.com/watch?v=rNvHkfSFXCM&amp;t=27m41s" target="_blank" rel="noopener">27:41</a> = Looking Back at 2020&#8217;s Technology Stories &amp; Events</li><li><a href="https://www.youtube.com/watch?v=rNvHkfSFXCM&amp;t=50m43s" target="_blank" rel="noopener">50:43</a> = Destination Linux Podcast is Going LIVE!!!</li><li><a href="https://www.youtube.com/watch?v=rNvHkfSFXCM&amp;t=52m29s" target="_blank" rel="noopener">52:29</a> = <a href="https://destinationlinux.network/live" target="_blank" rel="noopener">DLNLive.com</a></li><li><a href="https://www.youtube.com/watch?v=rNvHkfSFXCM&amp;t=52m38s" target="_blank" rel="noopener">52:38</a> = Gaming:
<ul>
<li><a href="https://store.steampowered.com/app/1275810/Stan_Lees_Verticus/" target="_blank" rel="noopener">Stan Lee&#8217;s Verticus</a></li>
<li>Steam Winter Sale: <a href="https://store.steampowered.com" target="_blank" rel="noopener">Storefront</a> | <a href="https://store.steampowered.com/search/?os=linux&amp;specials=1" target="_blank" rel="noopener">Linux Native Only</a></li>
<li><a href="https://destinationlinux.network/steam" target="_blank" rel="noopener">DLN Steam Group</a></li>
</ul>
</li><li><a href="https://www.youtube.com/watch?v=rNvHkfSFXCM&amp;t=56m56s" target="_blank" rel="noopener">56:56</a> = Software Spotlight: <a href="https://notepadqq.com" target="_blank" rel="noopener">Notepadqq</a></li><li><a href="https://www.youtube.com/watch?v=rNvHkfSFXCM&amp;t=57m47s" target="_blank" rel="noopener">57:47</a> = Tip of the Week: git remote</li></ul>

View file

@ -0,0 +1,39 @@
<p>Brandon from RedHat joins us to talk about oVirt &amp; how you can manage your virtual infrastructure from a web console. Plus we break down the advantages and disadvantages of Android v IOS, your calls &amp; more!</p>
<h3><strong>-- The Cliff Notes --</strong></h3>
<ul>
<li><a href="https://lineageos.org/" rel="nofollow">LineageOS LineageOS Android Distribution</a></li>
<li><a href="https://f-droid.org/" rel="nofollow">F-Droid - Free and Open Source Android App Repository</a></li>
<li><a href="https://github.com/yeriomin/YalpStore" rel="nofollow">yeriomin/YalpStore: Download apks from Google Play Store</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 theyre 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>

View file

@ -0,0 +1,11 @@
<img src="https://www-images.christianitytoday.com/images/124890.png?w=540" width="540" /><p class="text">We continue series with Northern Seminary DMin grads who summarize their chapter from <a href="https://amzn.to/3eQ9Bqf" target="_blank" class=""><em><strong>Wise Church</strong></em></a>.</p>
<p class="text">This post is by Jeremy Berg.</p>
<p class="text">&ldquo;That which is sweetest when we meet face to face</p>
<p class="text">is afforded by the impress of a friend&rsquo;s hand upon his letter.&rdquo;</p>
<p class="text">&mdash;Seneca, 1st C Roman Philosopher</p>
<p class="text">When Covid hit and most churches were moving services online, I reached for my electronic ink and quill&mdash;i.e., my MacBook Pro&mdash;and began writing &ldquo;pastoral letters&rdquo; to individuals in my congregation. While digital media has enabled us to be connected with more people more often, the quality and depth of our interactions today is steadily diminishing. The most connected people in the history of the human race are also proving to be some of the most lonely and isolated.</p>
<p class="text">In our digital age of distance learning, disembodied teaching, and impersonal sermons transmitted through a screen, there&rsquo;s a need for pastors to return to more personal and embodied forms of wisdom and communication. One powerful way pastors have shepherded souls through the ages is through pastoral letter writing. My chapter in Wise Church surveys the rich and enduring legacy of letter writing for the purpose of spiritual formation&mdash;from Greco-Roman philosophers, to the New Testament epistles, and into the writings of the Church Fathers.</p>
<p class="text">More than just conveying ideas or communicating facts, ancient letters mediated one&rsquo;s personal presence. Cicero, the most famous and prolific letter writer of Roman antiquity, writes, &ldquo;Though I have nothing to say to you, I write all the same, because I feel as though I were talking to you. Seneca, the Roman Stoic and contemporary of Paul, writes to his disciple Lucilius: &ldquo;I thank you for ...</p><p class="more"><a href="https://www.christianitytoday.com/scot-mcknight/2021/august/wise-letter-writing.html">Continue reading</a>...</p>
<p><br /><a href="https://rss.beaconads.com/click.php?z=1289806&k=c779018782158d93282944b4f7dd4d03&a=189219&c=78862268" target="_blank"><img src="https://rss.beaconads.com/img.php?z=1289806&k=c779018782158d93282944b4f7dd4d03&a=189219&c=78862268" border="0" alt="" /></a></p>
9<img src="http://feeds.feedburner.com/~r/christianitytoday/jesuscreed/~4/WktoMM0O_2Q" height="1" width="1" alt=""/>

View file

@ -0,0 +1,40 @@
<p>Brent Gervais joins us to share how he started a Linux and Open Source photography company. Canonical has announced that they are extending the support life for Ubuntu 18.04 to 10 years and as always we take your calls!</p>
<h3><strong>-- The Cliff Notes --</strong></h3>
<p>For links to the articles and material referenced in this week&#39;s episode check out this week&#39;s page from our podcast dashboard!</p>
<p><a href="http://podcast.asknoahshow.com/102" rel="nofollow">This Episode&#39;s Podcast Dashboard</a></p>
<p><a href="http://www.voxtelesys.com/asknoah" rel="nofollow">Phone Systems for Ask Noah provided by Voxtelesys</a></p>
<p>Join us in our dedicated chatroom #AskNoahShow on Freenode!</p>
<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 theyre 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>live [at] asknoahshow.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>
</ul><p><a href="https://patreon.com/linuxdelta" rel="payment">Support Ask Noah Show</a></p><p>Links:</p><ul><li><a href="https://onlykey.io/" title="OnlyKey Hardware Password Manager | One PIN to remember" rel="nofollow">OnlyKey Hardware Password Manager | One PIN to remember</a></li><li><a href="https://forums.lenovo.com/t5/Lenovo-Yoga-Series-Notebooks/Compatible-WiFi-cards-whitelisted-cards/td-p/4153038" title="Compatible WiFi cards (whitelisted cards) - Lenovo Community" rel="nofollow">Compatible WiFi cards (whitelisted cards) - Lenovo Community</a></li><li><a href="https://itsfoss.com/ubuntu-18-04-ten-year-support?fbclid=IwAR2ap0kZLDIjvKAAMVuMSgX9zpYVSnZqBKFfwUzYmRjZQzxFDSmm9Onw0p8" title="Wow! Ubuntu 18.04 LTS is getting a 10-Year Support (Instead of 5)" rel="nofollow">Wow! Ubuntu 18.04 LTS is getting a 10-Year Support (Instead of 5)</a></li><li><a href="https://www.brentgervais.com/" title="Brent Gervais Photography |" rel="nofollow">Brent Gervais Photography |</a></li></ul>

View file

@ -0,0 +1 @@
<!-- SC_OFF --><div class="md"><p>Is it possible to start a section on the new page. I have a section(2) at the end of the page and the images in that section move to the next page and the next section(3) starts right at the end of section 2 before the images. I have tried using the [htb!] but that jumbles up the images of the entire document. I am exporting to latex.</p> <p>Expected:</p> <p>Section 2 -&gt; images -&gt; Section 3</p> <p>Current Output:</p> <p>Section 2 -&gt; Section 3 heading -&gt; Section 2 images -&gt; Section 3 images</p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/sudhanv99"> /u/sudhanv99 </a> <br/> <span><a href="https://www.reddit.com/r/orgmode/comments/qpxklv/doom_start_section_from_next_page/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/orgmode/comments/qpxklv/doom_start_section_from_next_page/">[comments]</a></span>

View file

@ -0,0 +1 @@
<table> <tr><td> <a href="https://www.reddit.com/r/unixporn/comments/r7r9k5/bspwm_ayu_light_my_first_rice/"> <img src="https://preview.redd.it/0rqyu0v4h9381.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=28966b76fdf87abc9fa49ccb4c6a864cc4c2177c" alt="[bspwm] [ayu light] My first rice" title="[bspwm] [ayu light] My first rice" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/takahatashun"> /u/takahatashun </a> <br/> <span><a href="https://i.redd.it/0rqyu0v4h9381.png">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/unixporn/comments/r7r9k5/bspwm_ayu_light_my_first_rice/">[comments]</a></span> </td></tr></table>

View file

@ -0,0 +1,4 @@
<p>Lutris developer Mathieu Comandon joins us to share his perspective on the uncomfortable issues facing Linux desktop developers.</p>
<p>Plus the tech behind Shells.com, community news, feedback, and more.</p><p>Special Guests: Mathieu Comandon and Zlatan Todorić.</p><p>Sponsored By:</p><ul><li><a href="https://linode.com/unplugged" rel="nofollow">Linode Cloud Hosting</a>: <a href="https://linode.com/unplugged" rel="nofollow">A special offer for all Linux Unplugged Podcast listeners and new Linode customers, visit linode.com/unplugged, and receive $100 towards your new account. </a></li><li><a href="https://acloudguru.com" rel="nofollow">A Cloud Guru</a>: <a href="https://acloudguru.com" rel="nofollow">Hundreds of courses, thousands of hands-on labs.</a></li></ul><p><a href="https://jupitersignal.memberful.com/checkout?plan=52946" rel="payment">Support LINUX Unplugged</a></p><p>Links:</p><ul><li><a href="http://68k.news/" title="68k.news" rel="nofollow">68k.news</a> &mdash; Headlines From the Future</li><li><a href="https://linuxactionnews.com/182" title="Linux Action News 182" rel="nofollow">Linux Action News 182</a> &mdash; GNOME 40 is out and we chat with the projects Executive Director about the technical and visual improvements in the new release. Plus the facts around RMSs return to the FSF board, and our analysis of the situation.</li><li><a href="https://latenightlinux.com/late-night-linux-episode-118/" title="Episode 118" rel="nofollow">Episode 118</a> &mdash; Stallman is back and ruffling feathers, PHP moves to GitHub, AMP might be on its way out, Audacitys latest update gives us pause, Fairphone delivers an unlikely update, online events, and more.</li><li><a href="https://almalinux.org/blog/almalinux-os-stable-release-is-live/" title="AlmaLinux OS Stable Release is live!" rel="nofollow">AlmaLinux OS Stable Release is live!</a> &mdash; We are very happy to announce that today we are releasing the first AlmaLinux OS stable version. That's right, you can go right ahead and download the stable version and use it everywhere you need a stable, reliable, Linux distribution.</li><li><a href="https://discourse.ubuntu.com/t/ubuntu-21-04-testing-week/21519" title="Ubuntu 21.04 Testing Week" rel="nofollow">Ubuntu 21.04 Testing Week</a> &mdash; Ubuntu and its flavors will be participating in another Ubuntu Testing Week from April 1st to April 7th.</li><li><a href="https://www.shells.com/l/en-US/" title="Shells" rel="nofollow">Shells</a> &mdash; Personal Workspaces Powered by Cloud Computers.</li><li><a href="https://www.phoronix.com/scan.php?page=news_item&px=Zlatan-Todoric-Interview" title="An Interview With Zlatan Todoric, Open-Source Developer & Former Purism CTO" rel="nofollow">An Interview With Zlatan Todoric, Open-Source Developer & Former Purism CTO</a></li><li><a href="https://www.linode.com/blog/networking/diversity-flexibility-and-linux-prioritizing-generous-transfer/" title="Diversity, Flexibility, and Linux: Prioritizing Generous Transfer" rel="nofollow">Diversity, Flexibility, and Linux: Prioritizing Generous Transfer</a></li><li><a href="http://jupiterbroadcasting.com/telegram" title="JB Telegram Group" rel="nofollow">JB Telegram Group</a></li><li><a href="https://feed.jupiter.zone/allshows" title="All Jupiter Broadcasting Shows" rel="nofollow">All Jupiter Broadcasting Shows</a></li><li><a href="https://lutris.net/" title="Lutris" rel="nofollow">Lutris</a> &mdash; Open Gaming Platform</li><li><a href="http://mathieu.comandon.org/not-on-the-same-page" title="[Mathieu's Blog] Not on the same page" rel="nofollow">[Mathieu's Blog] Not on the same page</a> &mdash; The disconnect I feel between what I want to deliver in what I build and what the users asks for is now too big to ignore. In some way, I already knew it would be the case before I even started Lutris. I knew that what I was trying to achieve wasnt in line with how Linux users usually behave…</li><li><a href="https://slexy.org/view/s21sqd4tJ3" title="Feedback: Cockpit" rel="nofollow">Feedback: Cockpit</a></li><li><a href="https://slexy.org/view/s21AhbBYxJ" title="Feedback: Covid Appointment Script" rel="nofollow">Feedback: Covid Appointment Script</a></li></ul>

View file

@ -0,0 +1,4 @@
<p>Over the weekend, the <a href="https://emacsconf.org/2021/">2021 EmacsConf</a> took place and presented a slue of great talks. Irreal will mention at least a couple of them starting with Tom Gillespies astounding talk on <a href="https://emacsconf.org/2021/talks/exec/">how to make Org files executable</a>.</p>
<p>The first question is what does it mean to make an Org file executable? The TL;DR is that you add some boiler plate to the Org file so that you can call it as if it were a shell script. The resulting file works under all the common shells including, even, <a href="https://en.wikipedia.org/wiki/PowerShell">powershell</a>. That turns out to be harder than you might think but happily Gillespie has made the process essentially turnkey.</p>
<p>He has added a <a href="https://melpa.org/#/orgstrap">package to Melpa</a> to initialize an org file with all the needed boiler plate so that all one has to do is add the code block to implement whatever the script is intended to do. You can get all the details from the video of the talk or from the transcript of it. Both are available at the above link.</p>
<p>The video it short—only 7 minutes, 9 seconds—so it should be easy to fit in. People are always asking how to make Elisp programs executable without explicitly calling Emacs. Gillespies package lets you do this almost automatically. Take a look at the video; you have nothing to lose but seven minutes.</p>

View file

@ -0,0 +1 @@
<p>Megyn Kelly is joined by Shelley Ross, longtime ABC and CBS News executive, to talk about her allegation of sexual harassment against Chris Cuomo, the enablers of Chris and his brother Gov. Andrew Cuomo, sexual harassment widely in the media industry, why she doesn't want to see Chris Cuomo fired, and more. Also joining the show is Katie Herzog, journalist and co-host of the "Blocked and Reported" podcast, to talk about the woke push in the medical community to eliminate biological sex, the increase in trans identity, the real story about the Williamsburg dog park "racism" incident, and more.</p><p>Follow The Megyn Kelly Show on all social platforms:</p><p> </p><p>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:<br /> </p><p><a href="https://www.devilmaycaremedia.com/megynkellyshow">https://www.devilmaycaremedia.com/megynkellyshow</a></p>

View file

@ -0,0 +1 @@
<!-- SC_OFF --><div class="md"><p>In an <code>org</code> table with formulas, if I move lines or columns with <code>S-[arrow]</code>, the formulas get accomodated to reflect the new line/column order. However, the formulas remain unchanged if I use <code>org-table-sort-lines</code>, thus making them al wrong.</p> <p>Is there a way to make <code>org-tabl-sort-lines</code> fix the formulas?</p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/ElCondorHerido"> /u/ElCondorHerido </a> <br/> <span><a href="https://www.reddit.com/r/emacs/comments/r26xml/orgtablesortlines_messes_up_formulas/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/emacs/comments/r26xml/orgtablesortlines_messes_up_formulas/">[comments]</a></span>

View file

@ -0,0 +1,36 @@
<p><iframe loading="lazy" width="720" height="405" src="https://lbry.tv/$/embed/destination-linux-164-lbry-interview/d81755a71f314d8d6136314d61ec8312aff795f2" allowfullscreen></iframe></p>
<p></p>
<p><span id="more-1791"></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>Interview Guest:<br />
<strong>Jeremy Kauffman</strong>, CEO &amp; Founder of LBRY<br />
Learn More or Download = <a href="https://lbry.com" target="_blank" rel="noopener noreferrer">https://lbry.com</a><br />
Start Watching = <a href="https://lbry.tv" target="_blank" rel="noopener noreferrer">https://lbry.tv</a></p>
<p>DLN on LBRY:<br />
<a href="https://destinationlinux.network/lbry" target="_blank" rel="noopener noreferrer">DLN Channel</a> | <a href="https://lbry.tv/$/invite/@destinationlinux:9" target="_blank" rel="noopener noreferrer">DLN Invite Link</a></p>
<p>Special Guest Host:<br />
<strong>Eric Adams</strong> of DLN Xtend = <a href="https://dlnxtend.com" target="_blank" rel="noopener noreferrer">dlnxtend.com</a> | <a href="https://lbry.tv/@ericadams:b" target="_blank" rel="noopener noreferrer">LBRY Channel</a> | <a href="https://lbry.tv/$/invite/@ericadams:b" target="_blank" rel="noopener noreferrer">LBRY Invite</a></p>
<p>Hosts of Destination Linux:<br />
<strong>Ryan</strong>, aka DasGeek = <a href="https://dasgeekcommunity.com" target="_blank" rel="noopener noreferrer">dasgeekcommunity.com</a> | <a href="https://lbry.tv/@dasgeek:b" target="_blank" rel="noopener noreferrer">LBRY Channel</a> | <a href="https://lbry.tv/$/invite/@dasgeek:b" target="_blank" rel="noopener noreferrer">LBRY Invite</a></p>
<p><strong>Michael</strong> of TuxDigital = <a href="https://tuxdigital.com" target="_blank" rel="noopener noreferrer">tuxdigital.com</a> | <a href="https://tuxdigital.com/lbry" target="_blank" rel="noopener noreferrer">LBRY Channel</a> | <a href="https://lbry.tv/$/invite/@tuxdigital:a" target="_blank" rel="noopener noreferrer">LBRY Invite</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 />
<a href="https://destinationlinux.network/store" target="_blank" rel="noopener noreferrer">Destination Linux Network Store</a></p>
<p>&#8212;</p>
<p>Topics covered in this episode:</p>
<p>DL Hosts&#8217; Week in Linux:<br />
Eric = Ubuntu 20.04 Testing, Learning JACK Audio &amp; Reaper<br />
Ryan = made a video about the ElGato Stream Deck Mini for Linux<br />
Michael = Working on a Super Secret Project for DLN &amp; a LOT of Testing of LBRY</p>
<p>Community Feedback:<br />
NVidia&#8217;s Geforce Now<br />
Website Development Tips on Linux</p>
<p>Interview with Jeremy Kauffman, CEO &amp; Founder of LBRY!</p>
<p><a href="https://store.steampowered.com/app/1022710/Conglomerate_451/" target="_blank" rel="noopener noreferrer">Conglomerate 451</a> (Cyberpunk RPG game)</p>
<p>&#8212;</p>
<p>Software Spotlight:<br />
<a href="https://oguzhaninan.github.io/Stacer-Web/" target="_blank" rel="noopener noreferrer">Stacer</a> is an open source system optimizer and monitor.</p>
<p>Tips &amp; Tricks:<br />
Keyboard Shortcut to Show Hidden Files<br />
Ctrl+H is essentially a universal shortcut these days.</p>

View file

@ -0,0 +1 @@
This is my sketchbook. 

View file

@ -0,0 +1,4 @@
<p>Grouping For Looks is a page-by-page retelling of the Looking For Group saga through the lens of a mirror universe where Cale is a goateed tyrant and Richard is a holy soul trying to set him on a good path. [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.lfg.co/gfl-page-0069/">GFL Page 0069</a> appeared first on <a rel="nofollow" href="https://www.lfg.co">Looking For Group</a>.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/LookingForGroup?a=SzeUmr3O-7I:H0L0mZmaDxo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/LookingForGroup?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LookingForGroup?a=SzeUmr3O-7I:H0L0mZmaDxo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/LookingForGroup?i=SzeUmr3O-7I:H0L0mZmaDxo:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/LookingForGroup?a=SzeUmr3O-7I:H0L0mZmaDxo:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/LookingForGroup?d=7Q72WNTAKBA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/LookingForGroup/~4/SzeUmr3O-7I" height="1" width="1" alt=""/>

View file

@ -0,0 +1 @@
<table> <tr><td> <a href="https://www.reddit.com/r/unixporn/comments/r2zbv9/budgie_clean_classy_and_colorful/"> <img src="https://preview.redd.it/ywa8znvfu0281.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=4d5f9df148881368e518fa368a5225ab76905bc0" alt="[Budgie] Clean, classy and colorful" title="[Budgie] Clean, classy and colorful" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/juliokirk"> /u/juliokirk </a> <br/> <span><a href="https://i.redd.it/ywa8znvfu0281.png">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/unixporn/comments/r2zbv9/budgie_clean_classy_and_colorful/">[comments]</a></span> </td></tr></table>

View file

@ -0,0 +1,51 @@
<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="Destination Linux 194: Open Source Ecology, Interview with Marcin Jakubowski" width="800" height="450" src="https://www.youtube.com/embed/0IBKBra0ViE?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div></figure>
<p>This week we have an incredible interview in store for you with the founder of Open Source Ecology, Marcin Jakubowski, a company that is using open source to change industrial machines, and much more, as we know it. In our Gaming section, we&#8217;ll discuss the new Left 4 Dead DLC that dropped from Valve! Later in the show we&#8217;ll give you our popular tips/tricks and software picks. Plus so much more, on this week&#8217;s episode of Destination Linux.</p>
<figure class="wp-block-image size-large is-resized"><img loading="lazy" src="https://tuxdigital.com/wp-content/uploads/2019/01/digital-ocean-banner.png" alt="" class="wp-image-1499" width="468" height="60"/><figcaption>Sponsored by: <a rel="noopener noreferrer" href="https://do.co/dln" target="_blank">do.co/dln</a></figcaption></figure>
<figure class="wp-block-image size-large is-resized"><img loading="lazy" src="https://destinationlinux.org/wp-content/uploads/2020/07/bitwarden-banner-1.jpg" alt="" class="wp-image-2301" width="468" height="60" srcset="https://destinationlinux.org/wp-content/uploads/2020/07/bitwarden-banner-1.jpg 469w, https://destinationlinux.org/wp-content/uploads/2020/07/bitwarden-banner-1-300x39.jpg 300w, https://destinationlinux.org/wp-content/uploads/2020/07/bitwarden-banner-1-150x20.jpg 150w" sizes="(max-width: 468px) 100vw, 468px" /><figcaption>Sponsored by: <a href="https://bitwarden.com/dln" target="_blank" rel="noopener noreferrer">bitwarden.com/dln</a></figcaption></figure>
<h4>Hosts of Destination Linux:</h4>
<p>Ryan (DasGeek) = <a href="https://dasgeekcommunity.com" target="_blank" rel="noopener noreferrer">dasgeekcommunity.com</a><br>Noah Chelliah = <a href="http://asknoahshow.com/" target="_blank" rel="noopener noreferrer">asknoahshow.com</a><br>Michael Tunnell = <a href="https://tuxdigital.com" target="_blank" rel="noopener noreferrer">tuxdigital.com</a></p>
<h4>Want to Support the Show?</h4>
<p>Support us on Patreon = <a href="https://destinationlinux.org/patreon" target="_blank" rel="noopener noreferrer">https://destinationlinux.org/patreon</a><br>Support us on Sponsus = <a href="https://destinationlinux.org/sponsus" target="_blank" rel="noopener noreferrer">https://destinationlinux.org/sponsus</a><br>Destination Linux Network Store = <a href="https://destinationlinux.network/store" target="_blank" rel="noopener noreferrer">https://destinationlinux.network/store</a></p>
<h4>Want to follow the show and hosts on social media?</h4>
<p>You can find all of our social accounts at <a href="https://destinationlinux.org/contact">https://destinationlinux.org/contact</a></p>
<h3>Segment Index</h3>
<ul><li><a href="https://www.youtube.com/watch?v=0IBKBra0ViE&amp;t=00m00s" target="_blank" rel="noopener noreferrer">00:00</a> = Coming up on DL194</li><li><a href="https://www.youtube.com/watch?v=0IBKBra0ViE&amp;t=00m47s" target="_blank" rel="noopener noreferrer">00:47</a> = Welcome to Destination Linux</li><li><a href="https://www.youtube.com/watch?v=0IBKBra0ViE&amp;t=01m07s" target="_blank" rel="noopener noreferrer">01:07</a> = Michael&#8217;s Week: New DestinationLinux.Network website launched!</li><li><a href="https://www.youtube.com/watch?v=0IBKBra0ViE&amp;t=02m30s" target="_blank" rel="noopener noreferrer">02:30</a> = Noah&#8217;s Week: Raspberry Pi Rigorous Testing</li><li><a href="https://www.youtube.com/watch?v=0IBKBra0ViE&amp;t=03m38s" target="_blank" rel="noopener noreferrer">03:38</a> = Ryan&#8217;s Week: Trying Out Fedora 33 Beta</li><li><a href="https://www.youtube.com/watch?v=0IBKBra0ViE&amp;t=07m53s" target="_blank" rel="noopener noreferrer">07:53</a> = Digital Ocean &#8211; App Platform Service ( https://do.co/dln )</li><li><a href="https://www.youtube.com/watch?v=0IBKBra0ViE&amp;t=08m47s" target="_blank" rel="noopener noreferrer">08:47</a> = Community Feedback: Home Surveilance Systems</li><li><a href="https://www.youtube.com/watch?v=0IBKBra0ViE&amp;t=13m28s" target="_blank" rel="noopener noreferrer">13:28</a> = How to send feedback into the show</li><li><a href="https://www.youtube.com/watch?v=0IBKBra0ViE&amp;t=14m05s" target="_blank" rel="noopener noreferrer">14:05</a> = Interview with Marcin Jakubowski of Open Source Ecology</li><li><a href="https://www.youtube.com/watch?v=0IBKBra0ViE&amp;t=50m59s" target="_blank" rel="noopener noreferrer">50:59</a> = Security Advisory: Privacy Focused Search Engines</li><li><a href="https://www.youtube.com/watch?v=0IBKBra0ViE&amp;t=51m26s" target="_blank" rel="noopener noreferrer">51:26</a> = Bitwarden &#8211; Password Manager ( https://bitwarden.com/dln )</li><li><a href="https://www.youtube.com/watch?v=0IBKBra0ViE&amp;t=52m21s" target="_blank" rel="noopener noreferrer">52:21</a> = Gaming: New Left 4 Dead DLC Update!</li><li><a href="https://www.youtube.com/watch?v=0IBKBra0ViE&amp;t=54m03s" target="_blank" rel="noopener noreferrer">54:03</a> = Tip of the Week: /run</li><li><a href="https://www.youtube.com/watch?v=0IBKBra0ViE&amp;t=55m42s" target="_blank" rel="noopener noreferrer">55:42</a> = Software Spotlight: RawTherapee on Pinebook Pro</li><li><a href="https://www.youtube.com/watch?v=0IBKBra0ViE&amp;t=58m02s" target="_blank" rel="noopener noreferrer">58:02</a> = Outro: Become a Patron of DL</li><li><a href="https://www.youtube.com/watch?v=0IBKBra0ViE&amp;t=58m30s" target="_blank" rel="noopener noreferrer">58:30</a> = Outro: DLNStore.com</li><li><a href="https://www.youtube.com/watch?v=0IBKBra0ViE&amp;t=58m40s" target="_blank" rel="noopener noreferrer">58:40</a> = Outro: Join the DLN Community</li><li><a href="https://www.youtube.com/watch?v=0IBKBra0ViE&amp;t=59m07s" target="_blank" rel="noopener noreferrer">59:07</a> = Outro: Check out the DestinationLinux.Network website</li><li><a href="https://www.youtube.com/watch?v=0IBKBra0ViE&amp;t=59m28s" target="_blank" rel="noopener noreferrer">59:28</a> = Outro: The Journey Itself . . .</li><li><a href="https://www.youtube.com/watch?v=0IBKBra0ViE&amp;t=59m40s" target="_blank" rel="noopener noreferrer">59:40</a> = Outro: Preview of the Patron Post Show</li></ul>

View file

@ -0,0 +1 @@
<table> <tr><td> <a href="https://www.reddit.com/r/unixporn/comments/ruz7ga/kde_my_first_dodgy_linux_rice/"> <img src="https://preview.redd.it/y2j7qtledg981.jpg?width=640&amp;crop=smart&amp;auto=webp&amp;s=d78826257333e957c991b658c3b912d923121074" alt="[KDE] My first (dodgy) Linux rice!" title="[KDE] My first (dodgy) Linux rice!" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/FuzzyBanana_"> /u/FuzzyBanana_ </a> <br/> <span><a href="https://i.redd.it/y2j7qtledg981.jpg">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/unixporn/comments/ruz7ga/kde_my_first_dodgy_linux_rice/">[comments]</a></span> </td></tr></table>

View file

@ -0,0 +1 @@
<table> <tr><td> <a href="https://www.reddit.com/r/unixporn/comments/qzfy1r/my_first_rice_couldnt_do_much_because_it_is/"> <img src="https://preview.redd.it/ozr5iihjn3181.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=91b2c94548ebacc9061c63bb2faabf2073960913" alt="my first rice, couldnt do much because it is windows subsystem for linux ._. [xfce]" title="my first rice, couldnt do much because it is windows subsystem for linux ._. [xfce]" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/chair____table"> /u/chair____table </a> <br/> <span><a href="https://i.redd.it/ozr5iihjn3181.png">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/unixporn/comments/qzfy1r/my_first_rice_couldnt_do_much_because_it_is/">[comments]</a></span> </td></tr></table>

View file

@ -0,0 +1,73 @@
<p>Were excited to announce that <a href="https://frame.work">pre-orders are now open</a> for the Framework Laptop!  Our company is founded on the vision of upgradeable, customizable, repairable consumer electronics products that last longer, without compromising quality, power, or style. The Framework Laptop is thin, light, and high-performance, and were happy to share that it starts at a fantastic price point too: $999.</p>
<p></p>
<h3><strong>The Framework Laptop</strong></h3>
<p></p>
<p>The Framework Laptop is an ultraportable 13.5” notebook that is easy to upgrade, customize, and repair in ways that no other high-performance notebook can be.  Every part of the product can be individually replaced or upgraded as needed.  This means it can stay great for longer, all while reducing your environmental footprint by creating less e-waste.</p>
<p></p>
<p>With the Framework Laptop, were proving that modularity doesnt mean giving up on form factor and style.  The system is just 15.85mm thick and 1.3kg, and it has a durable 50% post-consumer recycled aluminum enclosure.  With a 3:2 aspect ratio 2256x1504 display, a fantastic 1080p 60fps webcam with hardware privacy switches, a high cycle-life 55Wh battery, and a great feeling 1.5mm key travel keyboard, its designed for the future of work, wherever that takes you.</p>
<p></p>
<p>The Framework Laptop delivers excellent performance, with the latest Intel 11th Gen Core i5 and i7 Processors and upgradeability to Wi-Fi 6E, up to 64GB of DDR4 memory, and 4TB or more of Gen4 NVMe storage.  The entire mainboard is replaceable too, enabling upgrades to future CPU generations.</p>
<p></p>
<p>On top of all of that, the Framework Laptop is deeply customizable in unique ways.  Our Expansion Card system lets you choose the ports you want and which side you want them on, selecting from four at a time of USB-C, USB-A, HDMI, DisplayPort, MicroSD, ultra-fast 250GB, and 1TB storage, and more.  Magnetic-attach bezels are color-customizable to match your style, and the keyboard language can be swapped too.</p>
<p></p>
<p>Weve made upgrades and repairs incredibly straightforward.  The only tool you need is the Framework Screwdriver we include in the box.  Every module has a QR code on it that you can scan for step-by-step instructions, support information, and a link to order a replacement from the Framework Marketplace.</p>
<p></p>
<h3><strong>Configurations</strong></h3>
<p></p>
<p><strong>Base </strong>(starting at $999 USD)<br>Powerful and upgradeable performance out of the box.</p>
<ul><li>i5-1135G7 processor (8M Cache, up to 4.20GHz)</li><li>8GB DDR4, 256GB NVMe SSD, Wi-Fi 6</li><li>Windows 10 Home </li></ul>
<p></p>
<p><strong>Performance </strong>(starting at $1399 USD)<br>Twice the memory and storage and a faster CPU for heavy-duty multitasking.</p>
<ul><li>i7-1165G7 (12M Cache, up to 4.70GHz)</li><li>16GB DDR4, 512GB NVMe SSD, Wi-Fi 6</li><li>Windows 10 Home</li></ul>
<p></p>
<p><strong>Professional </strong>(starting at $1999 USD)<br>Even more memory and storage, plus enterprise management functionality.</p>
<ul><li>i7-1185G7 (12M Cache, up to 4.80GHz)</li><li>32GB DDR4, 1TB NVMe SSD, Wi-Fi 6 vPro</li><li>Windows 10 Pro</li></ul>
<p><strong>DIY Edition</strong> (starting at $749 USD for a barebones configuration)<br>The only high-performance notebook you can customize and assemble yourself from a kit of modules. You can choose from a range of memory, storage, WiFi, and operating system options, or you can bring your own, including your preferred Linux distribution.</p>
<p class="block-img"><img src="https://images.prismic.io/frameworkmarketplace/766f6b5c-5af2-4e2c-a60b-72849c79afe3_Blog21011+-+Pre+Orders+Open+-+img02.jpg?auto=compress,format" alt="Framework Laptop DIY Edition opened up with parts around" width="1796" height="1030" /></p>
<p></p>
<h3><strong>Dont Wait to Pre-order</strong></h3>
<p></p>
<p>To make pre-ordering as easy as possible, well only be taking a fully refundable $100 deposit at the time of order.  Well give you a heads up when were preparing to ship your system and then collect the balance of the order.  We also offer a 30-day return guarantee and a 1-year limited warranty.</p>
<p></p>
<p>Were opening pre-orders in the US today, with Canada coming in the next few weeks.  Well be taking orders in additional countries in Asia and Europe before the end of the year, and you can <a href="https://frame.work">sign up to get notified</a> when we launch in your region.</p>
<p></p>
<p>Were ramping into mass production now, but worldwide supply constraints this year will limit the number of Framework Laptops we have available at launch.  To manage through this, well be taking pre-orders in batches, with the first batch shipping by the end of July.  Well automatically open additional batches with later ship dates as we sell out of earlier ones.  The best way to ensure you get your Framework Laptop early is to <a href="https://frame.work">pre-order today</a>!</p>
<p></p>
<p><strong> Nirav and the Framework Team</strong></p>
<p></p>

View file

@ -0,0 +1,27 @@
<p>Open Source has taken over the world, as IBM&#39;s purchase of Red Hat closes. We reflect on this historic moment.</p>
<p>Plus Mozilla&#39;s been labeled an Internet Villian, we deep dive into the tech behind all the controversy and how you can self-host secure DNS.</p><p>Special Guests: Alex Kretzschmar, Brent Gervais, and Drew DeVore.</p><p><a href="https://jupitersignal.memberful.com/checkout?plan=52946" rel="payment">Support LINUX Unplugged</a></p><p>Links:</p><ul><li><a href="https://twitter.com/RedHat/status/1148570974637498368" title="Red Hat, Inc. on Twitter" rel="nofollow">Red Hat, Inc. on Twitter</a> &mdash; As #RedHat's acquisition by @IBM closes, Red Hat will maintain independence and neutrality to give customers freedom, choice and flexibility. </li><li><a href="https://www.redhat.com/en/about/press-releases/ibm-closes-landmark-acquisition-red-hat-34-billion-defines-open-hybrid-cloud-future" title="IBM Closes Landmark Acquisition of Red Hat for $34 Billion; Defines Open, Hybrid Cloud Future" rel="nofollow">IBM Closes Landmark Acquisition of Red Hat for $34 Billion; Defines Open, Hybrid Cloud Future</a> &mdash; Joining forces with IBM gives Red Hat the opportunity to bring more open source innovation to an even broader range of organizations and will enable us to scale to meet the need for hybrid cloud solutions that deliver true choice and agility.</li><li><a href="https://thehackernews.com/2019/07/canonical-ubuntu-github-hacked.html" title="Ubuntu-Maker Canonicals GitHub Account Gets Hacked" rel="nofollow">Ubuntu-Maker Canonicals GitHub Account Gets Hacked</a> &mdash; An unknown hacker yesterday successfully managed to hack into the official GitHub account of Canonical, the company behind the Ubuntu Linux project and created 11 new empty repositories.</li><li><a href="https://twitter.com/ubuntu_sec/status/1147675201632473088" title="Ubuntu Security on Twitter" rel="nofollow">Ubuntu Security on Twitter</a> &mdash; We can confirm that on 2019-07-06 there was a Canonical owned account on GitHub whose credentials were compromised and used to create repositories and issues among other activities.</li><li><a href="https://arstechnica.com/gadgets/2019/07/raspberry-pi-4-uses-incorrect-usb-c-design-wont-work-with-some-chargers/" title="Raspberry Pi admits to faulty USB-C design on the Pi 4" rel="nofollow">Raspberry Pi admits to faulty USB-C design on the Pi 4</a> &mdash; After reports started popping up on the Internet, Raspberry Pi cofounder Eben Upton admitted to TechRepublic that "A smart charger with an e-marked cable will incorrectly identify the Raspberry Pi 4 as an audio adapter accessory and refuse to provide power." Upton went on to say, "I expect this will be fixed in a future board revision, but for now users will need to apply one of the suggested workarounds. It's surprising this didn't show up in our (quite extensive) field testing program."</li><li><a href="https://www.mozilla.org/en-US/firefox/68.0/releasenotes/" title="Firefox 68.0, See All New Features, Updates and Fixes" rel="nofollow">Firefox 68.0, See All New Features, Updates and Fixes</a> &mdash; Dark mode in reader view expands so that windows are also dark on the controls, sidebars and toolbars.</li><li><a href="https://docs.google.com/forms/d/1QDhxH88HwLxSxgW9iiHk-am_m59Jywc5pnL-aDY2hio/viewform?edit_requested=true" title="Linux Millionaire Question Form" rel="nofollow">Linux Millionaire Question Form</a> &mdash; Jupiter Broadcasting wants to create a fun game for Linux enthusiasts to test their knowledge on the depths of technology and Linux history. Please help by providing us your thoughtful questions and suggested answers!
</li><li><a href="https://twitter.com/linuxacademyCOM/status/1138424138501148673" title="Linux Academy on Twitter" rel="nofollow">Linux Academy on Twitter</a> &mdash; The AWS #DevOps Professional certification exam has just been updated with new emphasis on the AWS #Developer Tools suite.
</li><li><a href="https://chooselinux.show/12" title="Choose Linux 12: Regolith, Rosa, and Antsy Alien Attack" rel="nofollow">Choose Linux 12: Regolith, Rosa, and Antsy Alien Attack</a> &mdash; Two new hosts join Joe to talk about a nice i3 implementation and an amazing arcade game written in Bash.
</li><li><a href="https://jobs.lever.co/linuxacademy/" title="Linux Academy is Hiring!" rel="nofollow">Linux Academy is Hiring!</a></li><li><a href="https://www.meetup.com/jupiterbroadcasting/events/262584571/" title="Passing the AWS Cloud Practitioner Exam" rel="nofollow">Passing the AWS Cloud Practitioner Exam</a> &mdash; Whether you need the Cloud Practitioner certification for work or as a personal goal, studying and staying on track is hard because life gets in the way. Join this study group and well help you pass the exam by meeting on a bi-weekly basis and going over the main topics covered in the certification exam.
</li><li><a href="https://twitter.com/SocialHappiness/status/1148338792434061312" title="Emma on Twitter" rel="nofollow">Emma on Twitter</a> &mdash; Hey @system76 fans! I'm looking for a few people to join the HAPPINESS TEAM at System76! </li><li><a href="https://www.youtube.com/watch?v=hrdUJwfazJY" title="Understanding Burnout Study Group" rel="nofollow">Understanding Burnout Study Group</a></li><li><a href="https://www.ispa.org.uk/ispa-announces-finalists-for-2019-internet-heroes-and-villains-trump-and-mozilla-lead-the-way-as-villain-nominees/" title="ISPA announces finalists for 2019 Internet Heroes and Villains: Trump and Mozilla lead the way as Villain nominees" rel="nofollow">ISPA announces finalists for 2019 Internet Heroes and Villains: Trump and Mozilla lead the way as Villain nominees</a> &mdash; Mozilla, for their proposed approach to introduce DNS-over-HTTPS in such a way as to bypass UK filtering obligations and parental controls, undermining internet safety standards in the UK.</li><li><a href="https://www.zdnet.com/article/how-to-enable-dns-over-https-doh-in-firefox/" title="How to enable DNS-over-HTTPS (DoH) in Firefox | ZDNet" rel="nofollow">How to enable DNS-over-HTTPS (DoH) in Firefox | ZDNet</a> &mdash; The DNS-over-HTTPS (DoH) protocol is currently the talk of the town, and the Firefox browser is the only one to support it.
</li><li><a href="https://developers.google.com/speed/public-dns/docs/doh/" title="DNS-over-HTTPS (DoH)  |  Public DNS  |  Google Developers" rel="nofollow">DNS-over-HTTPS (DoH)  |  Public DNS  |  Google Developers</a> &mdash; Google Public DNS provides two distinct DoH APIs</li><li><a href="https://en.m.wikipedia.org/wiki/Public_recursive_name_server" title="Public recursive name server - Wikipedia" rel="nofollow">Public recursive name server - Wikipedia</a> &mdash; List of public DNS service operators</li><li><a href="https://facebookexperimental.github.io/doh-proxy/" title="DNS Over HTTPS Proxy" rel="nofollow">DNS Over HTTPS Proxy</a> &mdash; A set of python 3 scripts that supports proxying DNS over HTTPS as specified in the IETF Draft draft-ietf-doh-dns-over-https.
</li><li><a href="https://dnsprivacy.org/wiki/display/DP/DNS+Privacy+Clients" title="DNS Privacy Project" rel="nofollow">DNS Privacy Project</a></li><li><a href="https://github.com/jedisct1/dnscrypt-proxy" title="dnscrypt-proxy 2" rel="nofollow">dnscrypt-proxy 2</a> &mdash; A flexible DNS proxy, with support for modern encrypted DNS protocols such as DNSCrypt v2 and DNS-over-HTTPS.
</li><li><a href="https://developers.cloudflare.com/1.1.1.1/dns-over-https/cloudflared-proxy/" title="Running a DNS over HTTPS Client" rel="nofollow">Running a DNS over HTTPS Client</a> &mdash; There are several DNS over HTTPS (DoH) clients you can use to connect to 1.1.1.1 in order to protect your DNS queries from privacy intrusions and tampering.
</li><li><a href="https://github.com/curl/doh" title="curl/doh" rel="nofollow">curl/doh</a> &mdash; A libcurl-using application that resolves a host name using DNS-over-HTTPS (DOH).
</li><li><a href="https://tools.ietf.org/html/rfc7858" title="RFC 7858" rel="nofollow">RFC 7858</a> &mdash; Specification for DNS over Transport Layer Security</li><li><a href="https://www.opendns.com/about/innovations/dnscrypt/" title="DNS Security with DNSCrypt" rel="nofollow">DNS Security with DNSCrypt</a> &mdash; While OpenDNS has provided world-class security using DNS for years, and OpenDNS is the most secure DNS service available, the underlying DNS protocol has not been secure enough for our comfort. </li><li><a href="https://www.icann.org/resources/pages/dnssec-what-is-it-why-important-2019-03-05-en" title="DNSSEC What Is It and Why Is It Important? - ICANN" rel="nofollow">DNSSEC What Is It and Why Is It Important? - ICANN</a> &mdash; Engineers in the Internet Engineering Task Force (IETF), the organization responsible for the DNS protocol standards, long realized the lack of stronger authentication in DNS was a problem. Work on a solution began in the 1990s and the result was the DNSSEC Security Extensions (DNSSEC).
</li><li><a href="https://medium.com/@nykolas.z/dns-security-and-privacy-choosing-the-right-provider-61fc6d54b986" title="DNS Security and Privacy — Choosing the right provider" rel="nofollow">DNS Security and Privacy — Choosing the right provider</a> &mdash; However, with all great options out there (eg: 1.1.1.1, 8.8.8.8, 9.9.9.9), come great responsibilities. Which provider to choose? Which protocol to choose? DNSCrypt? DNS over HTTPS or TLS? What about DNSSEC? …
</li><li><a href="https://github.com/pi-hole/pi-hole/#one-step-automated-install" title="pi-hole/pi-hole: A black hole for Internet advertisements" rel="nofollow">pi-hole/pi-hole: A black hole for Internet advertisements</a> &mdash; Those who want to get started quickly and conveniently may install Pi-hole using the following command
</li><li><a href="https://docs.pi-hole.net/guides/dns-over-https/" title="Configuring DNS-Over-HTTPS on Pi-hole - Pi-hole documentation" rel="nofollow">Configuring DNS-Over-HTTPS on Pi-hole - Pi-hole documentation</a> &mdash; DNS-Over-HTTPS is a protocol for performing DNS lookups via the same protocol you use to browse the web securely: HTTPS.
</li><li><a href="https://github.com/cloudflare/cloudflared/issues/38" title="Segmentation fault on raspberry pi 2 model b · Issue #38 · cloudflare/cloudflared" rel="nofollow">Segmentation fault on raspberry pi 2 model b · Issue #38 · cloudflare/cloudflared</a></li><li><a href="https://wiki.gnome.org/action/show/Projects/DevilsPie?action=show&redirect=DevilsPie" title="DevilsPie" rel="nofollow">DevilsPie</a> &mdash; A totally crack-ridden program for freaks and weirdos who want precise control over what windows do when they appear. If you want all XChat windows to be on desktop 3, in the lower-left, at 40% transparency, you can do it.
</li><li><a href="http://www.nongnu.org/devilspie2/" title="Devilspie2" rel="nofollow">Devilspie2</a> &mdash; Devilspie2 is a window matching utility, allowing the user to perform scripted actions on windows as they are created.</li></ul>

View file

@ -0,0 +1,4 @@
<p>Community efforts to port Unity 8 or recreate the Unity 7 desktop are popping up all over & one of them is showing some real promise. Plus why Ubuntu Gnome left us feeling a little underwhelmed.</p>
<p>Then, Solus has a Gnome edition now. Ikey stops by to tell us about it & other new things coming out from the project.</p><p><a href="https://jupitersignal.memberful.com/checkout?plan=52946" rel="payment">Support LINUX Unplugged</a></p>

View file

@ -0,0 +1 @@
<p>Megyn Kelly is joined by Ron Dermer, former Israeli Ambassador to the U.S., and Ying Ma, author of "Chinese Girl in the Ghetto," to talk about what's behind the rise of anti-Jewish and anti-Asian violence in America and around the world, as well as the status of the Israel-Hamas ceasefire, the media coverage of Israel-Gaza violence and Israel generally, what's behind the BDS movement, why Israel is so important to the United States, how Asian Americans are treated by leftist activists, the tensions between Asian and Black communities in America, 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,42 @@
<p>Lesspass with Guillaume Vincent | Ask Noah Show 114</p>
<p>Guillaume Vincent is my guest this hour and we talk about Lesspass. Lesspass is a stateless password manager that differentiates itself in its simplicity and ease of use. We talk about the security, the ease of use, and Guillaumes passion for solving the password problem!</p>
<h3><strong>-- The Extra Credit Section --</strong></h3>
<p>For links to the articles and material referenced in this week&#39;s episode check out this week&#39;s page from our podcast dashboard!</p>
<p><a href="http://podcast.asknoahshow.com/114" rel="nofollow">This Episode&#39;s Podcast Dashboard</a></p>
<p><a href="http://www.voxtelesys.com/asknoah" rel="nofollow">Phone Systems for Ask Noah provided by Voxtelesys</a></p>
<p>Join us in our dedicated chatroom #AskNoahShow on Freenode!</p>
<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 theyre 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>live [at] asknoahshow.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>
</ul><p><a href="https://patreon.com/linuxdelta" rel="payment">Support Ask Noah Show</a></p><p>Links:</p><ul><li><a href="https://zencastr.com/" title="Zencastr" rel="nofollow">Zencastr</a></li><li><a href="https://now.source-elements.com/#!/" title="Source-Connect Now / Source Elements" rel="nofollow">Source-Connect Now / Source Elements</a></li><li><a href="https://destinationlinux.org/" title="Destination Linux A conversational podcast by people who love running Linux." rel="nofollow">Destination Linux A conversational podcast by people who love running Linux.</a></li></ul>