Podcasts about Gitea

  • 27PODCASTS
  • 54EPISODES
  • 47mAVG DURATION
  • ?INFREQUENT EPISODES
  • Apr 7, 2025LATEST

POPULARITY

20172018201920202021202220232024


Best podcasts about Gitea

Latest podcast episodes about Gitea

Python Bytes
#427 Rise of the Python Lord

Python Bytes

Play Episode Listen Later Apr 7, 2025 36:31 Transcription Available


Topics covered in this episode: Git Town solves the problem that using the Git CLI correctly PEP 751 – A file format to record Python dependencies for installation reproducibility git-who and watchgha Share Python Scripts Like a Pro: uv and PEP 723 for Easy Deployment Extras Joke Watch on YouTube About the show Sponsored by Posit Package Manager: pythonbytes.fm/ppm Connect with the hosts Michael: @mkennedy@fosstodon.org / @mkennedy.codes (bsky) Brian: @brianokken@fosstodon.org / @brianokken.bsky.social Show: @pythonbytes@fosstodon.org / @pythonbytes.fm (bsky) Join us on YouTube at pythonbytes.fm/live to be part of the audience. Usually Monday at 10am PT. Older video versions available there too. Finally, if you want an artisanal, hand-crafted digest of every week of the show notes in email form? Add your name and email to our friends of the show list, we'll never share it. Michael #1: Git Town solves the problem that using the Git CLI correctly Git Town is a reusable implementation of Git workflows for common usage scenarios like contributing to a centralized code repository on platforms like GitHub, GitLab, or Gitea. Think of Git Town as your Bash scripts for Git, but fully engineered with rock-solid support for many use cases, edge cases, and error conditions. Keep using Git the way you do now, but with extra commands to create various branch types, keep them in sync, compress, review, and ship them efficiently. Basic workflow Commands to create, work on, and ship features. git town hack - create a new feature branch git town sync - update the current branch with all ongoing changes git town switch - switch between branches visually git town propose - propose to ship a branch git town ship - deliver a completed feature branch Additional workflow commands Commands to deal with edge cases. git town delete - delete a feature branch git town rename - rename a branch git town repo - view the Git repository in the browser Brian #2: PEP 751 – A file format to record Python dependencies for installation reproducibility Accepted From Brett Cannon “PEP 751 has been accepted! This means Python now has a lock file standard that can act as an export target for tools that can create some sort of lock file. And for some tools the format can act as their primary lock file format as well instead of some proprietary format.” File name: pylock.toml or at least something that starts with pylock and ends with .toml It's exciting to see the start of a standardized lock file Michael #3: git-who and watchgha git-who is a command-line tool for answering that eternal question: Who wrote this code?! Unlike git blame, which can tell you who wrote a line of code, git-who tells you the people responsible for entire components or subsystems in a codebase. You can think of git-who sort of like git blame but for file trees rather than individual files. And watchgha - Live display of current GitHub action runs by Ned Batchelder Brian #4: Share Python Scripts Like a Pro: uv and PEP 723 for Easy Deployment Dave Johnson Nice full tutorial discussing single file Python scripts using uv with external dependencies Starting with a script with dependencies. Using uv add --script [HTML_REMOVED] [HTML_REMOVED] to add a /// script block to the top Using uv run Adding #!/usr/bin/env -S uv run --script shebang Even some Windows advice Extras Brian: April 1 pranks done well BREAKING: Guido van Rossum Returns as Python's BDFL including Brett Cannon noted as “Famous Python Quotationist” Guido taking credit for “I came for the language but I stayed for the community” which was from Brett then Brett's title of “Famous Python Quotationist” is crossed out. Barry Warsaw asking Guido about releasing Python 2.8 Barry is the FLUFL, “Friendly Language Uncle For Life “ Mariatta can't get Guido to respond in chat until she addresses him as “my lord”. “… becoming one with whitespace.” “Indentation is Enlightenment” Upcoming new keyword: maybe Like “if” but more Pythonic as in Maybe: print("Python The Documentary - Coming This Summer!") I'm really hoping there is a documentary April 1 pranks done poorly Note: pytest-repeat works fine with Python 3.14, and never had any problems If you have to explain the joke, maybe it's not funny. The explanation pi, an irrational number, as in it cannot be expressed by a ratio of two integers, starts with 3.14159 and then keeps going, and never repeats. Python 3.14 is in alpha and people could be testing with it for packages Test & Code is doing a series on pytest plugins pytest-repeat is a pytest plugin, and it happened to not have any tests for 3.14 yet. Now the “joke”. I pretended that I had tried pytest-repeat with Python 3.14 and it didn't work. Test & Code: Python 3.14 won't repeat with pytest-repeat Thus, Python 3.14 won't repeat. Also I mentioned that there was no “rational” explanation. And pi is an irrational number. Michael: pysqlscribe v0.5.0 has the “parse create scripts” feature I suggested! Markdown follow up Prettier to format Markdown via Hugo Been using mdformat on some upcoming projects including the almost done Talk Python in Production book. Command I like is mdformat --number --wrap no ./ uv tool install --with is indeed the pipx inject equivalent, but requires multiple --with's: pipx inject mdformat mdformat-gfm mdformat-frontmatter mdformat-footnote mdformat-gfm-alerts uv tool install mdformat --with mdformat-gfm --with mdformat-frontmatter --with mdformat-footnote --with mdformat-gfm-alerts uv follow up From James Falcon As a fellow uv enthusiast, I was still holding out for a use case that uv hasn't solved. However, after last week's episode, you guys finally convinced me to switch over fully, so I figured I'd explain the use case and how I'm working around uv's limitations. I maintain a python library supported across multiple python versions and occasionally need to deal with bugs specific to a python version. Because of that, I have multiple virtualenvs for one project. E.g., mylib38 (for python 3.8), mylib313 (for python 3.13), etc. I don't want a bunch of .venv directories littering my project dir. For this, pyenv was fantastic. You could create the venv with pyenv virtualenv 3.13.2 mylib313, then either activate the venv with pyenv activate mylib313 and create a .python-version file containing mylib313 so I never had to manually activate the env I want to use by default on that project. uv doesn't have a great solution for this use case, but I switched to a workflow that works well enough for me: Define my own central location for venvs. For me that's ~/v Create venvs with something like uv venv --python 3.13 ~/v/mylib313 Add a simple function to my bashrc: `workon() { source ~/v/$1/bin/activate } so now I can run workon mylib313orworkon mylib38when I need to work in a specific environment. uv's.python-version` support works much differently than pyenv's, and that lack of support is my biggest frustration with this approach, but I am willing to live without it. Do you Firefox but not Zen? You can now make pure Firefox more like Zen's / Arc's layout. Joke: So here it will stay See the follow up thread too! Also: Guido as Lord Python via Nick Muoh

linkmeup. Подкаст про IT и про людей
sysadmins №51. Создание собственного CI/CD-стека

linkmeup. Подкаст про IT и про людей

Play Episode Listen Later Dec 3, 2024


Давненько мы не говорили про CI/CD, а тема благодатная. Раньше было все просто — хочешь у себя — берешь Gitlab, хочешь на серверах у дяди — идешь в github. Но жизнь сделала крутой поворот — и нам стала нужна альтернатива. Многие вспомнят Gitea, кто-то даже прошепчет Gitflic, и все будут правы. Но в гости к нам пришел очень интересный человек, который сможет рассказать нам ещё об одном продукте — Сфера, инженерные инструменты. Кто: Евгений Калашников — руководитель стрима "Инженерные инструменты" Платформы Сфера О чем: История создания собственной CI/CD-платформы Переезд с других решений/трекеров – боль и страдания или есть альтернативные пути? Сложности создания своего софта на базе open-source Почему Jenkins и масштабирование не дружат Немного философии о расчетах стоимости фичи и почему это далеко не так очевидно Специфика текущего российского рынка Сделать лучше/быстрее/веселее — как оказалось таки можем, когда прижмет! Сообщение sysadmins №51. Создание собственного CI/CD-стека появились сначала на linkmeup.

Hacker Public Radio
HPR4261: HPR Community News for November 2024

Hacker Public Radio

Play Episode Listen Later Dec 2, 2024


