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>Can someone confirm that I get something better than someone I don&#39;t know building my software and I have to trust it? Let&#39;s say I use the Guix package manager instead of the packages from some distro, are there more checks on software packages. Is it a least possible to check it. I justed asked in <a href="/r/VoidLinux">/r/VoidLinux</a> (here: <a href="https://www.reddit.com/r/voidlinux/comments/qorgqb/void_binaries_are_reproducible_builds/">https://www.reddit.com/r/voidlinux/comments/qorgqb/void_binaries_are_reproducible_builds/</a>) and for them it seems to be too complex.</p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/botfiddler"> /u/botfiddler </a> <br/> <span><a href="https://www.reddit.com/r/GUIX/comments/qox77h/how_reproducible_are_guix_packages/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/GUIX/comments/qox77h/how_reproducible_are_guix_packages/">[comments]</a></span>

View file

@ -0,0 +1,10 @@
<div class="date">17 Jul 2020</div>
<p>
I use three different browsers, but I really want all of them to be as mouse-less as possible. Here is a discussion of my Emacs and browser configuration. Do you have similar tips you'd like to share?
</p>
<p>
<a href="http://www.howardism.org/Technical/Emacs/browsing-in-emacs.html">Read more...</a>
</p>

View file

@ -0,0 +1,46 @@
<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=Numbers+32%3A1&version=ESV'>Numbers 32:1</a></p>
<p>- <a href='https://www.biblegateway.com/passage/?search=exodus+15%3A16&version=ESV'>Exodus 15:16</a></p>
<p>- <a href='https://www.biblegateway.com/passage/?search=exodus+23%3A27&version=ESV'>Exodus 23:27</a></p>
<p>- <a href='https://www.biblegateway.com/passage/?search=hebrews+11%3A31&version=ESV'>Hebrews 11:31</a></p>
<p>- <a href='https://www.biblegateway.com/passage/?search=james+2%3A25&version=ESV'>James 2:25</a></p>
<p>- <a href='https://www.biblegateway.com/passage/?search=matthew+1%3A5&version=ESV'>Matthew 1:5</a></p>
<p>- <a href='https://www.biblegateway.com/passage/?search=exodus+1%3A15-21&version=ESV'>Exodus 1:15-21</a></p>
<p>- <a href='https://www.biblegateway.com/passage/?search=genesis+12%3A2&version=ESV'>Genesis 12:2</a></p>
<p>- Join us on a trip to Israel! Find out more at <a href='http://thebiblerecap.com/israel'>thebiblerecap.com/israel</a>! The trip sign-up closes soon, so be sure to fill out the interest form (not a commitment) today! Well send you more info on the trip so you can decide if its a good fit for you!</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,41 @@
<p>On Dec 18th, 2021, Perl turned 34!<sup id="fnref:1"><a class="footnote" href="https://batsov.com/articles/2021/12/19/perl-turns-34/#fn:1" rel="footnote">1</a></sup> Heres how it all started:</p>
<blockquote>
<p><strong>a “replacement” for awk and sed</strong></p>
<p>[ Perl is kind of designed to make awk and sed semi-obsolete. This posting
will include the first 10 patches after the main source. The following
description is lifted from Larrys manpage. r$ ]</p>
<p>Perl is a interpreted language optimized for scanning arbitrary text
files, extracting information from those text files, and printing
reports based on that information. Its also a good language for many
system management tasks. The language is intended to be practical
(easy to use, efficient, complete) rather than beautiful (tiny,
elegant, minimal). It combines (in the authors opinion, anyway) some
of the best features of C, sed, awk, and sh, so people familiar with
those languages should have little difficulty with it. (Language
historians will also note some vestiges of csh, Pascal, and even
BASIC-PLUS.) Expression syntax corresponds quite closely to C
expression syntax. If you have a problem that would ordinarily use sed
or awk or sh, but it exceeds their capabilities or must run a little
faster, and you dont want to write the silly thing in C, then perl may
be for you. There are also translators to turn your sed and awk
scripts into perl scripts.</p>
</blockquote>
<p>Perl has a very special place in my heart, as it was one of the first programming languages that I learned in the early days of my career. In 2005 I was even teaching Perl to students at the Technical University of Sofia, which was my very first experience as an educator. Perl taught me a lot about the virtues of programming, text processing, regular expressions, scripting and writing unreadable code. I wouldnt be the same programmer (person?) without it!</p>
<p>I still remember fondly the days when web development was all about CGI and Perl!
While the language lost traction in recent years, I think that its legacy in alive and well - most notably as a replacement for <code class="language-plaintext highlighter-rouge">sed</code> and <code class="language-plaintext highlighter-rouge">awk</code>, and in Ruby.<sup id="fnref:2"><a class="footnote" href="https://batsov.com/articles/2021/12/19/perl-turns-34/#fn:2" rel="footnote">2</a></sup> Happy birthday, Perl!</p>
<div class="footnotes">
<ol>
<li id="fn:1">
<p>Depending on what you consider the birthday, that is. The first Perl commit was on Dec 18, 1987, but Perl 1.0 was released on Feb 1, 1988. <a class="reversefootnote" href="https://batsov.com/articles/2021/12/19/perl-turns-34/#fnref:1">↩</a></p>
</li>
<li id="fn:2">
<p>Not to mention the countless other programming languages that have modeled their regular expression support after Perl. <a class="reversefootnote" href="https://batsov.com/articles/2021/12/19/perl-turns-34/#fnref:2">↩</a></p>
</li>
</ol>
</div>

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1 @@
Darren gives a talk on free market entrepreneurship at the Washington Policy Center in Spokane, WA. 

