trying to fix
This commit is contained in:
parent
fa407dfeb6
commit
e013d7569e
22945 changed files with 447936 additions and 0 deletions
|
@ -0,0 +1,18 @@
|
|||
|
||||
|
||||
<p>Raw link: <a href="https://www.youtube.com/watch?v=y6_bmcd3nis">https://www.youtube.com/watch?v=y6_bmcd3nis</a></p>
|
||||
|
||||
<p>In this screen cast I present some of the more advanced or perhaps
|
||||
less obvious ways of using Emacs’ built-in search tool. <code>isearch</code> is
|
||||
quite a competent tool that can be made even better with some careful
|
||||
additions of elisp.</p>
|
||||
|
||||
<p>Based on what I know right now, there is a niche for both <code>isearch</code>
|
||||
and <code>swiper</code>, even though the latter is often used a replacement for
|
||||
the former.</p>
|
||||
|
||||
<p>All my customisations are defined in my “dotemacs” file—now provided
|
||||
as a dedicated page inside this website (with links to its source):
|
||||
<a href="https://protesilaos.com/emacs/dotemacs">protesilaos.com/emacs/dotemacs</a>.</p>
|
||||
|
||||
|
|
@ -0,0 +1 @@
|
|||
<!-- SC_OFF --><div class="md"><p>Hey, I'm glad I jumped into the archlinux world</p> <p>after testing several distros and messing around with them (ubuntu,manjaro) i wanted something fresh, clean and who give me the control of everything i want</p> <p>​</p> <p>took me something like 4-5h to install and setup (with custom archiso due to my wifi driver not included in it)</p> <p>thanks to the ArchWiki, a loooot of good info inside</p> <p>​</p> <p>of course with BTRFS file system in case i break something :D, and i think to add a rsync backup to a unused ssd in case of hardware failure</p> <p>if you have any advice to give me, they are welcome</p> <p>here is a screenshot of my desktop :<a href="https://ibb.co/HH2TVg5">https://ibb.co/HH2TVg5</a></p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/Biohazard13530"> /u/Biohazard13530 </a> <br/> <span><a href="https://www.reddit.com/r/archlinux/comments/qz8bjj/officially_new_member_of_the_gang/">[link]</a></span>   <span><a href="https://www.reddit.com/r/archlinux/comments/qz8bjj/officially_new_member_of_the_gang/">[comments]</a></span>
|
|
@ -0,0 +1,83 @@
|
|||
|
||||
|
||||
<p><strong>UPDATE 2019-07-01:</strong> I submitted a bug report. <a href="https://protesilaos.com/codelog/2019-07-01-xterm-greek-pi-bug/">Details
|
||||
here</a>.</p>
|
||||
|
||||
<p><strong>UPDATE 2019-06-01:</strong> Upon further inspection, I am using the following
|
||||
font-related settings, which address the issue discussed herein. Some
|
||||
typefaces might still have <em>minor</em> issues with drawing boxes.</p>
|
||||
|
||||
<pre><code>! Font settings
|
||||
! The font settings address the issue discussed in this blog post:
|
||||
! https://protesilaos.com/codelog/2019-05-26-xterm-letter-pi-bug/
|
||||
xterm*faceName: Hack,DejaVu Sans Mono,Monospace
|
||||
xterm*faceSize: 9.5
|
||||
xterm*renderFont: true
|
||||
xterm*boldColors: false
|
||||
xterm*faceSize1: 8
|
||||
xterm*faceSize2: 12
|
||||
xterm*faceSize3: 15
|
||||
xterm*faceSize4: 18.25
|
||||
xterm*faceSize5: 20.5
|
||||
xterm*faceSize6: 25.5
|
||||
xterm*forceBoxChars: false
|
||||
xterm*limitFontsets: 3
|
||||
xterm*scaleHeight: 1.0
|
||||
</code></pre>
|
||||
|
||||
<p>Original text below…</p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p>Given certain font configuration combinations, the current version of
|
||||
Xterm on Debian ‘buster’ has problems displaying the lower case Greek
|
||||
letter Pi (π). The terminal will print that letter form as a fixed font
|
||||
while keeping everything else as a proportional font. The flow of text
|
||||
breaks.</p>
|
||||
|
||||
<p>This behaviour is exhibited with a variety of typefaces (Debian package
|
||||
in parentheses):</p>
|
||||
|
||||
<ul>
|
||||
<li>Hack (fonts-hack)</li>
|
||||
<li>IBM Plex Mono (fonts-ibm-plex)</li>
|
||||
<li>Iosevka</li>
|
||||
<li>Monoid (fonts-monoid)</li>
|
||||
<li>Mononoki (fonts-mononoki)</li>
|
||||
<li>Source Code Pro</li>
|
||||
<li>Ubuntu Mono (fonts-ubuntu-console)</li>
|
||||
</ul>
|
||||
|
||||
<p>A workaround is to define awkard point sizes when using one of the
|
||||
offending typefaces, such as <code>10.5</code>, while also tweaking the
|
||||
<code>scaleHeight</code> property. This, however, has an undesirable side effect:
|
||||
it prevents tmux and other applications that draw boxes from creating
|
||||
continuous lines for their borders. Lines appear dashed and, depending
|
||||
on the distance between the dashes (and point size), may exhibit a “halo
|
||||
effect” around them. Lines become blurry and outright annoying to stare
|
||||
at.</p>
|
||||
|
||||
<p>DejaVu Sans Mono displays lower case Pi correctly at point size 10 (my
|
||||
preferred choice), but has problems with drawing borders. Box drawing
|
||||
can be fixed by tweaking its <code>size</code> and the <code>scaleHeight</code> property.
|
||||
However, that prevents it from properly drawing Pi.</p>
|
||||
|
||||
<p>The only font family that faces no such trade-off is Fira Code, aka
|
||||
<code>fonts-firacode</code> (based on Fira Mono, which is not in the Debian
|
||||
archives). Fira {Code,Mono} prints minuscule Pi (π) in its proper form
|
||||
and draws continuous lines as expected.</p>
|
||||
|
||||
<p>All of the above are based on the assumption that <code>forceBoxChars</code> is set
|
||||
to <code>false</code>. Otherwise none of the afore-mentioned typefaces can pass
|
||||
the test.</p>
|
||||
|
||||
<p>Modifying the <code>fontconfig</code> rules for aliasing and hinting causes other
|
||||
undesired effects. Besides, it makes no sense to distort all letter
|
||||
forms across the system for Xterm to draw Pi and box lines as expected.</p>
|
||||
|
||||
<p>I ultimately do not know what it is specifically about Fira {Code,Mono}
|
||||
that lends to its adaptability in this scenario. I would assume it has
|
||||
to do with the inherent proportions of its hyphen <code>-</code> and column <code>|</code>,
|
||||
though this has not been researched further.</p>
|
||||
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
<p>Ubuntu and Fedora have new releases, and our early impressions are great. We’ll share the features that we think make these distros some of the best Linux desktop releases ever.</p>
|
||||
|
||||
<p>Plus some important community news, some Darktable tips for beginners, and some select clips from this year’s LinuxFest Northwest. </p><p>Special Guest: Brent Gervais.</p><p>Sponsored By:</p><ul><li><a href="https://do.co/unplugged" rel="nofollow">DigitalOcean</a>: <a href="https://do.co/unplugged" rel="nofollow">Visit do.co/unplugged for a limited time special offer, or enter dounplugged after you create your account for a $10 credit.</a> Promo Code: dounplugged</li><li><a href="http://linux.ting.com" rel="nofollow">Ting</a>: <a href="http://linux.ting.com" rel="nofollow">Visit linux.ting.com and get a $25 discount off a device, or $25 in service credit if you bring one!</a></li><li><a href="http://linuxacademy.com/unplugged" rel="nofollow">Linux Academy</a>: <a href="http://linuxacademy.com/unplugged" rel="nofollow">Visit linuxacademy.com/unplugged to support the show and sign up for a 7 day free trial.</a></li></ul><p><a href="https://jupitersignal.memberful.com/checkout?plan=52946" rel="payment">Support LINUX Unplugged</a></p><p>Links:</p><ul><li><a href="https://fedoramagazine.org/announcing-fedora-28/" title="Announcing the release of Fedora 28" rel="nofollow">Announcing the release of Fedora 28</a> — Fedora 28 Workstation has big news too. For the first time, we’re making it easy for users to enable certain third-party software sources, including proprietary Nvidia drivers. </li><li><a href="https://lists.projectatomic.io/projectatomic-archives/atomic-devel/2018-May/msg00001.html" title="Fedora Atomic Host" rel="nofollow">Fedora Atomic Host</a> — This is our first release of Fedora 28 Atomic Host!</li><li><a href="https://fedoramagazine.org/whats-new-fedora-28-workstation/" title="What's New in Fedora 28 Workstation" rel="nofollow">What's New in Fedora 28 Workstation</a> — Battery life on laptops running Fedora Workstation is improved with various hardware power-saving features now enabled by default. </li><li><a href="https://www.omgubuntu.co.uk/2018/04/google-forks-adapta-gtk-theme" title="Google Just Forked a Popular GTK Theme" rel="nofollow">Google Just Forked a Popular GTK Theme</a> — Not just any GTK theme but one forked from the Material Design inspired Adapta GTK theme.</li><li><a href="https://cilium.io/blog/2018/04/17/why-is-the-kernel-community-replacing-iptables/" title="Why is the kernel community replacing iptables with BPF?" rel="nofollow">Why is the kernel community replacing iptables with BPF?</a> — The Linux kernel community recently announced bpfilter, which will replace the long-standing in-kernel implementation of iptables with high-performance network filtering powered by Linux BPF</li><li><a href="https://www.voidlinux.eu/news/2018/05/serious-issues.html" title="VoidLinux Serious Issues" rel="nofollow">VoidLinux Serious Issues</a> — The current project leader has disappeared. We have had no contact with him since the end of January.</li><li><a href="https://www.darktable.org/2018/04/darktable-243-released/" title="darktable 2.4.3 released | darktable" rel="nofollow">darktable 2.4.3 released | darktable</a> — We’re proud to announce the third bugfix release for the 2.4 series of darktable, 2.4.3!</li><li><a href="https://brentgervais.photoshelter.com/gallery/LFNW-2018/G0000.ATcpPbYvGM/C0000aVOKeUbA2Os" title="LFNW 2018 - Images | Brent Gervais Photography" rel="nofollow">LFNW 2018 - Images | Brent Gervais Photography</a> — Great photos from LinuxFest Northwest 2018</li><li><a href="https://www.linuxnov.com/ubuntu-18-04-lts-bionic-beaver-has-been-released-top-10-major-changes/" title="Ubuntu 18.04 LTS Top 10 Major Changes" rel="nofollow">Ubuntu 18.04 LTS Top 10 Major Changes</a></li><li><a href="https://news.softpedia.com/news/ubuntu-budgie-18-04-official-flavor-debuts-as-first-long-term-supported-version-520869.shtml" title="Ubuntu Budgie 18.04 Official Flavor Debuts as First Long-Term Supported Version" rel="nofollow">Ubuntu Budgie 18.04 Official Flavor Debuts as First Long-Term Supported Version</a> — Ubuntu Budgie 18.04 LTS official flavor will be supported for three years, until April 2021, and ships with the latest Budgie Desktop 10.4 "Irish Summer" desktop environment by default, accompanied by GNOME 3.28 applications.</li><li><a href="https://insights.ubuntu.com/2018/04/27/breeze-through-ubuntu-desktop-18-04-lts-bionic-beaver" title="Breeze through Ubuntu Desktop 18.04 LTS Bionic Beaver" rel="nofollow">Breeze through Ubuntu Desktop 18.04 LTS Bionic Beaver</a> — GNOME Initial Setup was chosen for this job as we will be exploring how to integrate more features of the tool during the 18.10 cycle.</li></ul>
|
||||
|
|
@ -0,0 +1 @@
|
|||
<p>Megyn Kelly is joined by Allie Beth Stuckey, host of "Relatable with Allie Beth Stuckey" and author of "You're Not Enough And That's Okay," to talk about protecting women and girls, motherhood, the courage to stand up for your beliefs, feminism today, the Equality Act, trans issues, overcoming obstacles like bulimia, faith and living in a Christian way, 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>
|
|
@ -0,0 +1 @@
|
|||
<p><img src="https://thumbnails.lbry.com/azOPZGO2vso" width="480" alt="thumbnail" title="Zetteldeft Again! - An Emacs Package for Zettelkasten (Great for Bible Notes) Now with zdlink" /></p>* "Redid" the last Zetteldeft video so you can see my commands.*<br /><br /><br />Zetteldeft is an Emacs package built on top of Deft for organizing notes with IDs and tags. Its very fast and a lot of fun to use while studying. I highly recommend this package.<br /><br /><br />In the video I show how Zetteldeft helps with creating in-line Bible study notes<br /><br /><br /><br />I'm using Spacemacs in this video.<br /><br /><br /><br />Get the package off Melpha<br />Docs here: https://www.eliasstorms.net/zetteldeft/<br />Get the zdlink add on here: https://gist.github.com/EFLS/b64e2914fc9c51164131265a375a994a<br />...<br />https://www.youtube.com/watch?v=azOPZGO2vso
|
|
@ -0,0 +1 @@
|
|||
  submitted by   <a href="https://www.reddit.com/user/jonasov"> /u/jonasov </a> <br/> <span><a href="https://www.youtube.com/watch?v=RC5yGM8fk8g">[link]</a></span>   <span><a href="https://www.reddit.com/r/emacs/comments/r1s3k2/lex_fridman_and_neal_stephenson_talking_about/">[comments]</a></span>