This show has been flagged as Explicit by the host. table td.shrink { white-space:nowrap } hr.thin { border: 0; height: 0; border-top: 1px solid rgba(0, 0, 0, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.3); } New hosts Welcome to our new host: SolusSpider. Last Month's Shows Id Day Date Title Host 4240 Fri 2024-11-01 The First Doctor, Part 1 Ahuka 4241 Mon 2024-11-04 HPR Community News for October 2024 HPR Volunteers 4242 Tue 2024-11-05 Interview with Lorenzo 'kelset' Sciandra Ken Fallon 4243 Wed 2024-11-06 Hand Warmer, long term product review MrX 4244 Thu 2024-11-07 Two methods of digitizing photos. Henrik Hemrin 4245 Fri 2024-11-08 What's in my bag? Trey 4246 Mon 2024-11-11 Bytes, Pages and Screens Lee 4247 Tue 2024-11-12 Installing GuixSD--Part Deux Rho`n 4248 Wed 2024-11-13 Millie Perkins Ken Fallon 4249 Thu 2024-11-14 Audio Streams on the Command Line Kevie 4250 Fri 2024-11-15 Playing Civilization IV, Part 3 Ahuka 4251 Mon 2024-11-18 Dave and MrX turn over a new leaf Dave Morriss 4252 Tue 2024-11-19 Privacy is not hiding Some Guy On The Internet 4253 Wed 2024-11-20 A brief introduction of myself Kinghezy 4254 Thu 2024-11-21 Cake Money Money Cake Money Money Cake! operat0r 4255 Fri 2024-11-22 What is on My Podcast Player 2024, Part 1 Ahuka 4256 Mon 2024-11-25 Birds of a Feather Talk at OLF 2024 Thaj Sara 4257 Tue 2024-11-26 Movie review: The Artifice Girl Kevie 4258 Wed 2024-11-27 Introduction and History of Using Computers SolusSpider 4259 Thu 2024-11-28 Why digitize photos Henrik Hemrin 4260 Fri 2024-11-29 The Golden Age Ahuka Comments this month These are comments which have been made during the past month, either to shows released during the month or to past shows. There are 61 comments in total. Past shows There are 21 comments on 17 previous shows: hpr0870 (2011-12-02) "Computer Memories" by Deltaray. Comment 3: SolusSpider - Peter Paterson on 2024-11-29: "Commonality on Deltaray's computer experiences" hpr1322 (2013-08-27) "Kevin O'Brien - Ohio LinuxFest 2013" by Ken Fallon. Comment 1: SolusSpider - Peter Paterson on 2024-11-26: "Attended OLF2013" hpr1642 (2014-11-18) "Frist Time at Oggcamp" by Al. Comment 2: SolusSpider - Peter Paterson on 2024-11-27: "Al at Oggcamp - 10 years later" hpr1890 (2015-10-30) "A short walk with my son" by thelovebug. Comment 4: SolusSpider - Peter Paterson on 2024-11-11: "Comment on A short walk with my son" hpr2503 (2018-03-07) "My journey into podcasting" by thelovebug. Comment 3: SolusSpider - Peter Paterson on 2024-11-18: "Comment on TheLoveBug journey into podcasting." hpr2673 (2018-10-31) "Urandom - Ohio Linux Fest 2-18 Podcaster Roundtable" by Thaj Sara. Comment 1: SolusSpider - Peter Paterson on 2024-11-26: "Wonderful OLF Podcasters Banter" hpr3315 (2021-04-16) "tesseract optical character recognition" by Ken Fallon. Comment 2: SolusSpider - Peter Paterson on 2024-11-28: "Tessaract OCR User" Comment 3: SolusSpider - Peter Paterson on 2024-11-29: "Spelling of tesseract" hpr3998 (2023-11-29) "Using open source OCR to digitize my mom's book" by Deltaray. Comment 3: SolusSpider - Peter Paterson on 2024-11-29: "Experience with Tesseract OCR software" hpr4106 (2024-04-29) "My tribute to feeds" by Henrik Hemrin. Comment 1: SolusSpider - Peter Paterson on 2024-11-27: "New(ish) to Feeds" Comment 2: Henrik Hemrin on 2024-11-29: "Thanks for feedback" hpr4129 (2024-05-30) "How I found Hacker Public Radio" by Henrik Hemrin. Comment 1: SolusSpider - Peter Paterson on 2024-11-27: "My own story of finding HPR" hpr4132 (2024-06-04) "Urandom talks about the future of HPR" by Thaj Sara. Comment 4: SolusSpider - Peter Paterson on 2024-11-18: "Comment on Urandom talks about the future of HPR" hpr4195 (2024-08-30) "Hacking HPR Hosts" by Ken Fallon. Comment 2: SolusSpider - Peter Paterson on 2024-11-29: "Another comment for Ken - he hacked this host" hpr4200 (2024-09-06) "Intro to Doctor Who" by Ahuka. Comment 5: SolusSpider - Peter Paterson on 2024-11-09: "Comment on Introduction To Doctor Who" hpr4220 (2024-10-04) "How Doctor Who Began" by Ahuka. Comment 1: SolusSpider - Peter Paterson on 2024-11-11: "Comment on How Doctor Who Began" hpr4233 (2024-10-23) "OggCamp 2024 Day 1" by Ken Fallon. Comment 1: @geospart on 2024-11-09: "Nice" hpr4236 (2024-10-28) "History of Nintendo" by Lochyboy. Comment 3: SolusSpider - Peter Paterson on 2024-11-10: "Comment on History of Nintendo" Comment 4: John Curwood - blindape on 2024-11-20: "Virtual Boy" hpr4238 (2024-10-30) "Snaps are better than flatpaks" by Some Guy On The Internet. Comment 2: Elliot B on 2024-11-01: "Snaps are the least worst" Comment 3: mpardo on 2024-11-02: "Snaps are indeed better that Flatpaks" This month's shows There are 40 comments on 16 of this month's shows: hpr4240 (2024-11-01) "The First Doctor, Part 1" by Ahuka. Comment 1: Kevie on 2024-10-31: "Keep them coming"Comment 2: Kevin O'Brien on 2024-11-02: "More to come"Comment 3: Ken Fallon on 2024-11-07: "Daleks" hpr4241 (2024-11-04) "HPR Community News for October 2024" by HPR Volunteers. Comment 1: ClaudioM on 2024-11-04: "Commentary on Ep. 4231 (Tmux+dd+FreeBSD)"Comment 2: Torin Doyle on 2024-11-10: "Hunting, Buzzing"Comment 3: Dave Morriss on 2024-11-14: "Buzzing?"Comment 4: Dave Lee (thelovebug) on 2024-11-16: "Dave's buzzing"Comment 5: Torin Doyle on 2024-11-18: "Re: Buzzing (more like a hum) in the audio for Dave Morriss."Comment 6: Dave Morriss on 2024-11-18: "The buzzing of the brain" hpr4244 (2024-11-07) "Two methods of digitizing photos." by Henrik Hemrin. Comment 1: Henrik Hemrin on 2024-11-07: "Clarification equipment for repro photo"Comment 2: Ken Fallon on 2024-11-07: "What hardware are you using"Comment 3: Henrik Hemrin on 2024-11-07: "Response to Ken"Comment 4: Charles in NJ on 2024-11-08: "Missed this show because feed is broken"Comment 5: Ken Fallon on 2024-11-08: "Bug Report"Comment 6: Ken Fallon on 2024-11-09: "Please send me your version of bashpodder" hpr4245 (2024-11-08) "What's in my bag?" by Trey. Comment 1: men Fallon on 2024-11-07: "Backdoors and breaches" hpr4246 (2024-11-11) "Bytes, Pages and Screens" by Lee. Comment 1: Ken Fallon on 2024-11-07: "Terry Pratchett"Comment 2: Torin Doyle on 2024-11-18: "Podcasts, Books, TV" hpr4248 (2024-11-13) "Millie Perkins" by Ken Fallon. Comment 1: Kevie on 2024-11-13: "A fantastic Oggcamp Talk" hpr4249 (2024-11-14) "Audio Streams on the Command Line" by Kevie. Comment 1: Ken Fallon on 2024-11-07: "Great Tips"Comment 2: SolusSpider - Peter Paterson on 2024-11-14: "Comment on Audio Streams on the Command Line"Comment 3: Jan on 2024-11-14: "Just Thanks"Comment 4: Henrik Hemrin on 2024-11-29: "Command Line" hpr4251 (2024-11-18) "Dave and MrX turn over a new leaf" by Dave Morriss. Comment 1: FXB on 2024-11-23: "using wttr.in"Comment 2: Dave Morriss on 2024-11-23: "Re: wttr.in" hpr4252 (2024-11-19) "Privacy is not hiding" by Some Guy On The Internet. Comment 1: Tim J on 2024-11-20: "Big Tech is Watching You" hpr4253 (2024-11-20) "A brief introduction of myself" by Kinghezy. Comment 1: SolusSpider - Peter Paterson on 2024-11-20: "Comment on kinghezy's introduction show hpr4253" hpr4256 (2024-11-25) "Birds of a Feather Talk at OLF 2024" by Thaj Sara. Comment 1: Ken Fallon on 2024-11-21: "Suspense"Comment 2: Thaj on 2024-11-25: "Resolution"Comment 3: Windigo on 2024-11-26: "Future shows"Comment 4: Torin Doyle on 2024-11-30: "OLF?" hpr4257 (2024-11-26) "Movie review: The Artifice Girl" by Kevie. Comment 1: SolusSpider - Peter Paterson on 2024-11-26: "Also watched The Atifice Girl" hpr4258 (2024-11-27) "Introduction and History of Using Computers" by SolusSpider. Comment 1: Dave Lee (thelovebug) on 2024-11-18: "Welcome to the HPR family"Comment 2: present_arms on 2024-11-19: "This Podcast hpr4258 :: Introduction and History of Using Computers"Comment 3: archer72 on 2024-11-27: "Welcome to HPR"Comment 4: Henrik Hemrin on 2024-11-29: "Welcome as HPR host!" hpr4259 (2024-11-28) "Why digitize photos" by Henrik Hemrin. Comment 1: SolusSpider - Peter Paterson on 2024-11-28: "The thoughts behind digitizing photos"Comment 2: Henrik Hemrin on 2024-11-29: "Thanks for your comment" hpr4272 (2024-12-17) "Embed Mastodon Threads" by hairylarry. Comment 1: Ken Fallon on 2024-11-28: "Wayne Myers ?? Where did I hear that name before ?" hpr4320 (2025-02-21) "Switching my Mastodon account" by Ahuka. Comment 1: Ken Fallon on 2024-11-25: "Target Audience of 1" Mailing List discussions Policy decisions surrounding HPR are taken by the community as a whole. This discussion takes place on the Mail List which is open to all HPR listeners and contributors. The discussions are open and available on the HPR server under Mailman. The threaded discussions this month can be found here: https://lists.hackerpublicradio.com/pipermail/hpr/2024-November/thread.html Events Calendar With the kind permission of LWN.net we are linking to The LWN.net Community Calendar. Quoting the site: This is the LWN.net community event calendar, where we track events of interest to people using and developing Linux and free software. Clicking on individual events will take you to the appropriate web page. Any other business It's been another hectic month here at HPR Towers. As we discussed on the mailing list most of the time was taken by the migration to Mastodon, and the implementation of the mirrors on the Community Content Delivery Network. Some daily stats are been updated on https://hub.hackerpublicradio.org/hpr_ccdn_stats.tsv Summary of the changes to the repo https://repo.anhonesthost.net/HPR Dave updated his tooling for processing shows and they are now available on the Gitea repo. We finally got around to creating the HPR Documentation wiki. Community Content Delivery Network (CCDN) A location to track the deployment of the HPR Community Content Delivery Network, that provides a mirror network for our content. HPR Website Design This is literally in the whiteboard phase of the HPR website redesign. Where we can track Compatibility of the clients subscribed to our feeds. Useful Resources Where we can link to other free culture sites that provide useful services. Requested Topics Where we can track topics that have been requested, and link to shows that addressed them. There is also a list with information about Podcatcher and Podcasting Platform Compatibility. If anyone wants to adopt a player then please do so. The section on Workflow will be changing shortly due to Dave stepping aside, and also the need to distribute to multiple end points. All the processing will happen first, and then all the checks will be done at the same stage just prior to posting. For this to work we need help finding a simple manageable WYSIWYG editor that can produce sane HTML when the host uploads the show. We also need a new system to distribute the files from an origin to all the mirrors. Other changes and fixes. The day of the week is now available on the website. Fixed the RSS feed to show explicit status. Fixed a bug that limited the future feed to just 10 shows. Fixed a typo in the status page. Following feedback, added emphasis about the upcoming two weeks, to the scheduling guidelines. Notable shout out to the people who are promoting HPR and are helping people out with audio issues. Provide feedback on this episode.

Hacker Public Radio
HPR4241: HPR Community News for October 2024

Hacker Public Radio

Play Episode Listen Later Nov 4, 2024


This show has been flagged as Explicit by the host. table td.shrink { white-space:nowrap } hr.thin { border: 0; height: 0; border-top: 1px solid rgba(0, 0, 0, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.3); } New hosts There were no new hosts this month. Last Month's Shows Id Day Date Title Host 4217 Tue 2024-10-01 Episode 2 - Dirt Simple Photo Gallery hairylarry 4218 Wed 2024-10-02 Crazy Battery Story Swift110 4219 Thu 2024-10-03 Black diamond head lamp and other gear Some Guy On The Internet 4220 Fri 2024-10-04 How Doctor Who Began Ahuka 4221 Mon 2024-10-07 HPR Community News for September 2024 HPR Volunteers 4222 Tue 2024-10-08 Replacing backup batteries in my Kenwood TS940S HF Radio Part 5 MrX 4223 Wed 2024-10-09 Movie review of The Artifice Girl Some Guy On The Internet 4224 Thu 2024-10-10 Auto shop interaction Archer72 4225 Fri 2024-10-11 Chewing the rag with Kristoff and Ken Ken Fallon 4226 Mon 2024-10-14 JAMBOREE and Taco Bell! operat0r 4227 Tue 2024-10-15 Introduction to jq - part 3 Dave Morriss 4228 Wed 2024-10-16 Auditing Audio Files For Youtube Dave Hingley 4229 Thu 2024-10-17 Neurodiversity and Hacking Lee 4230 Fri 2024-10-18 Playing Civilization IV, Part 2 Ahuka 4231 Mon 2024-10-21 Duplicating Multiple USB Flash Drives with DD and Tmux on FreeBSD Claudio Miranda 4232 Tue 2024-10-22 Replacing backup batteries in my Kenwood TS940S HF Radio Part 6 MrX 4233 Wed 2024-10-23 OggCamp 2024 Day 1 Ken Fallon 4234 Thu 2024-10-24 OggCamp 2024 Day 2 Ken Fallon 4235 Fri 2024-10-25 What Is Plain Text Programming? hairylarry 4236 Mon 2024-10-28 History of Nintendo Lochyboy 4237 Tue 2024-10-29 My First OggCamp Experience Kevie 4238 Wed 2024-10-30 Snaps are better than flatpaks Some Guy On The Internet 4239 Thu 2024-10-31 Android Tasker and Automation operat0r Comments this month These are comments which have been made during the past month, either to shows released during the month or to past shows. There are 25 comments in total. Past shows There are 8 comments on 4 previous shows: hpr4208 (2024-09-18) "01 Plain Text Programs" by hairylarry. Comment 3: Beeza on 2024-10-03: "Plaintext Programs" Comment 4: Dave Morriss on 2024-10-04: "Regarding VMS and indexed files" Comment 5: hairylarry on 2024-10-07: "Thanks for the comments" hpr4211 (2024-09-23) "Rapid Fire 1" by operat0r. Comment 1: Sun Yat Babo on 2024-10-25: "neuro diverse film" hpr4213 (2024-09-25) "Making Waves Day 1" by Ken Fallon. Comment 1: dmt on 2024-10-12: "satdump" hpr4216 (2024-09-30) "Down the rabbit hole." by Some Guy On The Internet. Comment 1: Beeza on 2024-10-03: "Good Samaritans" Comment 2: Reto on 2024-10-23: "The humor" Comment 3: Ken Fallon on 2024-10-24: "The View from NL" This month's shows There are 17 comments on 10 of this month's shows: hpr4221 (2024-10-07) "HPR Community News for September 2024" by HPR Volunteers. Comment 1: Dave Morriss on 2024-10-05: "Show notes for the HPR New Years Eve Show 2023-24"Comment 2: brian-in-ohio on 2024-10-07: "best price?" hpr4222 (2024-10-08) "Replacing backup batteries in my Kenwood TS940S HF Radio Part 5" by MrX. Comment 1: Beeza on 2024-10-08: "Old Batteries"Comment 2: MrX on 2024-10-10: "Re Old Batteries" hpr4224 (2024-10-10) "Auto shop interaction" by Archer72. Comment 1: A. Listener on 2024-10-12: "issue with downloading shows" hpr4228 (2024-10-16) "Auditing Audio Files For Youtube" by Dave Hingley. Comment 1: Kevie on 2024-10-26: "Youtube's copyright strikes" hpr4231 (2024-10-21) "Duplicating Multiple USB Flash Drives with DD and Tmux on FreeBSD" by Claudio Miranda. Comment 1: Gumnos on 2024-10-29: "Getting status of dd in OpenBSD"Comment 2: hairylarry on 2024-10-30: "Similarly"Comment 3: ClaudioM on 2024-10-31: "Re: Similarly"Comment 4: ClaudioM on 2024-10-31: "Re: Getting status of dd in OpenBSD" hpr4236 (2024-10-28) "History of Nintendo" by Lochyboy. Comment 1: Steve Barnes on 2024-10-29: "Ahhyes."Comment 2: ClaudioM on 2024-10-31: "Virtual Boy?" hpr4237 (2024-10-29) "My First OggCamp Experience" by Kevie. Comment 1: Peter - SolusSpider on 2024-10-30: "OggCamp Dining Experience" hpr4238 (2024-10-30) "Snaps are better than flatpaks" by Some Guy On The Internet. Comment 1: Trey on 2024-10-30: "Ethernet cable"Comment 2: Elliot B on 2024-11-01: "Snaps are the least worst" hpr4240 (2024-11-01) "The First Doctor, Part 1" by Ahuka. Comment 1: Kevie on 2024-10-31: "Keep them coming" hpr4266 (2024-12-09) "What's the weather?" by Lee. Comment 1: Lee on 2024-10-21: "Errata" Mailing List discussions Policy decisions surrounding HPR are taken by the community as a whole. This discussion takes place on the Mail List which is open to all HPR listeners and contributors. The discussions are open and available on the HPR server under Mailman. The threaded discussions this month can be found here: https://lists.hackerpublicradio.com/pipermail/hpr/2024-October/thread.html Events Calendar With the kind permission of LWN.net we are linking to The LWN.net Community Calendar. Quoting the site: This is the LWN.net community event calendar, where we track events of interest to people using and developing Linux and free software. Clicking on individual events will take you to the appropriate web page. Any other business HPR Updates There has been a lot of activity this month on the Gitea repos with rho`n catching up on outstanding bugs. We also had a lot of changes due to the ongoing Internet Archive outage that is still impacting us. A quick fix was to host the 10 day feed directly from the HPR server, but since then we have made all the media available on the HPR Community Content Delivery Network. We will have three sources but if you meet the requirements for hosting, and wish to help out please get in touch. 24/7 Home Service Fixed IP address Unlimited bandwidth Fast > 500mb/sec upload Large > 1T of storage Permission from your ISP to run a web server Contact information known to the Janitors Optional: UPS We added a html link to the comments page to provide direct feedback from any app that supports it. Eg: gPodder opens Firefox at the comment form. We have consolidated a lot of repositories on Gitea, removing some and moving others. https://repo.anhonesthost.net/HPR Documentation is now available and includes: Community Content Delivery Network (CCDN) A location to track the deployment of the HPR Community Content Delivery Network, that provides a mirror network for our content. HPR Website Design This is literally in the whiteboard phase of the HPR website redesign. Podcatcher and Podcasting Platform Compatibility Where we can track Compatibility of the clients subscribed to our feeds. Useful Resources Where we can link to other free culture sites that provide useful services. Requested Topics Where we can track topics that have been requested, and link to shows that addressed them. Workflow issues. Message from Dave Morriss I am planning to "retire" from the Hacker Public Radio Janitorial Team. I have been helping to administer HPR for over 12 years now. I first offered help to Ken in 2012 in response to an appeal he made. We met at OggCamp in that year, and I joined the Community News recording for episode 1066 in September 2012. My first show was 1091 in October that year. I will turn 75 in December 2024, and am finding that I don't have the energy to do as much as I could when I first joined. I also want to be able to devote more time to the various personal projects I have. I plan to consolidate all my scripts on the HPR Gitea repositories, and document all the processes I have been looking after. I want to have completed the handover by the end of March 2025. I will continue as an HPR host for as long as I can after that. I have had a wonderful 12 years as an HPR Janitor and will always look back on it with great pleasure. Provide feedback on this episode.

Self-Hosted
129: Forged Alliance

Self-Hosted

Play Episode Listen Later Aug 9, 2024 60:01


Hacker Public Radio
HPR4131: HPR Community News for May 2024

Hacker Public Radio

Play Episode Listen Later Jun 3, 2024