View file

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

View file

@ -0,0 +1,37 @@
<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://thebiblerecap.podbean.com/e/day-329-galatians-4-6/?token=af8f743eec9a66b085d3a3f3686d1602'>The Bible Recap - Episode 329</a> </p>
<p>- Video: <a href='https://www.youtube.com/watch?v=ej_6dVdJSIU'>Romans Overview (Part One)</a></p>
<p>- <a href='http://www.thebiblerecap.com'>Recommend TBR to your church!</a> Wed love for your church to read along with us next year!</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>
<p> </p>

View file

@ -0,0 +1,17 @@
<p>This is our fifth episode in our series on Exile. In this episode, Tim and Jon discuss the theme of Exile in the story of Jesus and the New Testament.</p>
<p>In part 1(0-10:23), Tim outlines the historical context of Jesus life. Israel was occupied by Rome. Rome was an oppressive military ruler who disenfranchised the Jewish people. Many Jews were waiting for a Messiah to come overthrow the Romans and restore the kingdom of Israel. When Jesus began performing miracles and declaring a new kingdom, “the kingdom of God” he quickly made a name for himself. But was he the ruler the Jews were hoping for? In Matthew 22, the Jews want to test Jesus and find out if he wanted to overthrow the Romans and ask him if it's lawful to pay taxes to Rome. Jesus replies with his famous saying “Give to Caesar that which is Caesars. Give to God that which is Gods.”</p>
<p>Tim says Jesus is the ultimate expression of the “wisdom warrior” that is outlined in the Old Testament books and characters like Daniel and Jeremiah. It seems the way Christians are supposed to interact with their government is one modeled after Jesus and Daniel. Be subversively loyal to your rulers. Work for the peace of your “Babylon” but realize there will be times when your allegiance to the kingdom of God is more important than allegiance to a country or people group.</p>
<p>In part 2 (10:23 - 28:21), Tim and Jon discuss 1 Peter 2. Christians are supposed to “submit themselves to worldly institutions… and act like they are free.” Tim and Jon briefly discuss the movie Hacksaw Ridge, a true story where a Christian joins the US Army in WWII as a medic and refuses to carry a gun because it goes against his beliefs.</p>
<p>Tim postulates that perhaps the reason “the exile ethic” in the Bible is overlooked is because many Christians in western countries have grown up with a government that has a layer of civic religion. This civic religion is usually based on Judeo-Christian teachings. But this civic religion is not a substitute for following Jesus. Tim says at the end of the day, God has chosen to redeem and form an international people, his new-covenant family, not the various kingdoms and empires that rise throughout history.</p>
<p>In part 3 (28:21 - 34:06), Jon asks about how New Testament writers used the Garden of Eden analogy. Tim says theres no indication the writers believed humanity would return to the “original garden.” Tim cites Romans 4:13 “Abraham will become an inheritor of the world.” Tim says this means the original promised land of Abraham was an image of what God wants to do for the whole world. Tim and Jon discuss the difficulties of thinking in this way. Modern Christians living today are actually exiles in time, not necessarily exiles in location.</p>
<p>In part 4 (34:06 - end), Jon and Tim discuss Hebrews 11 and the image of the “new Jerusalem” in Revelation. Tim says the new Jerusalem is supposed to be the anti-Babylon image. It is a picture of humanitys civilizations working together as was originally intended. Humanity will finally no longer be in exile but will have truly returned home.</p>
<p>Thank you to all our supporters!</p>
<p>Have a question about the theme of “Exile in the Bible”? Record yourself, keep it less that 20 seconds with your name and where you currently live (in exile :) ) and send it to info@jointhebibleproject.com.</p>
<p>We will be collecting the questions for our upcoming Q+R podcast!</p>
<p>Show Music:<br />
Defender Instrumental: Rosasharn Music<br />
Fills The Sky: Josh White<br />
Ive Been Surprised: Josh White<br />
Only Your Presence: Pilgrim</p>
<p>Show Produced By:<br />
Dan Gummel. Jon Collins. Matthew Halbert-Howen.</p>