|
|
@ -0,0 +1 @@
|
|||
<p>Megyn Kelly is joined by Clay Travis and Buck Sexton, the co-hosts of the new radio show "The Clay Travis and Buck Sexton Show," launching today as the replacement on Premiere Networks for the Rush Limbaugh Show, to discuss COVID and mask hypocrisy, Jeffrey Toobin and CNN, Hunter Biden, the Victoria's Secret rebranding, the politics of envy, the teen trans trend, Outkick joining Fox, 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>
|
|
@ -0,0 +1,51 @@
|
|||
<p>I might be terrible at learning human languages, but I really enjoy learning
|
||||
programming languages. In my <a href="https://www.rousette.org.uk/archives/digital-spring-clean/">last post</a>, I mentioned setting up <a href="https://johnnydecimal.com/">Johnny.Decimal</a>,
|
||||
and that I was thinking of writing some tools to help me interact with the
|
||||
system. I’m a dedicated <a href="https://www.alfredapp.com">Alfred</a> user, and when I spotted a very nifty library
|
||||
called <a href="https://github.com/deanishe/awgo">awgo</a> for writing Alfred workflows in <a href="https://golang.org">Go</a>, it seemed like the perfect
|
||||
excuse to dip my toes in Go and learn another programming language. The result
|
||||
after only a couple of weeks of tinkering in spare moments was this <a href="https://github.com/bsag/alfred-jd">alfred-jd
|
||||
workflow</a>. I really like Go.</p>
|
||||
<p>After only two weeks, I am obviously nowhere near an expert (or even a novice),
|
||||
but Go is a language that is easy to pick up. You can get started quickly and
|
||||
write some surprisingly useful and elegant code without needing to spend months
|
||||
learning a lot of syntax. The awgo library helped me enormously, as the wrappers
|
||||
it provides (not to mention the very useful examples given), did a lot of the
|
||||
heavy lifting and enabled me to have something basically functional running
|
||||
quite quickly.</p>
|
||||
<p>But Go itself is a very programmer-friendly language. The syntax is relatively
|
||||
simple but powerful, and if you run through the interactive <a href="https://tour.golang.org/welcome/1">Go Tour</a>, you’ll
|
||||
learn most of what you need. It is a compiled language, and if you use (as I do)
|
||||
an editor with support for the <a href="https://emacs-lsp.github.io/lsp-mode/page/lsp-gopls/">Go LSP server</a> (Emacs in my case), it’s like having a
|
||||
Go expert looking over your shoulder and pointing out what you are doing wrong.
|
||||
It interactively picks up on unused variables, incorrect types and so on, and
|
||||
automatically formats your code each time you save. If you pay attention to
|
||||
these errors and learn how to fix them, your code will usually build first time,
|
||||
and you quickly get into good habits.</p>
|
||||
<p>I am finding Go to be an elegant and efficient language. The standard libraries
|
||||
that are built into Go are comprehensive and easy to use, and almost everything
|
||||
you need (from a compiler to a test framework and full offline documentation of
|
||||
the standard libraries) is built in when you install Go. If you’ve written code
|
||||
in languages like Python or Ruby (which are themselves fun to code in), the fact
|
||||
that you don’t need to install virtual environments to manage packages and their
|
||||
dependencies is a real relief. My only previous exposure to Go was as an
|
||||
end-user of Hugo (the software that builds this blog). Even then I had
|
||||
benefited from the fact that Go builds binaries (cross-platform if you want)
|
||||
which are self-contained: all you need to do is install the single binary, and
|
||||
everything will work. That, coupled with the fact that Go is so fast and
|
||||
efficient, and has good built-in libraries for command line flags and so on, makes
|
||||
me think that I will probably build little scripts to solve tasks in Go from now
|
||||
on. Ruby or Python always seem like the best use-case for those kinds of tasks,
|
||||
but then you try running your script again six months after writing it, and find
|
||||
that it doesn’t work because some dependency has broken somewhere.</p>
|
||||
<p>I usually find that when I learn programming languages, the basics are easy to
|
||||
pick up, but then I hit a wall when trying to build larger, more modular
|
||||
programmes into libraries. However, I quite quickly picked up the way that Go
|
||||
packages work, because it’s very straightforward. Similarly, understanding how
|
||||
to use libraries (standard or external) is easy to grasp. I’m planning to
|
||||
improve and extend my Alfred workflow, but I’m now reading a couple of Go books
|
||||
(<a href="https://www.manning.com/books/go-in-action">Go in Action</a> and <a href="https://pragprog.com/titles/rggo/powerful-command-line-applications-in-go/">Powerful Command-Line Applications in Go</a>) in order to deepen
|
||||
my knowledge and make sure that I am building things in an idiomatically ‘Go’ way
|
||||
that makes the most of the language and is robust. So far, I’ve actually grasped
|
||||
how pointers work, which is something which had eluded me whenever I had come
|
||||
across them in other languages, so that is definite progress!</p>
|
151
var/elfeed/db/data/dd/dd602bd45cdb393f726d58df15966b6b6ae0550a
Normal file
151
var/elfeed/db/data/dd/dd602bd45cdb393f726d58df15966b6b6ae0550a
Normal file
|
@ -0,0 +1,151 @@
|
|||
<p>Have you ever dreamed of having a virtual enviorment that can simulate the real world in, have meetings in, and connect with others in. Firefox has new protections for supercookies, ubuntu has a new installer out, and CloudLinux has a beta out of AlmaLinux.</p>
|
||||
|
||||
<h3><strong>-- During The Show --</strong></h3>
|
||||
|
||||
<h5>Red Hat License - Jon</h5>
|
||||
|
||||
<ul>
|
||||
<li><p>RedHat exists to make a profit, and they need to</p></li>
|
||||
<li><p>RedHat spends money to support open source that they could take home/pocket</p></li>
|
||||
<li><p>RedHat handled the release poorly and cut the release cycle short</p></li>
|
||||
<li><p>RedHat has been a good friend of the community</p></li>
|
||||
<li><p>The new model makes more sense, but was poorly communicated</p></li>
|
||||
</ul>
|
||||
|
||||
<h5>11:00 Element vs Rocket - cheskel</h5>
|
||||
|
||||
<ul>
|
||||
<li><p>Element/Matrix Pros:</p>
|
||||
|
||||
<ul>
|
||||
<li>Decentralized</li>
|
||||
<li>Federated</li>
|
||||
<li>Integrated with other services (Bridges & Widgets)</li>
|
||||
<li>End to End Encryption</li>
|
||||
</ul></li>
|
||||
</ul>
|
||||
|
||||
<h4>15:00 Pick of the Week</h4>
|
||||
|
||||
<ul>
|
||||
<li><p><a href="https://funkwhale.audio/#get-started" rel="nofollow">Funkwhale</a></p></li>
|
||||
<li><p>Decentralized Selfhosted Spotify</p></li>
|
||||
<li><p>Makes music social again</p></li>
|
||||
<li><p>Why host your own? Because of things like <a href="https://www.compsmag.com/news/technology/spotify-patents-technology-to-recommend-songs-based-on-the-speech-emotion-of-users/" rel="nofollow">this</a></p></li>
|
||||
</ul>
|
||||
|
||||
<h4>17:00 Gadget of the Week</h4>
|
||||
|
||||
<ul>
|
||||
<li><p><a href="https://www.mihaisafta.com/blog/2021/01/31/sleeping-better-with-raspberry-pi-automated-white-noise/" rel="nofollow">Mihai's Blog post</a></p></li>
|
||||
<li><p>White Noise Machine based on a raspberry pi</p></li>
|
||||
<li><p>Uses OMX Player</p></li>
|
||||
<li><p><a href="https://play.google.com/store/apps/details?id=com.mynoise.mynoise" rel="nofollow">My Noise on Google Play</a></p></li>
|
||||
<li><p><a href="https://f-droid.org/en/packages/com.github.ashutoshgngwr.noice/" rel="nofollow">Noice App</a></p></li>
|
||||
</ul>
|
||||
|
||||
<h4>20:00 Firefox Cracks Down on Supercookies</h4>
|
||||
|
||||
<ul>
|
||||
<li><p>Firefox Blog Post](<a href="https://blog.mozilla.org/security/2021/01/26/supercookie-protections/" rel="nofollow">https://blog.mozilla.org/security/2021/01/26/supercookie-protections/</a>)</p></li>
|
||||
<li><p>Firefox 85 implements network partitioning</p></li>
|
||||
<li><p>Different image cache for each site</p></li>
|
||||
<li><p>Firefox 85 also partitions pooled connections, pre-fetch connections, pre-connect connections, speculative connections, and TLS session identifiers</p></li>
|
||||
</ul>
|
||||
|
||||
<h4>26:00 New Ubuntu Installer</h4>
|
||||
|
||||
<ul>
|
||||
<li><p>Ubiquity is getting hard to maintain</p></li>
|
||||
<li><p><a href="https://github.com/CanonicalLtd/subiquity" rel="nofollow">Subiquity Github</a></p></li>
|
||||
<li><p>Uses <a href="https://launchpad.net/curtin" rel="nofollow">Curtin</a> and Flutter</p></li>
|
||||
<li><p>Flutter is controlled by Google, this could be a problem long term</p></li>
|
||||
<li><p>Why a snap?</p></li>
|
||||
</ul>
|
||||
|
||||
<h4>29:00 GitLab Subscription Model</h4>
|
||||
|
||||
<ul>
|
||||
<li><p><a href="https://about.gitlab.com/blog/2021/01/26/new-gitlab-product-subscription-model/" rel="nofollow">GitLab Blog Post</a></p></li>
|
||||
<li><p>GitLab is phasing out the Bronze/Starter tier</p></li>
|
||||
<li><p>Special Offers for people transitioning</p></li>
|
||||
<li><p>GitLab Free tier gained over 450 features this year and continues to gain more</p></li>
|
||||
</ul>
|
||||
|
||||
<h4>32:00 Element Suspended from Play Store</h4>
|
||||
|
||||
<ul>
|
||||
<li><p>Google suspended Element in the Play Store without notifying the developers</p></li>
|
||||
<li><p>Google said it was due to abusive content somewhere on Matrix</p></li>
|
||||
<li><p><a href="https://www.reddit.com/r/privacy/comments/l8gcw6/google_have_suspended_element_in_the_play_store/" rel="nofollow">Reddit Post</a></p></li>
|
||||
<li><p>Matrix Team responded quickly and openly to resolve the issue</p></li>
|
||||
<li><p>Matrix Team went above and beyond and implemented community suggestions</p></li>
|
||||
<li><p>Having multiple clients is an advantage to the Matrix Protocol</p></li>
|
||||
</ul>
|
||||
|
||||
<h4>35:00 Ctrl IQ</h4>
|
||||
|
||||
<ul>
|
||||
<li><p><a href="https://arstechnica.com/gadgets/2021/01/rocky-linux-gets-a-parent-company-with-4m-series-a-funding/" rel="nofollow">Ars Technica artical</a></p></li>
|
||||
<li><p>Greg founded a new start up company called Ctrl IQ</p></li>
|
||||
<li><p>Greg was interviewed on <a href="https://podcast.asknoahshow.com/213" rel="nofollow">Ask Noah EP 213</a></p></li>
|
||||
</ul>
|
||||
|
||||
<h4>36:00 CloudLinux Launches AlmaLinux</h4>
|
||||
|
||||
<ul>
|
||||
<li><p><a href="https://blog.almalinux.org/introducing-almalinux-beta-a-community-driven-replacement-for-centos/" rel="nofollow">AlmaLinux Blog Post</a></p></li>
|
||||
<li><p>First RHEL 8 respin available for download</p></li>
|
||||
<li><p><a href="https://repo.almalinux.org/almalinux/8.3-beta/isos/x86_64/" rel="nofollow">Download AlmaLinux</a></p></li>
|
||||
</ul>
|
||||
|
||||
<h4>37:00 Open Source VR Metaverse</h4>
|
||||
|
||||
<ul>
|
||||
<li><p><a href="https://vircadia.com" rel="nofollow">Vircadia Site</a></p></li>
|
||||
<li><p><a href="https://www.youtube.com/watch?v=4ZPz4rvMEwk" rel="nofollow">An Introduction to Vircadia</a></p></li>
|
||||
<li><p>Vircadia™ is an open-source 3D interface and server foundation</p></li>
|
||||
<li><p>Ecosystem of open source metaverse applications</p></li>
|
||||
<li><p>Open Source VR/Virtual World</p></li>
|
||||
<li><p>Far more than entertainment, lots of potential</p></li>
|
||||
<li><p><a href="https://vircadia.com/download-vircadia/" rel="nofollow">Download Vircadia</a></p></li>
|
||||
</ul>
|
||||
|
||||
<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/218" 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>
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
<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>- <a href='https://www.biblegateway.com/passage/?search=Jeremiah+29%3A11&version=ESV'>Jeremiah 29:11</a></p>
|
||||
|
||||
<p>- Article 1 of 4: <a href='https://www.ligonier.org/learn/devotionals/gods-love-and-gods-hatred/'>God's Love and God's Hatred</a></p>
|
||||
|
||||
<p>- Article 2 of 4: <a href='https://www.providencefrisco.com/blog/post/why-did-god-hate-esau'>Why Did God Hate Esau?</a></p>
|
||||
|
||||
<p>- Article 3 of 4: <a href='https://www.gotquestions.org/Jacob-Esau-love-hate.html'>Why Did God Love Jacob and Hate Esau?</a></p>
|
||||
|
||||
<p>- Article 4 of 4: <a href='https://www.blueletterbible.org/Comm/spurgeon_charles/sermons/0239.cfm'>Jacob & Esau: Charles Spurgeon Sermon Transcript</a></p>
|
||||
|
||||
<p>- Article: <a href='https://www.gotquestions.org/divorce-remarriage.html'>What Does the Bible Say about Divorce and Remarriage?</a></p>
|
||||
|
||||
<p>- <a href='https://www.biblegateway.com/passage/?search=Matthew+11%3A10&version=ESV'>Matthew 11:10</a></p>
|
||||
|
||||
<p>- <a href='https://www.biblegateway.com/passage/?search=mark+1%3A2&version=ESV'>Mark 1:2</a></p>
|
||||
|
||||
<p>- <a href='https://thebiblerecap.podbean.com/e/september-reflections-and-corrections/?token=a910e82d2c9a4bb90561557d726f6ef3'>The Bible Recap - September Reflections & Corrections Episode</a></p>
|
||||
|
||||
<p>- Video 1 of 2: <a href='https://www.youtube.com/watch?v=XIb_dCIxzr0'>Luke Overview</a></p>
|
||||
|
||||
<p>- Video 2 of 2: <a href='https://www.youtube.com/watch?v=G-2e9mMf7E8&t=4s'>John Overview</a></p>
|
||||
|
||||
<p>- The Bible Recap - <a href='http://theconnextion.com/tbr'>Thrived and Survived Shirts</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,50 @@
|
|||
<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> </p>
|
||||
|
||||
<p>FROM TODAY’S PODCAST: </p>
|
||||
|
||||
<p>- Get the<a href='https://www.bible.com/app'> Bible app</a> (free)
|
||||
- Follow our<a href='https://www.bible.com/reading-plans/17553-the-bible-recap-with-tara-leigh-cobble'> Bible reading plan</a></p>
|
||||
|
||||
<p>- Join our <a href='https://www.patreon.com/thebiblerecap'>PATREON</a> community!</p>
|
||||
|
||||
<p>- <a href='https://www.amazon.com/shop/thebiblerecap?listId=RON1GVC9XSXJ'>The Bible Recap Amazon Store</a></p>
|
||||
|
||||
<p>- Lee’s Interview: <a href='https://thebiblerecap.podbean.com/mf/play/g7i8dz/Prep_Ep_3.mp3'>Why Reading the Whole Bible is Important</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>PREP EPISODES (in case you haven’t listened yet):</p>
|
||||
|
||||
<ol><li> <a href='https://thebiblerecap.podbean.com/e/prep-1-lets-read-the-bible-in-a-year-chronological-plan/?token=676d196e5781216fa0d0db185d401f23'>Let's Read the Bible in a Year (Chronological Plan)!</a></li>
|
||||
|
||||
<li> <a href='https://thebiblerecap.podbean.com/e/prep-2-how-i-learned-to-love-reading-the-bible/?token=55cf4fe795aca608b9097a790e04c4a9'>How I Learned to Love (Reading) the Bible</a></li>
|
||||
|
||||
<li> <a href='https://thebiblerecap.podbean.com/e/prep-3-why-reading-the-whole-bible-is-important-interview-with-lee-mcderment/?token=a4f95002d2da44cca8a60f827882279c'>Why Reading the Whole Bible is Important (interview with Lee McDerment)</a></li>
|
||||
|
||||
<li> <a href='https://thebiblerecap.podbean.com/e/prep-4-preparing-to-read-the-bible/?token=e106a078369d5a5bff17d09f04cccffe'>Preparing to Read the Bible</a></li>
|
||||
|
||||
<li> <a href='https://thebiblerecap.podbean.com/e/prep-5-avoiding-common-mistakes-what-to-look-for-when-you-read-the-bible/?token=436edc2474532b97073fdee1ef37fe35'>Avoiding Common Mistakes: What to Look for When You Read the Bible</a></li>
|
||||
|
||||
<li> <a href='https://thebiblerecap.podbean.com/e/prep-6-reading-the-bible-in-community/?token=0ccd19f77baf837ec914b3ced2428d29'>Reading the Bible in Community</a></li>
|
||||
|
||||
</ol><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/_5N3wqKdvDo" width="480" alt="thumbnail" title="A First Look At Q4OS 4.6 With The Plasma Desktop" /></p>In this video, I'm going to take a look at the recently released Q4OS 4.6, codenamed "Gemini." Q4OS is a fast and friendly, desktop oriented operating system based on Debian 11 Testing. Q4OS now uses the Plasma desktop as its default.<br /><br />REFERENCED:<br />► https://www.q4os.org/<br /><br />WANT TO SUPPORT THE CHANNEL? <br />💰 Patreon: https://www.patreon.com/distrotube <br />💳 Paypal: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=derek%40distrotube%2ecom&lc=US&item_name=DistroTube&no_note=0¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHostedGuest<br />🛍️ Amazon: https://amzn.to/2RotFFi<br />👕 Teespring: https://teespring.com/stores/distrotube<br /><br />DONATE CRYPTO:<br />💰 Bitcoin: 1Mp6ebz5bNcjNFW7XWHVht36SkiLoxPKoX<br />🐶 Dogecoin: D5fpRD1JRoBFPDXSBocRTp8W9uKzfwLFAu<br />📕 LBC: bMfA2c3zmcLxPCpyPcrykLvMhZ7A5mQuhJ<br /><br />SOCIAL PLATFORMS: <br />🗨️ Mastodon: https://distrotoot.com/@derek<br />👫 Reddit: https://www.reddit.com/r/DistroTube/<br />📽️ LBRY/Odysee: https://odysee.com/$/invite/@DistroTube:2<br /><br />DT ON THE WEB:<br />🕸️ Website: http://distrotube.com/<br />🐿️ Gemini Capsule: gemini://distro.tube<br />📁 GitLab: https://gitlab.com/dwt1 <br /><br />FREE AND OPEN SOURCE SOFTWARE THAT I USE:<br />🌐 Brave Browser - https://brave.com/dis872 <br />📽️ Open Broadcaster Software: https://obsproject.com/<br />🎬 Kdenlive: https://kdenlive.org<br />🎨 GIMP: https://www.gimp.org/<br />🎵 Ardour: https://ardour.org/<br />💻 VirtualBox: https://www.virtualbox.org/<br />🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs<br /><br />Your support is very much appreciated. Thanks, guys!<br />...<br />https://www.youtube.com/watch?v=_5N3wqKdvDo
|
|
@ -0,0 +1 @@
|
|||
<table> <tr><td> <a href="https://www.reddit.com/r/unixporn/comments/r1allb/i3gaps_first_time_posting_here/"> <img src="https://preview.redd.it/qq4lww0qxk181.png?width=640&crop=smart&auto=webp&s=00def596b1db83c3746241e61754031b06ddbe7f" alt="[i3gaps] First time posting here" title="[i3gaps] First time posting here" /> </a> </td><td>   submitted by   <a href="https://www.reddit.com/user/Rauxene"> /u/Rauxene </a> <br/> <span><a href="https://i.redd.it/qq4lww0qxk181.png">[link]</a></span>   <span><a href="https://www.reddit.com/r/unixporn/comments/r1allb/i3gaps_first_time_posting_here/">[comments]</a></span> </td></tr></table>
|
|
@ -0,0 +1 @@
|
|||
<p><img src="https://thumbnails.lbry.com/lzoEiMxlRFo" width="480" alt="thumbnail" title="I FINISHED - Voice of Cards. Also, a little ramble." /></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 />I no longer read or engage with comments. i do read and reply to all emails. hexdsl@posteo.net<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=lzoEiMxlRFo
|
|
@ -0,0 +1,95 @@
|
|||
<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=Deuteronomy+17%3A16&version=ESV'>Deuteronomy 17:16</a></p>
|
||||
|
||||
<p>- <a href='https://www.biblegateway.com/passage/?search=1+samuel+20%3A12-17&version=ESV'>1 Samuel 20:12-17</a></p>
|
||||
|
||||
<p>- <a href='https://www.mydgroup.org/promo'>D-Group Promo Video</a></p>
|
||||
|
||||
<p>- <a href='https://www.mydgroup.org/map'>D-Group Map</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>SOCIALS:</p>
|
||||
|
||||
<p>The Bible Recap:<a href='https://instagram.com/thebiblerecap'> Instagram</a> |<a href='https://www.facebook.com/thebiblerecap'> Facebook</a> |<a href='https://twitter.com/thebiblerecap'> Twitter</a> | <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>
|
||||
|
||||
<p> </p>
|
|
@ -0,0 +1,3 @@
|
|||
<img src="https://media.babylonbee.com/thumbs/article-10072-1-thumb.jpg"> <hr /><p style="text-align:center">Brought to you by:</p>
|
||||
<p>The post <a rel="nofollow" href="https://babylonbee.com/news/top-10-candidates-to-replace-chris-cuomo">Top 10 Candidates To Replace Chris Cuomo</a> appeared first on <a rel="nofollow" href="https://babylonbee.com">The Babylon Bee</a>.</p>
|
||||
|
|
@ -0,0 +1 @@
|
|||
<!-- SC_OFF --><div class="md"><p>I can’t connect to wifi at my school with arch linux and nmcli because as far as im aware you cant provide usernames and passwords when connecting to a network both which my school needs</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/-XXDEATHXX-"> /u/-XXDEATHXX- </a> <br/> <span><a href="https://www.reddit.com/r/archlinux/comments/rh02ef/network_manager/">[link]</a></span>   <span><a href="https://www.reddit.com/r/archlinux/comments/rh02ef/network_manager/">[comments]</a></span>
|
|
@ -0,0 +1 @@
|
|||
<table> <tr><td> <a href="https://www.reddit.com/r/unixporn/comments/qz1ugq/xfce_blackarch/"> <img src="https://external-preview.redd.it/amu21wmXh6Eb1G_Iq9vaes0WJGLPTgHIWZAiuiQFkHU.png?width=640&crop=smart&auto=webp&s=29a7a3ebb153176ff877f151e438e9f05ced37ff" alt="[xfce] BlackArch" title="[xfce] BlackArch" /> </a> </td><td>   submitted by   <a href="https://www.reddit.com/user/KCGD_r"> /u/KCGD_r </a> <br/> <span><a href="https://v.redd.it/06mkdhe6yz081">[link]</a></span>   <span><a href="https://www.reddit.com/r/unixporn/comments/qz1ugq/xfce_blackarch/">[comments]</a></span> </td></tr></table>
|
|
@ -0,0 +1,33 @@
|
|||
<p><iframe loading="lazy" title="Destination Linux EP62 - Daniel Foré of Elementary" width="800" height="450" src="https://www.youtube.com/embed/XLhfE1I9eA4?feature=oembed" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></p>
|
||||
<p><b>Welcome to Episode 62 </b></p>
|
||||
<p>Your host’s this week are Rocco, Ryan, Zeb and Michael and this is Destination Linux.</p>
|
||||
<p>Today we have a special guest, that we’re so excited to talk with. Here with us is Daniel Fore of Elementary OS.</p>
|
||||
<p>Daniel Fore</p>
|
||||
<p><a href="http://danielfore.com">Personal Website</a></p>
|
||||
<p><a href="https://soundcloud.com/danrabbit">SoundCloud Music</a></p>
|
||||
<p><a href="https://twitter.com/DanielFore">Twitter</a></p>
|
||||
<p><a href="https://github.com/danrabbit">Github</a></p>
|
||||
<p><a href="https://plus.google.com/+DanielFor%C3%A9">Google+</a></p>
|
||||
<p><a href="https://www.instagram.com/danrabbit/">Instagram</a></p>
|
||||
<p><a href="https://dribbble.com/danrabbit">Dribble</a></p>
|
||||
<p><a href="https://www.twitch.tv/danrabbit/videos/all">Twitch</a></p>
|
||||
<p><a href="https://www.youtube.com/watch?v=XCHFcmsQM28">Nerd Continuity Interview</a></p>
|
||||
<p><a href="https://medium.com/elementaryos/meet-the-upcoming-installer-a499341218f5">Elementary Medium Blog</a></p>
|
||||
<p><a href="https://medium.com/elementaryos/secure-by-default-disk-encryption-3592bf25e3ce">Secure by default </a></p>
|
||||
<p><a href="https://elementary.io/get-involved">BountySource</a></p>
|
||||
<p><b>Admin</b></p>
|
||||
<p><a href="https://www.patreon.com/destinationlinux">Patreon</a></p>
|
||||
<p><a href="https://liberapay.com/destinationlinux/">Liberapay</a></p>
|
||||
<p><a href="https://teespring.com/destinationlinuxpodcast">Destination Linux Apparel</a></p>
|
||||
<p><a href="http://www.youtube.com/destinationlinux">Destination Linux Youtube</a></p>
|
||||
<p><b>Where Can You Find Us This Week</b></p>
|
||||
<ul>
|
||||
<li>Rocco can be found at <a href="http://www.bigdaddylinux.com">www.bigdaddylinux.com</a></li>
|
||||
<li>Ryan can be found on youtube at <a href="http://www.youtube.com/dasgeek">www.youtube.com/dasgeek</a></li>
|
||||
<li>Zeb can be found on youtube at <a href="http://www.youtube.com/zebedeeboss">www.youtube.com/zebedeeboss</a></li>
|
||||
<li>Michael can be found at <a href="http://www.tuxdigital.com">www.tuxdigital.com</a></li>
|
||||
<li>All of us can be found on Big Daddy Linux Live! Which is on every Saturday night on the BigDaddyLinux Youtube channel</li>
|
||||
</ul>
|
||||
<p>Twitter @bigdaddylinux @dasgeekchannel @zebedeeboss @TuxDigitalcom</p>
|
||||
<p>A big thank you to each and every one of you for supporting us by watching or listening to Destination Linux</p>
|
||||
<p>Everybody have a great week and remember the Journey ITSELF is just as important as the Destination</p>
|
|
@ -0,0 +1,43 @@
|
|||
<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>- <a href='http://www.patreon.com/thebiblerecap'>The Bible Kneecap</a></p>
|
||||
|
||||
<p>- <a href='https://www.theconnextion.com/tlcdgroup/index.cfm?CatID=933&prodlist=1'>The Bible Recap Store</a></p>
|
||||
|
||||
<p>- <a href='http://www.thebiblerecap.com/email'>The Bible Recap Newsletter</a></p>
|
||||
|
||||
<p>- <a href='http://www.mydgroup.org/map'>Find a D-Group Near You!</a></p>
|
||||
|
||||
<p>- <a href='http://www.mydgroup.org/schedule'>D-Group Schedule</a></p>
|
||||
|
||||
<p>- <a href='http://www.thebiblerecap.com/start'>The Bible Recap Start Page</a></p>
|
||||
|
||||
<p>- <a href='http://www.thebiblerecap.com/faq'>The Bible Recap FAQ</a></p>
|
||||
|
||||
<p>- <a href='https://www.mydgroup.org/faq'>D-Group FAQ</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 @@
|
|||
<p><img src="https://thumbnails.lbry.com/BivwrQhapAE" width="480" alt="thumbnail" title="Lines Of Code Isn't A Measure Of Quality" /></p>One thing I see every so often is someone talking about how many lines of code a project has as a metric for how good that project is and while it does relate to some aspects, it's by no means the only or even an important measure.<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 />=========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 />2:25 Performance Testing<br />2:58 Big O Complexity<br />5:44 Compilation Time<br />7:19 Complexity<br />8:18 Maintainability<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 />#SLOC #SourceCode #LinesOfCode #Programming<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=BivwrQhapAE
|
|
@ -0,0 +1 @@
|
|||
<p><img src="https://thumbnails.lbry.com/ZyNBwQ0C3u4" width="480" alt="thumbnail" title="DUR - Debian User Repository (an AUR for Debian)" /></p>Patreon: https://www.patreon.com/hexdsl<br />Amazon Wish list: https://www.amazon.co.uk/hz/wishlist/ls/OQECP17P4Q3B?ref_=wl_share<br /><br />https://dur.hunterwittenborn.com/<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 <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 />Fedi: https://social.hexdsl.co.uk/hexdsl<br />E-mail: HexDSL@posteo.net<br />...yes I am interested in collaborations.<br />...<br />https://www.youtube.com/watch?v=ZyNBwQ0C3u4
|
|
@ -0,0 +1 @@
|
|||
<!-- SC_OFF --><div class="md"><p>Hi everyone,</p> <p>I'm having an issue where emacs seems to freeze randomly on me (with no error message viewable from the GUI). It doesn't seem to be related to a particular command (most recently it happened while I was just navigating the cursor around a buffer). Is there anything I can do / try to get a more helpful error message?</p> <p>Sorry if that's a silly question, I'm new here.</p> <p>Some info about my setup in case it's relevant:</p> <p>​</p> <p>Emacs Version: <code>28.0.60 (native comp)</code></p> <p>Emacs Flavor: <code>Doom</code></p> <p>OS: <code>MacOS 12.0.1 (Monterey)</code></p> <p>Platform: <code>Apple ARM</code></p> <p>EDIT: Formatting</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/BlithePanda"> /u/BlithePanda </a> <br/> <span><a href="https://www.reddit.com/r/emacs/comments/r9qy96/how_to_debug_freezing_emacs_on_macos/">[link]</a></span>   <span><a href="https://www.reddit.com/r/emacs/comments/r9qy96/how_to_debug_freezing_emacs_on_macos/">[comments]</a></span>
|
|
@ -0,0 +1 @@
|
|||
In today’s episode the guys unpack Plato’s understanding of human psychology and social order. They note his positive insights as well as limits as they set forth fuller Christian insights into the ways in which improper ordering of our desires tends toward destructive political orderings.
|
|
@ -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=Ephesians+6%3A17&version=ESV'>Ephesians 6:17</a></p>
|
||||
|
||||
<p>- <a href='https://www.biblegateway.com/passage/?search=1+samuel+1%3A9-18&version=ESV'>1 Samuel 1:9-18</a></p>
|
||||
|
||||
<p>- <a href='https://www.mydgroup.org/promo'>D-Group Promo Video</a></p>
|
||||
|
||||
<p>- <a href='https://www.mydgroup.org/map'>D-Group Map</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>SOCIALS:</p>
|
||||
|
||||
<p>The Bible Recap:<a href='https://instagram.com/thebiblerecap'> Instagram</a> |<a href='https://www.facebook.com/thebiblerecap'> Facebook</a> |<a href='https://twitter.com/thebiblerecap'> Twitter</a> | <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>
|
Loading…
Add table
Add a link
Reference in a new issue