table td.shrink { white-space:nowrap } hr.thin { border: 0; height: 0; border-top: 1px solid rgba(0, 0, 0, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.3); } New hosts Welcome to our new host: Moss Bliss. Last Month's Shows Id Day Date Title Host 4108 Wed 2024-05-01 What's in my bag swift110 4109 Thu 2024-05-02 The future of HPR knightwise 4110 Fri 2024-05-03 Playing Civilization III, Part 2 Ahuka 4111 Mon 2024-05-06 HPR Community News for April 2024 HPR Volunteers 4112 Tue 2024-05-07 JSON and VENDORS and AUTH ohh my! operat0r 4113 Wed 2024-05-08 Today I Learnt, sed hold/pattern space use. Some Guy On The Internet 4114 Thu 2024-05-09 Introduction to jq - part 2 Dave Morriss 4115 Fri 2024-05-10 Tagging music with Beets dnt 4116 Mon 2024-05-13 Response to 4109: Building community without SEO hobs 4117 Tue 2024-05-14 JAMBOREE ! operat0r 4118 Wed 2024-05-15 Toil versus Livelihood dnt 4119 Thu 2024-05-16 Cov's Jams 003 Cov 4120 Fri 2024-05-17 South Carolina to Home Ahuka 4121 Mon 2024-05-20 RODE wireless microphones Clinton Roy 4122 Tue 2024-05-21 The Conference for Creative Use of the Radio Spectrum in Open Systems Ken Fallon 4123 Wed 2024-05-22 KeepassXC Update Some Guy On The Internet 4124 Thu 2024-05-23 Developing a project Lee 4125 Fri 2024-05-24 Installing Home Assistant Operating System (HAOS), on a x86-64 machine Ken Fallon 4126 Mon 2024-05-27 Podcasting for Newbies Moss Bliss 4127 Tue 2024-05-28 Retro fun with the GPi 2 cases Kevie 4128 Wed 2024-05-29 30 years of the internet knightwise 4129 Thu 2024-05-30 How I found Hacker Public Radio Henrik Hemrin 4130 Fri 2024-05-31 Playing Civilization III, Part 3 Ahuka Comments this month These are comments which have been made during the past month, either to shows released during the month or to past shows. There are 25 comments in total. Past shows There is 1 comment on 1 previous show: hpr4087 (2024-04-02) "Getting started with the digiKam photo management software" by Henrik Hemrin. Comment 1: Henrik Hemrin on 2024-05-13: "Good support from digiKam developers and community" This month's shows There are 24 comments on 7 of this month's shows: hpr4109 (2024-05-02) "The future of HPR " by knightwise. Comment 1: Dirk on 2024-05-02: "The future about HPR"Comment 2: Ken Fallon on 2024-05-02: "Thanks for volunteering"Comment 3: Knightwise on 2024-05-04: "Alt Hoeselt Calling :)"Comment 4: knightwise on 2024-05-04: "Hacker Public Radio as "brown noise?" "Comment 5: mpardo on 2024-05-04: "Interesting episode"Comment 6: enistello on 2024-05-05: "The future of HPR"Comment 7: Ken Fallon on 2024-05-06: "Active for a given value of active."Comment 8: Ken Fallon on 2024-05-06: "On proprietary platforms" hpr4112 (2024-05-07) "JSON and VENDORS and AUTH ohh my!" by operat0r. Comment 1: Ken Fallon on 2024-05-31: "The answer is always jq" hpr4115 (2024-05-10) "Tagging music with Beets" by dnt. Comment 1: kdmurray on 2024-05-16: "Just what the doctor ordered" hpr4116 (2024-05-13) "Response to 4109: Building community without SEO" by hobs. Comment 1: Knightwise on 2024-05-13: "Just a small correction."Comment 2: kdmurray on 2024-05-13: "Ok but..."Comment 3: Ken Fallon on 2024-05-15: "Actual Actions ?"Comment 4: knightwise on 2024-05-17: "Low hanging fruit"Comment 5: norrist on 2024-05-19: "Mastodon Comments" hpr4118 (2024-05-15) "Toil versus Livelihood" by dnt. Comment 1: Bob on 2024-05-15: "We want free time but what we get is more less paid toil"Comment 2: kdmurray on 2024-05-16: "Deep Thought"Comment 3: Kevin O'Brien on 2024-05-18: "Bravo!"Comment 4: Laindir on 2024-05-20: "Half the problem"Comment 5: dnt on 2024-05-21: "Re: Laindir"Comment 6: dnt on 2024-05-21: "Re: kdmurray" hpr4124 (2024-05-23) "Developing a project" by Lee. Comment 1: Trey on 2024-05-23: "Not now... another time."Comment 2: dnt on 2024-05-25: "projects" hpr4128 (2024-05-29) "30 years of the internet" by knightwise. Comment 1: zen_floater on 2024-05-30: "WVDiAL" Mailing List discussions Policy decisions surrounding HPR are taken by the community as a whole. This discussion takes place on the Mail List which is open to all HPR listeners and contributors. The discussions are open and available on the HPR server under Mailman. The threaded discussions this month can be found here: https://lists.hackerpublicradio.com/pipermail/hpr/2024-May/thread.html Events Calendar With the kind permission of LWN.net we are linking to The LWN.net Community Calendar. Quoting the site: This is the LWN.net community event calendar, where we track events of interest to people using and developing Linux and free software. Clicking on individual events will take you to the appropriate web page. Any other business Proposed policy change In the past month we were asked to remove a show that had been added to the database, and uploaded to archive.org. This was done, but: The amount of work to do this type of change is not trivial. It's not possible to remove archive.org items, only to remove their contents and replace them with whatever comes from the replacement show. The processes involved in this deletion and replacement are not complex but are somewhat labour-intensive. There are ramifications into existing feeds (podcast players cache episode details and do not replace them, etc). It is proposed that the policy be changed to discourage this, except in severe cases - perhaps those with copyright or other legal consequences. Obviously, we normally take great care that incoming shows are unlikely to trigger such problems in the first place. The Future Feed There is a feed which is normally referred to as the "Future Feed", which can be found on the RSS Syndication page. It receives shows which are posted out of order as they come in and may be replaced/reposted if errors are found. This is intended as a means to find issues with metadata or the audio quality of new shows before they hit the main feed. Recently a show was posted to this feed which was truncated. Unfortunately, although the Janitors and a number or listeners follow this feed, this truncation was not spotted until the show was released. It would be much appreciated if you could assist with watching this feed for errors in the future. Please contact the Janitors if you notice anything. Janitorial Team We have had some recent contributions to the development of the HPR software from norrist and kdmurray. We also added them to the "HPR Janitor's Closet" on Matrix to speed up discussions about open tickets. If anyone else wishes to help out with the development please do so by creating an account on our Gitea server. Denial of Service Attacks on the Internet Archive There have been a number of DDoS attacks on this service in the recent past. Jason Scott (@textfiles@mastodon.archive.org), Free-Range Archivist at the Internet Archive, has been mentioning this on Mastodon. These attacks mean that we can sometimes be delayed when we need to upload shows to the IA.

Hacker Public Radio
HPR4111: HPR Community News for April 2024

Hacker Public Radio

Play Episode Listen Later May 6, 2024


table td.shrink { white-space:nowrap } hr.thin { border: 0; height: 0; border-top: 1px solid rgba(0, 0, 0, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.3); } New hosts Welcome to our new host: Dave Hingley. Last Month's Shows Id Day Date Title Host 4086 Mon 2024-04-01 HPR Community News for March 2024 HPR Volunteers 4087 Tue 2024-04-02 Getting started with the digiKam photo management software Henrik Hemrin 4088 Wed 2024-04-03 Today I Learnt more Bash tips Some Guy On The Internet 4089 Thu 2024-04-04 Modifying a Python script with some help from ChatGPT MrX 4090 Fri 2024-04-05 Playing Civilization III, Part 1 Ahuka 4091 Mon 2024-04-08 Test Driven Development Demo norrist 4092 Tue 2024-04-09 More man-talk. Some Guy On The Internet 4093 Wed 2024-04-10 Installing postmarketOS on a PINE64 PinePhone Claudio Miranda 4094 Thu 2024-04-11 One year of Linux Daniel Persson 4095 Fri 2024-04-12 Twenty seven years of Linux Deltaray 4096 Mon 2024-04-15 Powers of two Deltaray 4097 Tue 2024-04-16 Will they take our jobs? Of course they will. dodddummy 4098 Wed 2024-04-17 Road trips without GPS Trey 4099 Thu 2024-04-18 Introducing Home Automation and Home Assistant Ken Fallon 4100 Fri 2024-04-19 Charleston, South Carolina Ahuka 4101 Mon 2024-04-22 A I O M G operat0r 4102 Tue 2024-04-23 Re:HPR 3133 More MPV Quick Tips Archer72 4103 Wed 2024-04-24 What's in my bag? Dave Hingley 4104 Thu 2024-04-25 Introduction to jq - part 1 Dave Morriss 4105 Fri 2024-04-26 My story how I found a cure for my obesity Jeroen Baten 4106 Mon 2024-04-29 My tribute to feeds Henrik Hemrin 4107 Tue 2024-04-30 Response to HPR #4065 swift110 Comments this month These are comments which have been made during the past month, either to shows released during the month or to past shows. There are 21 comments in total. Past shows There are 2 comments on 2 previous shows: hpr3868 (2023-05-31) "News." by Some Guy On The Internet. Comment 2: elmussol on 2024-04-05: "George Santos" hpr4075 (2024-03-15) "Making a Pomodoro Timer" by norrist. Comment 2: operat0r on 2024-04-10: "ADD" This month's shows There are 19 comments on 10 of this month's shows: hpr4086 (2024-04-01) "HPR Community News for March 2024" by HPR Volunteers. Comment 1: Dave Morriss on 2024-04-01: "Senior moment: diatribe"Comment 2: Some Guy on the Internet on 2024-04-01: "@Dave Morriss" hpr4092 (2024-04-09) "More man-talk." by Some Guy On The Internet. Comment 1: folky on 2024-04-09: "Oh no"Comment 2: Mad Sweeney on 2024-04-10: "Squeezing out a show" hpr4094 (2024-04-11) "One year of Linux" by Daniel Persson. Comment 1: AaronB on 2024-04-11: "Bugs in Linux"Comment 2: Folky on 2024-04-12: "Thank you"Comment 3: Henrik Hemrin on 2024-04-12: "Enjoyable to learn about your Linux use case and experience" hpr4095 (2024-04-12) "Twenty seven years of Linux" by Deltaray. Comment 1: Nick on 2024-04-12: "Correction"Comment 2: Deltaray on 2024-04-13: "Re: Correction"Comment 3: Henrik Hemrin on 2024-04-13: "Interesting review of your Linux softwares" hpr4096 (2024-04-15) "Powers of two" by Deltaray. Comment 1: Windigo on 2024-04-15: "Very enjoyable episode"Comment 2: brian-in-ohio on 2024-04-17: "Another example"Comment 3: Dave Morriss on 2024-04-17: "8388607" hpr4097 (2024-04-16) "Will they take our jobs? Of course they will." by dodddummy. Comment 1: dodddummy on 2024-04-16: "The next thing"Comment 2: dodddummy on 2024-04-20: "More improvements" hpr4098 (2024-04-17) "Road trips without GPS" by Trey. Comment 1: archer72 on 2024-04-13: "Re:Road trips without GPS" hpr4099 (2024-04-18) "Introducing Home Automation and Home Assistant" by Ken Fallon. Comment 1: Henrik Hemrin on 2024-04-26: "Looking forward to learn about Home Assistant" hpr4103 (2024-04-24) "What's in my bag?" by Dave Hingley. Comment 1: Henrik Hemrin on 2024-04-26: "Thanks for your show" hpr4105 (2024-04-26) "My story how I found a cure for my obesity" by Jeroen Baten. Comment 1: Trey on 2024-04-26: "Thank you for sharing." Events Calendar With the kind permission of LWN.net we are linking to The LWN.net Community Calendar. Quoting the site: This is the LWN.net community event calendar, where we track events of interest to people using and developing Linux and free software. Clicking on individual events will take you to the appropriate web page. Any other business Craig Maloney, host of the Open Metal Cast We received the sad news that fellow podcaster and host of the Open Metal Cast, Craig Maloney passed away. Obituary Markdown issue in show notes Syntax highlighting for fenced code blocks. An issue was raised on the Gitea repository for the hpr_generator. Show notes using Markdown fenced blocks which specify a language (e.g. python) are not being syntax highlighted as expected. This was turned off because the highlighting is implemented as HTML ( and tags) which was stripped by software on archive.org when the notes were uploaded. In case this restriction has been lifted, we will try uploading an example to see if highlighting is now available.

Rustacean Station
release-plz with Marco Ieni

Rustacean Station

Play Episode Listen Later Apr 12, 2024 40:18


Allen Wyma talks with Marco Ieni about release-plz, a CLI-based tool that helps you to release your Rust crates by generating changelogs and bumping the version of your crates. Contributing to Rustacean Station Rustacean Station is a community project; get in touch with us if you'd like to suggest an idea for an episode or offer your services as a host or audio editor! Twitter: @rustaceanfm Discord: Rustacean Station Github: @rustacean-station Email: hello@rustacean-station.org Timestamps [@00:00] - Meet Marco Ieni, software engineer at Prisma, creator of release-plz [@01:17] - Release-plz creation & features [@08:50] - Conventional commit standard [@17:41] - Potential upcoming features [@21:25] - Gitea, Gitlab, Github integration [@28:14] - Release-plz development [@31:24] - Windows support [@36:22] - Message from Marco [@37:07] - Marco's Rust podcast RustShip Credits Intro Theme: Aerocity Audio Editing: Plangora Hosting Infrastructure: Jon Gjengset Show Notes: Plangora Hosts: Allen Wyma

Hacker Public Radio
HPR4086: HPR Community News for March 2024

Hacker Public Radio

Play Episode Listen Later Apr 1, 2024