View file

@ -0,0 +1,8 @@
<img src="https://www-images.christianitytoday.com/images/125818.jpg?w=540" width="540" /><p class="text">&ldquo;Sticks and stones will break my bones, but words will never hurt me.&rdquo; So goes the popular rhyme parents tell their children when some other child has said something hateful on the playground. Words, we&rsquo;re led to believe, can&rsquo;t inflict any real damage. We really didn&rsquo;t believe it then. And we certainly don&rsquo;t believe them now. Words can hurt and they can hurt a lot. They can wound us so deeply that the bleeding never stops. In worst cases, we carry that wound with us for the rest of our lives.</p>
<p class="text">A lot of us have forgotten the damage words can do. Or at least, we seem to have forgotten. If some of us were aware of the damage our words could do, surely we wouldn&rsquo;t speak that way. No one is that mean. Or are we?</p>
<p class="text">Every day, we read another commentary on the nastiness of our public dialogue. The anonymity of social media has made us willing to say things online that we would never say to someone&rsquo;s face. The relaxing of the norms of public behavior have made verbal assaults, even vulgar attacks, a common experience.</p>
<p class="text">What can we do to return to a more respectful dialogue with our neighbors and friends, or former friends? First, Christians would do well to stop obsessing over how everyone else behaves and check our own behavior. You know, deal with the beam in your own eye before you deal with the speck in your brother&rsquo;s eye.</p>
<p class="text">Let&rsquo;s remember, this isn&rsquo;t the first time things have gotten chippy in the church and in the world around the church. The church was born in the hostility of the Roman Empire. No one wanted to hear the claims of Christ and the impact His church was making on the world. The church and its leaders were frequently attacked, daily according to Paul, and ...</p><p class="more"><a href="https://www.christianitytoday.com/scot-mcknight/2021/october/sticks-and-stones.html">Continue reading</a>...</p>
<p><br /><a href="https://rss.beaconads.com/click.php?z=1289806&k=c779018782158d93282944b4f7dd4d03&a=189988&c=91725174" target="_blank"><img src="https://rss.beaconads.com/img.php?z=1289806&k=c779018782158d93282944b4f7dd4d03&a=189988&c=91725174" border="0" alt="" /></a></p>
5<img src="http://feeds.feedburner.com/~r/christianitytoday/jesuscreed/~4/xDqI8ZjSkho" height="1" width="1" alt=""/>

View file

@ -0,0 +1 @@
<!-- SC_OFF --><div class="md"><p>Little title says and I didn&#39;t doc about this.</p> <p>I want use text icon format with bg because I like Atom&#39;s completions style.</p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/404cn"> /u/404cn </a> <br/> <span><a href="https://www.reddit.com/r/emacs/comments/ru20tj/how_to_make_company_use_text_icon_format_instead/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/emacs/comments/ru20tj/how_to_make_company_use_text_icon_format_instead/">[comments]</a></span>

View file

