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 @@
<!-- SC_OFF --><div class="md"><p>This is a thread for smaller, miscellaneous items that might not warrant a full post on their own.</p> <p><a href="https://www.reddit.com/r/emacs/search?q=Weekly+tips&amp;restrict_sr=on&amp;sort=new&amp;t=all">See this search for previous &quot;Weekly Tips, Tricks, &amp;c.&quot; Threads.</a></p> <p>Don&#39;t feel constrained in regards to what you post, just keep your post vaguely, generally on the topic of emacs.</p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/AutoModerator"> /u/AutoModerator </a> <br/> <span><a href="https://www.reddit.com/r/emacs/comments/rgu8dp/weekly_tips_tricks_c_thread/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/emacs/comments/rgu8dp/weekly_tips_tricks_c_thread/">[comments]</a></span>

View file

@ -0,0 +1,34 @@
<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=deuteronomy+30%3A1-4&version=ESV'>Deuteronomy 30:1-4</a></p>
<p>- <a href='https://www.mydgroup.org/promo'>D-Group Promo Video</a></p>
<p>-<a href='http://mydgroup.org/map'> D-Group Map</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,47 @@
<p>The <a href="https://developer.apple.com/design/human-interface-guidelines/macos/visual-design/color/">Apples Human Interface Guidelines</a> have a list of named system colors for macOS. These color names can be used for Emacs “faces”, i.e. color-and-font settings of text.</p>
<figure><a href="https://christiantietze.de/posts/2021/11/lin.el-macos-system-colors/20211109104817_lin-vs-hl-line-mode.png"><img alt="" src="https://christiantietze.de/posts/2021/11/lin.el-macos-system-colors/20211109104817_lin-vs-hl-line-mode.png" /></a>LIN to the left in a (squished) email list, hl-mode to the right in regular text</figure>
<p>Recently, this came in handy when Protesilaos Stavrou published <a href="https://gitlab.com/protesilaos/lin/">his LIN package source code</a> its basically an extension of the built-in <code>hl-mode</code>, read: highlight-line-mode. The default highlights the current line. Thats kind of useful to find your insertion point more quickly. But its also used in selection interfaces to highlight the currently selected line: email modes like <code>message-mode</code>, <code>notmuch</code>, <code>mu4e</code>, and feed reader <code>elfeed</code> use this to show that the actions you can perform pertains to the currently focused or highlighted line. Thats where Prots LIN package comes into play: it helps distinguish between highlighting the line in text editing modes and highlighting the line in selection interfaces, so you can use different colors.</p>
<p>You could say that <a href="https://gitlab.com/protesilaos/lin/">LIN</a> adds a semantic layer on top of “highlight this line”: it can distinguish between “highlight this line of text” and “highlight the selection”.</p>
<p>Being on macOS, I wanted the system default selection color. Blue background with white foreground color.</p>
<p>I used this approach for <code>hl-line-mode</code> since May and <a href="https://christiantietze.de/posts/2021/05/macos-native-highlight-colors/">wrote about this</a> back then. I couldnt use <code>hl-line</code> to highlight my line in text documents if I wanted to, though, because of the color choice. This new approach improves that thanks to <a href="https://gitlab.com/protesilaos/lin/">LIN</a>.</p>
<p>To use macOSs named colors for selections as LINs background and foreground instead of specifying color values directly, tweak the two LIN faces:</p>
<div class="language-elisp highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="p">(</span><span class="nb">when</span> <span class="p">(</span><span class="nv">memq</span> <span class="nv">window-system</span> <span class="o">'</span><span class="p">(</span><span class="nv">mac</span> <span class="nv">ns</span><span class="p">))</span>
<span class="p">(</span><span class="nv">set-face-attribute</span> <span class="ss">'lin-hl</span> <span class="no">nil</span>
<span class="ss">:background</span> <span class="s">"selectedContentBackgroundColor"</span><span class="p">)</span>
<span class="c1">;; To also override the foreground (see `lin-override-foreground'):</span>
<span class="p">(</span><span class="nv">set-face-attribute</span> <span class="ss">'lin-hl-override-fg</span> <span class="no">nil</span>
<span class="ss">:foreground</span> <span class="s">"alternateSelectedControlTextColor"</span>
<span class="ss">:background</span> <span class="s">"selectedContentBackgroundColor"</span><span class="p">))</span>
</code></pre></div></div>
<p>The cool part about named system colors on macOS is that they are “Dynamic System Colors”: in dark mode, they produce a different value than in light mode. That means you dont need to pick dark and light colors individually. The same color names will work.</p>
<p>If you switch your OS or apps appearance to dark mode, though, you need to effectively reload the colors. Unlike native macOS apps, Emacs wont automatically use the correct color for the current appearance.</p>
<p>So you need to trigger an update of LINs faces to pick up the color values if you change the appearance from dark to light, or light to dark. macOS builds of Emacs have a hook for this, and you can perform a color update by adding a function to <code>ns-system-appearance-change-functions</code>:</p>
<div class="language-elisp highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="p">(</span><span class="nb">defun</span> <span class="nv">my-lin-macos-system-colors</span> <span class="p">()</span>
<span class="p">(</span><span class="nb">when</span> <span class="p">(</span><span class="nv">memq</span> <span class="nv">window-system</span> <span class="o">'</span><span class="p">(</span><span class="nv">mac</span> <span class="nv">ns</span><span class="p">))</span>
<span class="p">(</span><span class="nv">set-face-attribute</span> <span class="ss">'lin-hl</span> <span class="no">nil</span>
<span class="ss">:background</span> <span class="s">"selectedContentBackgroundColor"</span><span class="p">)</span>
<span class="c1">;; To also override the foreground (see `lin-override-foreground'):</span>
<span class="p">(</span><span class="nv">set-face-attribute</span> <span class="ss">'lin-hl-override-fg</span> <span class="no">nil</span>
<span class="ss">:foreground</span> <span class="s">"alternateSelectedControlTextColor"</span>
<span class="ss">:background</span> <span class="s">"selectedContentBackgroundColor"</span><span class="p">)))</span>
<span class="p">(</span><span class="nb">when</span> <span class="p">(</span><span class="nv">memq</span> <span class="nv">window-system</span> <span class="o">'</span><span class="p">(</span><span class="nv">mac</span> <span class="nv">ns</span><span class="p">))</span>
<span class="p">(</span><span class="nv">add-hook</span> <span class="ss">'ns-system-appearance-change-functions</span> <span class="nf">#'</span><span class="nv">my-lin-macos-system-colors</span><span class="p">))</span>
</code></pre></div></div>
<p>This information is now also part of <a href="https://gitlab.com/protesilaos/lin/">LINs README</a> and, if Prots past efforts to document his packages holds true, will also become part of the manual when you install this package.</p>
<hr /><p>Receive Christians <a href="https://christiantietze.de/newsletter/">new posts via email</a></p>

View file

@ -0,0 +1,44 @@
<p>A hostile takeover has just happened to the Copperhead OS Project. Lead developer Daniel Micay has been fired by Copperhead CEO James Donaldson. Micay claims Donaldson is up to no good, and Donaldson says it&#39;s Micay who doesn&#39;t have the company&#39;s best interest in mind. Who&#39;s to blame? Was the government part of this? What has been publicly released? Will the CopperheadOS project survive? We break that down for you plus your calls in this week&#39;s episode. </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 o our podcast dashboard!</p>
<p><a href="http://podcast.asknoahshow.com/71" 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>
<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><p>Links:</p><ul><li><a href="https://www.startengine.com/mycroft-ai" title="Mycroft AI | StartEngine" rel="nofollow">Mycroft AI | StartEngine</a></li><li><a href="https://twitter.com/DanielMicay/status/1006334186725224448" title="Daniel Used ATA Erase to Wipe the Drive" rel="nofollow">Daniel Used ATA Erase to Wipe the Drive</a> &mdash; DefCon-Security: Before you do any damage think of everyone that has paid for a service. This is being dealt with the wrong way and completely unprofessionally, i am your biggest fan but this is wrong. Ive gave you my word that it can be sorted amicably but this way can only end one way! Think
Daniel Micay:
Yes, they paid for a product which included a commitment to protecting them from the fallout from a situation like this. I had an obligation / commitment to protect those signing keys at all costs and to destroy them if I felt they were at risk of compromise which I certainly do.
</li><li><a href="https://paste.xinu.at/QIWIC7/" title="Actual Email - Daniel Fired" rel="nofollow">Actual Email - Daniel Fired</a></li><li><a href="https://yegortimoshenko.gitlab.io/copperhead-takeover/hackernews-1/" title="CopperheadOS is undergoing a company takeover | Hacker News" rel="nofollow">CopperheadOS is undergoing a company takeover | Hacker News</a></li><li><a href="http://www.fixitclean.com" title="Fix It Clean Auto Service (Indianapolis)" rel="nofollow">Fix It Clean Auto Service (Indianapolis)</a> &mdash; Fix It Clean has experience at an affordable price! Experienced automotive technician with 7 current A.S.E. certifications, knowledge of European, Asian, and Domestic vehicles. Able to make major repairs in shop or will travel to your location to diagnose your concern and make minor repairs. Lock-Out and Jump Starting services provided as well as some minor body repairs. Fix It Clean garage is located on the southern boarder of Carmel, IN. 46280 on Westfield Blvd. Free oil change and tire/brake (disc brake systems only) inspection for first time customers!</li><li><a href="https://ubuntuforums.org/showthread.php?t=1613132" title="[SOLVED] How to set NOMODESET and other kernel boot options in grub2" rel="nofollow">[SOLVED] How to set NOMODESET and other kernel boot options in grub2</a></li><li><a href="https://help.ubuntu.com/community/BootOptions" title="BootOptions - Community Help Wiki" rel="nofollow">BootOptions - Community Help Wiki</a></li><li><a href="https://opensource.com/article/18/6/first-media-company-broadcast-linux" title="How this media company became the first to broadcast entirely on Linux | Opensource.com" rel="nofollow">How this media company became the first to broadcast entirely on Linux | Opensource.com</a> &mdash; You don't need a hefty budget for Linux to get on the air—and when you're ready to scale, so is Linux.</li></ul>

View file

@ -0,0 +1 @@
<!-- SC_OFF --><div class="md"><p>I love emacs as a text editor for programming. But I am trying to build a GTD system using emacs orgmode and calendar and the search lists and calendar displays on emacs always end up looking like a nightmarish wall of text that makes looking at them a pain, a bit too information-dense, making it hard to focus on things. My eyes just bounce around the screen without focusing on anything.</p> <p>Is there a way to build similar calendar and search screens on emacs that have instead a lot of white space and separation between items, and focusing in readability rather than on information density?</p> <p>I basically would like more structure and less text on screen.</p> <p>Some examples:</p> <ul> <li><a href="http://doc.norang.ca/block-agenda-nonproject.png">http://doc.norang.ca/block-agenda-nonproject.png</a></li> </ul> <p>This is a task list, but it just presents line after the other of tasks with very little structure and forces you to read through everything to find things rather than having more structure and less crowded text.</p> <ul> <li><a href="https://lh3.googleusercontent.com/proxy/x2h2YKongReYZpjadF36L0fvICHhm0fZG4keZZlYmapLUzfpBHuIIBwgLu1AaCTSFmUhbneZ946iOxm60HFIpcrzEr5otlWbvHM5uDmE9OlTN9n4Q__2A6Obq28">https://lh3.googleusercontent.com/proxy/x2h2YKongReYZpjadF36L0fvICHhm0fZG4keZZlYmapLUzfpBHuIIBwgLu1AaCTSFmUhbneZ946iOxm60HFIpcrzEr5otlWbvHM5uDmE9OlTN9n4Q__2A6Obq28</a></li> </ul> <p>Very crowded week-calenday-view with the tasks of one day just piling on top of the tasks of the next day and making it hard to get a clear, temporal view of the view.</p> <p>I haven&#39;t been able to find any examples with more readable and less crowded views. Has anybody built anything like this? Or is emacs the wrong tool for this and maybe more centered for users that like to see a lot of information at once rather than more structured information? I realize it may be difficult to do what other task and calendar applications do with pure text, so I may be looking at the wrong tool.</p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/graminouling"> /u/graminouling </a> <br/> <span><a href="https://www.reddit.com/r/emacs/comments/rct4vo/is_there_a_way_to_display_nice_readable_search/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/emacs/comments/rct4vo/is_there_a_way_to_display_nice_readable_search/">[comments]</a></span>

View file

@ -0,0 +1 @@
<p><img src="https://thumbnails.lbry.com/TExBi2rTf1s" width="480" alt="thumbnail" title="Computex 2021 Review: Our Favorite Hardware From AMD, Intel, Nvidia & More! | Hardware Addicts 38" /></p>Welcome to Hardware Addicts, a proud member of the Destination Linux Network. Hardware Addicts is the podcast that focuses on the physical components that powers our technology world.<br /><br />In this episode, were going to do a recap of Computex 2021 and all of the exciting hardware teased this year. Were going to cover news from AMD, Intel, Nvidia and more. Then we head to the camera corner where Wendy will discuss Going Macro.<br /><br />So Sit back, Relax, and Plug In because Hardware Addicts Starts Now!<br /><br /><br />**Hosts**:<br />Ryan = https://dasgeekcommunity.com<br />Michael = https://tuxdigital.com<br />Wendy = https://destinationlinux.network<br /><br />Want to Support the Show?<br />Destination Linux Network Store = https://destinationlinux.network/store<br /><br />Want to follow the show and hosts on social media?<br />You can find all of our social accounts at https://hardwareaddicts.org/hosts<br />...<br />https://www.youtube.com/watch?v=TExBi2rTf1s

View file

@ -0,0 +1 @@
<p><img src="https://thumbnails.lbry.com/vr-tCCcL4UM" width="480" alt="thumbnail" title="Accent Color Folders in Plasma and Dolphin!" /></p>Stay in the loop: https://t.me/veggeroblog<br /><br />If you want to help me make these videos:<br />Patreon: https://www.patreon.com/niccolove<br />Youtube: https://www.youtube.com/channel/UCONH73CdRXUjlh3-DdLGCPw/join<br />Paypal: https://paypal.me/niccolove<br /><br />My website is https://niccolo.venerandi.com and if you want to contact me, my telegram handle is [at] veggero.<br />...<br />https://www.youtube.com/watch?v=vr-tCCcL4UM

View file

@ -0,0 +1,4 @@
<p>Weve got exclusive interviews from LinuxCon 2014, learn about Linux in big networking, what the future holds for SUSE & much more.</p>
<p>Plus, are you feeling a bit down? Maybe its because Linux users are being told to shut up about Desktop Linux & move on. Well discuss why this an absurdly short sighted idea.</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 Chloé Valdary, creator of the "Theory of Enchantment," to discuss redemption, faith and spirituality, resilience, combating the outrage mob, race, racism and our current cultural moment, technology 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,23 @@
<p>This article is a quick follow-up on yesterdays post on <a href="https://emacsredux.com/blog/2021/11/24/redo-complex-command/">redoing complex
commands</a>. Ive noticed today
that the popular Emacs package <a href="https://github.com/minad/consult">consult</a>
offers a much more powerful version of the built-in <code class="language-plaintext highlighter-rouge">repeat-complex-command</code>
command. The <code class="language-plaintext highlighter-rouge">consult</code> version is named <code class="language-plaintext highlighter-rouge">consult-complex-command</code> and has a
couple of nice advantages:</p>
<ul>
<li>candidate filtering</li>
<li>TAB-completion</li>
</ul>
<p><img alt="consult-complex-command.png" src="https://emacsredux.com/assets/images/consult-complex-command.png" /></p>
<p>Basically, its lot faster to find what youre looking for. If youre into <code class="language-plaintext highlighter-rouge">consult</code> Id suggest just using its version in place of the built-in command:</p>
<div class="language-emacs-lisp highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="p">(</span><span class="nv">global-set-key</span> <span class="nv">[remap</span> <span class="nv">repeat-complex-command]</span> <span class="nf">#'</span><span class="nv">consult-complex-command</span><span class="p">)</span>
</code></pre></div></div>
<p>You can invoke <code class="language-plaintext highlighter-rouge">consult-complex-command</code> with <code class="language-plaintext highlighter-rouge">C-x M-:</code> or <code class="language-plaintext highlighter-rouge">C-x ESC ESC</code>.</p>
<p>Thats all I have for you today. The <code class="language-plaintext highlighter-rouge">consult</code> package is full of powerful versions
of built-in Emacs commands, so youll do well to spend some time exploring it. I know I will!</p>

View file

@ -0,0 +1 @@
<p>Humans are like trees. While this thought might not have been at the top of your mind this week, it was a key idea for the biblical authors. In the second of our five most popular podcasts, explore the connection between humans and trees with Tim and Jon as we learn why trees are mentioned more times than almost anything else in the Bible. </p><p><strong>QUOTE</strong></p><p>If you look at days three and six, youll see they both have two creative acts. The second creative act on day three is a fruit tree, and on day six its a fruitful human. This is designed in such a way that you now start thinking in the metaphor, “Humans are trees.” … People are like trees, which means the future of humans—their origins and their destinies—are going to be linked in some way. Were meant to wonder if the future of humans will be bound up with the future of trees.</p><p>Show produced by Cooper Peltz, Dan Gummel, and Zach McKinley. Remastering by Jake Trethaway. Show notes by Camden McAfee and Lindsey Ponder. </p><p>Powered and distributed by Simplecast.</p><p>Original episode and show notes are available <a href="https://bibleproject.com/podcast/humans-are-trees/">here</a>.</p>

View file

@ -0,0 +1,29 @@
<p>SHOW NOTES: </p>
<p>- All the info you need to START is on our <a href='http://www.thebiblerecap.com'>website</a>! Seriously, go there.
- Join our <a href='https://www.patreon.com/thebiblerecap'>PATREON</a> community for bonus perks!</p>
<p>- Get your <a href='https://www.theconnextion.com/tlcdgroup/index.cfm'>TBR merch</a></p>
<p>- <a href='http://thebiblerecap.com/contact'>Show credits</a></p>
<p> </p>
<p>FROM TODAYS PODCAST:</p>
<p>- <a href='http://theconnextion.com/tbr'>Daily Study Guide and Weekly Discussion Guide</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 @@
<!-- SC_OFF --><div class="md"><p>Hi all</p> <p>I&#39;m looking for a way to automatically replace placeholders with text upon export. </p> <p>So let&#39;s say I write a standard tekst like this:</p> <p><code> Hello {{{Name}}} </code></p> <p>I would then be able to, upon export, replace {{{Name}}} with whatever I define it as at that moment.</p> <p>Is anything like that available? Or any pointers on what to search for?</p> <p>EDIT: Found out it&#39;s called Macro&#39;s. See comment below.</p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/EFLS_"> /u/EFLS_ </a> <br/> <span><a href="https://www.reddit.com/r/orgmode/comments/qwwqdu/looking_for_placeholder_text_replacement/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/orgmode/comments/qwwqdu/looking_for_placeholder_text_replacement/">[comments]</a></span>

View file

@ -0,0 +1 @@
<p><img src="https://thumbnails.lbry.com/maJRJNcIpno" width="480" alt="thumbnail" title="A "Hot Tip" to Restore the Minimalist Web!" /></p>This is just a little tool I use to find and browse unbloated and often personal webpages that don't get the attention of big search engines that want soydevvery. It's https://wiby.me, a search engine where anyone can submit a webpage, but the only requirement is that it only indexes minimalist and old-school websites! Check it out.<br /><br />You can also activate it through SearX, which I've done videos on as well.<br /><br />My website: https://lukesmith.xyz<br />Please donate: https://donate.lukesmith.xyz<br />Get all my videos off YouTube: https://videos.lukesmith.xyz<br />or Odysee: https://odysee.com/$/invite/@Luke:7<br /><br />BTC: bc1qw5w6pxsk3aj324tmqrhhpmpfprxcfxe6qhetuv<br />XMR: 48jewbtxe4jU3MnzJFjTs3gVFWh2nRrAMWdUuUd7Ubo375LL4SjLTnMRKBrXburvEh38QSNLrJy3EateykVCypnm6gcT9bh<br /><br />OR affiliate links to things l use:<br />https://www.vultr.com/?ref=8384069-6G Get a VPS and host a website or server for anything else.<br />https://www.epik.com/?affid=we2ro7sa6 Get a cheap and reliable domain name with Epik.<br />https://brave.com/luk005 Get the Brave browser.<br />https://odysee.com/$/invite/@Luke:7 View my videos on Odysee and get a bonus for joining.<br />https://www.coinex.com/register?refer_code=ndf87 Get crypto-rich on Coinex. Get reduced exchange fees for 3 months.<br />https://www.coinbase.com/join/smith_5to1 Get crypto-rich on Coinbase. We both get $10 in Bitcoin when you buy or sell $100 in cryptocurrencies.<br />...<br />https://www.youtube.com/watch?v=maJRJNcIpno

View file

@ -0,0 +1,45 @@
<p>Tech literally has a body count! As we tell you what happened and how we dive into the potentially deadly implications of automation. Have you ever wanted to manage digital signage, using linux, and on a budget? We have the solution for you. Your calls go to the front of the line as always! We wrap by spilling our plans for next week&#39;s meetup for our 1 year anniversary.</p>
<h3><strong>-- The Cliff Notes --</strong></h3>
<ul>
<li><a href="http://money.cnn.com/2018/03/19/technology/uber-autonomous-car-fatal-crash/index.html" rel="nofollow">First Fatal Crash with Uber Self Driving Car</a></li>
<li><a href="https://www.bloomberg.com/news/articles/2018-03-20/telegram-loses-bid-to-stop-russia-from-getting-encryption-keys" rel="nofollow">Telegram Loses Bid To Stop Russia From Getting Encryption Keys</a></li>
<li><a href="https://www.theverge.com/2018/3/26/17166272/foxconn-buys-belkin-fit-linksys-wemo" rel="nofollow">Foxcons Guys Belkin, Linksys, Wemo</a></li>
<li><a href="https://www.youtube.com/watch?v=6CkKku1JAe8" rel="nofollow">See How the Ask Noah Show Got Started (video)</a></li>
<li><a href="http://www.voxtelesys.com" rel="nofollow">VoxTeleSys</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><p>Links:</p><ul><li><a href="https://www.pisignage.com/" title="Digital Signage Software Platform for Raspberry Pi" rel="nofollow">Digital Signage Software Platform for Raspberry Pi</a> &mdash; Breathe life into your Screens
Build your own digital signage network with piSignage and raspberry pi.</li><li><a href="https://www.nytimes.com/2018/03/19/technology/uber-driverless-fatality.html" title="Self-Driving Uber Car Kills Pedestrian in Arizona" rel="nofollow">Self-Driving Uber Car Kills Pedestrian in Arizona</a> &mdash; Arizona officials saw opportunity when Uber and other companies began testing driverless cars a few years ago. Promising to keep oversight light, they invited the companies to test their robotic vehicles on the states roads.
Then on Sunday night, an autonomous car operated by Uber — and with an emergency backup driver behind the wheel — struck and killed a woman on a street in Tempe, Ariz. It was believed to be the first pedestrian death associated with self-driving technology. The company quickly suspended testing in Tempe as well as in Pittsburgh, San Francisco and Toronto.</li><li><a href="http://money.cnn.com/2018/03/19/technology/uber-autonomous-car-fatal-crash/index.html" title="Uber pulls self-driving cars after first fatal crash of autonomous vehicle" rel="nofollow">Uber pulls self-driving cars after first fatal crash of autonomous vehicle</a> &mdash; Uber has removed its self-driving cars from the roads following what is believed to be the first fatality involving a fully autonomous car.</li><li><a href="https://www.theverge.com/2018/3/26/17166272/foxconn-buys-belkin-fit-linksys-wemo" title="Foxconn buys Belkin, Linksys, and Wemo" rel="nofollow">Foxconn buys Belkin, Linksys, and Wemo</a> &mdash; The Taiwanese company known best for manufacturing iPhones, Foxconn, will soon be the company behind some of the best known routers and other computer accessories. A subsidiary of Foxconn, Foxconn Interconnect Technology, announced today that it would acquire Belkin, which also owns the brands Linksys and Wemo.</li><li><a href="https://amzn.to/2GkLW22" title="ESYNIC HDMI Extender" rel="nofollow">ESYNIC HDMI Extender</a></li><li><a href="https://opentokrtc.com/" title="Free OpenTok Service" rel="nofollow">Free OpenTok Service</a></li></ul>

View file

@ -0,0 +1 @@
<p>A stubborn prophet, a wicked nation, a giant fishthe story of Jonah is frequently translated into the popular imagination through TV and movies. But what is it really about? In this episode, learn from Tim about where Jonah fits into the story of the Bible that ultimately points to Jesus. This is a sneak peek into our free graduate-level course on Jonah which will be featured in the new Classroom resource available in 2022.</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>Part one (0:00-18:05)</li><li>Part two (18:05-28:30)</li><li>Part three (28:30-37:00)</li><li>Part four (37:00-44:30)</li><li>Part five (44:30-end)</li></ul><p>Referenced Resources</p><ul><li>Interested in more? Check out <a href="https://bibleproject.com/tim-mackie/">Tims library here.</a></li><li><a href="https://tbp.xyz/jonahnotes">Jonah class session notes</a>, including the handout “How to Read a Text Like the Hebrew Bible” (page 5)</li><li><a href="https://tbp.xyz/jonahtranslation"><i>Jonah: A Literal-Literary Translation</i></a>, Tim Mackie</li><li><a href="http://bibleproject.com/classroom/apply">Classroom Application</a></li></ul><p>Show Music </p><ul><li>“Defender (Instrumental)” by TENTS</li><li>“Keep an Open Mind” by Olive Musique</li></ul><p>Show produced by Cooper Peltz, Dan Gummel, and Zach McKinley. Show notes by Lindsey Ponder. </p><p>Powered and distributed by Simplecast.</p>

View file

@ -0,0 +1,2 @@
<p>Brent sits down with Joe Ressington, Jupiter Broadcasting Podcast Content Director, Late Night Linux host, and musician, for an exploration of his journey in podcasting, a behind-the-scenes of User Error and Linux Action News, how music led to Linux, the origins of Brunch with Brent&#39;s theme music, and more.</p><p>Special Guest: Joe Ressington.</p><p>Links:</p><ul><li><a href="http://jupiterbroadcasting.com/" title="Jupiter Broadcasting" rel="nofollow">Jupiter Broadcasting</a></li><li><a href="http://linuxactionnews.com/" title="Linux Action News" rel="nofollow">Linux Action News</a></li><li><a href="https://error.show/" title="User Error" rel="nofollow">User Error</a></li><li><a href="https://chooselinux.show/" title="Choose Linux" rel="nofollow">Choose Linux</a></li><li><a href="https://linuxunplugged.com/" title="Linux Unplugged (LUP)" rel="nofollow">Linux Unplugged (LUP)</a></li><li><a href="https://latenightlinux.com/" title="Late Night Linux" rel="nofollow">Late Night Linux</a></li><li><a href="https://twitter.com/JoeRessington/status/1209596633954029568" title="@JoeRessington's Christmas Tweet - Twitter" rel="nofollow">@JoeRessington's Christmas Tweet - Twitter</a></li><li><a href="https://www.omgubuntu.co.uk/2020/01/new-years-resolutions-linux" title="5 New Years Resolutions for Fans of Linux - omg! ubuntu!" rel="nofollow">5 New Years Resolutions for Fans of Linux - omg! ubuntu!</a></li><li><a href="https://luddites.latenightlinux.com/" title="Linux Luddites" rel="nofollow">Linux Luddites</a></li><li><a href="https://twitter.com/degville" title="Graham Morrison - Twitter" rel="nofollow">Graham Morrison - Twitter</a></li><li><a href="https://twitter.com/felimwhiteley" title="Félim Whiteley - Twitter" rel="nofollow">Félim Whiteley - Twitter</a></li><li><a href="https://twitter.com/8none1" title="Will Cooke - Twitter" rel="nofollow">Will Cooke - Twitter</a></li><li><a href="https://ubuntupodcast.org/" title="Ubuntu Podcast" rel="nofollow">Ubuntu Podcast</a></li><li><a href="https://www.oggcamp.org/" title="OggCamp" rel="nofollow">OggCamp</a></li><li><a href="https://extras.show/26" title="OggCamp 2019 Panel - Jupiter Extras" rel="nofollow">OggCamp 2019 Panel - Jupiter Extras</a></li><li><a href="https://extras.show/42" title="Brunch with Brent: Catherine Kretzschmar" rel="nofollow">Brunch with Brent: Catherine Kretzschmar</a></li><li><a href="https://en.wikipedia.org/wiki/Mastodon_(band)" title="Mastodon (band) - Wikipedia" rel="nofollow">Mastodon (band) - Wikipedia</a></li><li><a href="https://www.mastodonrocks.com" title="Mastodon (band)" rel="nofollow">Mastodon (band)</a></li><li><a href="https://soundcloud.com/ciderbeardjoe" title="CiderbeardJoe - SoundCloud" rel="nofollow">CiderbeardJoe - SoundCloud</a></li><li><a href="https://www.npr.org/2019/10/16/770318649/taylor-swift-tiny-desk-concert" title="Taylor Swift: NPR Music Tiny Desk Concert" rel="nofollow">Taylor Swift: NPR Music Tiny Desk Concert</a></li><li><a href="https://www.youtube.com/watch?v=Dkk9gvTmCXY" title="Taylor Swift - You Need To Calm Down - YouTube" rel="nofollow">Taylor Swift - You Need To Calm Down - YouTube</a></li><li><a href="https://bigdaddylinux.com/video/episode-30-brent-gervais/" title="Linux Spotlight EP30 - Brent Gervais" rel="nofollow">Linux Spotlight EP30 - Brent Gervais</a></li><li><a href="https://linuxfestnorthwest.org" title="LinuxFest Northwest" rel="nofollow">LinuxFest Northwest</a></li><li><a href="https://www.jupiterbroadcasting.com/show/linuxactionshow/" title="Linux Action Show (LAS) - Archive" rel="nofollow">Linux Action Show (LAS) - Archive</a></li><li><a href="https://www.jupiterbroadcasting.com/show/cas/" title="Computer Action Show - Archive" rel="nofollow">Computer Action Show - Archive</a></li><li><a href="https://twitter.com/unixterminal" title="Hayden Barns - Twitter" rel="nofollow">Hayden Barns - Twitter</a></li><li><a href="https://twitter.com/joeressington" title="Joe Ressington - @JoeRessington on Twitter" rel="nofollow">Joe Ressington - @JoeRessington on Twitter</a></li><li><a href="https://joeress.com/" title="Joe Ressington - JoeRess.com" rel="nofollow">Joe Ressington - JoeRess.com</a></li><li><a href="https://twitter.com/brentgervais" title="Brent Gervais - @brentgervais on Twitter" rel="nofollow">Brent Gervais - @brentgervais on Twitter</a></li></ul>

View file

@ -0,0 +1 @@
<p><img src="https://thumbnails.lbry.com/e3g4XX39tUk" width="480" alt="thumbnail" title="The Ascent - Now with added mouse! - 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/979690/The_Ascent/<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=e3g4XX39tUk

View file

@ -0,0 +1 @@
<!-- SC_OFF --><div class="md"><p>is there an easy way to install guix with full disk encryption? Thanks</p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/sand240240"> /u/sand240240 </a> <br/> <span><a href="https://www.reddit.com/r/GUIX/comments/ppcui6/full_disk_encryption/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/GUIX/comments/ppcui6/full_disk_encryption/">[comments]</a></span>

View file

@ -0,0 +1 @@
<p><img src="https://spee.ch/3/6ab1ce8311545b04.png" width="480" alt="thumbnail" title="Dangers of Voice Over IP - VOIP Apps and Appliances" /></p>Understand how VOIP Works, both as appliances, software, and as Apps. Learn about the distinction between Encrypted VOIP and regular VOIP. Find out which VOIP options are safer. We'll also discuss the mass surveillance implications of VOIP and anything related to voice.<br /><br /><br />-----------------------------------<br /><br /><br />I'm the Internet Privacy Guy. I'm a public interest technologist. I'm here to educate. You are losing your Internet privacy and Internet security every day if you don't fight for it. Your data is collected with endless permanent data mining. Learn about a TOR router, a VPN , antivirus, spyware, firewalls, IP address, wifi triangulation, data privacy regulation, backups and tech tools, and evading mass surveillance from NSA, CIA, FBI. Learn how to be anonymous on the Internet so you are not profiled. Learn to speak freely with pseudo anonymity. Learn more about the dangers of the inernet and the dangers of social media, dangers of email.<br /><br /><br /><br /><br />I like alternative communication technology like Amateur Radio and data communications using Analog. I'm a licensed HAM operator.<br /><br /><br /><br /><br />Support this channel on Patreon! https://www.patreon.com/user?u=17858353<br /><br /><br />Contact Rob on the Brax.Me App (@robbraxman) for encrypted conversations (open source platform)<br /><br /><br />https://brax.me/home/rob Store for BytzVPN, BraxRouter, De-googled Privacy AOSP Phones, Linux phones, and merchandise<br /><br /><br />https://bytzvpn.com Premium VPN with Pi-Hole, Cloud-Based TOR Routing<br /><br /><br />https://whatthezuck.net Cybersecurity Reference<br /><br /><br />https://brax.me Privacy Focused Social Media - Open Source <br /><br /><br />My GPG Public Key https://brax.me/f/rob_braxme_public.asc/T4AZ5ea27dc817c903.67892248<br /><br /><br /><br /><br /><br /><br />Please follow me on Odysee! (Previously LBRY)<br />https://odysee.com/$/invite/@RobBraxmanTech:6

View file

@ -0,0 +1 @@
&#160; This is Toby Sumpter with your CrossPolitic Daily News Brief for Tuesday, March 9, 2021. Chocolate Knox &#38; Water Boy on are on Spring Break this week. Today you will hear about Jordan Peterson wrestling with Christ, another Spending Extravaganza has passed the Senate, Chris Cuomo says hes black on the inside, Rep. Steube [&#8230;]

View file

@ -0,0 +1 @@
<p><img src="https://thumbnails.lbry.com/g_X3EmbcomE" width="480" alt="thumbnail" title="Hey, Linux! Can I Do Whatever I Want?" /></p>I think everyone that has ever used Microsoft Windows has eventually discovered things that they just were not allowed to do in Windows. Why would an operating system restrict the user? Linux doesn't do that! <br /><br />Music: Ponte de Abril by Steve Adams (YouTube Audio Library)<br /><br />WANT TO SUPPORT THE CHANNEL? <br />💰 Patreon: https://www.patreon.com/distrotube <br />💳 Paypal: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=derek%40distrotube%2ecom&lc=US&item_name=DistroTube&no_note=0&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHostedGuest<br />🛍️ Amazon: https://amzn.to/2RotFFi<br />👕 Teespring: https://teespring.com/stores/distrotube<br /><br />DONATE CRYPTO:<br />💰 Bitcoin: 1Mp6ebz5bNcjNFW7XWHVht36SkiLoxPKoX<br />🐶 Dogecoin: D5fpRD1JRoBFPDXSBocRTp8W9uKzfwLFAu<br />📕 LBC: bMfA2c3zmcLxPCpyPcrykLvMhZ7A5mQuhJ<br /><br />SOCIAL PLATFORMS: <br />🗨️ Mastodon: https://distrotoot.com/@derek<br />👫 Reddit: https://www.reddit.com/r/DistroTube/<br />📽️ LBRY/Odysee: https://odysee.com/$/invite/@DistroTube:2<br /><br />DT ON THE WEB:<br />🕸️ Website: http://distrotube.com/<br />🐿️ Gemini Capsule: gemini://distro.tube<br />📁 GitLab: https://gitlab.com/dwt1 <br /><br />FREE AND OPEN SOURCE SOFTWARE THAT I USE:<br />🌐 Brave Browser - https://brave.com/dis872 <br />📽️ Open Broadcaster Software: https://obsproject.com/<br />🎬 Kdenlive: https://kdenlive.org<br />🎨 GIMP: https://www.gimp.org/<br />🎵 Ardour: https://ardour.org/<br />💻 VirtualBox: https://www.virtualbox.org/<br />🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs<br /><br />Your support is very much appreciated. Thanks, guys!<br />...<br />https://www.youtube.com/watch?v=g_X3EmbcomE

View file

@ -0,0 +1,15 @@
<p class="deck">Powerbrokers blocking access</p>
<p class="text">I was reading an essay the other day in which I encountered a reference to a book by William Mellor and Dick M. Carpenter II called <em><strong><a href="https://amzn.to/3crA8Zp" class="">Bottleneckers</a></strong></em>.</p><a href="https://cdn.substack.com/image/fetch/f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F31cd803b-b81f-4eb8-a3f7-e0bc62e27f63_7768x5179.jpeg" target="_blank" class="text"></a> <a href="https://cdn.substack.com/image/fetch/f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F31cd803b-b81f-4eb8-a3f7-e0bc62e27f63_7768x5179.jpeg" target="_blank" class="text"></a><p class="text">Photo by <a href="https://unsplash.com/@dylu?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText" class="">Jacek Dylag</a> on <a href="https://unsplash.com/s/photos/traffic-jam?utm_source=unsplash&amp;utm_medium=referral&amp;utm_content=creditCopyText" class="">Unsplash</a></p>
<p class="text">In said book a bottlenecker is defined as</p>
<blockquote class="text">
<p class="text">a person who advocates for the creation or perpetuation of government regulation, particularly an occupational license, to restrict entry his or her occupation, thereby accruing an economic advantage without providing a benefit to consumers.</p>
</blockquote>
<p class="text">Well, then, that got my mind rolling about church authorities who are bottleneckers. That is, they follow the protocols and procedures to a T, and play the part of lawyers executing laws and precedents and canons and protocols, and they fail to listen to the (mostly) women with allegations, and the discount stories of the abused, physically and spiritually, because their stories don&rsquo;t fit their decisions as to what fits &ndash; so they follow laws mostly designed to protect those in authority. The wounded resisters experience these church authorities as bottleneckers because they are.</p>
<p class="text">That is, they think they know what needs to be known for the church while there are lay folks in the trenches with suggestions and ideas that are not only worthy of consideration but are worthy of implementing to carry on the ministry to those in the church and in the community. These too are bottleneckers slowing down the traffic. So slow that some people take the first exit.</p>
<p class="text">That is, they label Du Mez, Tisby, and Barr &ldquo;deconstructors,&rdquo; which they are not, in order to smear them instead of offering context-sensitive readings of their own studies or their conclusions. And while smearing them Leeman fails to recognize that the rise of so-called &ldquo;biblical complementarians&rdquo; ...</p><p class="more"><a href="https://www.christianitytoday.com/scot-mcknight/2021/november/beware-bottleneckers.html">Continue reading</a>...</p>
<p><br /><a href="https://rss.beaconads.com/click.php?z=1289806&k=c779018782158d93282944b4f7dd4d03&a=190922&c=97020460" target="_blank"><img src="https://rss.beaconads.com/img.php?z=1289806&k=c779018782158d93282944b4f7dd4d03&a=190922&c=97020460" border="0" alt="" /></a></p>
4

View file

@ -0,0 +1 @@
Get the Book from JesseSumpter.com