table td.shrink { white-space:nowrap } hr.thin { border: 0; height: 0; border-top: 1px solid rgba(0, 0, 0, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.3); } New hosts Welcome to our new host: Henrik Hemrin. Last Month's Shows Id Day Date Title Host 4065 Fri 2024-03-01 Framework 13 (13th gen Intel) review Noodlez 4066 Mon 2024-03-04 HPR Community News for February 2024 HPR Volunteers 4067 Tue 2024-03-05 Hacking AI Models to Protect your Livelihood hobs 4068 Wed 2024-03-06 Replacing a lightbulb in a microwave Oven MrX 4069 Thu 2024-03-07 Passwords and Bitwarden news. Some Guy On The Internet 4070 Fri 2024-03-08 Civilization III Ahuka 4071 Mon 2024-03-11 Migration to digiKam as Digital Asset Management (DAM) Henrik Hemrin 4072 Tue 2024-03-12 Piper text to speech engine Archer72 4073 Wed 2024-03-13 Is the 1990 documentary "Cyberpunk" worth watching today? Trixter 4074 Thu 2024-03-14 Jade Empire Daniel Persson 4075 Fri 2024-03-15 Making a Pomodoro Timer norrist 4076 Mon 2024-03-18 WLED House Lights! operat0r 4077 Tue 2024-03-19 FFMPEG Series: Joining and Splitting files Mr. Young 4078 Wed 2024-03-20 Learning to read music, part two: pitch enistello 4079 Thu 2024-03-21 The Corresponding Source Ken Fallon 4080 Fri 2024-03-22 Georgia to South Carolina Ahuka 4081 Mon 2024-03-25 The Oh No! News. Some Guy On The Internet 4082 Tue 2024-03-26 No swans at Swanston Dave Morriss 4083 Wed 2024-03-27 Drivecast: Man-talk. Some Guy On The Internet 4084 Thu 2024-03-28 Cloud learning Daniel Persson 4085 Fri 2024-03-29 Android User Land Google Assistant GPT operat0r Comments this month These are comments which have been made during the past month, either to shows released during the month or to past shows. There are 21 comments in total. Past shows There are 5 comments on 3 previous shows: hpr3060 (2020-04-24) "Running a local imap server" by Ken Fallon. Comment 1: Somebdy on 2024-03-19: "Nothing in particular" Comment 2: Ken Fallon on 2024-03-20: "Very suspicious comment." hpr4062 (2024-02-27) "HPR Music Series? - How will it go for the girl and me?" by Fred Black. Comment 3: brian-in-ohio on 2024-03-01: "Good show" Comment 4: norrist on 2024-03-02: "I loved the Music" hpr4063 (2024-02-28) "Re: ChatGPT Output is not compatible with CC-BY-SA " by dnt. Comment 1: brian-in-ohio on 2024-03-01: "Amen" This month's shows There are 16 comments on 9 of this month's shows: hpr4067 (2024-03-05) "Hacking AI Models to Protect your Livelihood" by hobs. Comment 1: Trey on 2024-03-05: "Dejavu... Is this the same as HPR4055?" hpr4068 (2024-03-06) "Replacing a lightbulb in a microwave Oven" by MrX. Comment 1: Trey on 2024-03-06: "Nicely done."Comment 2: Ken Fallon on 2024-03-08: "Be very careful" hpr4069 (2024-03-07) "Passwords and Bitwarden news." by Some Guy On The Internet. Comment 1: Deltaray on 2024-03-10: "Thanks for the shout out" hpr4071 (2024-03-11) "Migration to digiKam as Digital Asset Management (DAM)" by Henrik Hemrin. Comment 1: Kevin O'Brien on 2024-03-15: "Good show!" hpr4073 (2024-03-13) "Is the 1990 documentary "Cyberpunk" worth watching today?" by Trixter. Comment 1: HPR Listener on 2024-03-16: "Restoration on archive.org"Comment 2: Trixter on 2024-03-18: "A slightly better version" hpr4075 (2024-03-15) "Making a Pomodoro Timer" by norrist. Comment 1: Trey on 2024-03-15: "Great project" hpr4077 (2024-03-19) "FFMPEG Series: Joining and Splitting files" by Mr. Young. Comment 1: Henrik Hemrin on 2024-03-20: "Useful to learn how ffmpeg can be used" hpr4078 (2024-03-20) "Learning to read music, part two: pitch" by enistello. Comment 1: Trey on 2024-03-20: "Desperate plea for a drummer to respond?" hpr4081 (2024-03-25) "The Oh No! News." by Some Guy On The Internet. Comment 1: Trey on 2024-03-25: "Pearl clutching"Comment 2: hpr listener on 2024-03-25: "Unnecessary insult"Comment 3: Ken Fallon on 2024-03-26: "@hpr listener"Comment 4: Some Guy on the Internet on 2024-03-26: "Desperately, with white knuckles, clutching pearls."Comment 5: Henrik Hemrin on 2024-03-27: "/e/OS - an open source Android alternative"Comment 6: Kevin O'Brien on 2024-03-28: "Good Show" Mailing List discussions Policy decisions surrounding HPR are taken by the community as a whole. This discussion takes place on the Mail List which is open to all HPR listeners and contributors. The discussions are open and available on the HPR server under Mailman. The threaded discussions this month can be found here: https://lists.hackerpublicradio.com/pipermail/hpr/2024-March/thread.html Events Calendar With the kind permission of LWN.net we are linking to The LWN.net Community Calendar. Quoting the site: This is the LWN.net community event calendar, where we track events of interest to people using and developing Linux and free software. Clicking on individual events will take you to the appropriate web page. Any other business Many Podcatchers don't show the episode author It seems that the author fields in RSS and Atom feeds are not shown by a number of Podcatchers. This field is intended to show the author details, and with HPR shows it contains an obfuscated email address and a name: ken.nospam@nospam.fallon.ie (Ken Fallon) The lack of this information makes knowing who created a given HPR show difficult to determine before listening to it. A question has been raised as to whether we could include the author details at the start of the show notes. Comments are requested from the Community as to whether this would be a useful addition. The Corresponding Source - renamed podcast The Corresponding Source (formerly Free as in Freedom) is a bi-weekly oggcast, hosted and presented by Bradley M. Kuhn and Karen Sandler. The discussion includes legal, policy, and many other issues in the Free, Libre, and Open Source Software (FLOSS) world. Occasionally, guests join Bradley and Karen to discuss various topics regarding FLOSS. See HPR show 4079 HPR changes The correspondent pages which show details of a particular correspondent (host), and lists their shows, have been enhanced to include the profile which has been uploaded by the host. This was present on the old site but was omitted on the static site. This was issue number 181 on the Gitea site, which has been closed. Example: Host 30, Ken Fallon Return of OggCamp There are plans to hold OggCamp 2024 in Manchester, UK this year, after an absence of 5 years. It will be on October 12th and 13th at the The Manchester Conference Centre in the Pendulum Hotel near Picadilly Station, where the last OggCamp was held. Details may be found on the OggCamp website, and announcements will be made on social media sites.

Self-Hosted
116: Making it all Connect

Self-Hosted

Play Episode Listen Later Feb 9, 2024 55:54


Alex has been deep-diving into container networking, and Chris is trying to steelman Plex's new rental service. Plus, why are we building our containers with Tailscale networking now, and the latest from the Home Assistant project?

Self-Hosted
115: A NAS in Every Home

Self-Hosted

Play Episode Listen Later Jan 26, 2024 48:53


Brian Moses joins us and shares his most recent NAS build and love for 3D printers. Then Alex gets into the hardware he's deploying around the house, and why we don't see eye-to-eye on ZigBee. Special Guest: Brian Moses.

FOCUS ON: Linux
Der Jahresrückblick

FOCUS ON: Linux

Play Episode Listen Later Dec 14, 2023 139:46


Das Jahr neigt sich dem Ende - während viele schon inmitten der Urlaubsvorbereitung sind und letzte Aufgaben abschließen, fassen wir das Jahr aus Linux- und Open Source-Sicht zusammen. Zusammen mit Dirk Deimeke und Marius Quabeck besprechen wir fachliche und politische Highlights, teilen unsere größten Aufreger und schönsten Event-Erfahrungen. Einige Jubiläen und Forks wollen nochmal thematisiert werden, bevor wir - wie gewohnt - mit Tooltipps abschließen.

Hacker Public Radio
HPR3936: HPR Community News for August 2023

Hacker Public Radio

Play Episode Listen Later Sep 4, 2023


table td.shrink { white-space:nowrap } hr.thin { border: 0; height: 0; border-top: 1px solid rgba(0, 0, 0, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.3); } New hosts Welcome to our new host: Fred Black. Last Month's Shows Id Day Date Title Host 3912 Tue 2023-08-01 Emergency Show: Biltong and Rooibos Shane Shennan 3913 Wed 2023-08-02 Lurking Prion Q and A Lurking Prion 3914 Thu 2023-08-03 how to deal with blisters dnt 3915 Fri 2023-08-04 Why the hell is my audio clipping? MrX 3916 Mon 2023-08-07 HPR Community News for July 2023 HPR Volunteers 3917 Tue 2023-08-08 Response to "Permission Tickets" by oneofspoons dnt 3918 Wed 2023-08-09 Emacs package curation, part 3 dnt 3919 Thu 2023-08-10 How I hacked my voice tuturto 3920 Fri 2023-08-11 RV Trip 2022-2023: Southeast US Ahuka 3921 Mon 2023-08-14 HPR AudioBook Club 23 - John Carter of Mars (Books 1-3) HPR_AudioBookClub 3922 Tue 2023-08-15 Silent Key Trey 3923 Wed 2023-08-16 Meal preparation. Some Guy On The Internet 3924 Thu 2023-08-17 Mass Quick Tips for August 2023 operat0r 3925 Fri 2023-08-18 Uncommon tools and social media Daniel Persson 3926 Mon 2023-08-21 Karate Do: An Overview Hipernike 3927 Tue 2023-08-22 Audacity Update 20230702 Ahuka 3928 Wed 2023-08-23 RE: Klaatu. Some Guy On The Internet 3929 Thu 2023-08-24 Some experiences with different notes apps Lee 3930 Fri 2023-08-25 Playing Civilization II Test of Time Ahuka 3931 Mon 2023-08-28 What Instrument was played in hpr3905? Fred Black 3932 Tue 2023-08-29 Short introduction to inxi folky 3933 Wed 2023-08-30 Planning for a planner. Some Guy On The Internet 3934 Thu 2023-08-31 Crusader Kings II tuturto Comments this month These are comments which have been made during the past month, either to shows released during the month or to past shows. There are 21 comments in total. Past shows There are 5 comments on 5 previous shows: hpr3840 (2023-04-21) "Playing the Original Civilization" by Ahuka. Comment 1: tuturto on 2023-08-08: "this brings back memories" hpr3855 (2023-05-12) "SSH (or OpenSSH) Escape Sequences" by Claudio Miranda. Comment 2: Windigo on 2023-08-16: "Secrets" hpr3856 (2023-05-15) "Painting toy soldiers" by Klaatu. Comment 2: tuturto on 2023-08-08: "great show" hpr3896 (2023-07-10) "The Brochs of Glenelg" by Andrew Conway. Comment 2: Windigo on 2023-08-23: "Intriguing show topic" hpr3904 (2023-07-20) "How to make friends" by Klaatu. Comment 2: Beeza on 2023-08-02: "Frienships" This month's shows There are 16 comments on 8 of this month's shows: hpr3916 (2023-08-07) "HPR Community News for July 2023" by HPR Volunteers. Comment 1: dnt on 2023-08-07: "grandfather clock" hpr3917 (2023-08-08) "Response to "Permission Tickets" by oneofspoons" by dnt. Comment 1: one_of_spoons on 2023-08-21: "breaking the spell"Comment 2: dnt on 2023-08-23: "re: breaking the spell" hpr3919 (2023-08-10) "How I hacked my voice" by tuturto. Comment 1: one_of_spoons on 2023-08-10: "Morphic resonance."Comment 2: tuturto on 2023-08-12: "lilting"Comment 3: dnt on 2023-08-23: "hacking your voice"Comment 4: tuturto on 2023-08-28: "you're welcome" hpr3921 (2023-08-14) "HPR AudioBook Club 23 - John Carter of Mars (Books 1-3)" by HPR_AudioBookClub. Comment 1: Kevin O'Brien on 2023-08-16: "Hearing 5150" hpr3922 (2023-08-15) "Silent Key" by Trey. Comment 1: tuturto on 2023-08-15: "my condolences"Comment 2: thelovebug on 2023-08-16: "My condolences" hpr3926 (2023-08-21) "Karate Do: An Overview" by Hipernike. Comment 1: Trey on 2023-08-23: "Thank you for sharing."Comment 2: Hipernike on 2023-08-28: "You're Welcome!" hpr3928 (2023-08-23) "RE: Klaatu." by Some Guy On The Internet. Comment 1: Trey on 2023-08-23: "Good Heavens!!"Comment 2: dnt on 2023-08-25: "Good heavens!!!!!!" hpr3933 (2023-08-30) "Planning for a planner." by Some Guy On The Internet. Comment 1: Trey on 2023-08-30: "Thank you for sharing."Comment 2: Kinghezy on 2023-08-31: "Interesting topic" Mailing List discussions Policy decisions surrounding HPR are taken by the community as a whole. This discussion takes place on the Mail List which is open to all HPR listeners and contributors. The discussions are open and available on the HPR server under Mailman. The threaded discussions this month can be found here: https://lists.hackerpublicradio.com/pipermail/hpr/2023-August/thread.html Events Calendar With the kind permission of LWN.net we are linking to The LWN.net Community Calendar. Quoting the site: This is the LWN.net community event calendar, where we track events of interest to people using and developing Linux and free software. Clicking on individual events will take you to the appropriate web page. Any other business Site Migration The process of moving the HPR site to its new location and implementing all of the features has been going on during August: Working on updating links on documentation pages Moving RSS feeds from the dynamic part of the site to the static side Making the comment forms work the same as before Making tags clickable Fixing Unicode problems Fixing various small bugs like the calculation of when to show the "Call for shows" message"" There are a number of problems yet to be tackled: Making links to pictures and other supplementary files work Making links in comments clickable We have had a number of very helpful problem reports, mainly through the #HPR channel on Matrix. It's also possible to raise issues on the Gitea site at https://repo.anhonesthost.net/rho_n/hpr_generator/issues, though it's necessary to have a username on the site before this can be done.

Hacker Public Radio
HPR3916: HPR Community News for July 2023

Hacker Public Radio

Play Episode Listen Later Aug 7, 2023


