trying to fix
This commit is contained in:
parent
fa407dfeb6
commit
e013d7569e
22945 changed files with 447936 additions and 0 deletions
176
var/elfeed/db/data/d5/d5176198543f646871bd00294d21f6f405d08af4
Normal file
176
var/elfeed/db/data/d5/d5176198543f646871bd00294d21f6f405d08af4
Normal file
|
@ -0,0 +1,176 @@
|
|||
|
||||
|
||||
<p>Raw link: <a href="https://www.youtube.com/watch?v=uoP9ZYdNCHg">https://www.youtube.com/watch?v=uoP9ZYdNCHg</a></p>
|
||||
|
||||
<p>In this video I provide an overview of Embark’s features. I discuss
|
||||
everything from the basic concepts of acting on targets, to how you can
|
||||
extend it as your front-end for completion candidates. There is also a
|
||||
demonstration of <code>embark-become</code> and how that can be used to make your
|
||||
minibuffer-centric workflows more efficient.</p>
|
||||
|
||||
<p>The text of the presentation is copied below (<code>org-mode</code> notation).
|
||||
Refer to my Emacs configuration file (“dotemacs”) for the implementation
|
||||
details: <a href="https://protesilaos.com/emacs/dotemacs">https://protesilaos.com/emacs/dotemacs</a>. And check the Git
|
||||
repositories of the projects I covered:</p>
|
||||
|
||||
<ul>
|
||||
<li><a href="https://github.com/oantolin/embark">https://github.com/oantolin/embark</a></li>
|
||||
<li><a href="https://github.com/minad/consult">https://github.com/minad/consult</a></li>
|
||||
</ul>
|
||||
|
||||
<hr />
|
||||
|
||||
<pre><code class="language-org">#+TITLE: Emacs: Embark and my extras
|
||||
#+AUTHOR: Protesilaos Stavrou · protesilaos.com
|
||||
|
||||
* Brief introduction to Embark
|
||||
|
||||
Embark provides a unified framework of regular Emacs keymaps which let
|
||||
you carry out /contextually relevant actions/ on *targets* through a common
|
||||
*point of entry*, typically a /prefix key/.
|
||||
|
||||
+ "Actions" are standard Emacs commands, such as =describe-symbol= or some
|
||||
interactive command you have defined that reads an argument from the
|
||||
minibuffer.
|
||||
|
||||
+ "Targets" are semantically sensitive constructs, such as the symbol at
|
||||
point, a URL, a file name, the active region, or the current
|
||||
completion candidate in the minibuffer (or the completions'
|
||||
buffer---more on that in the next section). Embark has so-called
|
||||
"classifiers" which help it determine the category that the target
|
||||
belongs to.
|
||||
|
||||
+ The "contextually relevant [actions]" are defined in keymaps whose
|
||||
scope matches the category of the target. So =embark-file-map= holds
|
||||
all key and command assossiations for when Embark recognises a file
|
||||
name as its target. =embark-region-map= is for actions pertaining to
|
||||
the active region; =embark-buffer-map= for buffer names that you access
|
||||
through, say, =switch-to-buffer= (=C-x b=). And so on.
|
||||
|
||||
+ As for the "point of entry" or "prefix key", it is an Embark command,
|
||||
such as =embark-act=, =embark-act-noexit=, or =embark-become=. Those
|
||||
activate the appropriate keymap, thus granting you access to the
|
||||
relevant commands.
|
||||
|
||||
Embark can act on individual targets (e.g. the region) or sets of
|
||||
targets (e.g. the list of minibuffer completion candidates).
|
||||
* Embark collections and how to cycle completions
|
||||
|
||||
Here we will be discussing Embark's ability to act on a set of targets.
|
||||
Our specific case is to instruct it (via a hook), to automatically
|
||||
gather the completion candidates of the minibuffer and put them in a
|
||||
live-updating buffer. In other words: a front-end to the minibuffer's
|
||||
underlying completion mechanisms.
|
||||
|
||||
Let's test this with =switch-to-buffer= (=C-x b=) and some input that we
|
||||
provide. The "Embark Collect" buffer pops up and shows us what we are
|
||||
currently matching. We can then produce a snapshot or export this set
|
||||
to an appropriate major-mode (=ibuffer-mode= in this case).
|
||||
|
||||
I received a lot of questions about my workflow with the Embark
|
||||
completions buffer. The idea was:
|
||||
|
||||
+ How do you select an item when you narrow to a short list?
|
||||
+ Do you manually switch from the minibuffer to the completions?
|
||||
|
||||
The short answer is that I have written some extensions that handle this
|
||||
"candidate cycling".
|
||||
|
||||
The long answer is best illustrated by an example (the following is a
|
||||
natural cycling behaviour):
|
||||
|
||||
+ =C-n= in the minibuffer takes us to the top of the completions' buffer.
|
||||
+ =C-p= in the minibuffer moves to the completions' bottom.
|
||||
+ =C-n= inside the completions' buffer moves the line normally or, when at
|
||||
the end, switches to the minibuffer.
|
||||
+ =C-p= inside the completions' buffer also moves the line, though in the
|
||||
opposite direction, and when at the top it switches to the minibuffer.
|
||||
|
||||
* Perform default action while cycling
|
||||
|
||||
A common workflow with Embark is to produce a snapshot of the
|
||||
minibuffer's collection you have narrowed to and then inspect that
|
||||
buffer.
|
||||
|
||||
Let's try this with =M-x describe-keymap RET embark= (I bind that help to
|
||||
=C-h K=). Then we produce a snapshot with =embark-act= (you have a key
|
||||
binding for that) and =S= for =embark-collect-snapshot=.
|
||||
|
||||
In this buffer we can move up and down normally and hit =RET= when we want
|
||||
to perform the default action which, in this case, is to get a help
|
||||
buffer for the symbol at point.
|
||||
|
||||
With my =C-M-n= or =C-M-p= we essentially combine =C-n= or =C-p= into a single
|
||||
motion. This is useful when we want to continue from one line to the
|
||||
next, such as by inspecting the help buffer of each of those embark
|
||||
keymaps that we got the snapshot for.
|
||||
|
||||
[ this is a concept I got from Ivy's own version of operating on sets of
|
||||
targets ]
|
||||
* Manual previews for Consult commands (consult.el)
|
||||
|
||||
Those specific "move+act" motions allow me to get manual previews for
|
||||
all =consult.el= commands, even though I use the default minibuffer.
|
||||
Otherwise I would need to use some other library to cycle candidates,
|
||||
like =icomplete= or =selectrum=.
|
||||
|
||||
So here is an example with =consult-line= and purposeful manual previews:
|
||||
|
||||
+ Search a file for a pattern
|
||||
+ Cycle the Embark candidates
|
||||
+ Use =C-M-j= to "preview" the line at point or, =C-M-n= / =C-M-p= to preview
|
||||
the next/previous one and move the point there (the latter two accept
|
||||
a numeric argument)
|
||||
|
||||
The benefit of this workflow is that I can display a preview only when I
|
||||
want to and, most importantly, I do it from inside the Embark buffer
|
||||
instead of the minibuffer (which is why I can avoid Icomplete or
|
||||
Selectrum).
|
||||
|
||||
NOTE: consult can be configured to display previews manually or on a
|
||||
case-by-case basis, though I feel you only benefit from that if you are
|
||||
using it with Icomplete or Selectrum.
|
||||
* A look at ~embark-become~ and cross-package integration
|
||||
|
||||
One of my goals with extending Embark for my personal needs is to have
|
||||
some fluidity or seamlessness while performing minibuffer-centric
|
||||
actions. This can be achieved with the =embark-become= command: it lets
|
||||
you re-use the current minibuffer's input in another minibuffer command.
|
||||
|
||||
The default =embark-become= lets you switch contexts between =find-file=
|
||||
(=C-x C-f=) and =switch-to-buffer= (=C-x b=). Start either of those actions,
|
||||
type something, and the invoke =embark-become= to switch to the other (you
|
||||
should bind =embark-become= to some key---see my dotemacs).
|
||||
|
||||
The design of Embark is based on the principle of scoping actions inside
|
||||
keymaps. Each of those keymaps applies to a context that Embark can
|
||||
interpret by reading the category of what is being completed against or
|
||||
what the target at point is. Long story short: we can bind our own
|
||||
actions to keys in each of those contexts and/or we can define our own
|
||||
keymaps (general or specific) to extend the default options.
|
||||
|
||||
What I have here is a work in progress, but consider those two scenaria
|
||||
with Consult commands for (1) grep and find, (2) outline and line
|
||||
search:
|
||||
|
||||
1. We can invoke the relevant grep command and then decide that what we
|
||||
were actually looking for is a find operation. So we rely on
|
||||
=embark-become= to take us from one place to the next without losing
|
||||
what we have already inserted in the minibuffer.
|
||||
2. Same principle for =consult-outline= and =consult-line=, where we may be
|
||||
searching for a pattern that exists in a heading only to realise that
|
||||
we wanted to query for all lines instead. =embark-become= to the
|
||||
rescue!
|
||||
|
||||
* Further information
|
||||
|
||||
Refer to my "dotemacs" for the complete setup:
|
||||
<https://protesilaos.com/emacs/dotemacs>.
|
||||
|
||||
And check the Git repositories of the projects:
|
||||
|
||||
+ <https://github.com/oantolin/embark>
|
||||
+ <https://github.com/minad/consult>
|
||||
</code></pre>
|
||||
|
||||
|
|
@ -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>! 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/tbr/index.cfm'>TBR merch</a></p>
|
||||
|
||||
<p>- <a href='http://thebiblerecap.com/contact'>Show credits</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>FROM TODAY’S PODCAST: </p>
|
||||
|
||||
<p>- <a href='https://www.biblegateway.com/passage/?search=Matthew+18%3A10-14&version=ESV'>Matthew 18:10-14</a></p>
|
||||
|
||||
<p><a href='https://thebiblerecap.podbean.com/e/295-matthew-18/'>- The Bible Recap - Episode 295</a></p>
|
||||
|
||||
<p>- <a href='https://thebiblerecap.podbean.com/e/277-matthew-3-mark-1-luke-3/'>The Bible Recap - Episode 277</a></p>
|
||||
|
||||
<p>- Join <a href='http://www.patreon.com/thebiblerecap'>Patreon</a> for more 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>
|
|
@ -0,0 +1 @@
|
|||
<p><img src="https://thumbnails.lbry.com/212yJEH8-iA" width="480" alt="thumbnail" title="Stable Vs Rolling: Which Linux Release Is Better?" /></p>While distros don't really matter there is something about them that does and that's whether it's a stable or a rolling release distro, while rolling releases do provide a lot of really amazing benefits they're not inherently better unlike someone recently said.<br /><br />==========Support The Channel==========<br />► $100 Linode Credit: http://brodierobertson.xyz/linode<br />► Patreon: http://brodierobertson.xyz/patreon<br />► Paypal: http://brodierobertson.xyz/paypal<br />► Liberachat: http://brodierobertson.xyz/liberachat<br />► Amazon USA: http://brodierobertson.xyz/amazonusa<br /><br />=========Video Platforms==========<br />🎥 Odysee: http://brodierobertson.xyz/odysee<br />🎥 Podcast: http://techovertea.xyz/youtube<br />🎮 Gaming: http://brodierobertson.xyz/youtube<br /><br />==========Social Media==========<br />🎤 Discord: http://brodierobertson.xyz/discord<br />🎤 Matrix Space: http://brodierobertson.xyz/matrix<br />🐦 Twitter: http://brodierobertson.xyz/twitter<br />🌐 Mastodon: http://brodierobertson.xyz/mastodon<br />🖥️ GitHub: http://brodierobertson.xyz/github<br /><br />==========Time Stamps==========<br />0:00 Introduction<br />0:57 What Is A Rolling Release<br />1:58 Rolling Release Advantage/Disadvantage<br />6:10 What Is A Stable Release<br />7:15 Stable Release Advantages/Disadvantages<br />10:15 Which Is Better<br />11:57 Outro<br /><br />==========Credits==========<br />🎨 Channel Art:<br />All my art has was created by Supercozman<br />https://twitter.com/Supercozman<br />https://www.instagram.com/supercozman_draws/<br /><br />#Linux #Ubuntu #Manjaro<br /><br />🎵 Ending music<br />Music from https://filmmusic.io<br />"Basic Implosion" by Kevin MacLeod (https://incompetech.com)<br />License: CC BY (http://creativecommons.org/licenses/by/4.0/)<br /><br />DISCLOSURE: Wherever possible I use referral links, which means if you click one of the links in this video or description and make a purchase I may receive a small commission or other compensation.<br />...<br />https://www.youtube.com/watch?v=212yJEH8-iA
|
|
@ -0,0 +1 @@
|
|||
<p><img src="https://thumbnails.lbry.com/M5wNvN0jISU" width="480" alt="thumbnail" title="A Walkthrough of Org-Roam | Installation, Uses, and Benefits (Spacemacs)" /></p>Org-Roam is an Emacs package designed to emulate many of Roam Research's features. I will walk through the installation, uses, and benefits of this package. This Emacs package allows you to create search and links notes with only the keyboard.<br /><br />TIMESTAMPS<br />1:06 Installation of Org-Roam in Spacemacs<br />5:30 Search, Create, and Link in Org-Roam<br />11:26 My use of Org-Roam<br />12:13 Tags<br />13:30 Hub Notes<br />16:26 In Text Notes<br />18:55 Backlinks as footnotes<br />19:26 Benefits of Org-Roam<br />20:20 Org-Roam Demo<br />22:30 One Piece of Advice<br /><br />REFERENCES<br />https://www.orgroam.com/<br />https://github.com/org-roam/org-roam<br /> My favorite Zettelkasten Article<br />https://sociologica.unibo.it/article/view/8350/8270<br /> My Favorite Zettelkasten Book (affiliate link)<br />https://amzn.to/32mkRFn<br />CREDITS<br />Music: https://youtu.be/RTGEoh-vPIc<br /><br />FIND ME HERE<br />https://abrahampeters.com<br />...<br />https://www.youtube.com/watch?v=M5wNvN0jISU
|
|
@ -0,0 +1,30 @@
|
|||
<p>SHOW NOTES: </p>
|
||||
|
||||
<p>- All the info you need to START is on our <a href='http://www.thebiblerecap.com'>website</a>! Seriously, go there.
|
||||
- Join our <a href='https://www.patreon.com/thebiblerecap'>PATREON</a> community for bonus perks!</p>
|
||||
|
||||
<p>- Get your <a href='https://www.theconnextion.com/tlcdgroup/index.cfm'>TBR merch</a></p>
|
||||
|
||||
<p>- <a href='http://thebiblerecap.com/contact'>Show credits</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>FROM TODAY’S PODCAST:
|
||||
- <a href='https://www.biblegateway.com/passage/?search=Numbers+31%3A14-17&version=ESV'>Numbers 31:14-17</a></p>
|
||||
|
||||
<p>- Join <a href='http://www.patreon.com/thebiblerecap'>Patreon</a> to receive additional perks!</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>SOCIALS:</p>
|
||||
|
||||
<p>The Bible Recap:<a href='https://instagram.com/thebiblerecap'> Instagram</a> |<a href='https://www.facebook.com/thebiblerecap'> Facebook</a> |<a href='https://twitter.com/thebiblerecap'> Twitter</a></p>
|
||||
|
||||
<p>D-Group:<a href='https://instagram.com/mydgroup/'> Instagram</a> |<a href='https://www.facebook.com/ilovemydgroup'> Facebook</a> |<a href='https://mobile.twitter.com/mydgroup'> Twitter</a></p>
|
||||
|
||||
<p>TLC:<a href='https://instagram.com/taraleighcobble'> Instagram</a> |<a href='https://www.facebook.com/taraleighcobble'> Facebook</a> |<a href='https://twitter.com/taraleighcobble'> Twitter</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>D-GROUP:
|
||||
The Bible Recap is brought to you by<a href='https://www.mydgroup.org/'> D-Group</a> - an international network of discipleship and accountability groups that meet weekly in homes and churches:<a href='https://www.mydgroup.org/map'> Find or start one near you today</a>!</p>
|
|
@ -0,0 +1 @@
|
|||
Pinwheels on the side of Todd Friel’s head and more on today’s CrossPolitic Daily News Brief This is Toby Sumpter. Today is Friday, August 27, 2021. Multiple Explosions (apparently suicide bombers) Reported in Kabul Near the Airport Play Audio 12 Serviceman have been confirmed dead, 11 marines and one Navy Medic, along with what appears […]
|
|
@ -0,0 +1 @@
|
|||
<p><img src="https://thumbnails.lbry.com/nq-gqNGmayI" width="480" alt="thumbnail" title="Managing Files and Directories in Practice - Learning Emacs Lisp #6" /></p>In this video, we'll learn how to manage files and directories using Emacs Lisp. We'll also walk through a lot of real code examples showing how to use these functions in practice! By the end of the episode, we will complete the core functionality of the dotfiles management package we've been working on in this series called dotcrafter.el.<br /><br />Check out the show notes here: https://systemcrafters.cc/learning-emacs-lisp/managing-files-and-directories/<br /><br />dotcrafter.el on GitHub: https://github.com/daviwil/dotcrafter.el<br /><br />We cover the following topics:<br /><br />- 0:00 Intro<br />- 0:39 What will we cover?<br />- 1:23 Explaining symbolic links<br />- 2:27 Our project: dotcrafter.el<br />- 5:04 Getting the current directory<br />- 7:17 Manipulating file paths<br />- 11:37 Resolving file paths<br />- 17:45 Example: Resolving the destination path of a configuration file<br />- 25:17 Checking if files and directories exist<br />- 26:19 Creating directories<br />- 29:00 Example: Creating expected directories before linking<br />- 34:47 Listing files in directories<br />- 42:51 Example: Finding the list of all configuration files to be linked<br />- 44:24 Copying files and directories<br />- 49:57 Example: Migrating configuration files to the dotfiles folder<br />- 57:41 Renaming and moving, and deleting files and directories<br />- 58:31 Finishing and demoing the example!<br />- 1:00:43 Creating symbolic links<br />- 1:03:15 Example: Creating symbolic links for all configuration files<br />- 1:17:08 The final code in action!<br />- 1:19:48 What's next?<br /><br />My Emacs configuration: https://config.daviwil.com/emacs<br />My system configurations: https://config.daviwil.com/systems<br /><br />If you enjoy this series, please consider becoming a sponsor on GitHub or Patreon:<br /><br />- https://github.com/sponsors/daviwil<br />- https://patreon.com/SystemCrafters<br /><br />You can also leave a tip via PayPal: https://paypal.me/daviwil<br /><br />Follow me on Twitter for more GNU Emacs and GNU Guix content!<br />https://twitter.com/SystemCrafters<br /><br />Chat with the System Crafters community on Discord: https://discord.gg/yVD8Gx6<br /><br />Check out my other video series!<br /><br />- Emacs From Scratch: https://www.youtube.com/watch?v=74zOY-vgkyw&list=PLEoMzSkcN8oPH1au7H6B7bBJ4ZO7BXjSZ<br />- Emacs Tips: https://www.youtube.com/watch?v=wKTKmE1wLyw&list=PLEoMzSkcN8oMHJ6Xil1YdnYtlWd5hHZql<br />- Emacs Desktop Environment: https://www.youtube.com/watch?v=f7xB2fFk1tQ&list=PLEoMzSkcN8oNPbEMYEtswOVTvq7CVddCS<br />- Emacs IDE: https://www.youtube.com/watch?v=E-NAM9U5JYE&list=PLEoMzSkcN8oNvsrtk_iZSb94krGRofFjN<br />- Emacs Mail: https://www.youtube.com/watch?v=yZRyEhi4y44&list=PLEoMzSkcN8oM-kA19xOQc8s0gr0PpFGJQ<br />- Learning Emacs Lisp: https://www.youtube.com/watch?v=RQK_DaaX34Q&list=PLEoMzSkcN8oPQtn7FQEF3D7sroZbXuPZ7<br /><br />Intro music: Coriolis Effect by logos feat. stefsax, licensed CC-BY<br />http://ccmixter.org/files/mseq/26296<br />...<br />https://www.youtube.com/watch?v=nq-gqNGmayI
|
|
@ -0,0 +1 @@
|
|||
<!-- SC_OFF --><div class="md"><p>What the subject says... What was the first thing that you changed/ configured back when started using Emacs?<br/> On my case was getting all those pesky "~" backup files on one place... I hated how those splattered all around.</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/hictio"> /u/hictio </a> <br/> <span><a href="https://www.reddit.com/r/emacs/comments/rs4opl/first_thing_you_configured_when_started_using/">[link]</a></span>   <span><a href="https://www.reddit.com/r/emacs/comments/rs4opl/first_thing_you_configured_when_started_using/">[comments]</a></span>
|
|
@ -0,0 +1 @@
|
|||
<p><img src="https://thumbnails.lbry.com/IL0TGlsSMHo" width="480" alt="thumbnail" title="Bad Documentation Doesn't Make Software Advanced!" /></p>Documentation is incredibly important but somehow we've got to a point where some people think that having good documentation is a bad thing or that it somehow makes the software for advanced users, I completely disagree and think if it's for advanced users the documentation is even more important.<br /><br />==========Support The Channel==========<br />► $100 Linode Credit: https://brodierobertson.xyz/linode<br />► Patreon: https://brodierobertson.xyz/patreon<br />► Paypal: https://brodierobertson.xyz/paypal<br />► Liberachat: https://brodierobertson.xyz/liberachat<br />► Amazon USA: https://brodierobertson.xyz/amazonusa<br /><br />=========Video Platforms==========<br />🎥 Odysee: https://brodierobertson.xyz/odysee<br />🎥 Podcast: https://techovertea.xyz/youtube<br />🎮 Gaming: https://brodierobertson.xyz/youtube<br /><br />==========Social Media==========<br />🎤 Discord: https://brodierobertson.xyz/discord<br />🎤 Matrix Space: https://brodierobertson.xyz/matrix<br />🐦 Twitter: https://brodierobertson.xyz/twitter<br />🌐 Mastodon: https://brodierobertson.xyz/mastodon<br />🖥️ GitHub: https://brodierobertson.xyz/github<br /><br />==========Time Stamps==========<br />0:00 Introduction<br />1:44 What I Mean By Documentation<br />2:43 Why Is Documentation Important<br />6:01 What Makes Software Advanced<br />9:38 Advanced Software With Good Docs<br />12:21 I Understand Why Some Docs Are Bad<br />13:21 Outro<br /><br />==========Credits==========<br />🎨 Channel Art:<br />All my art has was created by Supercozman<br />https://twitter.com/Supercozman<br />https://www.instagram.com/supercozman_draws/<br /><br />#Linux #Documentation #ManPage<br /><br />🎵 Ending music<br />Music from https://filmmusic.io<br />"Basic Implosion" by Kevin MacLeod (https://incompetech.com)<br />License: CC BY (http://creativecommons.org/licenses/by/4.0/)<br /><br />DISCLOSURE: Wherever possible I use referral links, which means if you click one of the links in this video or description and make a purchase I may receive a small commission or other compensation.<br />...<br />https://www.youtube.com/watch?v=IL0TGlsSMHo
|
|
@ -0,0 +1,40 @@
|
|||
<p>In an open letter, government officials from the U.S., U.K. and Australia have asked Facebook to delay further deployment of encryption without “including a means for lawful access to the content of communications to protect our citizens.” Essentially, backdoors.</p>
|
||||
|
||||
<h3><strong>-- The Extra Credit Section --</strong></h3>
|
||||
|
||||
<p>For links to the articles and material referenced in this week's episode check out this week's page from our podcast dashboard!</p>
|
||||
|
||||
<p><a href="http://podcast.asknoahshow.com/149" rel="nofollow">This Episode's Podcast Dashboard</a></p>
|
||||
|
||||
<p><a href="http://www.voxtelesys.com/asknoah" rel="nofollow">Phone Systems for Ask Noah provided by Voxtelesys</a></p>
|
||||
|
||||
<p>Join us in our dedicated chatroom #AskNoahShow on Freenode!</p>
|
||||
|
||||
<h3><strong>-- Stay In Touch --</strong></h3>
|
||||
|
||||
<p><strong>Find all the resources for this show on the Ask Noah Dashboard</strong></p>
|
||||
|
||||
<blockquote>
|
||||
<p><a href="http://www.asknoahshow.com" rel="nofollow">Ask Noah Dashboard</a></p>
|
||||
</blockquote>
|
||||
|
||||
<p><strong>Need more help than a radio show can offer? Altispeed provides commercial IT services and they’re excited to offer you a great deal for listening to the Ask Noah Show. Call today and ask about the discount for listeners of the Ask Noah Show!</strong></p>
|
||||
|
||||
<blockquote>
|
||||
<p><a href="http://www.altispeed.com/" rel="nofollow">Altispeed Technologies</a></p>
|
||||
</blockquote>
|
||||
|
||||
<p><strong>Contact Noah</strong></p>
|
||||
|
||||
<blockquote>
|
||||
<p>live [at] asknoahshow.com</p>
|
||||
</blockquote>
|
||||
|
||||
<p><strong>-- Twitter --</strong></p>
|
||||
|
||||
<ul>
|
||||
<li><a href="https://twitter.com/kernellinux" rel="nofollow">Noah - Kernellinux</a></li>
|
||||
<li><a href="https://twitter.com/asknoahshow" rel="nofollow">Ask Noah Show</a></li>
|
||||
<li><a href="https://twitter.com/altispeed" rel="nofollow">Altispeed Technologies</a></li>
|
||||
</ul><p><a href="https://patreon.com/linuxdelta" rel="payment">Support Ask Noah Show</a></p><p>Links:</p><ul><li><a href="https://arstechnica.com/information-technology/2019/10/ag-barr-is-pushing-facebook-to-backdoor-whatsapp-and-halt-encryption-plans/" title="US wants Facebook to backdoor WhatsApp and halt encryption plans | Ars Technica" rel="nofollow">US wants Facebook to backdoor WhatsApp and halt encryption plans | Ars Technica</a></li><li><a href="https://www.omgubuntu.co.uk/2019/10/linus-torvalds-doesnt-think-microsoft-is-out-to-hijack-linux" title="Linus Torvalds Shares His Thoughts on Microsoft's New-Found Love for Linux - OMG! Ubuntu!" rel="nofollow">Linus Torvalds Shares His Thoughts on Microsoft's New-Found Love for Linux - OMG! Ubuntu!</a></li></ul>
|
||||
|
|
@ -0,0 +1 @@
|
|||
<p><img src="https://thumbnails.lbry.com/3Q_j4RNrrOM" width="480" alt="thumbnail" title="GameBuntu: "Linus Proof" Your Gaming Ubuntu Install" /></p>Have you ever felt like Linux gaming was too difficult, you don't want to deal with the setup, well lucky for you GameBuntu exists to Linus proof your ubuntu install and make linux gaming a piece of cake<br /><br />==========Support The Channel==========<br />► $100 Linode Credit: https://brodierobertson.xyz/linode<br />► Patreon: https://brodierobertson.xyz/patreon<br />► Paypal: https://brodierobertson.xyz/paypal<br />► Liberapay: https://brodierobertson.xyz/liberapay<br />► Amazon USA: https://brodierobertson.xyz/amazonusa<br /><br />==========Resources==========<br />GameBuntu: https://discourse.ubuntu.com/t/gamebuntu/25544<br />GameBuntu GitLab: https://gitlab.com/rswat09/gamebuntu<br /><br />=========Video Platforms==========<br />🎥 Odysee: https://brodierobertson.xyz/odysee<br />🎥 Podcast: https://techovertea.xyz/youtube<br />🎮 Gaming: https://brodierobertson.xyz/youtube<br /><br />==========Social Media==========<br />🎤 Discord: https://brodierobertson.xyz/discord<br />🎤 Matrix Space: https://brodierobertson.xyz/matrix<br />🐦 Twitter: https://brodierobertson.xyz/twitter<br />🌐 Mastodon: https://brodierobertson.xyz/mastodon<br />🖥️ GitHub: https://brodierobertson.xyz/github<br /><br />==========Credits==========<br />🎨 Channel Art:<br />All my art has was created by Supercozman<br />https://twitter.com/Supercozman<br />https://www.instagram.com/supercozman_draws/<br /><br />#Linux #LinuxGaming #LinusTechTips #Ubuntu<br /><br />🎵 Ending music<br />Music from https://filmmusic.io<br />"Basic Implosion" by Kevin MacLeod (https://incompetech.com)<br />License: CC BY (http://creativecommons.org/licenses/by/4.0/)<br /><br />DISCLOSURE: Wherever possible I use referral links, which means if you click one of the links in this video or description and make a purchase I may receive a small commission or other compensation.<br />...<br />https://www.youtube.com/watch?v=3Q_j4RNrrOM
|
|
@ -0,0 +1,24 @@
|
|||
<p><iframe loading="lazy" title="Destination Linux EP07 - Rocco's Soapbox" width="800" height="450" src="https://www.youtube.com/embed/Gj2IQ3Kqw4A?feature=oembed" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></p>
|
||||
<p>Welcome to Destination Linux Episode 7 Rocco’s Soapbox for 01-29-17</p>
|
||||
<p><span style="text-decoration: underline;"><b>News</b></span></p>
|
||||
<p><a href="http://blog.linuxmint.com/?p=3199">Changes to Cinnamon Spices</a></p>
|
||||
<p><a href="http://news.softpedia.com/news/linux-mint-18-1-serena-xfce-and-kde-editions-are-officially-out-download-now-512315.shtml">Linux Mint 18.1 “Serena” Xfce and KDE Editions Are Officially Out</a></p>
|
||||
<p><a href="https://budgie-desktop.org/2017/01/25/kicking-off-budgie-11/">Kicking Off Budgie 11</a></p>
|
||||
<p><a href="http://news.softpedia.com/news/brisk-menu-gets-basic-keyword-filtering-in-build-0-3-0-enables-internalization-512185.shtml">Brisk Menu Gets Basic Keyword Filtering in v0.3.0, Enables Internationalization</a></p>
|
||||
<p><a href="http://news.softpedia.com/news/wine-2-0-officially-released-introduces-support-for-microsoft-office-2013-more-512182.shtml">Wine 2.0 Officially Released, Introduces Support for Microsoft Office 2013</a></p>
|
||||
<p><a href="http://kde.slimbook.es/">KDE Slimbook</a></p>
|
||||
<p><a href="https://itsfoss.com/slimbook-kde/">itsfoss Article</a></p>
|
||||
<p><a href="http://news.softpedia.com/news/kde-slimbook-linux-laptop-now-available-for-pre-order-with-kde-neon-distro-512278.shtml">Softpedia Article</a></p>
|
||||
<p><a href="http://news.softpedia.com/news/you-can-now-have-all-the-official-fedora-25-linux-spins-on-a-single-iso-image-exclusive-512241.shtml">Linux AIO</a> Fedora 25 Linux Spins on a Single <a href="http://linux.softpedia.com/get/Linux-Distributions/Linux-AIO-Fedora-103564.shtml">ISO Image Download</a></p>
|
||||
<p><span style="text-decoration: underline;"><b>Soapbox</b></span></p>
|
||||
<p>KDE Love/Hate Relationship</p>
|
||||
<p><span style="text-decoration: underline;"><b>Distrowatch</b></span></p>
|
||||
<p><a href="http://distrowatch.com/9710">Linux Mint 18.1 “KDE”, “Xfce”</a></p>
|
||||
<p><a href="http://distrowatch.com/9707">Tails 2.10</a></p>
|
||||
<p><b>Android App Pick</b></p>
|
||||
<p><a href="https://wego.here.com/">Here (We Go) Maps</a></p>
|
||||
<p>Offline maps</p>
|
||||
<p>Thanks for listening</p>
|
||||
|
||||
|
||||
<p></p>
|
|
@ -0,0 +1,31 @@
|
|||
<p>SHOW NOTES: </p>
|
||||
|
||||
<p>- All the info you need to START is on our <a href='http://www.thebiblerecap.com'>website</a>! Seriously, go there.
|
||||
- Join our <a href='https://www.patreon.com/thebiblerecap'>PATREON</a> community for bonus perks!</p>
|
||||
|
||||
<p>- Get your <a href='https://www.theconnextion.com/tlcdgroup/index.cfm'>TBR merch</a></p>
|
||||
|
||||
<p>- <a href='http://thebiblerecap.com/contact'>Show credits</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>FROM TODAY’S PODCAST: </p>
|
||||
|
||||
<p>- <a href='https://www.biblegateway.com/passage/?search=1+samuel+23%3A15-29&version=ESV'>1 Samuel 23:15-29</a></p>
|
||||
|
||||
<p>- <a href='https://www.biblegateway.com/passage/?search=proverbs+16%3A21&version=ESV'>Proverbs 16:21</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>SOCIALS:</p>
|
||||
|
||||
<p>The Bible Recap:<a href='https://instagram.com/thebiblerecap'> Instagram</a> |<a href='https://www.facebook.com/thebiblerecap'> Facebook</a> |<a href='https://twitter.com/thebiblerecap'> Twitter</a></p>
|
||||
|
||||
<p>D-Group:<a href='https://instagram.com/mydgroup/'> Instagram</a> |<a href='https://www.facebook.com/ilovemydgroup'> Facebook</a> |<a href='https://mobile.twitter.com/mydgroup'> Twitter</a></p>
|
||||
|
||||
<p>TLC:<a href='https://instagram.com/taraleighcobble'> Instagram</a> |<a href='https://www.facebook.com/taraleighcobble'> Facebook</a> |<a href='https://twitter.com/taraleighcobble'> Twitter</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>D-GROUP:
|
||||
The Bible Recap is brought to you by<a href='https://www.mydgroup.org/'> D-Group</a> - an international network of discipleship and accountability groups that meet weekly in homes and churches:<a href='https://www.mydgroup.org/map'> Find or start one near you today</a>!</p>
|
|
@ -0,0 +1,29 @@
|
|||
<p>SHOW NOTES: </p>
|
||||
|
||||
<p>- All the info you need to START is on our <a href='http://www.thebiblerecap.com'>website</a>!
|
||||
- Join our <a href='https://www.patreon.com/thebiblerecap'>PATREON</a> family for bonus perks!</p>
|
||||
|
||||
<p>- Get your <a href='https://www.theconnextion.com/tlcdgroup/index.cfm'>TBR merch</a></p>
|
||||
|
||||
<p>- <a href='http://thebiblerecap.com/contact'>Show credits</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>FROM TODAY’S PODCAST: </p>
|
||||
|
||||
<p>- Video: <a href='https://www.youtube.com/watch?v=urlvnxCaL00'>2 Timothy Overview</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>SOCIALS:</p>
|
||||
|
||||
<p>The Bible Recap:<a href='https://instagram.com/thebiblerecap'> Instagram</a> |<a href='https://www.facebook.com/thebiblerecap'> Facebook</a> |<a href='https://twitter.com/thebiblerecap'> Twitter</a></p>
|
||||
|
||||
<p>D-Group:<a href='https://instagram.com/mydgroup/'> Instagram</a> |<a href='https://www.facebook.com/ilovemydgroup'> Facebook</a> |<a href='https://mobile.twitter.com/mydgroup'> Twitter</a></p>
|
||||
|
||||
<p>TLC:<a href='https://instagram.com/taraleighcobble'> Instagram</a> |<a href='https://www.facebook.com/taraleighcobble'> Facebook</a> |<a href='https://twitter.com/taraleighcobble'> Twitter</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>D-GROUP:
|
||||
The Bible Recap is brought to you by<a href='https://www.mydgroup.org/'> D-Group</a> - an international network of discipleship and accountability groups that meet weekly in homes and churches:<a href='https://www.mydgroup.org/map'> Find or start one near you today</a>!</p>
|
|
@ -0,0 +1,90 @@
|
|||
<p>SHOW NOTES:
|
||||
Thanks for listening! We’ve posted some helpful info for you in our show notes below!</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>PODCAST BASICS:
|
||||
</p>
|
||||
|
||||
<p>- Subscribe where you listen!</p>
|
||||
|
||||
<p>- Check out the details on our <a href='http://www.thebiblerecap.com'>website
|
||||
</a></p>
|
||||
|
||||
<p>- Get the<a href='https://www.bible.com/app'> Bible app</a> (free)
|
||||
</p>
|
||||
|
||||
<p>- Follow our<a href='https://www.bible.com/reading-plans/5-chronological'> Bible reading plan</a></p>
|
||||
|
||||
<p>- Check out our customized <a href='https://www.theconnextion.com/tlcdgroup/index.cfm'>journal</a></p>
|
||||
|
||||
<p>- Join our <a href='https://www.patreon.com/thebiblerecap'>PATREON</a> community for bonus fun! </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>MERCH: Get your<a href='https://www.theconnextion.com/tlcdgroup/index.cfm'> TBR merch</a>! We’ve got t-shirts, coffee mugs, tote bags, phone wallets, and stickers! </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>FROM TODAY’S PODCAST: </p>
|
||||
|
||||
<p>- <a href='https://www.biblegateway.com/passage/?search=genesis+13%3A6&version=ESV'>Genesis 13:6</a></p>
|
||||
|
||||
<p>- <a href='https://www.biblegateway.com/passage/?search=genesis+36%3A7&version=ESV'>Genesis 36:7</a></p>
|
||||
|
||||
<p>- <a href='https://www.biblegateway.com/passage/?search=deuteronomy+28%3A8&version=ESV'>Deuteronomy 28:8</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>SOCIALS:</p>
|
||||
|
||||
<p>The Bible Recap:<a href='https://instagram.com/thebiblerecap'> Instagram</a> |<a href='https://www.facebook.com/thebiblerecap'> Facebook</a> |<a href='https://twitter.com/thebiblerecap'> Twitter</a> | <a href='http://pinterest.com/thebiblerecap'>Pinterest</a></p>
|
||||
|
||||
<p>D-Group:<a href='https://instagram.com/mydgroup/'> Instagram</a> |<a href='https://www.facebook.com/ilovemydgroup'> Facebook</a> |<a href='https://mobile.twitter.com/mydgroup'> Twitter</a> | <a href='http://pinterest.com/ilovemydgroup'>Pinterest</a></p>
|
||||
|
||||
<p>TLC:<a href='https://instagram.com/taraleighcobble'> Instagram</a> |<a href='https://www.facebook.com/taraleighcobble'> Facebook</a> |<a href='https://twitter.com/taraleighcobble'> Twitter</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>D-GROUP:
|
||||
The Bible Recap is brought to you by<a href='https://www.mydgroup.org/'> D-Group</a> - an international network of discipleship and accountability groups that meet weekly in homes and churches:<a href='https://www.mydgroup.org/map'> Find or start one near you today</a>!</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>TBR TEAM:
|
||||
</p>
|
||||
|
||||
<p>Written and Hosted by: <a href='http://taraleighcobble.com'>Tara-Leigh Cobble</a></p>
|
||||
|
||||
<p>Content Manager: <a href='http://mydgroup.org'>Courtney Vaughan
|
||||
</a></p>
|
||||
|
||||
<p>Podcast Operations: <a href='http://mydgroup.org'>Callie Summers
|
||||
</a></p>
|
||||
|
||||
<p>Website Management: <a href='http://mydgroup.org'>Joelle Smith</a></p>
|
||||
|
||||
<p>Sound Engineer: <a href='http://thebiblerecap.com'>Allison Congden</a></p>
|
||||
|
||||
<p>Content Design: <a href='http://misswyolene.com'>Morgan Young
|
||||
</a></p>
|
||||
|
||||
<p>Social Media Management: <a href='http://thebiblerecap.com'>Sarah Yocum</a></p>
|
||||
|
||||
<p>Journal Design: <a href='https://brittneyhmurray.weebly.com/'>Brittney Murray</a></p>
|
||||
|
||||
<p>Logo Design: <a href='mailto:landonhwade@gmail.com'>Landon Wade</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>Available on:<a href='https://itunes.apple.com/us/podcast/the-bible-recap/id1440833267'> iTunes</a> |<a href='https://open.spotify.com/show/2lWv2RlsyMSMzerbAb1uOx'> Spotify</a> |<a href='https://www.google.com/podcasts?feed=aHR0cHM6Ly93d3cuaXZvb3guY29tL3RoZS1iaWJsZS1yZWNhcF9mZ19mMTYzNzgzNF9maWx0cm9fMS54bWw'> Google</a> |<a href='https://www.stitcher.com/podcast/dgroup/the-bible-recap?refid=stpr'> Stitcher</a> |<a href='https://thebiblerecap.podbean.com/'> Podbean</a> | <a href='https://play.google.com/music/m/Ivmpjo6234pwcvclpwxzlklglpm?t=The_Bible_Recap'>Google Play</a> | <a href='http://youtube.com/c/TheBibleRecap'>YouTube
|
||||
</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>WEBSITE:
|
||||
<a href='http://www.thebiblerecap.com'>thebiblerecap.com</a></p>
|
||||
|
||||
<p>
|
||||
|
||||
</p>
|
|
@ -0,0 +1,3 @@
|
|||
<img src="https://media.babylonbee.com/thumbs/article-10044-1-thumb.jpg"> <p>RUSSELL, KS—Former Senator and presidential candidate Bob Dole has passed away at 98, marking his transition from a lifelong Republican to a reliable Democrat voter.</p>
|
||||
<p>The post <a rel="nofollow" href="https://babylonbee.com/news/bob-dole-switches-to-democrat-party">Bob Dole Switches To Democrat Party</a> appeared first on <a rel="nofollow" href="https://babylonbee.com">The Babylon Bee</a>.</p>
|
||||
|
|
@ -0,0 +1,40 @@
|
|||
<p>Huawei’s struggles with the US government has resulted in them shipping certain models of the Matebook pre-loaded with Deepin Linux. Firefox has a VPN like add-on, and Pine releases a $25 smartwatch!</p>
|
||||
|
||||
<h3><strong>-- The Extra Credit Section --</strong></h3>
|
||||
|
||||
<p>For links to the articles and material referenced in this week's episode check out this week's page from our podcast dashboard!</p>
|
||||
|
||||
<p><a href="http://podcast.asknoahshow.com/146" rel="nofollow">This Episode's Podcast Dashboard</a></p>
|
||||
|
||||
<p><a href="http://www.voxtelesys.com/asknoah" rel="nofollow">Phone Systems for Ask Noah provided by Voxtelesys</a></p>
|
||||
|
||||
<p>Join us in our dedicated chatroom #AskNoahShow on Freenode!</p>
|
||||
|
||||
<h3><strong>-- Stay In Touch --</strong></h3>
|
||||
|
||||
<p><strong>Find all the resources for this show on the Ask Noah Dashboard</strong></p>
|
||||
|
||||
<blockquote>
|
||||
<p><a href="http://www.asknoahshow.com" rel="nofollow">Ask Noah Dashboard</a></p>
|
||||
</blockquote>
|
||||
|
||||
<p><strong>Need more help than a radio show can offer? Altispeed provides commercial IT services and they’re excited to offer you a great deal for listening to the Ask Noah Show. Call today and ask about the discount for listeners of the Ask Noah Show!</strong></p>
|
||||
|
||||
<blockquote>
|
||||
<p><a href="http://www.altispeed.com/" rel="nofollow">Altispeed Technologies</a></p>
|
||||
</blockquote>
|
||||
|
||||
<p><strong>Contact Noah</strong></p>
|
||||
|
||||
<blockquote>
|
||||
<p>live [at] asknoahshow.com</p>
|
||||
</blockquote>
|
||||
|
||||
<p><strong>-- Twitter --</strong></p>
|
||||
|
||||
<ul>
|
||||
<li><a href="https://twitter.com/kernellinux" rel="nofollow">Noah - Kernellinux</a></li>
|
||||
<li><a href="https://twitter.com/asknoahshow" rel="nofollow">Ask Noah Show</a></li>
|
||||
<li><a href="https://twitter.com/altispeed" rel="nofollow">Altispeed Technologies</a></li>
|
||||
</ul><p><a href="https://patreon.com/linuxdelta" rel="payment">Support Ask Noah Show</a></p><p>Links:</p><ul><li><a href="https://mspoweruser.com/bad-news-for-microsoft-as-huawei-starts-shipping-matebooks-with-linux/" title="Bad news for Microsoft as Huawei starts shipping Matebooks with Linux - MSPoweruser" rel="nofollow">Bad news for Microsoft as Huawei starts shipping Matebooks with Linux - MSPoweruser</a> — Huawei’s struggles with the US government is still far from over, with the company currently only 30 days into a 90-day reprieve from the US Commerce Department’s ban which prevents US companies from trading with the Chinese giant.</li><li><a href="https://blog.mozilla.org/blog/2019/09/10/firefoxs-test-pilot-program-returns-with-firefox-private-network-beta/" title="Firefox’s Test Pilot Program Returns with Firefox Private Network Beta - The Mozilla Blog" rel="nofollow">Firefox’s Test Pilot Program Returns with Firefox Private Network Beta - The Mozilla Blog</a></li><li><a href="https://www.itzgeek.com/how-tos/linux/centos-how-tos/centos-8-release-date-what-we-know-so-far.html" title="CentOS 8 Release Date: What We Know So Far - ITzGeek" rel="nofollow">CentOS 8 Release Date: What We Know So Far - ITzGeek</a></li><li><a href="https://private-network.firefox.com/?utm_source=Blog&utm_medium=AnnouncementPost&utm_campaign=FPN_Beta" title="Firefox Private Network" rel="nofollow">Firefox Private Network</a></li><li><a href="http://portal.altispeed.com/kb/faq.php?id=222" title="Volumio Script" rel="nofollow">Volumio Script</a></li></ul>
|
||||
|
|
@ -0,0 +1 @@
|
|||
<!-- SC_OFF --><div class="md"><p>I recently discovered an awesome capability of Emacs, where I can use <code>occur</code> to pull all matching lines into a split window and press <code>e</code> to enter <code>occur-edit-mode</code>. In this mode I can do things like <code>replace-string</code> to modify all of the matching lines in my original buffer.</p> <p>This only modifies the occurrences, and is fantastic! The best part is that I can see all of the potential changes to the original buffer in a concise, noise-free area.</p> <p><strong>Shortcoming</strong></p> <p>This mode does not currently have <code>evil</code> bindings. I can <em>test</em> my regex by using <code>evil-ex</code> - I get my lovely red strike-through and expected changes, but entering <code>evil-ex</code> seems to disable the edit capabilities of the <code>occur-edit-mode</code> and I'm left with a read-only buffer.</p> <p><strong>Current Workflow</strong></p> <p>I'm modifying 20+ large files with many rewrite rules and have come up with the following:</p> <ol> <li>Use <code>eshell</code> to create a grep buffer across all relevant files.</li> <li>Test my regex using <code>:</code> (<code>evil-ex</code>) in the grep buffer</li> <li>Verify that all buffers will change as desired.</li> <li>Jump to each matching file from the grep buffer one-at-a-time</li> <li>Apply my regex to the original buffer, scanning for errors</li> <li>Save file and repeat for next file in the existing grep buffer.</li> </ol> <p>This is not perfect because the regex applies to the original buffer as a whole, not only the matching lines, but so far it's a huge time saver!</p> <p>Does anyone have a better workflow?</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/tonicinhibition"> /u/tonicinhibition </a> <br/> <span><a href="https://www.reddit.com/r/emacs/comments/qz23lm/evil_regex_workflow_in_greplike_buffers/">[link]</a></span>   <span><a href="https://www.reddit.com/r/emacs/comments/qz23lm/evil_regex_workflow_in_greplike_buffers/">[comments]</a></span>
|
|
@ -0,0 +1 @@
|
|||
<p><img src="https://thumbnails.lbry.com/TyGPXewIh68" width="480" alt="thumbnail" title="The DWM patches I use and some other stuff to pad the video." /></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 />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=TyGPXewIh68
|
|
@ -0,0 +1,14 @@
|
|||
<p>This is our first episode in our series "How To Read The Bible." Tim and Jon discuss the differences in ancient and modern ways of reading scripture, including why the Hebrew people would read scripture together as a group. The guys also talk about how challenging it can be to read the Bible by yourself.</p>
|
||||
<p>In the first half of the show (0-34:00) the guys talk about the differences between modern day emphasis on application the reading of God’s word, and the Old Testament emphasis on “responding” to hearing God’s word.</p>
|
||||
<p>The second half of the show (34-50:00) Tim exposits on the ancient Hebrew practice of reading the Torah out loud together. A practice that was instituted in the Old Testament and has continued all the way through to modern times in today’s synagogues. Tim also talks about an interesting piece of Jewish history, the Dura Europos Synagogue. Jon asks why is it so important to read the Bible together as a group.</p>
|
||||
<p>The last ten minutes of the show the guys ask what the origins of the sermon are and why ancient Israel had such a difficult time remembering what God had done for them.</p>
|
||||
<p>We have a video coming out later this month that will accompany this podcast series. You can view all our videos on our youtube channel: youtube.com/thebibleproject</p>
|
||||
<p>Additional Resources:<br />
|
||||
The Word Of Promise: Dramatic Reading of The Bible App.<br />
|
||||
Dura Europos Synagogue in Syria [see Wikipedia]<br />
|
||||
Jeffrey Tigay, The JPS Torah Commentary: Deuteronomy<br />
|
||||
Mesha Stela [see Wikipedia]</p>
|
||||
<p>Music Credits:</p>
|
||||
<p>Defender Instrumental by Rosasharn Music<br />
|
||||
Acquired in Heaven by Beautiful Eulogy<br />
|
||||
The Truth about Flight, Love and BB Guns by Foreknown</p>
|
|
@ -0,0 +1,94 @@
|
|||
<p>SHOW NOTES:
|
||||
Thanks for listening! We’ve posted some helpful info for you in our show notes below!</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>PODCAST BASICS:
|
||||
</p>
|
||||
|
||||
<p>- Subscribe where you listen!</p>
|
||||
|
||||
<p>- Check out the details on our <a href='http://www.thebiblerecap.com'>website
|
||||
</a></p>
|
||||
|
||||
<p>- Get the<a href='https://www.bible.com/app'> Bible app</a> (free)
|
||||
</p>
|
||||
|
||||
<p>- Follow our<a href='https://www.bible.com/reading-plans/5-chronological'> Bible reading plan</a></p>
|
||||
|
||||
<p>- Check out our customized <a href='https://www.theconnextion.com/tlcdgroup/index.cfm'>journal</a></p>
|
||||
|
||||
<p>- Join our <a href='https://www.patreon.com/thebiblerecap'>PATREON</a> community for bonus fun! </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>MERCH: Get your<a href='https://www.theconnextion.com/tlcdgroup/index.cfm'> TBR merch</a>! We’ve got t-shirts, coffee mugs, tote bags, phone wallets, and stickers! </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>FROM TODAY’S PODCAST: </p>
|
||||
|
||||
<p>- <a href='https://www.biblegateway.com/passage/?search=Exodus+36-40&version=ESV'>Exodus 36-40</a></p>
|
||||
|
||||
<p>- <a href='https://www.biblegateway.com/passage/?search=ezekiel+8%3A2+&version=ESV'>Ezekiel 8:2</a></p>
|
||||
|
||||
<p>- <a href='https://www.biblegateway.com/passage/?search=ezekiel+9%3A2+&version=ESV'>Ezekiel 9:2</a></p>
|
||||
|
||||
<p>- Picture: <a href='https://thescripturesays.files.wordpress.com/2016/05/26-ezekiels-temple.png'>Ezekiel's Temple</a></p>
|
||||
|
||||
<p>- <a href='https://www.biblegateway.com/passage/?search=john+14%3A6&version=ESV'>John 14:6</a></p>
|
||||
|
||||
<p>- Graphic: <a href='https://www.biblegateway.com/blog/2017/07/updated-chart-of-israels-and-judahs-kings-and-prophets/?fbclid=IwAR2LCUhNNEOSXkkJBQDy0A6_CJcbjtgcvCyy2IVLyQB7Uxzw8EZt1FzzIZk'>Chart of Israel's and Judah's Kings and Prophets</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>SOCIALS:</p>
|
||||
|
||||
<p>The Bible Recap:<a href='https://instagram.com/thebiblerecap'> Instagram</a> |<a href='https://www.facebook.com/thebiblerecap'> Facebook</a> |<a href='https://twitter.com/thebiblerecap'> Twitter</a> | <a href='http://pinterest.com/thebiblerecap'>Pinterest</a> </p>
|
||||
|
||||
<p>D-Group:<a href='https://instagram.com/mydgroup/'> Instagram</a> |<a href='https://www.facebook.com/ilovemydgroup'> Facebook</a> |<a href='https://mobile.twitter.com/mydgroup'> Twitter</a> | <a href='http://pinterest.com/ilovemydgroup'>Pinterest</a></p>
|
||||
|
||||
<p>TLC:<a href='https://instagram.com/taraleighcobble'> Instagram</a> |<a href='https://www.facebook.com/taraleighcobble'> Facebook</a> |<a href='https://twitter.com/taraleighcobble'> Twitter</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>D-GROUP:
|
||||
The Bible Recap is brought to you by<a href='https://www.mydgroup.org/'> D-Group</a> - an international network of discipleship and accountability groups that meet weekly in homes and churches:<a href='https://www.mydgroup.org/map'> Find or start one near you today</a>!</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>TBR TEAM:
|
||||
</p>
|
||||
|
||||
<p>Written and Hosted by: <a href='http://taraleighcobble.com'>Tara-Leigh Cobble</a></p>
|
||||
|
||||
<p>Content Manager: <a href='http://mydgroup.org'>Courtney Vaughan
|
||||
</a></p>
|
||||
|
||||
<p>Podcast Operations: <a href='http://mydgroup.org'>Callie Summers
|
||||
</a></p>
|
||||
|
||||
<p>Website Management: <a href='http://mydgroup.org'>Joelle Smith</a></p>
|
||||
|
||||
<p>Sound Engineer: <a href='http://thebiblerecap.com'>Allison Congden</a></p>
|
||||
|
||||
<p>Content Design: <a href='http://misswyolene.com'>Morgan Young
|
||||
</a></p>
|
||||
|
||||
<p>Social Media Management: <a href='http://thebiblerecap.com'>Sarah Yocum</a></p>
|
||||
|
||||
<p>Journal Design: <a href='https://brittneyhmurray.weebly.com/'>Brittney Murray</a></p>
|
||||
|
||||
<p>Logo Design: <a href='mailto:landonhwade@gmail.com'>Landon Wade</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>Available on:<a href='https://itunes.apple.com/us/podcast/the-bible-recap/id1440833267'> iTunes</a> |<a href='https://open.spotify.com/show/2lWv2RlsyMSMzerbAb1uOx'> Spotify</a> |<a href='https://www.google.com/podcasts?feed=aHR0cHM6Ly93d3cuaXZvb3guY29tL3RoZS1iaWJsZS1yZWNhcF9mZ19mMTYzNzgzNF9maWx0cm9fMS54bWw'> Google</a> |<a href='https://www.stitcher.com/podcast/dgroup/the-bible-recap?refid=stpr'> Stitcher</a> |<a href='https://thebiblerecap.podbean.com/'> Podbean</a> | <a href='https://play.google.com/music/m/Ivmpjo6234pwcvclpwxzlklglpm?t=The_Bible_Recap'>Google Play</a> | <a href='http://youtube.com/c/TheBibleRecap'>YouTube
|
||||
</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>WEBSITE:
|
||||
<a href='http://www.thebiblerecap.com'>thebiblerecap.com</a></p>
|
||||
|
||||
<p> </p>
|
|
@ -0,0 +1 @@
|
|||
<p><img src="https://thumbnails.lbry.com/XOyid9J9Cug" width="480" alt="thumbnail" title="Bringing Snow To An Aussie Linux User With Xsnow" /></p>I've never seen snow before so how about I bring it to my Linux desktop with xsnow.<br /><br />==========Support The Channel==========<br />► $100 Linode Credit: https://brodierobertson.xyz/linode<br />► Patreon: https://brodierobertson.xyz/patreon<br />► Paypal: https://brodierobertson.xyz/paypal<br />► Liberapay: https://brodierobertson.xyz/liberapay<br />► Amazon USA: https://brodierobertson.xyz/amazonusa<br /><br />==========Resources==========<br />Xsnow Aur: https://aur.archlinux.org/packages/xsnow-bin/<br />Xsnow Source: https://sourceforge.net/projects/xsnow/<br />Xsnow Website: https://ratrabbit.nl/ratrabbit/xsnow/<br /><br />=========Video Platforms==========<br />🎥 Odysee: https://brodierobertson.xyz/odysee<br />🎥 Podcast: https://techovertea.xyz/youtube<br />🎮 Gaming: https://brodierobertson.xyz/youtube<br /><br />==========Social Media==========<br />🎤 Discord: https://brodierobertson.xyz/discord<br />🎤 Matrix Space: https://brodierobertson.xyz/matrix<br />🐦 Twitter: https://brodierobertson.xyz/twitter<br />🌐 Mastodon: https://brodierobertson.xyz/mastodon<br />🖥️ GitHub: https://brodierobertson.xyz/github<br /><br />==========Credits==========<br />🎨 Channel Art:<br />All my art has was created by Supercozman<br />https://twitter.com/Supercozman<br />https://www.instagram.com/supercozman_draws/<br /><br />#Linux #Christmas #Xsnow<br /><br />🎵 Ending music<br />Music from https://filmmusic.io<br />"Basic Implosion" by Kevin MacLeod (https://incompetech.com)<br />License: CC BY (http://creativecommons.org/licenses/by/4.0/)<br /><br />DISCLOSURE: Wherever possible I use referral links, which means if you click one of the links in this video or description and make a purchase I may receive a small commission or other compensation.<br />...<br />https://www.youtube.com/watch?v=XOyid9J9Cug
|
|
@ -0,0 +1 @@
|
|||
Who do you think got arrested the Antifa mob or the man defending himself, the Excelsior Pass we were all worried about happening, and Pentagon Diversity weaponizing our military against our country. Show Marketing Powered By: Better Three Group Click Here to find out more or go to betterthreegroup.com GAB: @mattwilliams CloutHub: @themattwilliamsshow Telegram: @realmattwilliams
|
|
@ -0,0 +1 @@
|
|||
<table> <tr><td> <a href="https://www.reddit.com/r/unixporn/comments/ru73ai/bspwm_blue/"> <img src="https://preview.redd.it/hn9qjdqh59981.png?width=640&crop=smart&auto=webp&s=2e009bbee6714a9514d041b5a3ee48594ed3131a" alt="[BSPWM] Blue" title="[BSPWM] Blue" /> </a> </td><td>   submitted by   <a href="https://www.reddit.com/user/_IronAtlas_"> /u/_IronAtlas_ </a> <br/> <span><a href="https://i.redd.it/hn9qjdqh59981.png">[link]</a></span>   <span><a href="https://www.reddit.com/r/unixporn/comments/ru73ai/bspwm_blue/">[comments]</a></span> </td></tr></table>
|
|
@ -0,0 +1,22 @@
|
|||
<p>In part 1, (0-11:40) Tim notes the ways that Luke has mapped the story of Paul on top of the story of Jesus. He quotes from Charles Talbert.</p>
|
||||
<p>“In Luke-Acts we find an architectural pattern of correspondences between the career of Jesus and the life of the apostles. In this way, Luke portrays the deeds and teachings of Jesus as the pattern for the acts and instruction of the apostolic church in the book of Acts. It is near impossible to avoid the conclusion that these correspondences between Jesus and his followers serve this purpose: Jesus is the master and the source of the Christian way of life that is imitated by his disciples.” — Charles Talbert, Literary Patterns and Theological Themes in Luke-Acts.</p>
|
||||
<p>Tim points out several interesting symbolic ways that Luke and Acts are similar. For example, when Jesus and Paul initially go to Jerusalem. They are both greeted warmly, and they both immediately go to the temple. Both Jesus and Paul stand before someone named Herod. In both cases a Roman centurion is given a positive portrait.</p>
|
||||
<p>In part 2 (11:40-21:30)<br />
|
||||
Jon asks why would Luke be so interested in comparing Paul and Jesus together? Tim says that the parallelism isn’t meant to lessen Christ’s status, but instead to show that Christ’s work is continuing in regular humans who are now being grafted in, being created new as a new humanity following in Christ’s example and life.</p>
|
||||
<p>Tim shares a quote from scholar Michael Goulder:<br />
|
||||
“Luke is writing a typological history, the life of Jesus providing the template for the life of the church. It is the Pauline doctrine of the body of Christ which is finding here a literary expression in the patterns and cycles of Luke’s narrative. Christ is alive and continuing his own life through his body, that is, his church.” — Michael Goulder, Type and History in Acts, 61-62.</p>
|
||||
<p>In part 3, (21:30-end)</p>
|
||||
<p>The guys discuss how the book of acts concludes. To many modern readers it is an abrupt ending.</p>
|
||||
<p>Tim shares a scholar Ben Witherington: “The ending of the book of Acts makes it clear that Luke’s purpose wasn’t simply to chronicle not the life and death of Paul, but rather the rise and spread of the gospel and of the social and religious movement to which it gave birth. Luke has provided a theological history that traces the spread of the good news from Jerusalem to Rome, from the eastern edge of the Roman Empire into its very heart. Rome was not seen in Luke’s day as the edge of the known world, and so the reader would know very well that Jesus’ mission to spread the gospel to the ends of the earth (Acts 1:8) was still ongoing in his own day. However, for Luke it was critical and symbolic that the message reach the heart and hub of the Empire, as a challenge to Caesar and a gateway into to the ends of the earth.</p>
|
||||
<p>The open-endedness that the modern reader senses in the ending of Acts is intentional. Luke is chronicling not the life and times of Paul (or any other early Christian leader), which would have a definite conclusion, but rather a phenomenon and movement that was continuing and alive and well in his own day. For Luke, Paul’s story is really… about the unstoppable word of god, which no obstacle, no shipwreck, no snake-bite, and no Roman authorities could hinder from reaching the heart of the empire and the hearts of those who lived there. -- Adapted from Ben Witherington III, The Acts of the Apostles: A Socio-Rhetorical Commentary (Grand Rapids, MI: Wm. B. Eerdmans Publishing Co., 1998), 809.</p>
|
||||
<p>Thank you to all our supporters!</p>
|
||||
<p>Show produced by:<br />
|
||||
Dan Gummel</p>
|
||||
<p>Show Resources:<br />
|
||||
Ben Witherington III, The Acts of the Apostles: A Socio-Rhetorical Commentary (Grand Rapids, MI: Wm. B. Eerdmans Publishing Co., 1998), 809.<br />
|
||||
Michael Goulder, Type and History in Acts<br />
|
||||
Charles Talbert, Literary Patterns and Theological Themes in Luke-Acts.</p>
|
||||
<p>Show Music:</p>
|
||||
<p>Defender Instrumental: Tents<br />
|
||||
Where Peace and Rest Are Found<br />
|
||||
Polaroid: Extenz</p>
|
Loading…
Add table
Add a link
Reference in a new issue