@ -0,0 +1,52 @@
<p>Does This Make FOSS Better or Worse | Ask Noah Show 85</p>
<p>Does the &quot;Commons Clause&quot; help the commons? The Commons Clause was announced recently along with several projects moving portions of their code base under it. It&#39;s an additional restriction intended to be applied to existing open source licenses with the effect of preventing the work from being sold. We play devils advocate and tell you why this might not be such a bad thing. As always your calls go to the front of the line, and we give you the details on how you can win free stuff in the Telegram group!</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/85" 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://mjg59.dreamwidth.org/51177.html" title="mjg59 | The Commons Clause doesn't help the commons" rel="nofollow">mjg59 | The Commons Clause doesn't help the commons</a></li><li><a href="https://commonsclause.com/" title="Commons Clause License" rel="nofollow">Commons Clause License</a></li><li><a href="https://techcrunch.com/2018/09/07/commons-clause-stops-open-source-abuse/" title="Commons Clause stops open-source abuse | TechCrunch" rel="nofollow">Commons Clause stops open-source abuse | TechCrunch</a></li><li><a href="https://www.forbes.com/sites/jasonevangelho/2018/09/10/elementary-os-first-impressions-a-great-linux-doorway-for-macos-users/amp/" title="Elementary OS First Impressions: A Simple, Beautiful Doorway To Linux" rel="nofollow">Elementary OS First Impressions: A Simple, Beautiful Doorway To Linux</a> &mdash; As part of my journey into the expansive and exciting world of Linux desktops, Ive been engaging in a behavior known as “distro hopping.” Im sure many Linux users have their personal reasons for doing this, but for me its fueled in equal parts by curiosity and knowledge hunting. So recently, I (temporarily) left the comfortable embrace of Ubuntu to discover the different philosophies and approaches developers have to designing a Linux OS. One of my first stops was Elementary OS 0.4.1. Loki.</li><li><a href="https://www.gamingonlinux.com/articles/life-is-strange-released-for-linux-steamos-some-thoughts-and-a-port-report-included.7682" title="Life is Strange released for Linux & SteamOS, some thoughts and a port report included | GamingOnLinux" rel="nofollow">Life is Strange released for Linux & SteamOS, some thoughts and a port report included | GamingOnLinux</a> &mdash; Life is Strange is a story rich game Ive been wanting to play ever since I first saw it and now, thanks to Feral Interactive, we all have that chance. Life is Strange is officially available on Linux & SteamOS. Hella yeah!
Episode one has now been made free, so if you want to support feral you will need buy additional episodes. It has five episodes in total.</li><li><a href="https://stackoverflow.com/questions/97137/how-do-you-run-a-script-on-login-in-nix" title="linux - How do you run a script on login in *nix? - Stack Overflow" rel="nofollow">linux - How do you run a script on login in *nix? - Stack Overflow</a> &mdash; When Bash starts, it executes the commands in a variety of different scripts.
When Bash is invoked as an interactive login shell, it first reads and executes commands from the file /etc/profile, if that file exists. After reading that file, it looks for ~/.bash_profile, ~/.bash_login, and ~/.profile, in that order, and reads and executes commands from the first one that exists and is readable.
When a login shell exits, Bash reads and executes commands from the file ~/.bash_logout, if it exists.
When an interactive shell that is not a login shell is started, Bash reads and executes commands from ~/.bashrc, if that file exists. This may be inhibited by using the --norc option. The --rcfile file option will force Bash to read and execute commands from file instead of ~/.bashrc.
</li><li><a href="https://community.ubnt.com/t5/UniFi-Video/Tutorial-Raspberry-Pi-3-RTSP-Stream-Viewer/m-p/1536448/highlight/true#M54835" title="Live Feed of Ubnt Cams " rel="nofollow">Live Feed of Ubnt Cams </a> &mdash; New Code
As some of you may or may not know, I own and operate a small business. I installed a Unifi Video Camera System for a client with two RPI RTSP Screens. The person overseeing the project took interest in the RPI Screens and ended up rewriting practically all the code. Huge Thank You to AnonymousDog. New Code Below, Enjoy!</li></ul>

View file

@ -0,0 +1 @@
<p><img src="https://thumbnails.lbry.com/e9OR0Cw-mJ0" width="480" alt="thumbnail" title="Moving in Doom Emacs for Beginners (vim, evil-mode)" /></p>00:00 Beginning<br />00:15 Doom Emacs uses evil-mode which mimics the Vim text editor<br />01:11 Installing evil-tutor in Doom Emacs<br />02:20 Demo of evil-tutor<br />05:08 Demo of vim-adventures<br />06:47 Wrap up<br /><br /><br />🖥️ https://abepeters.com<br />📽️ https://lbry.tv/@biblecraft:f<br />🧰 https://github.com/bc-abe/doom-emacs<br />🎙 https://anchor.fm/poetsphilosophers<br /><br />MUSIC<br />Day Like These<br />https://www.youtube.com/watch?v=RTGEoh-vPIc<br />...<br />https://www.youtube.com/watch?v=e9OR0Cw-mJ0

View file