table td.shrink { white-space:nowrap } hr.thin { border: 0; height: 0; border-top: 1px solid rgba(0, 0, 0, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.3); } New hosts Welcome to our new hosts: HopperMCS, Reto. Last Month's Shows Id Day Date Title Host 3891 Mon 2023-07-03 HPR Community News for June 2023 HPR Volunteers 3892 Tue 2023-07-04 Emacs package curation, part 1 dnt 3893 Wed 2023-07-05 Game card design resources Klaatu 3894 Thu 2023-07-06 The Page 42 Show: Ugly News Week, Show's Epoch! HopperMCS 3895 Fri 2023-07-07 What's in my backpack Stache_AF 3896 Mon 2023-07-10 The Brochs of Glenelg Andrew Conway 3897 Tue 2023-07-11 HPR AudioBook Club 22 - Murder at Avedon Hill HPR_AudioBookClub 3898 Wed 2023-07-12 The Oh No! News. Some Guy On The Internet 3899 Thu 2023-07-13 Repair corrupt video files for free with untruc Paul Quirk 3900 Fri 2023-07-14 Preparing Podcasts for Listening Ahuka 3901 Mon 2023-07-17 Time Managment operat0r 3902 Tue 2023-07-18 Introduction to a new series on FFMPEG Mr. Young 3903 Wed 2023-07-19 Why I don't love systemd (yet) deepgeek 3904 Thu 2023-07-20 How to make friends Klaatu 3905 Fri 2023-07-21 Presenting Fred Black folky 3906 Mon 2023-07-24 The Oh No! News. Some Guy On The Internet 3907 Tue 2023-07-25 My introduction show Reto 3908 Wed 2023-07-26 Emacs package curation, part 2 dnt 3909 Thu 2023-07-27 Permission tickets. one_of_spoons 3910 Fri 2023-07-28 Playing Civilization II Ahuka 3911 Mon 2023-07-31 An overview of the 'ack' command Dave Morriss Comments this month These are comments which have been made during the past month, either to shows released during the month or to past shows. There are 20 comments in total. Past shows There are 4 comments on 3 previous shows: hpr3876 (2023-06-12) "Recording An Episode For Hacker Public Radio" by Ryuno-Ki. Comment 1: Reto on 2023-07-01: "Good information about recording" hpr3883 (2023-06-21) "Emergency Show: How to demonstrate the power of condensing steam" by Mike Ray. Comment 1: dnt on 2023-07-15: "Clap!" hpr3889 (2023-06-29) "comm - compare two sorted files line by line" by Ken Fallon. Comment 1: Reto on 2023-07-08: "KDirStat is dead, long live QDirStat!" Comment 2: Ken Fallon on 2023-07-12: "QDirstat is nice but I meant kdiff3" This month's shows There are 16 comments on 11 of this month's shows: hpr3891 (2023-07-03) "HPR Community News for June 2023" by HPR Volunteers. Comment 1: norrist on 2023-07-03: "solocast updates"Comment 2: Kevin O'Brien on 2023-07-04: "My truck" hpr3892 (2023-07-04) "Emacs package curation, part 1" by dnt. Comment 1: Klaatu on 2023-07-05: "I love this topic"Comment 2: dnt on 2023-07-11: "Do it!" hpr3894 (2023-07-06) "The Page 42 Show: Ugly News Week, Show's Epoch!" by HopperMCS. Comment 1: Kevin O'Brien on 2023-07-08: "I loved the show" hpr3896 (2023-07-10) "The Brochs of Glenelg" by Andrew Conway. Comment 1: dnt on 2023-07-29: "Ruins" hpr3900 (2023-07-14) "Preparing Podcasts for Listening" by Ahuka. Comment 1: Hipstre on 2023-07-14: "Limiter/GPodder"Comment 2: Eugene on 2023-07-16: "No need for podcast preprocessing"Comment 3: Kevin O'Brien on 2023-07-17: "Sansa Clip+" hpr3901 (2023-07-17) "Time Managment" by operat0r. Comment 1: Reto on 2023-07-18: "aCalendar on Android" hpr3902 (2023-07-18) "Introduction to a new series on FFMPEG" by Mr. Young. Comment 1: dnt on 2023-07-29: "ffmpeg" hpr3903 (2023-07-19) "Why I don't love systemd (yet)" by deepgeek. Comment 1: dnt on 2023-07-29: "systemd" hpr3904 (2023-07-20) "How to make friends" by Klaatu. Comment 1: dnt on 2023-07-29: "Friends"Comment 2: Beeza on 2023-08-02: "Frienships" hpr3909 (2023-07-27) "Permission tickets. " by one_of_spoons. Comment 1: dnt on 2023-07-29: "Great show, keep em coming!" hpr3910 (2023-07-28) "Playing Civilization II" by Ahuka. Comment 1: dnt on 2023-07-29: "Game mechanics" Mailing List discussions Policy decisions surrounding HPR are taken by the community as a whole. This discussion takes place on the Mail List which is open to all HPR listeners and contributors. The discussions are open and available on the HPR server under Mailman. The threaded discussions this month can be found here: https://lists.hackerpublicradio.com/pipermail/hpr/2023-July/thread.html Events Calendar With the kind permission of LWN.net we are linking to The LWN.net Community Calendar. Quoting the site: This is the LWN.net community event calendar, where we track events of interest to people using and developing Linux and free software. Clicking on individual events will take you to the appropriate web page. Any other business The HPR Static Site As mentioned in the last Community News episode, the HPR database and website was moved to a new server, and the static site generator written by Rho`n was used to generated the non-interactive part of the website. Since then, there has been a process of adapting the software to the new configuration. Unfortunately Rho`n has not been available during this process, but we are gradually learning our way around his excellent software and making changes to suit our needs. If you spot any problems or have ideas for new features, please raise issues on the Gitea repository at: https://repo.anhonesthost.net/rho_n/hpr_generator/issues. Reserve Queue A policy change is required in the use of the reserve queue. When there are unfilled slots between 5 and 7 days in the future, episodes in this queue will be used to fill them. This extra time is required because of the time it can take to process a show and load it to the Internet Archive. Bram Moolenaar, author of Vim dies There was an announcement from Bram's family today (2023-08-05) that he died on August 3rd 2023 from a medical problem that worsened recently. Bram Moolenar's page on Wikipedia

Atareao con Linux
ATA 475 - Mi propio GitHub de la mano de Gitea

Atareao con Linux

Play Episode Listen Later Mar 27, 2023 22:27


Cuando descubrí lo del control de versiones casi me explota la cabeza. ¿Como había podido vivir sin el control de versiones durante tanto tiempo?. A partir de ese descubrimiento, yo quería aplicar el control de versiones a cualquier cosa, y no solo a cuestiones relacionadas con la informática, sino literalmente a cualquier cosa. Con el paso del tiempo, esta fiebre del control de versiones se me fue pasando. Aunque te tengo que decir, que de vez en cuando tengo alguna que otra recaída, que se me suele pasar relativamente pronto. Esta fiebre volvió a mi, cuando descubrí que era posible mi propio GitHub de la mano de Gitea, y es precisamente de lo que te quiero hablar. Sobre Gitea, que es, y mi uso actual de él. --- Más información en las notas del podcast sobre Mi propio GitHub de la mano de Gitea

Sospechosos Habituales
ATA 475 - Mi propio GitHub de la mano de Gitea

Sospechosos Habituales

Play Episode Listen Later Mar 27, 2023 22:27


Cuando descubrí lo del control de versiones casi me explota la cabeza. ¿Como había podido vivir sin el control de versiones durante tanto tiempo?. A partir de ese descubrimiento, yo quería aplicar el control de versiones a cualquier cosa, y no solo a cuestiones relacionadas con la informática, sino literalmente a cualquier cosa. Con el paso del tiempo, esta fiebre del control de versiones se me fue pasando. Aunque te tengo que decir, que de vez en cuando tengo alguna que otra recaída, que se me suele pasar relativamente pronto. Esta fiebre volvió a mi, cuando descubrí que era posible mi propio GitHub de la mano de Gitea, y es precisamente de lo que te quiero hablar. Sobre Gitea, que es, y mi uso actual de él. --- Más información en las notas del podcast sobre Mi propio GitHub de la mano de Gitea

FOCUS ON: Linux
Newsupdate 11/22 – CVE-2022-3602/3786, Python 3.11, Fedora 37, Gitea-Fork, RHEL 8.7/9.1

FOCUS ON: Linux

Play Episode Listen Later Nov 25, 2022 65:15


Mit Python 3.11 und Fedora 37 besprechen wir zwei langersehnte Versionsupdates. Letzteres wurde aufgrund des berüchtigten CVE-2022-3602 und 3786 mehrfach verschoben. Ein neues Unternehmen rund um Gitea beschert uns einen Fork, während eine Diskussion über Blockchain-Technologie und LibreOffice die Gemüter erhitzt. Microsoft stellt seine neue Teams-PWA und Lennart Poettering mit Unified Kernel Images einen Ansatz vor, um den Bootvorgang weiter abzusichern. Feedback / AnkündigungenReddit-Post zu Ubuntu ARM64: https://www.reddit.com/r/thinkpad/comments/y9t4ns/thinkpad_x13s_running_arm64_ubuntu/Tweet über OpenBSD: https://twitter.com/mlarkin2012/status/1541760799533944832Linaro Installationsdokumentation: https://docs.google.com/document/d/1WuxE-42ZeOkKAft5FuUk6C2fonkQ8sqNZ56ZmZ49hGI/mobilebasic#heading=h.d1689esafskyTwitter is going great: https://twitterisgoinggreat.com/LNP445 Das Goldkettchen des Internets: https://logbuch-netzpolitik.de/lnp445-das-goldkettchen-des-internetsProxmox-Wiki zu Migrationen: https://pve.proxmox.com/wiki/Migration_of_servers_to_Proxmox_VEEure Fragen / Feedback / Sprachnachrichten für das Ask Us Anything-Special im Januar: podcast@sva.deCVE-2022-3602 / 3786https://github.com/colmmacc/CVE-2022-3602https://linuxnews.de/2022/11/02/openssl-luecke-nicht-so-gravierend-wie-angenommen/Python 3.11Phoronix-Artikel: https://www.phoronix.com/news/Python-3.11-ReleasedRelease Notes: https://www.python.org/downloads/release/python-3110/Fedora 37https://linuxnews.de/2022/11/15/fedora-linux-37-mit-gnome-43-und-plasma-5-26/https://fedoramagazine.org/announcing-fedora-37/https://gnulinux.ch/mesa-mit-h264-h265-und-vc1-decoding-unter-fedora-37https://www.heise.de/news/Linux-Distribution-Fedora-37-Viele-Varianten-weniger-Codecs-7340921.htmlhttps://fedoramagazine.org/fedora-linux-37-update/SHAttered-Sicherheitslücke: http://shattered.io/LibreOffice dachte über Blockchain nach: https://blog.documentfoundation.org/blog/2022/11/15/libreoffice-and-blockchain-what-cool-things-are-possible/Gitea Limited / Gitea-ForkAnkündigung von Gitea: https://blog.gitea.io/2022/10/open-source-sustainment-and-the-future-of-gitea/Offener Brief an Gitea Limited: https://gitea-open-letter.coding.social/Absage von Lunny Xiao: https://blog.gitea.io/2022/10/a-message-from-lunny-on-gitea-ltd.-and-the-gitea-project/Gitea-Fork: https://codeberg.org/forgejo/forgejoNamensdiskussion: https://codeberg.org/Forgejo/meta/issues/1Microsoft Teams PWA angekündigt: https://techcommunity.microsoft.com/t5/microsoft-teams-blog/microsoft-teams-progressive-web-app-now-available-on-linux/ba-p/3669846Unified Kernel Imagehttps://linuxnews.de/2022/10/29/ausblick-auf-fedora-linux-38-uki-und-ostree-native-container/https://wiki.archlinux.org/title/Unified_kernel_imageKurznewsFirefox wird 18: https://www.reddit.com/r/linux/comments/yqewhh/long_live_firefox/Thunderbird Supernova: https://9to5linux.com/thunderbirds-supernova-release-promises-revamped-calendar-ui-firefox-sync-supportAlmaLinux 9.1 veröffentlicht: https://linuxnews.de/2022/11/17/almalinux-os-9-1-mit-php-8-1-veroeffentlicht/RHEL 9.1 veröffentlicht: https://www.redhat.com/en/blog/rhel-91-now-availableRHEL 8.7 Release Notes: https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/8/html-single/8.7_release_notes/indexUbuntu 23.04: https://linuxnews.de/2022/11/14/ubuntu-23-04-heisst-lunar-lobster/TooltipsMastodon Instance-Finder: https://instances.social/Fedifinder: https://fedifinder.glitch.metwitter-archive-parser: https://github.com/timhutton/twitter-archive-parserpytest: https://docs.pytest.org/en/7.2.x/acme.sh: https://acme.sh

FOCUS ON: Linux
Newsupdate 11/22 – CVE-2022-3602/3786, Python 3.11, Fedora 37, Gitea-Fork, RHEL 8.7/9.1

FOCUS ON: Linux

Play Episode Listen Later Nov 25, 2022 65:15


Mit Python 3.11 und Fedora 37 besprechen wir zwei langersehnte Versionsupdates. Letzteres wurde aufgrund des berüchtigten CVE-2022-3602 und 3786 mehrfach verschoben. Ein neues Unternehmen rund um Gitea beschert uns einen Fork, während eine Diskussion über Blockchain-Technologie und LibreOffice die Gemüter erhitzt. Microsoft stellt seine neue Teams-PWA und Lennart Poettering mit Unified Kernel Images einen Ansatz vor, um den Bootvorgang weiter abzusichern. Feedback / AnkündigungenReddit-Post zu Ubuntu ARM64: https://www.reddit.com/r/thinkpad/comments/y9t4ns/thinkpad_x13s_running_arm64_ubuntu/Tweet über OpenBSD: https://twitter.com/mlarkin2012/status/1541760799533944832Linaro Installationsdokumentation: https://docs.google.com/document/d/1WuxE-42ZeOkKAft5FuUk6C2fonkQ8sqNZ56ZmZ49hGI/mobilebasic#heading=h.d1689esafskyTwitter is going great: https://twitterisgoinggreat.com/LNP445 Das Goldkettchen des Internets: https://logbuch-netzpolitik.de/lnp445-das-goldkettchen-des-internetsProxmox-Wiki zu Migrationen: https://pve.proxmox.com/wiki/Migration_of_servers_to_Proxmox_VEEure Fragen / Feedback / Sprachnachrichten für das Ask Us Anything-Special im Januar: podcast@sva.deCVE-2022-3602 / 3786https://github.com/colmmacc/CVE-2022-3602https://linuxnews.de/2022/11/02/openssl-luecke-nicht-so-gravierend-wie-angenommen/Python 3.11Phoronix-Artikel: https://www.phoronix.com/news/Python-3.11-ReleasedRelease Notes: https://www.python.org/downloads/release/python-3110/Fedora 37https://linuxnews.de/2022/11/15/fedora-linux-37-mit-gnome-43-und-plasma-5-26/https://fedoramagazine.org/announcing-fedora-37/https://gnulinux.ch/mesa-mit-h264-h265-und-vc1-decoding-unter-fedora-37https://www.heise.de/news/Linux-Distribution-Fedora-37-Viele-Varianten-weniger-Codecs-7340921.htmlhttps://fedoramagazine.org/fedora-linux-37-update/SHAttered-Sicherheitslücke: http://shattered.io/LibreOffice dachte über Blockchain nach: https://blog.documentfoundation.org/blog/2022/11/15/libreoffice-and-blockchain-what-cool-things-are-possible/Gitea Limited / Gitea-ForkAnkündigung von Gitea: https://blog.gitea.io/2022/10/open-source-sustainment-and-the-future-of-gitea/Offener Brief an Gitea Limited: https://gitea-open-letter.coding.social/Absage von Lunny Xiao: https://blog.gitea.io/2022/10/a-message-from-lunny-on-gitea-ltd.-and-the-gitea-project/Gitea-Fork: https://codeberg.org/forgejo/forgejoNamensdiskussion: https://codeberg.org/Forgejo/meta/issues/1Microsoft Teams PWA angekündigt: https://techcommunity.microsoft.com/t5/microsoft-teams-blog/microsoft-teams-progressive-web-app-now-available-on-linux/ba-p/3669846Unified Kernel Imagehttps://linuxnews.de/2022/10/29/ausblick-auf-fedora-linux-38-uki-und-ostree-native-container/https://wiki.archlinux.org/title/Unified_kernel_imageKurznewsFirefox wird 18: https://www.reddit.com/r/linux/comments/yqewhh/long_live_firefox/Thunderbird Supernova: https://9to5linux.com/thunderbirds-supernova-release-promises-revamped-calendar-ui-firefox-sync-supportAlmaLinux 9.1 veröffentlicht: https://linuxnews.de/2022/11/17/almalinux-os-9-1-mit-php-8-1-veroeffentlicht/RHEL 9.1 veröffentlicht: https://www.redhat.com/en/blog/rhel-91-now-availableRHEL 8.7 Release Notes: https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/8/html-single/8.7_release_notes/indexUbuntu 23.04: https://linuxnews.de/2022/11/14/ubuntu-23-04-heisst-lunar-lobster/TooltipsMastodon Instance-Finder: https://instances.social/Fedifinder: https://fedifinder.glitch.metwitter-archive-parser: https://github.com/timhutton/twitter-archive-parserpytest: https://docs.pytest.org/en/7.2.x/acme.sh: https://acme.sh

