Logo

    i3

    Explore " i3" with insightful episodes like "i3: Employee-Owned with an ESOP | Courtney White", "489: Brent's Secret Emails", "489: Brent's Secret Emails", "17: The Hosts, Odilon, and Dan" and "390: Eating the License Cake" from podcasts like ""Security Cleared Jobs: Who's Hiring & How", "LINUX Unplugged", "LIVE Unplugged", "Fedora Project Podcast" and "LINUX Unplugged"" and more!

    Episodes (19)

    i3: Employee-Owned with an ESOP | Courtney White

    i3: Employee-Owned with an ESOP | Courtney White

    Growing people while solving the nation’s toughest problems is how Technical Recruiter Courtney White describes Integration Innovation, Inc. (i3). This employee-owned company offers an employee stock ownership program and is growing quickly, nearing 800 employees. “Make a difference while making a living.”

    “We solve really tough technical problems. We pride ourselves on our ability to make a difference while we are making a living and doing our jobs. We work hard, we serve hard, we compete hard, and we play hard.”

    Find show notes and additional links at: https://clearedjobs.net/i3-employee-owned-with-an-esop-podcast/

    17: The Hosts, Odilon, and Dan

    17: The Hosts, Odilon, and Dan
    In this episode: We talk with the Fedora i3 SIG (https://docs.fedoraproject.org/en-US/i3/) about the new Fedora i3 spin (https://spins.fedoraproject.org/en/i3/) Design goals (https://docs.fedoraproject.org/en-US/i3/design-goals/) Fedora Magazine Article (https://fedoramagazine.org/introducing-the-fedora-i3-spin/) IRC room is #fedora-i3 on Libera chat (https://web.libera.chat/#fedora-i3) Matrix room is #fedora-i3:matrix.org (https://matrix.to/#/#fedora-i3:matrix.org) Telegram room (https://t.me/FedoraI3SIG) Mailing list is i3wm@lists.fedoraproject.org (https://lists.fedoraproject.org/admin/lists/i3wm.lists.fedoraproject.org/) We also mention that Fedora NEST (https://flocktofedora.org/) is starting on the 5th of August! Announcement article (https://communityblog.fedoraproject.org/update-nest-with-fedora-cfp-registration-open/) Get your tickets here (https://hopin.com/events/nest-with-fedora-2021) The Fedora Podcast might even be giving a talk! For the show notes, our chat room, and more, go to https://podcast.fedoraproject.org

    372: Distro Triforce

    372: Distro Triforce
    What would it really take to get you to switch Linux distributions? We debate the practical reasons more and more people are sticking with the big three. Plus Carl from System76 stops by to surprise us with some firmware news. Chapters: 0:00 Pre-Show 2:22 Intro 2:36 SPONSOR: A Cloud Guru 4:24 USB Booting the Pi 4 10:10 System76 Open Firmware Update 23:14 SPONSOR: Linode 25:28 OpenPOWER Summit 2020 29:23 EndeavourOS ARM 30:14 Housekeeping 30:53 SPONSOR: Unplugged Core Contributors 32:59 It's Really Just a Three Distro World 46:37 Feedback: systemd Skepticism 50:50 Feedback: EmacsConf2020 51:40 Picks 52:12 Pick: Cloud Hypervisor 53:51 Pick: SongRec 54:45 Pick: tmpmail 55:55 Pick: MyPaas 57:16 Outro 59:11 Post-Show Special Guests: Brent Gervais, Carl Richell, and Neal Gompa.

    360: Full circle

    360: Full circle
    Chasing a bad commit, New FreeBSD Core Team elected, Getting Started with NetBSD on the Pinebook Pro, FreeBSD on the Intel 10th Gen i3 NUC, pf table size check and change, and more. NOTES This episode of BSDNow is brought to you by Tarsnap (https://www.tarsnap.com/) Headlines Chasing a bad commit (https://vishaltelangre.com/chasing-a-bad-commit/) While working on a big project where multiple teams merge their feature branches frequently into a release Git branch, developers often run into situations where they find that some of their work have been either removed, modified or affected by someone else's work accidentally. It can happen in smaller teams as well. Two features could have been working perfectly fine until they got merged together and broke something. That's a highly possible case. There are many other cases which could cause such hard to understand and subtle bugs which even continuous integration (CI) systems running the entire test suite of our projects couldn't catch. We are not going to discuss how such subtle bugs can get into our release branch because that's just a wild territory out there. Instead, we can definitely discuss about how to find a commit that deviated from an expected outcome of a certain feature. The deviation could be any behaviour of our code that we can measure distinctively — either good or bad in general. New FreeBSD Core Team Elected (https://www.freebsdnews.com/2020/07/14/new-freebsd-core-team-elected/) The FreeBSD Project is pleased to announce the completion of the 2020 Core Team election. Active committers to the project have elected your Eleventh FreeBSD Core Team.! Baptiste Daroussin (bapt) Ed Maste (emaste) George V. Neville-Neil (gnn) Hiroki Sato (hrs) Kyle Evans (kevans) Mark Johnston (markj) Scott Long (scottl) Sean Chittenden (seanc) Warner Losh (imp) *** News Roundup Getting Started with NetBSD on the Pinebook Pro (https://bentsukun.ch/posts/pinebook-pro-netbsd/) If you buy a Pinebook Pro now, it comes with Manjaro Linux on the internal eMMC storage. Let’s install NetBSD instead! The easiest way to get started is to buy a decent micro-SD card (what sort of markings it should have is a science of its own, by the way) and install NetBSD on that. On a warm boot (i.e. when rebooting a running system), the micro-SD card has priority compared to the eMMC, so the system will boot from there. + A FreeBSD developer has borrowed some of the NetBSD code to get audio working on RockPro64 and Pinebook Pro: https://twitter.com/kernelnomicon/status/1282790609778905088 FreeBSD on the Intel 10th Gen i3 NUC (https://adventurist.me/posts/00300) I have ended up with some 10th Gen i3 NUC's (NUC10i3FNH to be specific) to put to work in my testbed. These are quite new devices, the build date on the boxes is 13APR2020. Before I figure out what their true role is (one of them might have to run linux) I need to install FreeBSD -CURRENT and see how performance and hardware support is. pf table size check and change (https://www.dragonflydigest.com/2020/06/29/24698.html) Did you know there’s a default size limit to pf’s state table? I did not, but it makes sense that there is one. If for some reason you bump into this limit (difficult for home use, I’d think), here’s how you change it (http://lists.dragonflybsd.org/pipermail/users/2020-June/381261.html) There is a table-entries limit specified, you can see current settings with 'pfctl -s all'. You can adjust the limits in the /etc/pf.conf file containing the rules with a line like this near the top: set limit table-entries 100000 + In the original mail thread, there is mention of the FreeBSD sysctl net.pf.request_maxcount, which controls the maximum number of entries that can be sent as a single ioctl(). This allows the user to adjust the memory limit for how big of a list the kernel is willing to allocate memory for. Beastie Bits tmux and bhyve (https://callfortesting.org/tmux/) Azure and FreeBSD (https://azuremarketplace.microsoft.com/en-us/marketplace/apps/thefreebsdfoundation.freebsd-12_1) Groff Tutorial (https://www.youtube.com/watch?v=bvkmnK6-qao&feature=youtu.be) *** ###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. Tarsnap Mastery (https://mwl.io/nonfiction/tools#tarsnap) Feedback/Questions Chris - ZFS Question (https://github.com/BSDNow/bsdnow.tv/blob/master/episodes/360/feedback/Chris%20-%20zfs%20question.md) Patrick - Tarsnap (https://github.com/BSDNow/bsdnow.tv/blob/master/episodes/360/feedback/Patrick%20-%20Tarsnap.md) Pin - pkgsrc (https://github.com/BSDNow/bsdnow.tv/blob/master/episodes/360/feedback/pin%20-%20pkgsrc.md) *** Send questions, comments, show ideas/topics, or stories you want mentioned on the show to feedback@bsdnow.tv (mailto:feedback@bsdnow.tv) ***

    363: Return of the Terminal Server

    363: Return of the Terminal Server
    Fedora makes a bold move and Microsoft seems to be working on their ideal "Cloud PC", we ponder what Linux has to offer. Plus an easy way to remotely watch movies with others, and a bunch of your feedback. Chapters: 0:00 Pre-Show 0:29 Intro 2:34 RSI Woes 7:21 Jellyfin 13:12 Proxmox Backup Server 16:22 ProcMon for Linux 20:16 Fedora 33 Defaults to Btrfs 24:27 systemd-oomd 26:38 Housekeeping 28:41 Riot Becomes Element 32:36 Mysterious Microsoft Job Posting 39:19 Picks: Polybar 40:57 Picks: ytop 42:43 Feedback 48:50 Outro 50:06 Post-Show Special Guests: Brent Gervais, Drew DeVore, and Neal Gompa.

    350: Focal Focus

    350: Focal Focus
    The latest Ubuntu LTS is here, but does it live up to the hype? And how practical are the new ZFS features? We dig into the performance, security, and stability of Focal Fossa. Plus our thoughts on the new KWin fork, if Bleachbit is safe, and a quick Fedora update. Special Guests: Brent Gervais and Drew DeVore.
    Logo

    © 2024 Podcastworld. All rights reserved

    Stay up to date

    For any inquiries, please email us at hello@podcastworld.io