@ -0,0 +1 @@
<!-- SC_OFF --><div class="md"><p>Hey, I&#39;m experimenting with literate coding. In the process I couldn&#39;t properly evaluate a block. I wanted to use both<code>:results output</code> and <code>:export both</code>, and I&#39;m getting troubles to make those work with <code>:defines</code>. This is the code I have: </p> <pre><code>#+property: header-args :includes &lt;stdio.h&gt; #+property: header-args :defines cool_macro(x) x #+property: header-args :exports both #+property: header-args :results output #+begin_src C printf(&quot;cool_macro(7): %u\n&quot;, cool_macro(7)); printf(&quot;cool_macro(7): %u\n&quot;, cool_macro(7)); #+end_src </code></pre> <p>As it is, both <code>:exports</code> and <code>:results</code> have no effect. I figured that if I place them above the <code>:includes</code> then they&#39;ll have effect, but I get a compilation error because it cannot find the macro, as if now both <code>:includes</code> and <code>:defines</code> doesn&#39;t have effect.</p> <p>If I place those 2 after the <code>#+begin_src C</code> then everything works as expected, but it&#39;s inconvenient since I want those to affect the whole buffer..</p> <pre><code>#+property: header-args :includes &lt;stdio.h&gt; #+property: header-args :defines cool_macro(x) x #+begin_src C :results output :exports both printf(&quot;cool_macro(7): %u\n&quot;, cool_macro(7)); printf(&quot;cool_macro(7): %u\n&quot;, cool_macro(7)); #+end_src </code></pre> <p>Am I doing something really wrong or what?</p> <p>Thanks.</p> <p>Edit: Solution.</p> <p>Ok, of course the solution was in the docs: <a href="https://org-babel.readthedocs.io/en/latest/header-args/#buffer-or-file-level-header-arguments">https://org-babel.readthedocs.io/en/latest/header-args/#buffer-or-file-level-header-arguments</a> .The problem was that I was rewriting the headers, doing it multiline. The proper way to do it is in oneline or specifying that it should be appended to the existent headers with a <code>+</code>. This is how it looks when it works properly:</p> <pre><code>#+property: header-args :results output :exports both #+property: header-args+ :includes &lt;stdio.h&gt; #+property: header-args+ :defines cool_macro(x) x #+begin_src C printf(&quot;cool_macro(7): %u\n&quot;, cool_macro(7)); printf(&quot;cool_macro(7): %u\n&quot;, cool_macro(7)); #+end_src #+RESULTS: : cool_macro(7): 7 : cool_macro(7): 7 </code></pre> <p>Thanks for the help!</p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/mefff_"> /u/mefff_ </a> <br/> <span><a href="https://www.reddit.com/r/orgmode/comments/qwbk6b/orgbabel_c_and_cmacros/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/orgmode/comments/qwbk6b/orgbabel_c_and_cmacros/">[comments]</a></span>

View file

@ -0,0 +1 @@
<p><img src="https://thumbnails.lbry.com/6vXVn8bK2wA" width="480" alt="thumbnail" title="Aggressive By Nature? | The Jordan B. Peterson Podcast - S4: E24: Richard Trembley" /></p>In this episode, Jordan B Peterson is joined by Richard Tremblay. Richard Tremblay is a Canadian child psychologist and Professor of Pediatrics, Psychiatry, and Psychology at the University of Montreal, where he holds the Canada Research Chair in child development. His research has focused on the development of aggressive behavior in children and the potential for early intervention programs to reduce the chances of children turning to crime in adulthood. In 2017, he received the 2017 Stockholm Prize in Criminology for his work studying delinquency in children, making him the first Canadian to receive this prize. <br />Dr. Tremblay and Jordan discussed a variety of topics in the realm of his research with physical aggression and juvenile delinquency, what surprised him of his finding, risk factors that lead to aggressive behavior in adults, experimental interventions with mothers to decrease aggression in children, the biology of aggression, what compelled him to do this research, different forms of aggression and more.<br />Find more Richard Tremblay in his publications https://scholar.google.com/citations?user=pt8P_R0AAAAJ<br /><br />The Jordan B. Peterson Podcast can be found at https://www.jordanbpeterson.com/podcast/<br />#JordanPeterson #JordanBPeterson #RiskFactors #Criminology<br /><br />https://youtu.be/FjUnWvP0A2E<br /><br />---<br />Visit www.jordanbpeterson.com to view more information about Jordan, his books, lectures, social media, blog posts, and more.<br />Jordan B. Peterson is a professor of psychology at the University of Toronto, a clinical psychologist, and the author of the multi-million copy bestseller 12 Rules for Life: An Antidote to Chaos, #1 for nonfiction in 2018 in the US, Canada, the UK, Australia, New Zealand, Sweden, the Netherlands, Brazil and Norway, and slated for translation into 50 languages.<br />Dr. Peterson has appeared on many popular podcasts and shows, including the Joe Rogan Experience (#877, #958, #1006), The Rubin Report (12 Rules for Life: An Antidote to Chaos, Free Speech, Psychology, Gender Pronouns), H3H3 (#37), and many more. Dr. Petersons own podcast has focused mainly on his lecture series, covering a great deal of psychology and historical content. Jordan is expanding his current podcast from lectures to interviews with influential people around the world. We hope you enjoy this episode and more to come from Dr. Peterson in the future.<br /><br /><br />--- SUPPORT THIS CHANNEL ---<br /><br />Donations: https://www.jordanbpeterson.com/donate<br />Merchandise: https://teespring.com/stores/jordanbpeterson<br /><br />--- BOOKS ---<br />Beyond Order: 12 More Rules for Life: https://jordanbpeterson.com/Beyond-Order<br />12 Rules for Life: An Antidote to Chaos: https://jordanbpeterson.com/12-rules-for-life/<br />Maps of Meaning: The Architecture of Belief: https://jordanbpeterson.com/maps-of-meaning/<br /><br />--- LINKS ---<br />...<br />https://www.youtube.com/watch?v=6vXVn8bK2wA

