trying to fix
This commit is contained in:
parent
fa407dfeb6
commit
e013d7569e
22945 changed files with 447936 additions and 0 deletions
|
@ -0,0 +1 @@
|
|||
  submitted by   <a href="https://www.reddit.com/user/CandleMission3150"> /u/CandleMission3150 </a> <br/> <span><a href="https://guix.gnu.org/en/blog/2021/the-big-change/">[link]</a></span>   <span><a href="https://www.reddit.com/r/GUIX/comments/ri82af/the_big_change/">[comments]</a></span>
|
|
@ -0,0 +1 @@
|
|||
<table> <tr><td> <a href="https://www.reddit.com/r/unixporn/comments/r2mvpv/kde_basic_clean_and_functional/"> <img src="https://preview.redd.it/c2ho04d6ux181.png?width=640&crop=smart&auto=webp&s=ea50c84d086f7d3ddf5b329b925a03c388ba7045" alt="[KDE] Basic, clean and functional" title="[KDE] Basic, clean and functional" /> </a> </td><td>   submitted by   <a href="https://www.reddit.com/user/Adderbox76"> /u/Adderbox76 </a> <br/> <span><a href="https://i.redd.it/c2ho04d6ux181.png">[link]</a></span>   <span><a href="https://www.reddit.com/r/unixporn/comments/r2mvpv/kde_basic_clean_and_functional/">[comments]</a></span> </td></tr></table>
|
|
@ -0,0 +1 @@
|
|||
https://www.cbc.ca/radio/thecurrent/the-current-for-may-10-2021-1.6017944/monday-may-10-2021-full-text-transcript-1.6021249 Play Audio: 22:59-23:14  Prayers to the Covid Vaccine and much more on today’s CrossPolitic Daily News Brief This is Toby Sumpter today is Friday, July 30, 2021. “In the beautiful town of Moscow, ID, Erber Automotive is looking for Christians to join forces and wage war together on broken cars. Since Adam’s fall, cars […]
|
|
@ -0,0 +1 @@
|
|||
<p>Megyn Kelly is joined by Dave Ramsey, best-selling author and host of The Ramsey Show, to talk about capitalism, meritocracy, avoiding debt, adapting and thriving in life post-COVID, parenting, the value of working hard, why "the credit card is the cigarette of the financial industry," the future of radio 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,75 @@
|
|||
|
||||
|
||||
<p>I was asked to provide some information on how to resize a floating
|
||||
window in BSPWM. As I seldom use floating windows, I have never tried
|
||||
to put much effort into this issue. Anyhow, here is a <em>skeleton</em> of a
|
||||
solution.</p>
|
||||
|
||||
<h2>The shell script</h2>
|
||||
|
||||
<p>Here is the basic code. Place it in a file called <code>bspwm_resize</code> or
|
||||
something appropriate (and make it executable and add it to your
|
||||
<code>PATH</code>).</p>
|
||||
|
||||
<p>If you need to limit it to floating windows, you could use a check for
|
||||
<code>bspc query -N -n .floating</code>.</p>
|
||||
|
||||
<pre><code>#!/bin/bash
|
||||
|
||||
[ "$#" -eq 3 ] || { echo "Needs exactly three arguments."; exit 1; }
|
||||
|
||||
motion="$1"
|
||||
direction="$2"
|
||||
size="$3"
|
||||
|
||||
if [ "$motion" = 'expand' ]; then
|
||||
# These expand the window's given side
|
||||
case "$direction" in
|
||||
north) bspc node -z top 0 -"$size" ;;
|
||||
east) bspc node -z right "$size" 0 ;;
|
||||
south) bspc node -z bottom 0 "$size" ;;
|
||||
west) bspc node -z left -"$size" 0 ;;
|
||||
esac
|
||||
else
|
||||
# These contract the window's given side
|
||||
case "$direction" in
|
||||
north) bspc node -z top 0 "$size" ;;
|
||||
east) bspc node -z right -"$size" 0 ;;
|
||||
south) bspc node -z bottom 0 -"$size" ;;
|
||||
west) bspc node -z left "$size" 0 ;;
|
||||
esac
|
||||
fi
|
||||
</code></pre>
|
||||
|
||||
<h2>The commands for the key bindings</h2>
|
||||
|
||||
<p>Then in your SXHKD file, you can use standard keys of your choice or the
|
||||
less known “continuous input” technique. I prepared a demo for the
|
||||
latter. This specific mode is denoted by the colon sign <code>:</code>.</p>
|
||||
|
||||
<p>What it does: you enter the “mode” with the keys to the left of the
|
||||
colon and then you execute the relevant commands by just pressing what
|
||||
is to the right of the colon. So there is no need to continuously press
|
||||
the entire sequence.</p>
|
||||
|
||||
<p>Exit the “mode” with the Escape key.</p>
|
||||
|
||||
<pre><code>super + e : {h,j,k,l}
|
||||
bspwm_resize expand {west,south,north,east} 50
|
||||
|
||||
super + shift + e : {h,j,k,l}
|
||||
bspwm_resize contract {west,south,north,east} 50
|
||||
</code></pre>
|
||||
|
||||
<h2>Closing thoughts</h2>
|
||||
|
||||
<p>I never developed something specifically for floating windows, because I
|
||||
rarely use them. And when I do, it usually is something involving the
|
||||
mouse, at which point it is acceptable to just resize them with
|
||||
Alt+Right-click-drag (or move them the same way with Alt and Left click
|
||||
drag).</p>
|
||||
|
||||
<p>That covers it. Hopefully it gives you something to work with. If you
|
||||
need help, please contact me.</p>
|
||||
|
||||
|
|
@ -0,0 +1,86 @@
|
|||
<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>FROM TODAY’S PODCAST:</p>
|
||||
|
||||
<p>- <a href='http://www.thebiblerecap.com/contact'>Donate to The Bible Recap!</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>MERCH:</p>
|
||||
|
||||
<p>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>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-9698-1-thumb.jpg"> <p>PACIFIC OCEAN—With a tremendous backlog at Long Beach and dozens of cargo ships helplessly stranded in the ocean waiting to be unloaded, the bored crews have arranged their ships to form the words of the patriotic cheer taking the world by storm: "Let's Go Brandon." </p>
|
||||
<p>The post <a rel="nofollow" href="https://babylonbee.com/news/backed-up-cargo-ships-positioned-to-spell-out-lets-go-brandon">Backed-Up Cargo Ships Positioned To Spell Out ‘Let’s Go Brandon’</a> appeared first on <a rel="nofollow" href="https://babylonbee.com">The Babylon Bee</a>.</p>
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
<p><div class="video-container"><iframe src="https://www.youtube-nocookie.com/embed/ROt7ICZAho4?feature=oembed&start&end&wmode=opaque&loop=0&controls=1&mute=0&rel=0&modestbranding=1" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div></p>
|
||||
<p></p>
|
||||
<p>On this episode of Destination Linux we sit down with <a href="https://rootco.de/">Richard Brown</a>, of <a href="https://www.opensuse.org/">openSUSE</a>, for an interview about his journey into Linux and becoming the Chairman of openSUSE.<br />
|
||||
<span id="more-1237"></span></p>
|
||||
<p>Guest Links:<br />
|
||||
Website = <a href="https://rootco.de" target="_blank" rel="noopener noreferrer">https://rootco.de</a><br />
|
||||
openSUSE = <a href="https://opensuse.org" target="_blank" rel="noopener noreferrer">https://opensuse.org</a><br />
|
||||
Twitter = <a href="https://twitter.com/sysrich/" target="_blank" rel="noopener noreferrer">https://twitter.com/sysrich/</a></p>
|
||||
<p>Hosts of Destination Linux:<br />
|
||||
<strong>Zeb</strong>, aka Zebedeeboss = <a href="https://youtube.com/zebedeeboss" target="_blank" rel="noopener noreferrer">https://youtube.com/zebedeeboss</a><br />
|
||||
<strong>Noah</strong> of Ask Noah Show = <a href="http://asknoahshow.com" target="_blank" rel="noopener noreferrer">http://asknoahshow.com</a><br />
|
||||
<strong>Michael</strong> of TuxDigital = <a href="https://tuxdigital.com" target="_blank" rel="noopener noreferrer">https://tuxdigital.com</a><br />
|
||||
<strong>Ryan</strong>, aka DasGeek = <a href="https://dasgeekcommunity.com" target="_blank" rel="noopener noreferrer">https://dasgeekcommunity.com</a></p>
|
||||
<p>Want to Support the Show?<br />
|
||||
Support on <a href="https://destinationlinux.org/patreon" target="_blank" rel="noopener noreferrer">Patreon</a> or on <a href="https://destinationlinux.org/kofi" target="_blank" rel="noopener noreferrer">Ko-Fi</a><br />
|
||||
Order Destination Linux <a href="https://teespring.com/destinationlinuxpodcast" target="_blank" rel="noopener noreferrer">Apparel</a></p>
|
||||
<p>Want to follow the show and hosts on social media?<br />
|
||||
You can find all of our social accounts at <a href="https://destinationlinux.org/contact" target="_blank" rel="noopener noreferrer">destinationlinux.org/contact</a></p>
|
|
@ -0,0 +1,4 @@
|
|||
<p>We review Purism’s Librem 15, the high performance 15.6″ laptop built for Linux with physical radio kill switches.</p>
|
||||
|
||||
<p>Plus the snap coming to a desktop near you, we report back from SeaGL & discuss some future changes to your humble weekly Linux talk show.</p><p><a href="https://jupitersignal.memberful.com/checkout?plan=52946" rel="payment">Support LINUX Unplugged</a></p>
|
||||
|
|
@ -0,0 +1 @@
|
|||
<table> <tr><td> <a href="https://www.reddit.com/r/unixporn/comments/r63k27/bspwm_my_bspwm_setup/"> <img src="https://preview.redd.it/40x4dmqv8u281.png?width=640&crop=smart&auto=webp&s=7349967a4692d057ce2710dc3d038e8a0d443401" alt="[bspwm] My bspwm setup" title="[bspwm] My bspwm setup" /> </a> </td><td>   submitted by   <a href="https://www.reddit.com/user/Bleyom"> /u/Bleyom </a> <br/> <span><a href="https://i.redd.it/40x4dmqv8u281.png">[link]</a></span>   <span><a href="https://www.reddit.com/r/unixporn/comments/r63k27/bspwm_my_bspwm_setup/">[comments]</a></span> </td></tr></table>
|
|
@ -0,0 +1 @@
|
|||
<p><img src="https://thumbnails.lbry.com/5Zq_kVlqt34" width="480" alt="thumbnail" title="Unvanquished Pits Aliens Against Humans In Fast-Paced Shooter" /></p>Unvanquished is a free, open-source first-person strategy game shooter. It is cross-platform, available on Windows, Mac and Linux. The game pits technologically advanced human soldiers against hordes of highly adaptable aliens. You can join either the Alien team or the Human team. <br /><br />REFERENCED:<br />► https://unvanquished.net/<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=5Zq_kVlqt34
|
|
@ -0,0 +1,16 @@
|
|||
<div class="date"> 6 Jan 2016</div>
|
||||
|
||||
<p>
|
||||
If you haven't used <a href="http://www.gnu.org/software/emacs/manual/html_node/emacs/Imenu.html">imenu</a> in Emacs, you should try it. It gives you
|
||||
a way to select all <i>top-level items</i> of a file... functions and
|
||||
constants in source code or headers in an org-mode file.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
I have a couple of suggestions to make the interface a bit nicer:
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<a href="Technical/Emacs/imenu.html">Read more...</a>
|
||||
</p>
|
||||
|
127
var/elfeed/db/data/b3/b38323b11beb2203c267aaf88753878779df4e8d
Normal file
127
var/elfeed/db/data/b3/b38323b11beb2203c267aaf88753878779df4e8d
Normal file
|
@ -0,0 +1,127 @@
|
|||
|
||||
<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
|
||||
<iframe loading="lazy" title="Linus Tech Tips Linux Challenge & Malware Found In WSL | Destination Linux 246" width="800" height="450" src="https://www.youtube.com/embed/SO_TMmS154M?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
|
||||
</div></figure>
|
||||
|
||||
|
||||
|
||||
<p>This week’s episode of Destination Linux, we’re going to discuss the Linux Challenge that the hosts of the WAN Show from Linus Tech Tips are doing. We’ll give our thoughts on this news and offer a helping hand to the WAN Show team. Then we’re going to discuss security concerns as Malware seems to be popping up in WSL. Plus we’ve also got our famous tips, tricks and software picks. All of this and so much more this week on Destination Linux. So whether you’re brand new to Linux and open source or a guru of sudo. This is the podcast for you.</p>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<h4>Subscribe to All DLN Shows in ONE Feed!</h4>
|
||||
|
||||
|
||||
|
||||
<p><a href="https://destinationlinux.network/feed/allshows">https://destinationlinux.network/feed/allshows</a></p>
|
||||
|
||||
|
||||
|
||||
<figure class="wp-block-image size-large is-resized"><a href="https://do.co/dln" target="_blank" rel="noopener"><img loading="lazy" src="https://destinationlinux.org/wp-content/uploads/2021/03/digital-ocean-hor.png" alt="" class="wp-image-1499" width="468" height="60"/></a><figcaption>Sponsored by: <a rel="noopener" href="https://do.co/dln" target="_blank">do.co/dln</a></figcaption></figure>
|
||||
|
||||
|
||||
|
||||
<figure class="wp-block-image size-large is-resized"><a href="https://bitwarden.com/dln" target="_blank" rel="noopener"><img loading="lazy" src="https://destinationlinux.org/wp-content/uploads/2020/07/bitwarden-banner-1.jpg" alt="" class="wp-image-2301" width="468" height="60" srcset="https://destinationlinux.org/wp-content/uploads/2020/07/bitwarden-banner-1.jpg 469w, https://destinationlinux.org/wp-content/uploads/2020/07/bitwarden-banner-1-300x39.jpg 300w, https://destinationlinux.org/wp-content/uploads/2020/07/bitwarden-banner-1-150x20.jpg 150w" sizes="(max-width: 468px) 100vw, 468px" /></a><figcaption>Sponsored by: <a href="https://bitwarden.com/dln" target="_blank" rel="noopener">bitwarden.com/dln</a></figcaption></figure>
|
||||
|
||||
|
||||
|
||||
<h4>Hosts of Destination Linux:</h4>
|
||||
|
||||
|
||||
|
||||
<p>Ryan (DasGeek) = <a href="https://dasgeekcommunity.com" target="_blank" rel="noopener">dasgeekcommunity.com</a><br>Michael Tunnell = <a href="https://tuxdigital.com" target="_blank" rel="noopener">tuxdigital.com</a><br>Jill Bryant = <a href="https://jilllinuxgirl.com" target="_blank" rel="noreferrer noopener">jilllinuxgirl.com</a><br>Noah Chelliah = <a href="http://asknoahshow.com" target="_blank" rel="noreferrer noopener">asknoahshow.com</a></p>
|
||||
|
||||
|
||||
|
||||
<h4>Want to Support the Show?</h4>
|
||||
|
||||
|
||||
|
||||
<p>Support us on Patreon = <a href="https://destinationlinux.org/patreon" target="_blank" rel="noopener">https://destinationlinux.org/patreon</a><br>Support us on Sponsus = <a href="https://destinationlinux.org/sponsus" target="_blank" rel="noopener">https://destinationlinux.org/sponsus</a><br>Destination Linux Network Store = <a href="https://destinationlinux.network/store" target="_blank" rel="noopener">http://dlnstore.com</a></p>
|
||||
|
||||
|
||||
|
||||
<h4>Want to follow the show and hosts on social media?</h4>
|
||||
|
||||
|
||||
|
||||
<p>You can find all of our social accounts at <a href="https://destinationlinux.org/contact">https://destinationlinux.org/contact</a></p>
|
||||
|
||||
|
||||
|
||||
<h3>Segment Index</h3>
|
||||
|
||||
|
||||
|
||||
<ul><li><a href="https://www.youtube.com/watch?v=SO_TMmS154M&t=00m00s" target="_blank" rel="noopener">00:00</a> = Welcome to DL 246</li><li><a href="https://www.youtube.com/watch?v=SO_TMmS154M&t=01m11s" target="_blank" rel="noopener">01:11</a> = Community Feedback: “Michael & Noah are wrong about self-hosting a mail server”</li><li><a href="https://www.youtube.com/watch?v=SO_TMmS154M&t=11m31s" target="_blank" rel="noopener">11:31</a> = DigitalOcean: App Platform ( <a href="https://do.co/dln" target="_blank" rel="noopener">https://do.co/dln</a> )</li><li><a href="https://www.youtube.com/watch?v=SO_TMmS154M&t=13m15s" target="_blank" rel="noopener">13:15</a> = <a href="https://www.youtube.com/watch?v=PvTCc0iXGcQ" target="_blank" rel="noopener">Linus Tech Tips’ Linux Challenge</a> (WAN Show)</li><li><a href="https://www.youtube.com/watch?v=SO_TMmS154M&t=15m45s" target="_blank" rel="noopener">15:45</a> = <a href="https://www.pcgamer.com/windows-11-pcs-can-hobble-gaming-performance/" target="_blank" rel="noopener">Windows 11 to Hurt Gaming Performance</a></li><li><a href="https://www.youtube.com/watch?v=SO_TMmS154M&t=29m18s" target="_blank" rel="noopener">29:18</a> = Bitwarden Password Manager ( <a href="https://bitwarden.com/dln" target="_blank" rel="noopener">https://bitwarden.com/dln</a> )</li><li><a href="https://www.youtube.com/watch?v=SO_TMmS154M&t=28m50s" target="_blank" rel="noopener">28:50</a> = Popcorn Outtake</li><li><a href="https://www.youtube.com/watch?v=SO_TMmS154M&t=31m26s" target="_blank" rel="noopener">31:26</a> = <a href="https://blog.lumen.com/no-longer-just-theory-black-lotus-labs-uncovers-linux-executables-deployed-as-stealth-windows-loaders/" target="_blank" rel="noopener">Malware Found In WSL</a> (Windows Subsystem for Linux)</li><li><a href="https://www.youtube.com/watch?v=SO_TMmS154M&t=42m36s" target="_blank" rel="noopener">42:36</a> = Linux Gaming: <a href="https://store.steampowered.com/app/305620/The_Long_Dark/" target="_blank" rel="noopener">The Long Dark</a></li><li><a href="https://www.youtube.com/watch?v=SO_TMmS154M&t=46m49s" target="_blank" rel="noopener">46:49</a> = Software Spotlight: <a href="https://help.sugarlabs.org/en/fototoon.html#about" target="_blank" rel="noopener">FotoToon</a></li><li><a href="https://www.youtube.com/watch?v=SO_TMmS154M&t=48m32s" target="_blank" rel="noopener">48:32</a> = Tip of the Week: How To Encrypt Your Disks</li><li><a href="https://www.youtube.com/watch?v=SO_TMmS154M&t=52m08s" target="_blank" rel="noopener">52:08</a> = <a href="https://fedoramagazine.org/announcing-fedora-35-beta/" target="_blank" rel="noopener">Fedora 35 Beta Testing</a> Event</li><li><a href="https://www.youtube.com/watch?v=SO_TMmS154M&t=54m34s" target="_blank" rel="noopener">54:34</a> = Outro</li></ul>
|
||||
|
||||
|
||||
|
||||
<h3>Tip of the Week:</h3>
|
||||
|
||||
|
||||
|
||||
<p>Use the fdisk command to find the device name for your USB Drive:</p>
|
||||
|
||||
|
||||
|
||||
<pre class="wp-block-code"><code>sudo fdisk -l</code></pre>
|
||||
|
||||
|
||||
|
||||
<p>Install cryptsetup package on your system:</p>
|
||||
|
||||
|
||||
|
||||
<pre class="wp-block-code"><code>sudo apt install cryptsetup</code></pre>
|
||||
|
||||
|
||||
|
||||
<p>Set up a new dm-crypt device in LUKS encryption mode:</p>
|
||||
|
||||
|
||||
|
||||
<pre class="wp-block-code"><code>sudo cryptsetup luksFormat /dev/sdb</code></pre>
|
||||
|
||||
|
||||
|
||||
<p>Open the device and setup mapping with name provided (e.g. USBDrive in this example):</p>
|
||||
|
||||
|
||||
|
||||
<pre class="wp-block-code"><code>sudo cryptsetup luksOpen /dev/sdb USBDriv</code></pre>
|
||||
|
||||
|
||||
|
||||
<p>Verify the new virtual block device mapper:</p>
|
||||
|
||||
|
||||
|
||||
<pre class="wp-block-code"><code>ls -arlt /dev/mapper | tail</code></pre>
|
||||
|
||||
|
||||
|
||||
<p>Run ext4 filesystem directly on that device:</p>
|
||||
|
||||
|
||||
|
||||
<pre class="wp-block-code"><code>sudo mkfs -t ext4 /dev/mapper/USBDrive</code></pre>
|
||||
|
||||
|
||||
|
||||
<p>Mount the device your filesystem:</p>
|
||||
|
||||
|
||||
|
||||
<pre class="wp-block-code"><code>sudo mount /dev/mapper/USBDrive /USBDrive</code></pre>
|
||||
|
||||
|
||||
|
||||
<p>Verify the the mapper is properly mounted using the df command:</p>
|
||||
|
||||
|
||||
|
||||
<pre class="wp-block-code"><code>df -h /USBDrive/</code></pre>
|
|
@ -0,0 +1 @@
|
|||
<!-- SC_OFF --><div class="md"><p>Does anyone know of anything similar to lispy for non-lisp languages? I work in JavaScript a lot for work, and every single time I find myself missing the nice editing paradigm that lispy provides for me over my normal evil tricks.</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/HollowTreeBear"> /u/HollowTreeBear </a> <br/> <span><a href="https://www.reddit.com/r/emacs/comments/q81mun/lispy_lispyville_for_javascript/">[link]</a></span>   <span><a href="https://www.reddit.com/r/emacs/comments/q81mun/lispy_lispyville_for_javascript/">[comments]</a></span>
|
199
var/elfeed/db/data/b3/b396ed335ed6e495362e97322e1a7001e31124e0
Normal file
199
var/elfeed/db/data/b3/b396ed335ed6e495362e97322e1a7001e31124e0
Normal file
|
@ -0,0 +1,199 @@
|
|||
<p>Hello and welcome to another issue of <em>This Week in Rust</em>!
|
||||
<a href="http://rust-lang.org">Rust</a> is a programming language empowering everyone to build reliable and efficient software.
|
||||
This is a weekly summary of its progress and community.
|
||||
Want something mentioned? Tweet us at <a href="https://twitter.com/ThisWeekInRust">@ThisWeekInRust</a> or <a href="https://github.com/rust-lang/this-week-in-rust">send us a pull request</a>.
|
||||
Want to get involved? <a href="https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md">We love contributions</a>.</p>
|
||||
<p><em>This Week in Rust</em> is openly developed <a href="https://github.com/rust-lang/this-week-in-rust">on GitHub</a>.
|
||||
If you find any errors in this week's issue, <a href="https://github.com/rust-lang/this-week-in-rust/pulls">please submit a PR</a>.</p>
|
||||
<h2>Updates from Rust Community</h2>
|
||||
<h3>Official</h3>
|
||||
<ul>
|
||||
<li><a href="https://blog.rust-lang.org/2021/12/08/survey-launch.html">Launching the 2021 State of Rust Survey</a></li>
|
||||
</ul>
|
||||
<h3>Foundation</h3>
|
||||
<ul>
|
||||
<li><a href="https://foundation.rust-lang.org/posts/2021-12-13-member-spotlight-automata/">Member Spotlight: Automata</a></li>
|
||||
</ul>
|
||||
<h3>Newsletters</h3>
|
||||
<ul>
|
||||
<li><a href="https://wasmweekly.news/issue-161/">WebAssembly Weekly</a></li>
|
||||
<li><a href="https://gamedev.rs/news/028/">This Month in Rust GameDev #28 - November 2021</a></li>
|
||||
</ul>
|
||||
<h3>Project/Tooling Updates</h3>
|
||||
<ul>
|
||||
<li><a href="https://rust-analyzer.github.io/thisweek/2021/12/13/changelog-107.html">Rust Analyzer Changelog #107</a></li>
|
||||
<li><a href="https://bytecodealliance.org/articles/cranelift-progress-2021">Cranelift Progress Report: A Look Back at 2021</a></li>
|
||||
<li><a href="https://lore.kernel.org/lkml/20211206140313.5653-1-ojeda@kernel.org/">Rust for Linux</a></li>
|
||||
<li><a href="https://rsadsb.github.io/v0.4.0.html">Announcing rsadsb v0.4.0: View Airplanes in the sky with Rust</a></li>
|
||||
<li><a href="https://sixtyfps.io/thisweek/2021-12-13.html">SixtyFPS (GUI crate): Changelog for 12th of December 2021</a></li>
|
||||
<li><a href="https://blog.guillaume-gomez.fr/articles/2021-12-14+sysinfo%3A+version+0.22+and+FreeBSD+support">sysinfo: version 0.22 and FreeBSD support</a></li>
|
||||
<li><a href="https://www.reddit.com/r/rust/comments/rbvmib/announcing_the_grafana_plugin_sdk_for_rust/">Announcing the Grafana Plugin SDK for Rust</a></li>
|
||||
<li><a href="https://www.reddit.com/r/rust/comments/reo75u/enzyme_towards_stateoftheart_autodiff_in_rust/">Announcing Enzyme for Rust</a></li>
|
||||
<li><a href="https://weekly.databend.rs/2021-12-15-databend-weekly/">This week in Databend #20: an elastic and reliable cloud warehouse</a></li>
|
||||
<li><a href="https://www.fluvio.io/news/this-week-in-fluvio-0016/">This week in Fluvio #16: the programmable streaming platform</a></li>
|
||||
<li><a href="https://orhun.dev/blog/git-cliff-0.5.0/">git-cliff 0.5.0 (changelog generator)</a></li>
|
||||
</ul>
|
||||
<h3>Observations/Thoughts</h3>
|
||||
<ul>
|
||||
<li><a href="https://blog.ysndr.de/posts/essays/2021-12-12-rust-for-iot/">Rust as a platform for IoT</a></li>
|
||||
<li><a href="https://madsravn.dk/posts/using-liquid-rust-with-serde">https://madsravn.dk/posts/using-liquid-rust-with-serde</a></li>
|
||||
<li><a href="https://www.unwoundstack.com/blog/rust-error-handling.html">Rust Error Handling</a></li>
|
||||
<li><a href="https://dystroy.org/blog/how-not-to-learn-rust/">How not to learn Rust</a></li>
|
||||
<li>[audio] <a href="https://rustacean-station.org/episode/049-lily-mara/">Refactoring to Rust with Lily Mara</a></li>
|
||||
<li>[video] <a href="https://www.youtube.com/watch?v=WaTEjSHFMbY">Talking about the Rust Programming Language with Luca Palmieri</a></li>
|
||||
</ul>
|
||||
<h3>Rust Walkthroughs</h3>
|
||||
<ul>
|
||||
<li><a href="https://nnethercote.github.io/2021/12/08/a-brutally-effective-hash-function-in-rust.html">A brutally effective hash function in Rust</a></li>
|
||||
<li><a href="https://aidancully.blogspot.com/2021/12/less-painful-linear-types.html">Less Painful Linear Types</a></li>
|
||||
<li><a href="https://ctprods.cyprientaque.com/blog/a-rust-api-pattern-actix">A Rust Api pattern (Actix)</a></li>
|
||||
<li><a href="https://nickb.dev/blog/authoring-a-simd-enhanced-wasm-library-with-rust">Authoring a SIMD enhanced Wasm library with Rust</a></li>
|
||||
<li><a href="https://21-lessons.com/getting-better-insights-into-your-rust-applications/">Getting better insights into your Rust applications</a></li>
|
||||
<li><a href="https://vinted.engineering/2021/02/15/validating-json-input-in-rust-web-services/">Validating JSON input in Rust web services</a></li>
|
||||
<li>[video] <a href="https://www.youtube.com/watch?v=yIkUWT4QXCA">Building a networked Web and Native app with Rust</a></li>
|
||||
<li>[series] [video] <a href="https://www.youtube.com/watch?v=FGi8evJFdnw">rg3d - live game development #4</a></li>
|
||||
</ul>
|
||||
<h3>Miscellaneous</h3>
|
||||
<ul>
|
||||
<li><a href="https://medium.com/concordium/the-devx-initiative-sponsorship-program-goals-and-principles-e640063eeaa7">The DevX Initiative Sponsorship Program: Goals and Principles</a></li>
|
||||
<li><a href="https://relay.dev/blog/2021/12/08/introducing-the-new-relay-compiler/">Introducing the new Relay compiler</a></li>
|
||||
<li>[DE] <a href="https://www.heise.de/news/Linux-Kernel-Rust-Entwicklung-schreitet-mit-neuer-Edition-voran-6287775.html">Linux-Kernel: Rust-Entwicklung schreitet mit neuer Edition voran</a></li>
|
||||
</ul>
|
||||
<h2>Crate of the Week</h2>
|
||||
<p>This week's crate is <a href="https://crates.io/crates/efg">efg</a>, a proc macro to allow boolean expression like syntax for <code>#[cfg]</code>s.</p>
|
||||
<p>Thanks to <a href="https://users.rust-lang.org/t/crate-of-the-week/2704/991">farnbams</a> for the suggestion!</p>
|
||||
<p><a href="https://users.rust-lang.org/t/crate-of-the-week/2704">Please submit your suggestions and votes for next week</a>!</p>
|
||||
<h2>Call for Participation</h2>
|
||||
<p>Always wanted to contribute to open-source projects but didn't know where to start?
|
||||
Every week we highlight some tasks from the Rust community for you to pick and get started!</p>
|
||||
<p>Some of these tasks may also have mentors available, visit the task page for more information.</p>
|
||||
<p><strong>Ockam</strong></p>
|
||||
<ul>
|
||||
<li><a href="https://github.com/ockam-network/ockam/issues/2358">Change no_main feature on ockam_macros to an argument</a></li>
|
||||
<li><a href="https://github.com/ockam-network/ockam/issues/2357">Reduce the features that the ockam_macros crate requires from syn</a></li>
|
||||
</ul>
|
||||
<p>If you are a Rust project owner and are looking for contributors, please submit tasks <a href="https://users.rust-lang.org/t/twir-call-for-participation/4821">here</a>.</p>
|
||||
<h2>Updates from the Rust Project</h2>
|
||||
<p>315 pull requests were <a href="https://github.com/search?q=is%3Apr+org%3Arust-lang+is%3Amerged+merged%3A2021-12-06..2021-12-13">merged in the last week</a></p>
|
||||
<ul>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/91643">asm: allow using r9 (ARM) and x18 (AArch64) if they are not reserved by the current target</a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/83174">suggest using a temporary variable to fix borrowck errors</a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/91503">tweak "call this function" suggestion to have smaller span</a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/91769">tweak assoc type obligation spans</a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/91815">better span for unexpected normalization failure in CTFE engine</a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/91718">give more help in the unaligned_references lint</a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/91245">suggest casting between <code>i</code>/<code>u32</code> and <code>char</code></a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/91337">add a suggestion if <code>macro_rules</code> is misspelled</a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/91353">avoid cloning refcounted types during folding</a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/90423">deduplicate projection sub-obligations</a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/91764">do not ICE when suggesting elided lifetimes on non-existent spans</a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/91531">do not add <code>;</code> to expected tokens list when it's wrong</a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/91634">do not attempt to suggest help for overly malformed struct/function call</a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/91476">improve 'cannot contain emoji' error</a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/91548">add <code>spin_loop</code> hint for RISC-V architecture</a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/91512">override <code>Iterator::advance</code>(<code>_back</code>)<code>_by</code> for <code>array::IntoIter</code></a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/85013">replace dominators algorithm with simple Lengauer-Tarjan</a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/91127">add <code><*{const|mut} T>::{to|from}_bits</code></a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/91341">add <code>array::IntoIter::</code>{<code>empty</code>, <code>from_raw_parts</code>}</a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/91515">add <code>rsplit_array</code> variants to slices and arrays</a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/90741">make <code>Option::cloned</code> <code>const</code></a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/91824">make <code>(*mut T)::write_bytes</code> <code>const</code></a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/90270">make <code>Borrow</code> and <code>BorrowMut</code> impls <code>const</code></a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/91806">make <code>Unique</code>s methods <code>const</code></a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/90081">make <code>intrinsics::write_bytes</code> <code>const</code></a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/91086">implement <code>TryFrom<&'_ mut [T]></code> for <code>[T; N]</code></a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/91645">implement <code>core::future::join!</code></a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/87599">implement concat_bytes!</a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/81156">provide the <code>ReadBuf</code> abstraction</a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/90207">stabilise <code>feature(const_generics_defaults)</code></a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/91091">stabilize <code>ControlFlow::</code>{<code>is_break</code>, <code>is_continue</code>}</a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/91855">stabilize <code>const_cstr_unchecked</code></a></li>
|
||||
<li><a href="https://github.com/rust-lang/cargo/pull/10191">cargo: improve I/O error message for fingerprint of build script</a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust/pull/91682">rustdoc: show type layout for type aliases</a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust-clippy/pull/8071">clippy: add new lint to warn when <code>#[must_use]</code> attribute should be used on a method</a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust-clippy/pull/8080">clippy: fix FP on <code>question_mark</code> if returned object is not local</a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust-clippy/pull/8100">clippy: fix <code>blocks_in_if_conditions</code> false positive</a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust-clippy/pull/8086">clippy: fix bad suggestion on <code>option_if_let_else</code> when there is complex subpat</a></li>
|
||||
<li><a href="https://github.com/rust-lang/rust-clippy/pull/8030">clippy: ignore associated types in traits when considering type complexity</a></li>
|
||||
</ul>
|
||||
<h3>Rust Compiler Performance Triage</h3>
|
||||
<p>This week's report started with 6 regressions; after eliminating truly obvious noise, we are left with just 2 minor regressions. Of the cases that regressed, I think the only interesting one is keccak (regressed by 1.73% in PR #91549). But don't be too depressed: keccak was also improved up to 23% by PR #85013 (!); thanks to @<strong>simulacrum</strong> for that PR.</p>
|
||||
<p>Triage done by <strong>@pnkfelix</strong>.
|
||||
Revision range: <a href="https://perf.rust-lang.org/?start=e2116acae59654bfab2a9729a024f3e2fd6d4b02&end=404c8471aba60c2d837fa728e7c729a0f52d5830&absolute=false&stat=instructions%3Au">e2116a..404c847</a></p>
|
||||
<p>2 Regressions, 5 Improvements, 3 Mixed; 1 of them in rollups
|
||||
48 comparisons made in total</p>
|
||||
<p><a href="https://github.com/rust-lang/rustc-perf/blob/master/triage/2021-12-14.md">Full report here</a></p>
|
||||
<h3><a href="https://github.com/rust-lang/rfcs/commits/master">Approved RFCs</a></h3>
|
||||
<p>Changes to Rust follow the Rust <a href="https://github.com/rust-lang/rfcs#rust-rfcs">RFC (request for comments) process</a>. These
|
||||
are the RFCs that were approved for implementation this week:</p>
|
||||
<ul>
|
||||
<li><em>No RFCs were approved this week.</em></li>
|
||||
</ul>
|
||||
<h3>Final Comment Period</h3>
|
||||
<p>Every week <a href="https://www.rust-lang.org/team.html">the team</a> announces the
|
||||
'final comment period' for RFCs and key PRs which are reaching a
|
||||
decision. Express your opinions now.</p>
|
||||
<h4><a href="https://github.com/rust-lang/rfcs/labels/final-comment-period">RFCs</a></h4>
|
||||
<ul>
|
||||
<li>[disposition: merge] <a href="https://github.com/rust-lang/rfcs/pull/3208">Amend RFC 2996 to replace Stream with AsyncIterator</a></li>
|
||||
<li>[disposition: merge] <a href="https://github.com/rust-lang/rfcs/pull/3184">Thread local Cell methods.</a></li>
|
||||
</ul>
|
||||
<h4><a href="https://github.com/rust-lang/rust/issues?q=is%3Aopen+label%3Afinal-comment-period+sort%3Aupdated-desc">Tracking Issues & PRs</a></h4>
|
||||
<ul>
|
||||
<li>[disposition: merge] <a href="https://github.com/rust-lang/rust/issues/91714">Make rustdoc --passes and rustdoc --no-defaults have no effect</a></li>
|
||||
<li>[disposition: merge] <a href="https://github.com/rust-lang/rust/pull/89926">make Instant::{duration_since, elapsed, sub} saturating and remove workarounds</a></li>
|
||||
<li>[disposition: close] <a href="https://github.com/rust-lang/rust/issues/44524">Tracking issue for RFC 2115: In-band lifetime bindings</a></li>
|
||||
</ul>
|
||||
<h3><a href="https://github.com/rust-lang/rfcs/pulls">New RFCs</a></h3>
|
||||
<ul>
|
||||
<li><em>No new RFCs were published this week.</em></li>
|
||||
</ul>
|
||||
<h2>Upcoming Events</h2>
|
||||
<p>Rusty Events between 12/15/2021 - 1/15/2022 🦀</p>
|
||||
<h3>Online</h3>
|
||||
<ul>
|
||||
<li><a href="https://www.meetup.com/rust-and-c-plus-plus-in-cardiff/events/282313169/">December 15, 2021 | Cardiff, UK | <strong>Rust Book Study Session - Error Handling & Generic Types, Traits, and Lifetimes</strong> | Rust and C++ Cardiff</a></li>
|
||||
<li><a href="https://www.meetup.com/Rust-Linz/events/282559064/">December 16, 2021 | Linz, AT | <strong>Rust Meetup Linz - 17th Edition</strong> | Rust Linz</a></li>
|
||||
<li><a href="https://rust-meetup.ir">December 17, 2021 | Various cities, IR | <strong>The Third Rust Iran online meetup</strong> | Rust Iran Meetup</a></li>
|
||||
<li><a href="https://www.meetup.com/Vancouver-Rust/events/nwcmpsyccqbtb/">December 18, 2021 | Vancouver, BC, CA | <strong>Your Rust Web Development Toolset</strong> | Vancouver Rust</a></li>
|
||||
<li><a href="https://www.meetup.com/Los-Gatos-Rust-Reading-Group/events/282687733/">December 21, 2021 | Los Gatos, CA, US | <strong>Book #24 - Rust for Rustaceans - Chapter 1 (session 3)</strong> | Los Gatos Reading Group</a> | <a href="https://www.meetup.com/the-south-padre-island-reading-group/events/282687761/">Alternative Link (South Padre Island, TX Reading Group)</a></li>
|
||||
<li><a href="https://www.meetup.com/RustDC/events/vdhxgsyccqbcc/">December 21, 2021 | Washington, DC, US | <strong>Mid-month Rustful</strong> | Rust DC</a></li>
|
||||
<li><a href="https://www.meetup.com/Rust-Community-Stuttgart/events/ttjjqsyccqbfc/">December 23, 2021 | Stuttgart, DE | <strong>Rust-Meetup</strong> | Rust Community Stuttgart</a></li>
|
||||
<li><a href="https://www.meetup.com/Dallas-Rust/events/jqxqwryccqblc/">December 28, 2021 | Dallas, TX, US | <strong>Dallas Rust - Last Tuesday</strong> | Dallas Rust</a></li>
|
||||
<li><a href="https://www.meetup.com/indyrs/events/qwtdjsydccbhb/">January 5, 2022 | Indianapolis, IN, US | <strong>Indy.rs - with Social Distancing</strong> | Indy Rust</a></li>
|
||||
<li><a href="https://www.meetup.com/rust-noris/events/282344613/">January 6, 2022 | Nürnberg, DE | <strong>Rust Nürnberg online #8</strong>| Rust Nuremberg</a></li>
|
||||
<li><a href="https://www.google.com/calendar/embed?src=apd9vmbc22egenmtu5l6c5jbfc%40group.calendar.google.com">January 8, 2022 | Various cities | <strong>Rust GameDev Monthly Meetup</strong> | Rust GameDev</a></li>
|
||||
<li><a href="https://www.meetup.com/Seattle-Rust-Meetup/events/gskksrydccbpb/">January 11, 2022 | Seattle, WA, US | <strong>Monthly meetup</strong> | Seattle Rust Meetup</a></li>
|
||||
<li><a href="https://www.meetup.com/boulder-elixir-rust/events/zvxcsrydccbqb/">January 12, 2022 | Boulder, CO, US | <strong>Monthly Meetup</strong> | Boulder Elixir and Rust</a></li>
|
||||
<li><a href="https://www.meetup.com/Rust-Los-Angeles/events/282580016/">January 12, 2022 | Los Angeles, CA, US | <strong>Live Coding Session - Mob Programming a Rust Code Kata [Virtual] Jan. 2022</strong> | Rust Los Angeles</a></li>
|
||||
<li><a href="https://www.meetup.com/Rust-Community-Stuttgart/events/gjrtqsydccbqb/">January 12, 2022 | Stuttgart, DE | <strong>Rust-Meetup</strong> | Rust Community Stuttgart</a></li>
|
||||
</ul>
|
||||
<h3>North America</h3>
|
||||
<ul>
|
||||
<li><a href="https://www.meetup.com/rust-atx/events/282472182">December 16, 2021 | Austin, TX, US | <strong>Rust Lunch</strong> | Rust ATX</a></li>
|
||||
<li><a href="https://www.meetup.com/Rust-ATL/events/lhpkmsydccbqb/">January 12, 2022 | Atlanta, GA, US | <strong>Grab a beer with fellow Rustaceans</strong> | Rust Atlanta</a></li>
|
||||
<li><a href="https://www.meetup.com/columbus-rs/events/dpkhgrydccbrb/">January 13, 2022 | Columbus, OH, US | <strong>Monthly Meeting</strong> | Columbus Rust Society</a></li>
|
||||
</ul>
|
||||
<p>If you are running a Rust event please add it to the <a href="https://www.google.com/calendar/embed?src=apd9vmbc22egenmtu5l6c5jbfc%40group.calendar.google.com">calendar</a> to get
|
||||
it mentioned here. Please remember to add a link to the event too.
|
||||
Email the <a href="mailto:community-team@rust-lang.org">Rust Community Team</a> for access.</p>
|
||||
<h1>Rust Jobs</h1>
|
||||
<p><strong>Kraken</strong></p>
|
||||
<ul>
|
||||
<li><a href="https://jobs.lever.co/kraken/4019a818-4a7b-46ef-9225-c53c7a7f238c">Backend Engineer - Rust - Core Backend (Remote)</a></li>
|
||||
<li><a href="https://jobs.lever.co/kraken/fe1e07f4-6d7c-4f65-9a8f-27cf3b3fd2b1">Backend Engineer, Kraken Futures - Rust (Remote)</a></li>
|
||||
<li><a href="https://jobs.lever.co/kraken/2863623f-13c9-4f50-992d-7c25736a60f9">Senior Rust Engineer - Banking (Remote)</a></li>
|
||||
</ul>
|
||||
<p><em>Tweet us at <a href="https://twitter.com/ThisWeekInRust">@ThisWeekInRust</a> to get your job offers listed here!</em></p>
|
||||
<h1>Quote of the Week</h1>
|
||||
<blockquote>
|
||||
<p>This is safer than you may think, because those who need async tend to know it themselves and
|
||||
don't ask "should I use async" question. In other words, asking itself is a signal that answer is
|
||||
no. MITM proxy case was a rare exception.</p>
|
||||
</blockquote>
|
||||
<p>– <a href="https://users.rust-lang.org/t/examples-of-high-performance-rust-multi-thread-network-app-w-o-async/68513/4">Seo Sanghyeon on rust-users</a></p>
|
||||
<p>Thanks to <a href="https://users.rust-lang.org/t/twir-quote-of-the-week/328/1146">Zeroexcuses</a> for the suggestion!</p>
|
||||
<p><a href="https://users.rust-lang.org/t/twir-quote-of-the-week/328">Please submit quotes and vote for next week!</a></p>
|
||||
<p><em>This Week in Rust is edited by: <a href="https://github.com/nellshamrell">nellshamrell</a>, <a href="https://github.com/llogiq">llogiq</a>, <a href="https://github.com/cdmistman">cdmistman</a>, <a href="https://github.com/ericseppanen">ericseppanen</a>, <a href="https://github.com/extrawurst">extrawurst</a>, <a href="https://github.com/andrewpollack">andrewpollack</a>, <a href="https://github.com/U007D">U007D</a>, <a href="https://github.com/kolharsam">kolharsam</a>, <a href="https://github.com/joelmarcey">joelmarcey</a>, <a href="https://github.com/mariannegoldin">mariannegoldin</a>.</em></p>
|
||||
<p><em>Email list hosting is sponsored by <a href="https://foundation.rust-lang.org/">The Rust Foundation</a></em></p>
|
||||
<p><small><a href="https://www.reddit.com/r/rust/comments/rhgfiw/this_week_in_rust_421/">Discuss on r/rust</a></small></p>
|
|
@ -0,0 +1 @@
|
|||
<p><img src="https://thumbnails.lbry.com/ZC-aTN_tv6M" width="480" alt="thumbnail" title="How To Handle A Data Leak feat Twitch" /></p>Recently Twitch had a massive data leak of source code, creator payouts, and information about a steam competitor but I thought I'd be good to talk about the follow up that Twitch did which I honestly don't think was that bad.<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 />Twitch Confirms Leak: https://twitter.com/Twitch/status/1445770441176469512<br />Twitch Talks About Data: https://twitter.com/Twitch/status/1445985601174392835<br />Stream Key Reset: https://twitter.com/Twitch/status/1446033897234513920<br />Twitch Leak: https://blog.twitch.tv/en/2021/10/06/updates-on-the-twitch-security-incident/?utm_referrer=https://t.co/<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 />🎵 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=ZC-aTN_tv6M
|
|
@ -0,0 +1 @@
|
|||
<p><img src="https://thumbnails.lbry.com/hpZBYcD3ysY" width="480" alt="thumbnail" title="How we can reach Normies with RSS" /></p>A very simple idea that just requires a little knowledge of RSS/XML and cell phone development. I think it could go a long way in making things from our side of the internet accessible to normies who can't be bothered to use phones outside of the very narrow class of behavior they are wont to.<br /><br />My website: https://lukesmith.xyz<br />Get all my videos off YouTube: https://videos.lukesmith.xyz<br />or Odysee: https://odysee.com/$/invite/@Luke:7<br /><br />Please donate: https://donate.lukesmith.xyz<br /><br />OR affiliate links to things l use:<br />https://www.vultr.com/?ref=8384069-6G Get a VPS and host a website or server for anything else.<br />https://www.epik.com/?affid=we2ro7sa6 Get a cheap and reliable domain name with Epik.<br />...<br />https://www.youtube.com/watch?v=hpZBYcD3ysY
|
|
@ -0,0 +1,4 @@
|
|||
<p>Our world has forever changed with Microsoft’s announcement of SQL server for Linux. We get a little nostalgic. Plus a look at the new OwnCloud release & updates on some of our favorite projects.</p>
|
||||
|
||||
<p>Then we take a look at Shashlik which promises to transparently run Android apps on your Linux desktop & more!</p><p><a href="https://jupitersignal.memberful.com/checkout?plan=52946" rel="payment">Support LINUX Unplugged</a></p>
|
||||
|
|
@ -0,0 +1 @@
|
|||
<p>As followers of Jesus, how can we know we are making the “right” choice in situations the Bible doesn’t address? How can we know the difference between what’s good and bad? In this episode, Tim, Jon, and Carissa talk about the Bible’s purpose as wisdom literature designed to reveal God’s wisdom to humanity––even for complex circumstances it doesn’t explicitly address.</p><p><a href="https://bibleproject.com/podcasts/the-bible-project-podcast/">View full show notes from this episode →</a></p><p>Timestamps </p><ul><li>Part one (0-13:20)</li><li>Part two (13:20-19:45)</li><li>Part three (19:45-31:00)</li><li>Part four (31:00-43:15)</li><li>Part five (43:15-55:20)</li><li>Part six (55:20-1:01:50)</li></ul><p>Referenced Resources</p><ul><li>Interested in more? Check out <a href="https://bibleproject.com/tim-mackie/">Tim’s library here.</a></li></ul><p>Show Music </p><ul><li>“Defender (Instrumental)” by TENTS</li><li>“Loving Someone You Lost” by The Field Tapes</li><li>“Vexento” by Yesterday on Repeat</li><li>“Everything Fades to Blue” by Sleepy Fish</li></ul><p>Show produced by Cooper Peltz. Edited by Dan Gummel and Zach McKinley. Show notes by Lindsey Ponder. </p><p>Powered and distributed by Simplecast.</p>
|
|
@ -0,0 +1 @@
|
|||
<p><a href="https://thebibleproject.com/podcast/tale-two-trees/?utm_medium=podcast&utm_source=podcast_shownotes&utm_campaign=tree_of_life&utm_content=description_link">View full show notes from this episode →</a></p><p>Resources</p><ul><li><a href="https://thebibleproject.com/videos/books-solomon/">How to Read the Bible: The Books of Solomon</a></li></ul><p>Music</p><ul><li>Defender Instrumental by Tents</li></ul><p>Show produced by Dan Gummel.</p><p>Powered and distributed by Simplecast.</p>
|
|
@ -0,0 +1,12 @@
|
|||
<div class="date">9 Feb 2014</div>
|
||||
|
||||
<p>
|
||||
Using functional programming techniques and the standard functions
|
||||
from Underscore to generate random numbers that favor particular
|
||||
numbers. Useful for picking colors.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<a href="Technical/Functional/clustered-random-numbers.html">Read more...</a>
|
||||
</p>
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
<p><div class="video-container"><iframe src="https://www.youtube-nocookie.com/embed/lMEwCCbLC5o?feature=oembed&start&end&wmode=opaque&loop=0&controls=1&mute=0&rel=0&modestbranding=1" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div></p>
|
||||
<p></p>
|
||||
<p>On this episode of Destination Linux, we discuss the announcement for Linux 5.0. We check out some new releases for Funtoo Linux, UBports’ Ubuntu Touch, Tilix and more. Later in the show, we’ll talk about some news from CES, an ALL-in-One PC from Entroware and then some Linux Gaming news. All that and much more including our Tips, Tricks and Software Spotlight picks!<br />
|
||||
<span id="more-1120"></span></p>
|
||||
<p>Sponsored by: <a href="https://do.co/dl" target="_blank" rel="noopener noreferrer">do.co/dl</a><br />
|
||||
<a href="https://do.co/dl" target="_blank" rel="noopener noreferrer"><img loading="lazy" src="https://destinationlinux.org/wp-content/uploads/2019/01/digital-ocean-banner.png" alt="" width="468" height="60" class="alignnone size-full wp-image-1499" /></a></p>
|
||||
<p>Hosts of Destination Linux:<br />
|
||||
<strong>Ryan</strong>, aka DasGeek = <a href="https://dasgeekcommunity.com">https://dasgeekcommunity.com</a><br />
|
||||
<strong>Michael</strong> of TuxDigital = <a href="https://tuxdigital.com">https://tuxdigital.com</a><br />
|
||||
<strong>Zeb</strong>, aka Zebedeeboss = <a href="https://youtube.com/zebedeeboss">https://youtube.com/zebedeeboss</a><br />
|
||||
<strong>Noah</strong> of Ask Noah Show = <a href="http://asknoahshow.com">http://asknoahshow.com</a></p>
|
||||
<p>Want to Support the Show?<br />
|
||||
Support on <a href="https://destinationlinux.org/patreon">Patreon</a><br />
|
||||
Order Destination Linux <a href="https://teespring.com/destinationlinuxpodcast">Apparel</a></p>
|
||||
<p>Want to follow the show and hosts on social media?<br />
|
||||
You can find all of our social accounts at <a href="https://destinationlinux.org/contact">destinationlinux.org/contact</a></p>
|
||||
<p>—</p>
|
||||
<p>Topics covered in this episode:</p>
|
||||
<p><a href="https://www.zdnet.com/article/linux-5-is-on-the-way/">Linux 5.0 Is On It’s Way</a><br />
|
||||
<a href="https://www.funtoo.org/Release_Notes/1.3-release">Funtoo Linux 1.3 Released</a><br />
|
||||
<a href="https://ubports.com/blog/ubports-blog-1/post/ubuntu-touch-ota-7-release-192">UBPorts Releases Ubuntu Touch OTA-7</a><br />
|
||||
<a href="https://www.omgubuntu.co.uk/2019/01/tilix-terminal-app-new-update-icon">Tilix 1.8.7</a><br />
|
||||
<a href="https://www.phoronix.com/scan.php?page=news_item&px=Chrome-73-Linux-Mojo-Video-Dec">Chrome 73 Enables Mojo Video Decoder On Linux</a><br />
|
||||
<a href="https://www.entroware.com/store/ares">Entroware New Ares All In One</a><br />
|
||||
<a href="https://www.ces.tech/">CES Coverage</a><br />
|
||||
<a href="https://www.gamingonlinux.com/articles/13-of-the-250-most-highly-rated-games-on-steam-support-linux-even-more-when-counting-steam-play.13294">132 Of 250 Most Played Games Run On Linux</a><br />
|
||||
<a href="https://www.omgubuntu.co.uk/2019/01/supertuxkart-online-beta-testing">SuperTuxKart Multiplayer Available Now</a><br />
|
||||
<a href="https://www.gamingonlinux.com/articles/smith-and-winston-the-beautiful-voxel-based-twin-stick-shooter-with-a-focus-on-exploration-is-now-on-steam.13312">Smith and Winston Now On Steam</a></p>
|
||||
<p>—</p>
|
||||
<p>Tips & Tricks:<br />
|
||||
This week in Ryan’s courses they were going over vi/vim: “I have to be honest, I was dreading it a little bit. But, after going through the course I felt a lot more comfortable using vi/vim and the keyboard shortcuts made a little more sense. However, there was some additional homework they suggested which is executed by typing ‘vimtutor’ in your terminal. This is a 20-30 minute tutorial that is hands on using the commands you can run through on your own if you’re wanting to get more comfortable with vi/vim.”</p>
|
||||
<p>Software Spotlight:<br />
|
||||
<a href="http://multibootusb.org/">MultiBoot USB</a></p>
|
|
@ -0,0 +1,3 @@
|
|||
<p>Bozhidar Batsov has a splendid tip over at <a href="https://emacsredux.com">Emacs Redux</a>. I’m pretty sure he’s mentioned it before but it’s so useful it bears repeating. The tip is <a href="https://emacsredux.com/blog/2021/09/29/make-script-files-executable-automatically/">how to make scripts executable</a>. “Scripts” means a file that has a shebang line. That is, a line that starts with <code>#!</code> followed by an application to execute.</p>
|
||||
<p>The usual workflow is to write the script, save the file, and then change its permissions to make it executable. But it turns out that Emacs provides a better—or at least easier—way. The trick is to use the <code>executable-make-buffer-file-executable-if-script-p</code> command. It checks for the shebang line, makes sure that no execute bits are already set, and if not sets the execute bits respecting the umask.</p>
|
||||
<p>The usual procedure is to call <code>executable-make-buffer-file-executable-if-script-p</code> from a hook function as described by Batsov in his post. If you’ve every written a script and tried to run it only to discover that it’s not executable, this tip will save you some time and frustration.</p>
|
104
var/elfeed/db/data/b3/b3fbcfa52b3cbf7d41d291db1b7a328450f268a5
Normal file
104
var/elfeed/db/data/b3/b3fbcfa52b3cbf7d41d291db1b7a328450f268a5
Normal file
|
@ -0,0 +1,104 @@
|
|||
<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:</p>
|
||||
|
||||
<p>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>- Article: <a href='https://www.ancient-hebrew.org/ancient-alphabet/tav.htm'>The Ancient Hebrew Alphabet</a></p>
|
||||
|
||||
<p>- <a href='https://www.biblegateway.com/passage/?search=Revelation+14%3A11&version=ESV'>Revelation 14:11</a></p>
|
||||
|
||||
<p>- <a href='https://www.biblegateway.com/passage/?search=Revelation+15%3A2&version=ESV'>Revelation 15:2</a></p>
|
||||
|
||||
<p>- <a href='https://www.biblegateway.com/passage/?search=Revelation+19%3A20&version=ESV'>Revelation 19:20</a></p>
|
||||
|
||||
<p>- <a href='https://www.biblegateway.com/passage/?search=Revelation+9%3A4&version=ESV'>Revelation 9:4</a></p>
|
||||
|
||||
<p>- <a href='https://www.biblegateway.com/passage/?search=ezekiel+1&version=ESV'>Ezekiel 1</a></p>
|
||||
|
||||
<p>- <a href='https://www.biblegateway.com/passage/?search=2+kings+25%3A4&version=ESV'>2 Kings 25:4</a></p>
|
||||
|
||||
<p>- <a href='https://thebiblerecap.podbean.com/e/231-2-kings-24-25-2-chronicles-36/'>The Bible Recap - Episode 231</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