All Jupiter Broadcasting Shows

What you need to know about that new OpenSSL vulnerability, the big bcachefs update we've been waiting for, and why the community is creating a Gitea fork.

Linux Action News
Linux Action News 265

Linux Action News

Play Episode Listen Later Nov 3, 2022 17:27


What you need to know about that new OpenSSL vulnerability, the big bcachefs update we've been waiting for, and why the community is creating a Gitea fork.

Linux Action News Video
Linux Action News 265

Linux Action News Video

Play Episode Listen Later Nov 3, 2022


What you need to know about that new OpenSSL vulnerability, the big bcachefs update we've been waiting for, and why the community is creating a Gitea fork.

Linux Action News
Linux Action News 265

Linux Action News

Play Episode Listen Later Nov 3, 2022 17:27


What you need to know about that new OpenSSL vulnerability, the big bcachefs update we've been waiting for, and why the community is creating a Gitea fork.

All Jupiter Broadcasting Shows

The focus of the new Ubuntu release, Gitea's surprising announcement, and Linux prepares to drop another architecture.

Linux Action News
Linux Action News 264

Linux Action News

Play Episode Listen Later Oct 27, 2022 11:57


The focus of the new Ubuntu release, Gitea's surprising announcement, and Linux prepares to drop another architecture.

Linux Action News Video
Linux Action News 264

Linux Action News Video

Play Episode Listen Later Oct 27, 2022


The focus of the new Ubuntu release, Gitea's surprising announcement, and Linux prepares to drop another architecture.

Linux Action News
Linux Action News 264

Linux Action News

Play Episode Listen Later Oct 27, 2022 11:57


The focus of the new Ubuntu release, Gitea's surprising announcement, and Linux prepares to drop another architecture.

Hacker Public Radio
HPR3676: HPR Community News for August 2022

Hacker Public Radio

Play Episode Listen Later Sep 5, 2022


table td.shrink { white-space:nowrap } New hosts Welcome to our new hosts: Stache_AF, Hipernike. Last Month's Shows Id Day Date Title Host 3651 Mon 2022-08-01 HPR Community News for July 2022 HPR Volunteers 3652 Tue 2022-08-02 Registered memory JWP 3653 Wed 2022-08-03 Hello HPR Community Stache_AF 3654 Thu 2022-08-04 Use the data in the Ogg feed to create a website. norrist 3655 Fri 2022-08-05 BSD for Linux users binrc 3656 Mon 2022-08-08 Importance of Small toy projects norrist 3657 Tue 2022-08-09 Small time sysadmin Some Guy On The Internet 3658 Wed 2022-08-10 Linux Inlaws S01E62: HPR's inner workings monochromec 3659 Thu 2022-08-11 Developing an HPR static site generator Rho`n 3660 Fri 2022-08-12 BASIC Ahuka 3661 Mon 2022-08-15 Ham Radio testing Archer72 3662 Tue 2022-08-16 Hacker Public Radio 2021 - 2022 New Years Show Part 1 Honkeymagoo 3663 Wed 2022-08-17 How I got into Tech Stache_AF 3664 Thu 2022-08-18 Secret hat conversations Some Guy On The Internet 3665 Fri 2022-08-19 UNIX Is Sublime binrc 3666 Mon 2022-08-22 One Weird Trick Lurking Prion 3667 Tue 2022-08-23 Hacker Public Radio 2021 - 2022 New Years Show Part 2 Honkeymagoo 3668 Wed 2022-08-24 Linux Inlaws S01E63: John Hawley on kernel dot org and other shenanigans monochromec 3669 Thu 2022-08-25 My First Podcast: My Journey into the Computer World Hipernike 3670 Fri 2022-08-26 Changing Plans Ahuka 3671 Mon 2022-08-29 Response to Episode 3655, "BSD for Linux Users" Claudio Miranda 3672 Tue 2022-08-30 Hacker Public Radio 2021 - 2022 New Years Show Part 3 Honkeymagoo 3673 Wed 2022-08-31 Recording for Hacker Public Radio dnt Comments this month These are comments which have been made during the past month, either to shows released during the month or to past shows. There are 28 comments in total. Past shows There are 4 comments on 4 previous shows: hpr3606 (2022-05-30) "Infinity is just a big number and other proofs" by Ken Fallon. Comment 2: Ken Fallon on 2022-08-12: "You see" hpr3629 (2022-06-30) "Linux Inlaws S01E59: The Show with Red Pandas Mosaic Killers and Metal Corrosion" by monochromec. Comment 1: Aaron on 2022-08-12: "Excellent interview" hpr3643 (2022-07-20) "My computing history and the software I use" by binrc. Comment 5: Shawn on 2022-08-08: "Key bindings" hpr3648 (2022-07-27) "A response to tomorrows show" by Ken Fallon. Comment 3: folky on 2022-08-10: "Known Unknowns 2.0" This month's shows There are 24 comments on 13 of this month's shows: hpr3651 (2022-08-01) "HPR Community News for July 2022" by HPR Volunteers. Comment 1: Mike Ray on 2022-08-01: "API"Comment 2: Kevin O'Brien on 2022-08-11: "High Winds" hpr3655 (2022-08-05) "BSD for Linux users" by binrc. Comment 1: ClaudioM on 2022-08-05: "Excellent Breakdown of BSD!"Comment 2: norrist on 2022-08-05: "why I use OpenBSD and FreeBSD"Comment 3: Phoenix on 2022-08-07: "Suggestion"Comment 4: Kevin O'Brien on 2022-08-11: "I loved the show" hpr3656 (2022-08-08) "Importance of Small toy projects" by norrist. Comment 1: Some Guy On The Internet on 2022-08-20: "Love this show." hpr3657 (2022-08-09) "Small time sysadmin" by Some Guy On The Internet. Comment 1: Lurking Prion on 2022-08-13: "Thank you!"Comment 2: Kevin O'Brien on 2022-08-13: "Thank you" hpr3658 (2022-08-10) "Linux Inlaws S01E62: HPR's inner workings" by monochromec. Comment 1: Twinn on 2022-08-10: "Painful"Comment 2: Some Guy On The Internet on 2022-08-20: "I have more listeners than stars in the Universe." hpr3659 (2022-08-11) "Developing an HPR static site generator" by Rho`n. Comment 1: Some Guy On The Internet on 2022-08-20: "More Magic." hpr3660 (2022-08-12) "BASIC" by Ahuka. Comment 1: Beeza on 2022-08-18: "BASIC lives on"Comment 2: Some Guy On The Internet on 2022-08-20: "Visual Basic 6.0 for the Win." hpr3661 (2022-08-15) "Ham Radio testing" by Archer72. Comment 1: Archer72 on 2022-07-24: "Left out a show note" hpr3663 (2022-08-17) "How I got into Tech" by Stache_AF. Comment 1: dnt on 2022-08-31: "Welcome!" hpr3664 (2022-08-18) "Secret hat conversations" by Some Guy On The Internet. Comment 1: one_of_spoons on 2022-08-25: "serious talking" hpr3665 (2022-08-19) "UNIX Is Sublime" by binrc. Comment 1: Ken Fallon on 2022-08-12: "File extensions are valid"Comment 2: hipernike on 2022-08-19: "Bind mount"Comment 3: Some Guy On The Internet on 2022-08-20: "I like file extensions"Comment 4: one-of-spoons on 2022-08-20: "Free revision." hpr3666 (2022-08-22) "One Weird Trick" by Lurking Prion. Comment 1: Ken Fallon on 2022-08-11: "enthusiasm and willingness to learn"Comment 2: Lurking Prion on 2022-08-27: "Rare Gems, indeed!" hpr3671 (2022-08-29) "Response to Episode 3655, "BSD for Linux Users"" by Claudio Miranda. Comment 1: alan86 on 2022-08-30: "Feedback" Mailing List discussions Policy decisions surrounding HPR are taken by the community as a whole. This discussion takes place on the Mail List which is open to all HPR listeners and contributors. The discussions are open and available on the HPR server under Mailman. The threaded discussions this month can be found here: https://hackerpublicradio.org/pipermail/hpr_hackerpublicradio.org/2022-August/thread.html Events Calendar With the kind permission of LWN.net we are linking to The LWN.net Community Calendar. Quoting the site: This is the LWN.net community event calendar, where we track events of interest to people using and developing Linux and free software. Clicking on individual events will take you to the appropriate web page. Any other business Git repository for HPR development For security reasons the Gitea service running on https://repo.anhonesthost.net requires people to log in with an account to view the repositories. Is this acceptable or do we need to move the code to another location? Older HPR shows on archive.org, phase 2 Now that all shows from number 1 to the latest have been uploaded to the Internet Archive there are other tasks to perform. We are reprocessing and re-uploading shows in the range 871 to 2429 as explained in the Community News show notes released in May 2022. We are keeping a running total here to show progress: Month Month count Running total Remainder 2022-04 130 130 1428 2022-05 140 270 1288 2022-06 150 420 1138 2022-07 155 575 983 2022-08 155 730 828 Updated: 2022-09-03 18:34:16

Linux Lads
Season 7 - Episode 12: Reversed in the Nix of Time

Linux Lads

Play Episode Listen Later Aug 17, 2022 35:16


GitLab to delete dormant repos then does a 180° • Gitea working on federation support • NixOS has a GUI installer

LINUX Unplugged
464: Git Happens

LINUX Unplugged

Play Episode Listen Later Jun 27, 2022 73:15 Very Popular


We're going back in time to witness the early days of a critical tool to build Linux, then jump forward 15 years and join our buddy Brent on his journey to learn that very tooling.

Self-Hosted
72: First Account is Free

Self-Hosted

Play Episode Listen Later Jun 3, 2022 48:13


A quick-fire round of projects this week, your feedback, and a discussion about the future of Self-Hosting.

Atareao con Linux
ATA 387 Gitea o que no te despiste el brilli brilli

Atareao con Linux

Play Episode Listen Later May 23, 2022 27:22


Es indudable que nos vemos sometidos a cientos o miles de estímulos a lo largo del día. Las novedades nos entran por los ojos y nuestra curiosidad innata nos lleva a probar herramienta tras herramienta, aplicación tras aplicación y servicio tras servicio. En los últimos meses, yo diría que mas bien en el último año, he probado una cantidad ingente de aplicaciones, herramientas y servicios. O bien, por el soplo de aire fresco que nos ha traído Rust, o bien por que quería mostrarlas en el canal de YouTube. Sin embargo, también me he visto empujado por todo esto, y me he visto deslumbrado por el brilli brilli. Pero, no hay mal que por bien no venga. Esto me ha llevado a redescubrir un servicio como es Gitea, y centrar de nuevo el tiro. Si algo funciona ¿porque cambiarlo? --- Puedes seguir todas las publicaciones a través de Twitter

Sospechosos Habituales
ATA 387 Gitea o que no te despiste el brilli brilli

Sospechosos Habituales

Play Episode Listen Later May 23, 2022 27:22


Es indudable que nos vemos sometidos a cientos o miles de estímulos a lo largo del día. Las novedades nos entran por los ojos y nuestra curiosidad innata nos lleva a probar herramienta tras herramienta, aplicación tras aplicación y servicio tras servicio. En los últimos meses, yo diría que mas bien en el último año, he probado una cantidad ingente de aplicaciones, herramientas y servicios. O bien, por el soplo de aire fresco que nos ha traído Rust, o bien por que quería mostrarlas en el canal de YouTube. Sin embargo, también me he visto empujado por todo esto, y me he visto deslumbrado por el brilli brilli. Pero, no hay mal que por bien no venga. Esto me ha llevado a redescubrir un servicio como es Gitea, y centrar de nuevo el tiro. Si algo funciona ¿porque cambiarlo? --- Puedes seguir todas las publicaciones a través de Twitter

Admin Admin Podcast
Admin Admin Podcast #096 – Tech With A Cup Of Tea

Admin Admin Podcast

Play Episode Listen Later Feb 21, 2022 55:21


We talk about Netdata and Let's Encrypt; Gitea, Drone and self-hosting; and whether to go SaaS or Open Source.

Linux User Space
Episode 2:09: Garudians of the Galaxy

Linux User Space

Play Episode Listen Later Oct 25, 2021 98:01