View file

@ -0,0 +1 @@
Post Talk Conversation w/ Joe Boot at the FLF Rally 

View file

@ -0,0 +1,35 @@
<p>SHOW NOTES: </p>
<p>- All the info you need to START is on our <a href='http://www.thebiblerecap.com'>website</a>!
- Join our <a href='https://www.patreon.com/thebiblerecap'>PATREON</a> family for bonus perks!</p>
<p>- Get your <a href='https://www.theconnextion.com/tlcdgroup/index.cfm'>TBR merch</a></p>
<p>- <a href='http://thebiblerecap.com/contact'>Show credits</a></p>
<p> </p>
<p>FROM TODAYS PODCAST: </p>
<p>- <a href='https://www.biblegateway.com/passage/?search=Numbers+25%3A1-9&version=ESV'>Numbers 25:1-9</a></p>
<p>- <a href='https://www.biblegateway.com/passage/?search=1+corinthians+8&version=ESV'>1 Corinthians 8</a></p>
<p>- <a href='https://www.biblegateway.com/passage/?search=genesis+1%3A27&version=ESV'>Genesis 1:27</a></p>
<p>- <a href='http://www.thebiblerecap.com/idols'>Sign up to receive the Idolatry PDF</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,32 @@
<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. </p>
<p>- 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>- Picture: <a href='https://en.wikipedia.org/wiki/Sea_of_Galilee_Boat'>Sea of Galilee Boat</a> </p>
<p>- Get your <a href='https://www.theconnextion.com/tlcdgroup/index.cfm'>TBR merch</a> today!</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 @@
<table> <tr><td> <a href="https://www.reddit.com/r/unixporn/comments/qz63kw/xfce_i3gaps_enter_the_void/"> <img src="https://preview.redd.it/ooz71giby0181.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=6703a9478cb212477cd2ccfdd53ba553bbfe8a97" alt="[XFCE + i3-gaps] Enter the void" title="[XFCE + i3-gaps] Enter the void" /> </a> </td><td> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Saint-Ranger"> /u/Saint-Ranger </a> <br/> <span><a href="https://i.redd.it/ooz71giby0181.png">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/unixporn/comments/qz63kw/xfce_i3gaps_enter_the_void/">[comments]</a></span> </td></tr></table>

View file

@ -0,0 +1 @@
<p>Megyn Kelly is joined by Mike Rowe, former host of "Dirty Jobs" and host of the new show "Six Degrees with Mike Rowe," to talk about patriotism (and why socialism never seems to catch on), the value of authenticity, the death of "expertise," what he learned hosting "Dirty Jobs," stupid celebrities, COVID hypocrisy from liberal politicians, what's happening on college campuses, the value of a degree, the decline in curiosity 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>

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1 @@
Summary of Terrorism Threat to the U.S. Homeland The Secretary of Homeland Security has issued a new National Terrorism Advisory System (NTAS) Bulletin regarding the current heightened threat environment across the United States.&#160; The Homeland continues to face a diverse and challenging threat environment leading up to and following the 20th Anniversary of the September [&#8230;]