0:00 Cold Open 1:15 Coming Up 1:50 Banter - Gitea in Docker 11:48 History: Garuda 52:27 Thoughts: Garuda 1:15:42 Housekeeping 1:21:36 App Focus 1:33:46 Next Time 1:35:28 Thank You 1:36:24 Stinger Patreon. (https://patreon.com/linuxuserspace) Youtube. (https://linuxuserspace.show/youtube) Twitter. (https://linuxuserspace.show/twitter) Odysee. (https://linuxuserspace.show/odysee) Discord. (https://linuxuserspace.show/discord) Telegram. (https://linuxuserspace.show/telegram) Matrix. (https://linuxuserspace.show/matrix) Reddit. (https://linuxuserspace.show/reddit) Coming up in this episode 1. Leo got tea in Docker 2. We teach you how to train your Dragon 3. We fly like an eagle 4. Our app pick helps Leo install Mac and Windows Banter - Tea Time, come and Git it. Gitea (https://gitea.com) Garuda Linux Garuda Linux (https://garudalinux.org/) Wikipedia page for Garuda (https://en.wikipedia.org/wiki/Garuda_Linux) Gnome was almost officially dropped (https://forum.garudalinux.org/t/dropping-gnome-for-good/77) The site gets its first revamp. (https://forum.garudalinux.org/t/new-look-for-the-website/140) Calamares gets a facelift (https://forum.garudalinux.org/t/new-calamares-outfit/134) The Ultimate Edition is killed (https://forum.garudalinux.org/t/garuda-linux-release-200726/155) performance-tweaks is introduced (https://forum.garudalinux.org/t/performance-tweaks/194) Wayfire is official (https://forum.garudalinux.org/t/garuda-linux-release-200726/155) Distrowatch Review (https://distrowatch.com/weekly.php?issue=20200921#garuda) 9to5 Linux coverage (https://9to5linux.com/arch-linux-based-garuda-linux-gaming-distro-now-supports-snap-and-flatpak-apps) btrfs subvolume layout's current form is finalized (https://forum.garudalinux.org/t/garuda-linux-golden-eagle-iso-refresh-201022/1051) The iconic Garuda look is added. (https://forum.garudalinux.org/t/garuda-linux-imperial-eagle-201205/1774) Starship shell (https://starship.rs/) Firedragon, Librewolf fork which is a Firefox fork, becomes the default browser. (https://forum.garudalinux.org/t/firedragon-librewolf-fork/5018/163) Chaotic AUR turns three! (https://forum.garudalinux.org/t/chaotic-aur-turns-three-years-old/13502) Site: garudalinux.org formerly garudalinux.in Base System: Arch Desktop Environment: Flagship: Plasma File Manager: Flagship: Dolphin Package Manager: pacman Kernel: Most Up To Date Zen Kernel Display Manager: Flagship: SDDM Display Protocol: Wayland or X11 Project Leaders: Librewish, SGS & Dragonfire Other Team Members (https://garudalinux.org/about.html) Housekeeping mintCast (https://mintcast.org) Email us - contact@linuxuserspace.show Linux User Space Discord Server (https://linuxuserspace.show/discord) Our Matrix room (https://linuxuserspace.show/matrix) Support us at Patreon (https://patreon.com/linuxuserspace) Join us on Telegram (https://linuxuserspace.show/telegram) Follow us on Twitter (https://twitter.com/LinuxUserSpace) Watch us on YouTube (https://linuxuserspace.show/youtube) Or Watch us on Odysee (https://linuxuserspace.show/odysee) Our latest social platform reddit (https://linuxuserspace.show/reddit) Check out our website https://linuxuserspace.show App Focus Quickemu This episode's app: * Quickemu (https://github.com/wimpysworld/quickemu) Next Time With us trying out Garuda Linux for this past month, that means our next show will be topic based. We have a few topics planned for you and all of them will affect you in the Linux User Space. Our next distro to check out is Zorin OS (https://zorin.com/os/) Join us in two weeks when we return to the Linux User Space Stay tuned on Twitter, Telegram, Matrix, Discord, Reddit whatever. Join the conversation. Talk to us, and give us more ideas. We would like to acknowledge our top patrons. Thank you for your support! Contributor Nicholas CubicleNate LiNuXsys666 Jill and Steve WalrusZ sleepyeyesvince Co-Producer Donnie Johnny Producer Bruno John

Self-Hosted
56: Feeling Wyze

Self-Hosted

Play Episode Listen Later Oct 22, 2021 39:41


Local self-hosted video capture with AI object detection just got easy. Morgan joins us to detail his Frigate setup and its optional tight integration with Home Assistant. Plus, our new favorite up time monitoring tool and an easy way to add Tailscale and other apps to OPNsense with community plugins. Special Guest: Morgan Peterman.

Atareao con Linux
ATA 268. Sobre copias de seguridad. Una de preguntas y respuestas.

Atareao con Linux

Play Episode Listen Later Apr 1, 2021 25:02


No insistiré sobre la importancia de que tengas tus copias de seguridad, mas que nada, por no hacerme pesado, pero si, es fundamental que hagas copias de seguridad. Y no será por las opciones, en lo que a herramientas se refiere, para hacer estos backup. Y no solo por herramientas, sino también por comodidad, porque ciertamente, no necesitas estás tu, delante del software para que se hagan las copias de seguridad. Solo tienes que habilitar el cron, tal y como te cuento en el artículo sobre programación de tareas con cron, para que otro se encargue todos los días de realizarlo. Cada uno es cada uno y pierde su información como quiere. En mi caso, ya me ha salvado de mas de un disgusto.Es inevitable que con borres algún archivo sin pretenderlo. Y borrar un archivo es un fastidio, pero tener que reescribir un documento es algo realmente odioso. Así que, haz tus copias de seguridad Sobre copias de seguridad. Una de preguntas y respuestas. Política de respaldos JF pregunta, Nos puedes compartir como funciona o está organizando tu política de respaldos? O como interpretas en tu ámbito personal la regla de 3-2-1 Backup? Madre mía si lo tengo olvidado este asunto que he tenido que buscar en el crontab donde estaba y como estaba configurado. Y la verdad me he sorprendido a mi mismo, porque lo sigo al pie de la letra. Para realizar las copias de seguridad utilizo Borg. Hablé sobre esta herramienta en el episodio 173 del podcast, titulado Hice un rm -rf. Salvado por Borg. Actualmente hago tres copias de seguridad, Una se queda en mi propio equipoLa segunda va al NAS que tenemos en casaY por último, la tercera va a un VPS. Por supuesto, que las copias de seguridad van cifradas, y mantengo los últimos 3 días, las últimas tres semanas y los tres últimos meses. Dicho esto, comentar, que la mayoría de la información que tengo, es pública. Está en repositorios ya sea en GitHub o GitLab, o en la web. En el podcast 173 puedes encontrar el script, aproximado, que utilizo para realizar todas estas copias de seguridad. Digo aproximado, porque con el paso del tiempo he ido incluyendo algunas modificaciones. Servidor git Rayco pregunta, Hola, estaría interesante un tutorial para montar un servidor git en nuestra propia raspberry.También abarcar temas de seguridad a tener en cuenta si abrimos nuestra raspberry "al mundo". Pero bueno todo esto seguro que ya hay muchas cosas escritas!Un saludo Respecto a la primera de las preguntas, sobre el tema del servidor git. Entiendo que te refieres a algo como Gitea o incluso GitLab. Aunque sinceramente no se si te vale la pena. Solo lo considero necesario si quieres tener una visión de la situación de tu repositorio o si quieres colaborar con alguien mas, o hacer otro tipo de labores administrativas. ... Más información en las notas del podcast sobre copias de seguridad

Sospechosos Habituales
ATA 268. Sobre copias de seguridad. Una de preguntas y respuestas.

Sospechosos Habituales

Play Episode Listen Later Apr 1, 2021 25:02


No insistiré sobre la importancia de que tengas tus copias de seguridad, mas que nada, por no hacerme pesado, pero si, es fundamental que hagas copias de seguridad. Y no será por las opciones, en lo que a herramientas se refiere, para hacer estos backup. Y no solo por herramientas, sino también por comodidad, porque ciertamente, no necesitas estás tu, delante del software para que se hagan las copias de seguridad. Solo tienes que habilitar el cron, tal y como te cuento en el artículo sobre programación de tareas con cron, para que otro se encargue todos los días de realizarlo. Cada uno es cada uno y pierde su información como quiere. En mi caso, ya me ha salvado de mas de un disgusto.Es inevitable que con borres algún archivo sin pretenderlo. Y borrar un archivo es un fastidio, pero tener que reescribir un documento es algo realmente odioso. Así que, haz tus copias de seguridad Sobre copias de seguridad. Una de preguntas y respuestas. Política de respaldos JF pregunta, Nos puedes compartir como funciona o está organizando tu política de respaldos? O como interpretas en tu ámbito personal la regla de 3-2-1 Backup? Madre mía si lo tengo olvidado este asunto que he tenido que buscar en el crontab donde estaba y como estaba configurado. Y la verdad me he sorprendido a mi mismo, porque lo sigo al pie de la letra. Para realizar las copias de seguridad utilizo Borg. Hablé sobre esta herramienta en el episodio 173 del podcast, titulado Hice un rm -rf. Salvado por Borg. Actualmente hago tres copias de seguridad, Una se queda en mi propio equipoLa segunda va al NAS que tenemos en casaY por último, la tercera va a un VPS. Por supuesto, que las copias de seguridad van cifradas, y mantengo los últimos 3 días, las últimas tres semanas y los tres últimos meses. Dicho esto, comentar, que la mayoría de la información que tengo, es pública. Está en repositorios ya sea en GitHub o GitLab, o en la web. En el podcast 173 puedes encontrar el script, aproximado, que utilizo para realizar todas estas copias de seguridad. Digo aproximado, porque con el paso del tiempo he ido incluyendo algunas modificaciones. Servidor git Rayco pregunta, Hola, estaría interesante un tutorial para montar un servidor git en nuestra propia raspberry.También abarcar temas de seguridad a tener en cuenta si abrimos nuestra raspberry "al mundo". Pero bueno todo esto seguro que ya hay muchas cosas escritas!Un saludo Respecto a la primera de las preguntas, sobre el tema del servidor git. Entiendo que te refieres a algo como Gitea o incluso GitLab. Aunque sinceramente no se si te vale la pena. Solo lo considero necesario si quieres tener una visión de la situación de tu repositorio o si quieres colaborar con alguien mas, o hacer otro tipo de labores administrativas. ... Más información en las notas del podcast sobre copias de seguridad

LINUX Unplugged
379: Favorite Linux Tweaks

LINUX Unplugged

Play Episode Listen Later Nov 10, 2020 71:03


We round up our favorite tweaks to the desktop, and apps that make it great. Plus some highlights from Arch Conf, and our reaction to Mint finally fixing their Chromium problem. Special Guest: Drew DeVore.

BSD Now
367: Changing jail datasets

BSD Now

Play Episode Listen Later Sep 10, 2020 45:28


A 35 Year Old Bug in Patch, Sandbox for FreeBSD, Changing from one dataset to another within a jail, You don’t need tmux or screen for ZFS, HardenedBSD August 2020 Status Report and Call for Donations, and more. NOTES This episode of BSDNow is brought to you by Tarsnap (https://www.tarsnap.com/) Headlines A 35 Year Old Bug in Patch (http://bsdimp.blogspot.com/2020/08/a-35-year-old-bug-in-patch-found-in.html) Larry Wall posted patch 1.3 to mod.sources on May 8, 1985. A number of versions followed over the years. It's been a faithful alley for a long, long time. I've never had a problem with patch until I embarked on the 2.11BSD restoration project. In going over the logs very carefully, I've discovered a bug that bites this effort twice. It's quite interesting to use 27 year old patches to find this bug while restoring a 29 year old OS... Sandbox for FreeBSD (https://www.relkom.sk/en/fbsd_sandbox.shtml) A sandbox is a software which artificially limits access to the specific resources on the target according to the assigned policy. The sandbox installs hooks to the kernel syscalls and other sub-systems in order to interrupt the events triggered by the application. From the application point of view, application working as usual, but when it wants to access, for instance, /dev/kmem the sandbox software decides against the assigned sandbox scheme whether to grant or deny access. In our case, the sandbox is a kernel module which uses MAC (Mandatory Access Control) Framework developed by the TrustedBSD team. All necessary hooks were introduced to the FreeBSD kernel. Source Code (https://gitlab.com/relkom/sandbox) Documentation (https://www.relkom.sk/en/fbsd_sandbox_docs.shtml) News Roundup Changing from one dataset to another within a jail (https://dan.langille.org/2020/08/16/changing-from-one-dataset-to-another-within-a-freebsd-iocage-jail/) ZFS has a the ability to share itself within a jail. That gives the jail some autonomy, and I like that. I’ve written briefly about that, specifically for iocage. More recently, I started using a zfs snapshot for caching clearing. The purpose of this post is to document the existing configuration of the production FreshPorts webserver and outline the plan on how to modify it for more zfs-snapshot-based cache clearing. You don’t need tmux or screen for ZFS (https://rubenerd.com/you-dont-need-tmux-or-screen-for-zfs/) Back in January I mentioned how to add redundancy to a ZFS pool by adding a mirrored drive. Someone with a private account on Twitter asked me why FreeBSD—and NetBSD!—doesn’t ship with a tmux or screen equivilent in base in order to daemonise the process and let them run in the background. ZFS already does this for its internal commands. HardenedBSD August 2020 Status Report and Call for Donations (https://hardenedbsd.org/article/shawn-webb/2020-08-15/hardenedbsd-august-2020-status-report-and-call-donations) This last month has largely been a quiet one. I've restarted work on porting five-year-old work from the Code Pointer Integrity (CPI) project into HardenedBSD. Chiefly, I've started forward-porting the libc and rtld bits from the CPI project and now need to look at llvm compiler/linker enhancements. We need to be able to apply SafeStack to shared objects, not just application binaries. This forward-porting work I'm doing is to support that effort. The infrastructure has settled and is now churning normally and happily. We're still working out bandwidth issues. We hope to have a new fiber line ran by the end of September. As part of this status report, I'm issuing a formal call for donations. I'm aiming for $4,000.00 USD for a newer self-hosted Gitea server. I hope to purchase the new server before the end of 2020. Important parts of Unix's history happened before readline support was common (https://utcc.utoronto.ca/~cks/space/blog/unix/TimeBeforeReadline) Unix and things that run on Unix have been around for a long time now. In particular, GNU Readline was first released in 1989 (as was Bash), which is long enough ago for it (or lookalikes) to become pretty much pervasive, especially in Unix shells. Today it's easy to think of readline support as something that's always been there. But of course this isn't the case. Unix in its modern form dates from V7 in 1979 and 4.2 BSD in 1983, so a lot of Unix was developed before readline and was to some degree shaped by the lack of it. Tarsnap This weeks episode of BSDNow was sponsored by our friends at Tarsnap, the only secure online backup you can trust your data to. Even paranoids need backups. Feedback/Questions Mason - mailserver (https://github.com/BSDNow/bsdnow.tv/blob/master/episodes/367/feedback/Mason%20-%20mailserver.md) casey - freebsd on decline (https://github.com/BSDNow/bsdnow.tv/blob/master/episodes/367/feedback/casey%20-%20freebsd%20on%20decline.md) denis - postgres (https://github.com/BSDNow/bsdnow.tv/blob/master/episodes/367/feedback/denis%20-%20postgres.md) *** Send questions, comments, show ideas/topics, or stories you want mentioned on the show to feedback@bsdnow.tv (mailto:feedback@bsdnow.tv) ***

IT-Keller
ITK051 Jacke wie Hose

IT-Keller

Play Episode Listen Later Apr 30, 2020 72:25


Walpurgisnacht; Brachiograph (Matthias' Plotter); Bosch Gluey Heißklebestift; Retropie; 8bitdo SN30 Gamepads; Broforce Plattformspiel; Studio Link "Headset-Echo-Problem"; GitLab; Gitea; Jitsi und Firefox; Google Meet; Firefox Developer Edition; Svelte; Chrome Debugging für CSS Grid kommt; Single Sign-on und Identity Provider Keycloak; Chrome Dinosaur Game Hack; Jekyll-Octopod findet immer mehr Verwendung; Logbuch:Freiheit; Neue Wiener Linien Echtzeitdaten; Monitore; Quake3-Arena-Server; TowerFall Ascension Gäste: Stefan und Ulrich

Hacker Culture

Gitea is a fork of Gogs; both of which are a self hosted Git solution putting you in full control of your repos. Join us at chat.jrswab.com --- Support this podcast: https://anchor.fm/hackerculture/support

This Week in Linux
Episode 52 | This Week in Linux

This Week in Linux

Play Episode Listen Later Jan 27, 2019 60:36


WINE 4.0, LXQt 0.14, Parrot OS, Mastodon, MythTV, Gitea, APT Vulnerability | This Week in Linux 52 On this episode of This Week in Linux, we got some big new releases from the WINE project, LXQt, Parrot OS, Mastodon, MythTV, Gitea, and many more! We’ll also check out a security issue regarding the APT package… Read more

Tomando Un Café
Tomando Un Café 44: Charla con Angel de Ugeek.

Tomando Un Café

Play Episode Listen Later Oct 17, 2018 103:59


Otro audio especial y con invitado, en este caso con Angel de Ugeek, donde hemos hablado de Raspberry, Rock64 y los servicios que utilizamos ene ese dispositivos. Lista de aplicaciones DietPi https://dietpi.com/ Raspbian http://www.raspbian.org/ TinyRSS https://tt-rss.org/ Volumio https://volumio.org/ Syncloud https://syncloud.org/ Mumble https://www.mumble.info/ KeepassX https://www.keepassx.org/ Passman https://www.passman.cc/ Airsonic https://airsonic.github.io/ Subsonic http://www.subsonic.org Algo https://github.com/trailofbits/algo Streisand https://github.com/StreisandEffect/streisand Pivpn http://www.pivpn.io/ Gitea https://gitea.io Gogs https://gogs.io/ Recordar que el próximo mes de Noviembre, el podcast Tomando Un Café cumple un año, quería hacer un episodio especial con los oyentes. Me gustaria pedir audio, correos o mensaje por Telegram donde comentar que te ha parece el podcast, se admiten sugerencias. y me gustaría que respondierais a dos preguntas: ¿Porque utilizas Linux? ¿Qué aplicación de Linux te ha sorprendido en este último año? Si quieres apoyarme de forma económica para mis podcast y canales, puedes realizarlo de diferentes formas: PayPal https://paypal.me/JoseAJimenez Programa afiliado de Amazon https://amzn.to/2Myjet8. Digital Ocean https://m.do.co/c/34c3769f0465, con este enlace tendrás 10$ para probar sus servicios, cuando gastes 25$ yo recibiré la misma cantidad para mantener alojado mi blog rooteando.com Correo tomandouncafe@ntec.eu Twitter https://twitter.com/Tomando_Un_Cafe RSS Anchor.fm http://anchor.fm/s/18c0860/podcast/rss Blog(post y audios) https://rooteando.com/feed/ Whooshkaa https://rss.whooshkaa.com/rss/podcast/id/2429 Ivoox https://www.ivoox.com/podcast-tomando-un-cafe_sq_f1483612_1.html

GoFr
GoFr - Episode 02

GoFr

Play Episode Listen Later Oct 11, 2018 23:57


Avec mon accolyte Thomas Perez, au programme : La communauté des gophers francophones, des coups de cœurs, des événements et l'annonce du gagnant au jeu du cadeau mystère. Retours/Commentaires/Suggestions : gofr(arobase)assad.fr Liens : * [FrenchGo](https://frenchgo.fr/) Porte d'entrée vers la communauté des gophers francophones. (contact: https://twitter.com/sebastienfriess) * [Hugo](https://gohugo.io/) Le plus rapide des générateurs de site statiques * [Journey](https://kabukky.github.io/journey/) Blog engine compatible avec les thèmes de ghost * [Gitea](https://gitea.io) Clone de gogs (github like) plus communautaire * [Blog de Vincent Demeester](http://vincent.demeester.fr/) Un blog d'un gopher Français * [Compagnie qui utilisent Go](https://github.com/golang/go/wiki/GoUsers) Liste de compagnies utilisant Golang * [Women Who Go](https://www.meetup.com/fr-FR/Women-Who-Go-Paris/) Meeteup Women Who Go à Paris * [Hacktoberbest](https://hacktoberfest.digitalocean.com/) Jeu pour contribuer à des projets githubs. * [SFEIR School](https://www.sfeir.com/formation/school/calendrier/) Formation Golang gratuite le 27&28 Novembre 2018 * [Meetup Golang Marseille](https://www.meetup.com/fr-FR/Golang-Marseille/events/255190437/) Meetup Golang Aix-Marseille * [GDG Aix-Marseille](https://www.meetup.com/fr-FR/GDG-Aix-Marseille/) Google Developer Group - Meetup de développeurs sur Aix-Marseille * [GDG Lille ](https://www.meetup.com/fr-FR/GDG-Lille/) Google Developer Group - Meetup de développeurs sur Lille * [Go's new Brand](https://storage.googleapis.com/golang-assets/Go-brand-book-v1.9.5.pdf) La nouvelle communication sur Golang * [DotGo Paris](https://www.dotgo.eu/) La conférence internationale sur le Go qui se déroule à Paris * [Sondage StackOverflow](ttps://insights.stackoverflow.com/survey/2018#technology) * [Liste de lecture Gophers](https://github.com/enocom/gopher-reading-list) * [Organisation de meetup](https://github.com/corylanou/go-meetup) Si le podcast vous plait, merci de m'aider à le faire connaitre en plussant/likant sur les sites suivants : https://www.reddit.com/r/golang/comments/9n7fx3/gofr_episode_02_is_out_podcast_in_french/ https://www.facebook.com/GoFr-883192005210759/ https://twitter.com/aassad/status/1050280384146141186 https://www.linkedin.com/feed/update/urn:li:activity:6456046894438248449

WPblab - A WordPress Social Media Show
WPblab EP111 – Beyond Local: Why Market Yourself Internationally

WPblab - A WordPress Social Media Show

Play Episode Listen Later Sep 6, 2018 60:39


In this episode Jason and Bridget will chat about the pros and cons of international travel when it comes to marketing your WordPress business.EP5-Embracing the Community Through VoluntourismYoast Diversity Fund • YoastRobert Windisch (@nullbytes)Multidots-Custom & Mobile Application Development|Enterprise WordPressProviding Enterprise Software Development Services since 2009Birgit Pauli-Haack (@bph)Multidots (@multidots)Jon Brown (@jb510)GitHub - schlessera/as-speaking: AlainSchlesser.com Speaking Page Plugin.HazeOver:Distraction Dimmer™ for Productivity on MacAlainSchlesser.com Speaking Page Plugin.This WP plugin will update GitHub, Bitbucket, GitLab, and Gitea hosted plugins and themesBridget Willard See acast.com/privacy for privacy and opt-out information.

All JavaScript Podcasts by Devchat.tv
JSJ 323: "Building a JavaScript platform that gives you the power to build your own CDN" with Kurt Mackey

All JavaScript Podcasts by Devchat.tv

Play Episode Listen Later Jul 26, 2018 63:05


Panel: Charles Max Wood AJ ONeal Special Guests: Kurt Mackey In this episode, the JavaScript Jabber panel talks to Kurt Mackey about Fly.io. At Fly.io, they are "building a JavaScript platform that gives you the power to build your own CDN." They talk about how Fly.io came to fruition, how CDN caching works, and what happens when you deploy a Fly app. They also touch on resizing images with Fly, how you actually build JavaScript platforms using Fly, and more! In particular, we dive pretty deep on: Fly.io Building a programmable CDN High level overview of Fly.io How did this project come together? CDNs didn’t work with dynamic applications Has been working on this since 2008 Extend application logic to the “edge” Putting burden of JavaScript “nastiest” onto the web server Fly is the proxy layer Getting things closer to visitors and users CDN caching Cache APIs Writing logic to improve your lighthouse score Have you built in resizing images into Fly? Managing assets closer to the user Can you modify your own JavaScript files? What happens when you deploy a Fly app Having more application logic DOM within the proxy Ghost React and Gatsby Intelligently loading client JavaScript How do you build the JavaScript platform? And much, much more! Links: Fly.io JavaScript Ghost Gatsby React @flydotio @mrkurt Kurt at ARS Technica Kurt’s GitHub Sponsors Kendo UI Sentry Digital Ocean Picks: Charles GitLab AJ Gitea Black Panther Kurt Packet.net The Three-Body Problem by Cixin Liu

JavaScript Jabber
JSJ 323: "Building a JavaScript platform that gives you the power to build your own CDN" with Kurt Mackey

JavaScript Jabber

Play Episode Listen Later Jul 26, 2018 63:05


Panel: Charles Max Wood AJ ONeal Special Guests: Kurt Mackey In this episode, the JavaScript Jabber panel talks to Kurt Mackey about Fly.io. At Fly.io, they are "building a JavaScript platform that gives you the power to build your own CDN." They talk about how Fly.io came to fruition, how CDN caching works, and what happens when you deploy a Fly app. They also touch on resizing images with Fly, how you actually build JavaScript platforms using Fly, and more! In particular, we dive pretty deep on: Fly.io Building a programmable CDN High level overview of Fly.io How did this project come together? CDNs didn’t work with dynamic applications Has been working on this since 2008 Extend application logic to the “edge” Putting burden of JavaScript “nastiest” onto the web server Fly is the proxy layer Getting things closer to visitors and users CDN caching Cache APIs Writing logic to improve your lighthouse score Have you built in resizing images into Fly? Managing assets closer to the user Can you modify your own JavaScript files? What happens when you deploy a Fly app Having more application logic DOM within the proxy Ghost React and Gatsby Intelligently loading client JavaScript How do you build the JavaScript platform? And much, much more! Links: Fly.io JavaScript Ghost Gatsby React @flydotio @mrkurt Kurt at ARS Technica Kurt’s GitHub Sponsors Kendo UI Sentry Digital Ocean Picks: Charles GitLab AJ Gitea Black Panther Kurt Packet.net The Three-Body Problem by Cixin Liu

Devchat.tv Master Feed
JSJ 323: "Building a JavaScript platform that gives you the power to build your own CDN" with Kurt Mackey

Devchat.tv Master Feed

Play Episode Listen Later Jul 26, 2018 63:05


Panel: Charles Max Wood AJ ONeal Special Guests: Kurt Mackey In this episode, the JavaScript Jabber panel talks to Kurt Mackey about Fly.io. At Fly.io, they are "building a JavaScript platform that gives you the power to build your own CDN." They talk about how Fly.io came to fruition, how CDN caching works, and what happens when you deploy a Fly app. They also touch on resizing images with Fly, how you actually build JavaScript platforms using Fly, and more! In particular, we dive pretty deep on: Fly.io Building a programmable CDN High level overview of Fly.io How did this project come together? CDNs didn’t work with dynamic applications Has been working on this since 2008 Extend application logic to the “edge” Putting burden of JavaScript “nastiest” onto the web server Fly is the proxy layer Getting things closer to visitors and users CDN caching Cache APIs Writing logic to improve your lighthouse score Have you built in resizing images into Fly? Managing assets closer to the user Can you modify your own JavaScript files? What happens when you deploy a Fly app Having more application logic DOM within the proxy Ghost React and Gatsby Intelligently loading client JavaScript How do you build the JavaScript platform? And much, much more! Links: Fly.io JavaScript Ghost Gatsby React @flydotio @mrkurt Kurt at ARS Technica Kurt’s GitHub Sponsors Kendo UI Sentry Digital Ocean Picks: Charles GitLab AJ Gitea Black Panther Kurt Packet.net The Three-Body Problem by Cixin Liu

All JavaScript Podcasts by Devchat.tv
JSJ 321: Babel and Open Source Software with Henry Zhu

All JavaScript Podcasts by Devchat.tv

Play Episode Listen Later Jul 10, 2018 57:53


Panel: Charles Max Wood Aimee Knight AJ ONeal Joe Eames Special Guests: Henry Zhu In this episode, the JavaScript Jabber panel talks to Henry Zhu about Babel and open source software. Henry is one of the maintainers on Babel, which is a JavaScript compiler, and recently left this job to work on doing open source full time as well as working on Babel. They talk about where Babel is today, what it actually is, and his focus on his open source career. They also touch on how he got started in open source, his first PR, and more! In particular, we dive pretty deep on: Henry intro Babel update Sebastian McKenzie was the original creator of Babel Has learned a lot about being a maintainer What is Babel? JavaScript compiler You never know who your user is Has much changed with Babel since Sebastian left? Working on open source How did you get started in pen source? The ability to learn a lot from open source Atrocities of globalization More decentralization from GitHub Gitea and GitLab Gitea installer Open source is more closed now His first PR JSCS Auto-fixing Prettier Learning more about linting You don’t have to have formal training to be successful Codefund.io Sustainability of open source And much, much more! Links: Babel JavaScript Gitea GitLab Gitea installer Prettier Codefund.io @left_pad Henry’s GitHub henryzoo.com Henry’s Patreon Sponsors Kendo UI Sentry Digital Ocean Picks: Charles Orphan Black Crucial Accountability by Kerry Patterson Aimee Desk with cubby holes for cats The Key to Good Luck Is an Open Mind blog post AJ Gitea Gitea installer Greenlock Joe Solo Justified Henry Celeste Zeit Day talks

JavaScript Jabber
JSJ 321: Babel and Open Source Software with Henry Zhu

JavaScript Jabber

Play Episode Listen Later Jul 10, 2018 57:53


Panel: Charles Max Wood Aimee Knight AJ ONeal Joe Eames Special Guests: Henry Zhu In this episode, the JavaScript Jabber panel talks to Henry Zhu about Babel and open source software. Henry is one of the maintainers on Babel, which is a JavaScript compiler, and recently left this job to work on doing open source full time as well as working on Babel. They talk about where Babel is today, what it actually is, and his focus on his open source career. They also touch on how he got started in open source, his first PR, and more! In particular, we dive pretty deep on: Henry intro Babel update Sebastian McKenzie was the original creator of Babel Has learned a lot about being a maintainer What is Babel? JavaScript compiler You never know who your user is Has much changed with Babel since Sebastian left? Working on open source How did you get started in pen source? The ability to learn a lot from open source Atrocities of globalization More decentralization from GitHub Gitea and GitLab Gitea installer Open source is more closed now His first PR JSCS Auto-fixing Prettier Learning more about linting You don’t have to have formal training to be successful Codefund.io Sustainability of open source And much, much more! Links: Babel JavaScript Gitea GitLab Gitea installer Prettier Codefund.io @left_pad Henry’s GitHub henryzoo.com Henry’s Patreon Sponsors Kendo UI Sentry Digital Ocean Picks: Charles Orphan Black Crucial Accountability by Kerry Patterson Aimee Desk with cubby holes for cats The Key to Good Luck Is an Open Mind blog post AJ Gitea Gitea installer Greenlock Joe Solo Justified Henry Celeste Zeit Day talks

Devchat.tv Master Feed
JSJ 321: Babel and Open Source Software with Henry Zhu

Devchat.tv Master Feed

Play Episode Listen Later Jul 10, 2018 57:53


Panel: Charles Max Wood Aimee Knight AJ ONeal Joe Eames Special Guests: Henry Zhu In this episode, the JavaScript Jabber panel talks to Henry Zhu about Babel and open source software. Henry is one of the maintainers on Babel, which is a JavaScript compiler, and recently left this job to work on doing open source full time as well as working on Babel. They talk about where Babel is today, what it actually is, and his focus on his open source career. They also touch on how he got started in open source, his first PR, and more! In particular, we dive pretty deep on: Henry intro Babel update Sebastian McKenzie was the original creator of Babel Has learned a lot about being a maintainer What is Babel? JavaScript compiler You never know who your user is Has much changed with Babel since Sebastian left? Working on open source How did you get started in pen source? The ability to learn a lot from open source Atrocities of globalization More decentralization from GitHub Gitea and GitLab Gitea installer Open source is more closed now His first PR JSCS Auto-fixing Prettier Learning more about linting You don’t have to have formal training to be successful Codefund.io Sustainability of open source And much, much more! Links: Babel JavaScript Gitea GitLab Gitea installer Prettier Codefund.io @left_pad Henry’s GitHub henryzoo.com Henry’s Patreon Sponsors Kendo UI Sentry Digital Ocean Picks: Charles Orphan Black Crucial Accountability by Kerry Patterson Aimee Desk with cubby holes for cats The Key to Good Luck Is an Open Mind blog post AJ Gitea Gitea installer Greenlock Joe Solo Justified Henry Celeste Zeit Day talks

uGeek - Tecnología, Android, Linux, Servidores y mucho más...

El GitHub - GitLab de mi Raspberry. Gitea Sigue leyendo el post completo de El GitHub - GitLab de mi Raspberry. Gitea Visita uGeek Podcast Visita uGeek Podcast Suscribete al Podcast de uGeek