View file

@ -0,0 +1,4 @@
<p>Here are a couple of mini-tutorials on using two Emacs packages. Theyre both pretty short so Ive combined them into a single post. In <a href="https://readingworldmagazine.com/emacs/2021-09-06-emacs-stripes-visual-fill-column-word-wrap/">the first</a>, Yuri Tricys presents some configurations and packages to customize <a href="https://github.com/rnkn/olivetti">Olivetti-mode</a>. He shows how to adjust the margins, toggle the fringe on and off, and configure wrap and fill columns, He also shows using the <a href="https://github.com/Fanael/highlight-numbers/tree/8b4744c7f46c72b1d3d599d4fb75ef8183dee307">highlight-numbers</a> and the <a href="https://melpa.org/#/stripes">stripes</a> packages.</p>
<p>Unfortunately, Tricys doesnt provide any examples of the output but most of his configurations are self explanatory. If youre a writer who uses or is considering using Olivetti-mode, take a quick look at Tricys post.</p>
<p>The <a href="https://francopasut.netlify.app/post/emacs_expand_region/">second tutorial</a> is by Franco Pasut and considers using <a href="https://github.com/magnars/expand-region.el">expand-region</a> with LaTeX. Many Irreal readers are probably familiar with expand-region from using it with their programming buffers but its also useful for dealing with LaTeX source. Pasut has a series of animated GIFs that show it in action. Judging from the GIFs, expand-region has some shortcomings when used with LaTeX as compared to other languages. For example, Id expect the highlighting to go from word to sentence and <i>then</i> to paragraph.</p>
<p>Of course, Magnar anticipated that people would want to add capabilities and made that easy. If youre really interested in using expand-region with LaTeX, you should look into adding the features you need.</p>

View file

@ -0,0 +1 @@
In this episode the Pugsters return to Tolkiens essay “On Fairy Stories,” focusing particularly on the legitimacy of escape as a function of fantasy literature. Tolkien pointed out that “escape” is a positive term in all contexts except literary criticism, which points to a problem with the critics use of the word. The guys also [&#8230;]

View file

@ -0,0 +1,31 @@
<p>SHOW NOTES: </p>
<p>- All the info you need to START is on our <a href='http://www.thebiblerecap.com'>website</a>! 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='https://www.biblegateway.com/passage/?search=1+Kings+18%3A19&version=ESV'>1 Kings 18:19</a></p>
<p>- Join <a href='http://www.patreon.com/thebiblerecap'>Patreon</a> to receive this months bonus content!</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>I use ebib and citar. Both are awesome, but have different defaults when creating notes files for bibliographic entries. I wanted to unify them (so that my notes would always be of the same format). So I defined a wrapper function:</p> <pre><code>(defun my/citar-ebib-notes-format-wrapper (key _entry _filepath) &quot;Wrapper so that citar&#39;s notes function can inherit from ebib&#39;s. </code></pre> <p>Passes KEY to <code>ebib--notes-fill-template&#39;, along with the value of</code>ebib--cur-db&#39; if defined, or the first item of `ebib-preload-bib-files&#39; if not. _ENTRY and _FILEPATH are ignored.&quot; (require &#39;ebib-notes) (if-let ((cell (ebib--notes-create-new-note key (or ebib--cur-db (car ebib-preload-bib-files))))) (progn (display-buffer (car cell)) (goto-char (cdr cell)))))</p> <p>This only works while ebib is running. While it&#39;s not running I get an error message <code>format-spec: Invalid format character: %T</code>, which is strange, because the formatting <em>seems</em> to rely on <code>ebib-notes-template-specifiers</code>, which I don&#39;t change, and which is initialised in <code>ebib-notes.el</code> (so should be available when the body of the function runs). Changing the notes template variable so that it doesn&#39;t include <code>%T</code> helps, and iterating on this reveals that the formatter errors for all specifiers except <code>%K</code>, which it handles fine. I&#39;m very confused.</p> <p>I&#39;ve tried everything I can think of to get this to work, to no avail. What&#39;s going on? Any help greatly appreciated!</p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/Jack-o-tall-tales"> /u/Jack-o-tall-tales </a> <br/> <span><a href="https://www.reddit.com/r/emacs/comments/raif60/ebib_cant_format_anything_except_the_k_spec_in/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/emacs/comments/raif60/ebib_cant_format_anything_except_the_k_spec_in/">[comments]</a></span>

View file

@ -0,0 +1 @@
<!-- SC_OFF --><div class="md"><p>Is there any way to add a custom preamble for <code>org-latex-preview</code>? I want to be able to preview commands that I&#39;ve defined in LaTeX, right now any commands that it doesn&#39;t recognize just show up as blank.</p> <p>As a backup, is there any way to disable preview for undefined commands (i.e. show the LaTeX code), instead of just showing a blank?</p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/jmite"> /u/jmite </a> <br/> <span><a href="https://www.reddit.com/r/orgmode/comments/r6n775/custom_preamble_for_latex_preview/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/orgmode/comments/r6n775/custom_preamble_for_latex_preview/">[comments]</a></span>

View file

@ -0,0 +1 @@
<!-- SC_OFF --><div class="md"><p>... hi, how i can get such a taskmanager in doomemacs up and running 🤔</p> <p><a href="https://imgur.com/gallery/ymAvmUa">https://imgur.com/gallery/ymAvmUa</a></p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/TriumphOfDeath"> /u/TriumphOfDeath </a> <br/> <span><a href="https://www.reddit.com/r/orgmode/comments/r4tcx5/task_manager/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/orgmode/comments/r4tcx5/task_manager/">[comments]</a></span>

View file

@ -0,0 +1 @@
<!-- SC_OFF --><div class="md"><p>I&#39;m creating a beamer presentation using Orgmode.</p> <p>I&#39;m using a lot of \pause command to obtain a nice presentation workflow. </p> <p>My question is: </p> <p>-- is it possible to change the color of the last paragraph being presented with each \pause command?</p> </div><!-- SC_ON --> &#32; submitted by &#32; <a href="https://www.reddit.com/user/AlfB3ta"> /u/AlfB3ta </a> <br/> <span><a href="https://www.reddit.com/r/orgmode/comments/rcbvqj/orgbeamer_export/">[link]</a></span> &#32; <span><a href="https://www.reddit.com/r/orgmode/comments/rcbvqj/orgbeamer_export/">[comments]</a></span>

View file

@ -0,0 +1,33 @@
<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.
</p>
<p>- Join our <a href='https://www.patreon.com/thebiblerecap'>PATREON</a> community for bonus perks!</p>
<p>- Get your <a href='https://www.theconnextion.com/tlcdgroup/index.cfm'>TBR merch</a></p>
<p> </p>
<p>FROM TODAYS PODCAST: </p>
<p>- <a href='https://www.biblegateway.com/passage/?search=john+11&version=ESV'>John 11</a></p>
<p>- <a href='https://www.biblegateway.com/passage/?search=john+3&version=ESV'>John 3</a></p>
<p>- <a href='https://www.theconnextion.com/tlcdgroup/index.cfm?CatID=933&prodlist=1'>The Bible Recap Store</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,16 @@
<p>This is our Q+R on the book of Numbers in the Old Testament. This audio originally came from a Youtube series of Q+R's that Jon and Tim did. You can view the original Q+R video here: https://www.youtube.com/watch?v=OTwaNoZ35NA<br />
And our videos on the book of Numbers here: https://www.youtube.com/watch?v=zebxH-5o-SQ https://www.youtube.com/watch?v=tp5MIrMZFqo</p>
<p>Thank you to all our supporters! You are so meaningful to us!</p>
<p>Q's and Timestamps</p>
<ol>
<li>It seems like the pagan sorcerer Balaam has an awareness or a relationship with the Lord, the god of the Hebrews. Is this possible? (2:50)</li>
<li>Did Balaam really have the power to bless and curse people? (9:09)</li>
<li>Does Balaam predict Jesus as the coming king and Messiah of Israel in his final prophecy in Numbers 24? (10:35)</li>
<li>What is the deal with the story of the bronze snakes in Numbers 21? (15:43)</li>
<li>What is the &quot;Book of the Wars of the Lord&quot; in Numbers 21? (21:50)</li>
<li>What does it mean to &quot;bless&quot; in Numbers? Especially the priestly blessing in the Old Testament? (26:58)</li>
<li>Why is Moses unable to enter the promised land as a punishment when he strikes the rock in Numbers 20 ? Doesn't that seem harsh? (32:20)</li>
<li>What is the difference between being ceremonially impure/unclean and being sinful? (41:04)</li>
</ol>
<p>Music Credits:<br />
Defender Instrumental by Rosasharn Music.</p>