Podcast appearances and mentions of randal schwartz

  • 18PODCASTS
  • 81EPISODES
  • 58mAVG DURATION
  • ?INFREQUENT EPISODES
  • Jun 15, 2023LATEST
randal schwartz

POPULARITY

20172018201920202021202220232024


Best podcasts about randal schwartz

Latest podcast episodes about randal schwartz

Flying High with Flutter
Dart 3 - Flying High with Flutter #115

Flying High with Flutter

Play Episode Listen Later Jun 15, 2023 95:47


Hi everyone! We had a great conversation with Randal Schwartz. Randal is an esteemed Dart & Flutter Google Developer Expert and has also authored several books about Perl. Randal will be sharing his insights on Dart 3. Check out the episode and share it with your friends!Resources:https://fluttercommunity.social/@randalschwartzhttps://www.linkedin.com/in/randalschwartz/https://www.patreon.com/FlyingHighWithFlutterOn the show:

Flying High with Flutter
Why Flutter? - Flying High with Flutter #43

Flying High with Flutter

Play Episode Listen Later Jan 26, 2022 59:20


Hi everyone! We had a great time with Randal Schwartz. Randal is a GDE for Flutter & Dart, also the author of several books about Perl. In this episode, Randal shared with us about why Flutter! Don't miss out! Watch the video now and share it with your friends!Credits:

The History of Computing
Perl, Larry Wall, and Camels

The History of Computing

Play Episode Listen Later Nov 21, 2021 15:00


Perl was started by Larry Wall in 1987. Unisys had just released the 2200 series and only a few years stopped using the name UNIVAC for any of their mainframes. They merged with Burroughs the year before to form Unisys. The 2200 was a continuation of the 36-bit UNIVAC 1107, which went all the way back to 1962. Wall was one of the 100,000 employees that helped bring in over 10 and a half billion in revenues, making Unisys the second largest computing company in the world at the time. They merged just in time for the mainframe market to start contracting. Wall had grown up in LA and Washington and went to grad school at the University of California at Berkeley. He went to the Jet Propulsion Laboratory after Grad School and then landed at System Development Corporation, which had spun out of the SAGE missile air defense system in 1955 and merged into Burroughs in 1986, becoming Unisys Defense Systems. The Cold War had been good to Burroughs after SDC built the timesharing components of the AN/FSQ-32 and the JOVIAL programming language. But changes were coming. Unix System V had been released in 1983 and by 1986 there was a rivalry with BSD, which had been spun out of UC - Berkeley where Wall went to school. And by then AT&T had built up the Unix System Development Laboratory, so Unix was no longer just a language for academics. Wall had some complicated text manipulation to program on these new Unix system and as many of us have run into, when we exceed a certain amount of code, awk becomes unwieldy - both from a sheer amount of impossible to read code and from a runtime perspective. Others were running into the same thing and so he got started on a new language he named Practical Extraction And Report Language, or Perl for short. Or maybe it stands for Pathologically Eclectic Rubbish Lister. Only Wall could know. The rise of personal computers gave way to the rise of newsgroups, and NNTP went to the IETF to become an Internet Draft in RFC 977. People were posting tools to this new medium and Wall posted his little Perl project to comp.sources.unix in 1988, quickly iterating to Perl 2 where he added the languages form of regular expressions. This is when Perl became one of the best programming languages for text processing and regular expressions available at the time. Another quick iteration came when more and more people were trying to write arbitrary data into objects with the rise of byte-oriented binary streams. This allowed us to not only read data from text streams, terminated by newline characters, but to read and write with any old characters we wanted to. And so the era of socket-based client-server technologies was upon us. And yet, Perl would become even more influential in the next wave of technology as it matured alongside the web. In the meantime, adoption was increasing and the only real resource to learn Perl was a the manual, or man, page. So Wall worked with Randal Schwartz to write Programming Perl for O'Reilly press in 1991. O'Reilly has always put animals on the front of their books and this one came with a Camel on it. And so it became known as “the pink camel” due to the fact that the art was pink and later the art was blue and so became just “the Camel book”. The book became the primary reference for Perl programmers and by then the web was on the rise. Yet perl was still more of a programming language for text manipulation. And yet most of what we did as programmers at the time was text manipulation. Linux came around in 1991 as well. Those working on these projects probably had no clue what kind of storm was coming with the web, written in 1990, Linux, written in 1991, php in 1994, and mysql written in 1995. It was an era of new languages to support new ways of programming. But this is about Perl - whose fate is somewhat intertwined. Perl 4 came in 1993. It was modular, so you could pull in external libraries of code. And so CPAN came along that year as well. It's a repository of modules written in Perl and then dropped into a location on a file system that was set at the time perl was compiled, like /usr/lib/perl5. CPAN covers far more libraries than just perl, but there are now over a quarter million packages available, with mirrors on every continent except Antartica. That second edition coincided with the release of Perl 5 and was published in 1996. The changes to the language had slowed down for a bit, but Perl 5 saw the addition of packages, objects, references, and the authors added Tom Christiansen to help with the ever-growing camel book. Perl 5 also brought the extension system we think of today - somewhat based off the module system in Linux. That meant we could load the base perl into memory and call those extensions. Meanwhile, the web had been on the rise and one aspect of the power of the web was that while there were front-ends that were stateless, cookies had come along to maintain a user state. Given the variety of systems html was able to talk to mod_perl came along in 1996, from Gisle Was and others started working on ways to embed perl into pages. Ken Coar chaired a working group in 1997 to formalize the concept of the Common Gateway Interface. Here, we'd have a common way to call external programs from web servers. The era of web interactivity was upon us. Pages that were constructed on the fly could call scripts. And much of what was being done was text manipulation. One of the powerful aspects of Perl was that you didn't have to compile. It was interpreted and yet dynamic. This meant a source control system could push changes to a site without uploading a new jar - as had to be done with a language like Java. And yet, object-oriented programming is weird in perl. We bless an object and then invoke them with arrow syntax, which is how Perl locates subroutines. That got fixed in Perl 6, but maybe 20 years too late to use a dot notation as is the case in Java and Python. Perl 5.6 was released in 2000 and the team rewrote the camel book from the ground up in the 3rd edition, adding Jon Orwant to the team. This is also when they began the design process for Perl 6. By then the web was huge and those mod_perl servlets or CGI scripts were, along with PHP and other ways of developing interactive sites, becoming common. And because of CGI, we didn't have to give the web server daemons access to too many local resources and could swap languages in and out. There are more modern ways now, but nearly every site needed CGI enabled back then. Perl wasn't just used in web programming. I've piped a lot of shell scripts out to perl over the years and used perl to do complicated regular expressions. Linux, Mac OS X, and other variants that followed Unix System V supported using perl in scripting and as an interpreter for stand-alone scripts. But I do that less and less these days as well. The rapid rise of the web mean that a lot of languages slowed in their development. There was too much going on, too much code being developed, too few developers to work on the open source or open standards for a project like Perl. Or is it that Python came along and represented a different approach with modules in python created to do much of what Perl had done before? Perl saw small slow changes. Python moved much more quickly. More modules came faster, and object-oriented programming techniques hadn't been retrofitted into the language. As the 2010s came to a close, machine learning was on the rise and many more modules were being developed for Python than for Perl. Either way, the fourth edition of the Camel Book came in 2012, when Unicode and multi-threading was added to Perl. Now with Brian Foy as a co-author. And yet, Perl 6 sat in a “it's coming so soon” or “it's right around the corner” or “it's imminent” for over a decade. Then 2019 saw Perl 6 finally released. It was renamed to Raku - given how big a change was involved. They'd opened up requests for comments all the way back in 2000. The aim was to remove what they considered historical warts, that the rest of us might call technical debt. Rather than a camel, they gave it a mascot called Camelia, the Raku Bug. Thing is, Perl had a solid 10% market share for languages around 20 years ago. It was a niche langue maybe, but that popularity has slowly fizzled out and appears to be on a short resurgence with the introduction of 6 - but one that might just be temporary. One aspect I've always loved about programming is the second we're done with anything, we think of it as technical debt. Maybe the language or server matures. Maybe the business logic matures. Maybe it's just our own skills. This means we're always rebuilding little pieces of our code - constantly refining as we go. If we're looking at Perl 6 today we have to look at whether we want to try and do something in Python 3 or another language - or try and just update Perl. If Perl isn't being used in very many micro-services then given the compliance requirements to use each tool in our stack, it becomes somewhat costly to think of improving our craft with Perl rather than looking to use possibly more expensive solutions at runtime, but less expensive to maintain. I hope Perl 6 grows and thrives and is everything we wanted it to be back in the early 2000s. It helped so much in an era and we owe the team that built it and all those modules so much. I'll certainly be watching adoption with fingers crossed that it doesn't fade away. Especially since I still have a few perl-based lamda functions out there that I'd have to rewrite. And I'd like to keep using Perl for them!

Flutter 101 Podcast
Flutter Development Experience with Chris Sells

Flutter 101 Podcast

Play Episode Listen Later Aug 27, 2021 33:57


Chris Sells is a Senior Product Manager at Google on Flutter. Chris is responsible for the end-to-end development experience, as well as tooling, the package ecosystem, and the desktop platform support.Flutter on the desktop is getting more popular day every day, though it is (unsurprisingly) behind mobile and web in popularity. Flutter's desktop support allows you to compile Flutter source code to a native Windows, macOS, or Linux desktop app.We also talked about the Flutter Favorite program: The aim of the Flutter Favorite program is to identify packages and plugins that you should first consider when building your app. Chris explained what metrics they consider, how the Flutter Ecosystem Committee works,  and the quality standards that a Flutter Favorite package has to pass.The outstanding Flutter development experience also relies on the community. Chris highlighted various projects, including detective.dev, Codemagic's improved desktop features, and FlutterFlow.Chris also shared what his typical day as a Product Manager is like, how usability studies work, and how different packages' ergonomics can be evaluated.Guest: Chris SellsTwitter @csellsGitHub @csellsLinkedIn @csellsWeb sellsbrothers.comHost: Vince VargaTwitter @vincevargadevGitHub @vincevargadevLinkedIn @vincevargadevWeb vincevarga.devFlutter 101 Podcast on Twitter @flutter101devMost relevant past episodes from Flutter 101Dart in the Cloud, Backend, Command Line and Shelf with Kevin Moore (Episode 14): Kevin Moore is a Product Manager at Google working on Dart and Flutter. Dart in the cloud, on the backend, and on the command line. Functions Framework for Dart, Google Cloud Run, Docker and Dart, Shelf, and many many other useful packages.Null Safety with Randal Schwartz (Episode 8): We talked to Randal Schwartz, GDE for Flutter and Dart, about null safety in Dart and we received a couple of tips for migrating to null safety.Publishing Packages with Vince Varga (Episode 5): Let's go through the steps of publishing Dart packages on pub.dev. From idea to execution and publishing. Write a good README, keep your code clean and tested, set up a CI/CD pipeline to keep things in pristine condition, and do not forget the docs!Mentioned packagespub.dev/packages/provider: A wrapper around InheritedWidget to make them easier to use and more reusable.Other resourcesFlutter Medium: Follow Flutter's Medium for updates and interesting blog posts.Flutter Favorite Program (Flutter Docs): The aim of the Flutter Favorite program is to identify packages and plugins that you should first consider when building your app.Desktop support for Flutter (Flutter Docs): Desktop support allows you to compile Flutter source code to a native Windows, macOS, or Linux desktop app.Kevin Moore (Google IO, YouTube): Building platform adaptive apps: Flutter now supports six platforms across mobile, desktop, and the web. Learn best practices for making your application feel at home on each of these platforms while also maximizing code reuse.Building adaptive apps (Flutter Docs): Flutter provides new opportunities to build apps that can run on mobile, desktop, and the web from a single codebase. [...] You want your app to feel familiar to users, adapting to each platform by maximizing usability and ensuring a comfortable and seamless experience.Flutter Favorite packages on pub.dev: You can see the complete list of Flutter Favorite packages on pub.dev.FlutterFlow: Build Flutter Apps Effortlessly. Building mobile applications has never been easier.Detective (detective.dev): Real-time state inspection and more to solve the mysteries in your Flutter app in record time.Codemagic: CI/CD for mobile that matches your needs.Flutter macOS desktop publishing with Codemagic: With Codemagic, you can easily get a head start and publish your applications to the macOS App Store!github.com/flutter/uxr: Flutter User Experience ResearchFlutter routing packages usability research report (PDF): ... We formed a small research team to investigate the proposed community solutions and evaluate whether to recommend one of them to our users or, at least, provide guidance about how to choose a routing API.The description above include quotes from the referenced links in order to let you get a better grasp of what the linked article is about. 

Flutter 101 Podcast
Null Safety with Randal Schwartz

Flutter 101 Podcast

Play Episode Listen Later May 21, 2021 57:14


My guest today is Randal Schwartz. He is a Google Developer Expert on Flutter and Dart. He is also very active in the Perl community and he wrote multiple books on Perl, he was the host of FLOSS weekly, a podcast about Free Libre Open Source Software.In this episode, we focused on null safety with Dart. Dart 2.12 added support for null safety. When you opt into null safety, types in your code are non-nullable by default. This means that variables can't contain null unless you say they can. With null safety, your runtime null-dereference errors turn into edit-time analysis errors.We also talked about migrating our existing code to null safety, and the migrations tools that can help us make the migration process as seamless as possible.ResourcesDart documentationSound null safetyMigrating to null safetyUnderstanding null safety  by Bob NystromUnsound null safetyNull safety FAQDart language evolutionFLOSS WeeklyEpisode 245: Dart (Seth Ladd)Episode 511: Flutter 1.0 (Eric Seidel)Flutter Community Humpday Q&A/AMAFrom the Flutter Team, it's Fitz!Null Safety and Cloud Functions with Kevin MooreDart "mockito" null safetyflutter.dev/communityGuest: Randal SchwartzTwitter @RandalSchwartzGitHub @RandalSchwartzLinkedIn linkedin.com/in/randalschwartzWeb stonehenge.comYouTubeGoogle Developer Expert ProfileWikipediaHost: Vince VargaTwitter @vincevargadevGitHub @vincevargadevLinkedIn @vincevargadevWeb vincevarga.dev

Flutter 101 Podcast
Publishing Packages with Vince Varga

Flutter 101 Podcast

Play Episode Listen Later Apr 23, 2021 25:26


Let's talk about publishing packages.This is the first solo episode that I made, I hope you like it. If you do, please let me know and I'll make sure to schedule episodes like these every once in a while.Why would you want to open source a piece of code? Believe it or not, it can benefit everyone: you, your employer, and the community.You can use public packages as part of your portfolio, or CV, you might get fast-tracked during an interview process, you can learn a lot and have fun while doing so. It can help you earn street-cred and it could help you find clients easier.You can even try to convince your employer to open-source some parts of your application. Companies that contribute to the community might be a more interesting option for applicants, so packages might help the company get greater visibility and hire easier. External contributions to the package can eliminate bugs and thus improve the original application of the company.In this episode, I walk you through the publishing process. I explain how to decide whether  to use stagehand, flutter create, or what files you need if you want to do the "boilerplate" on your own. I talk about the importance of a good README, great documentation, and a solid testing suite when developing packages.Once you are ready, you can also quickly set up CI/CD and coverage monitor. Then, you can go ahead and let the world know about your awesome package!UpdatesCheckout the Dart command-line tool docs. Use dart create instead of stagehand. Thank you, Randal Schwartz, for the update!Resourcespub.devstagehandPackage layout conventionsDeveloping packages and pluginsflutter createGitHub Actionscodecov.iopub publishHost: Vince VargaTwitter @vincevargadevGitHub @vincevargadevLinkedIn @vincevargadevI'm sorry that I didn't position my microphone correctly in the second half of the episode nor did I install my pop filter. It's slightly annoying in an episode about publishing packages and multiplatform plugins on the pub.dev page.

StarShipSofa
StarShipSofa No 650 Edward Ashton

StarShipSofa

Play Episode Listen Later Dec 30, 2020 42:09


Main Fiction: "Wolves" by Edward AshtonThis story first appeared in Analog Science Fiction and Fact (October 2019).Edward Ashton lives in a cabin in the woods (not that Cabin in the Woods) with his wife, a variable number of daughters, and an adorably mopey dog named Max. He is the author of the novels Three Days in April and The End of Ordinary, as well as of short stories which have appeared in venues ranging from the newsletter of an Italian sausage company to Escape Pod, Analog, and Fireside Fiction.You can find him online at edwardashton.com, or on Twitter @edashtonwriting.Narrated by Randal Schwartz.Randal Schwartz isRandal Schwartz, also known as merlyn, is an American author, system administrator and programming consultant. He is known for his expertise in the Perl programming language, his promotional role within the Perl community, as a co-host of FLOSS Weekly. Support this show http://supporter.acast.com/starshipsofa. See acast.com/privacy for privacy and opt-out information.

american italian ordinary cabin analog three days escape pod floss weekly starshipsofa fireside fiction analog science fiction randal schwartz
FLOSS Weekly (Video HI)
FLOSS Weekly 577: Presto

FLOSS Weekly (Video HI)

Play Episode Listen Later May 6, 2020 63:00


Distributed SQL Query Engine.Presto is an open-source distributed SQL query engine for running interactive analytic queries against data sources of all sizes ranging from gigabytes to petabytes. Presto allows querying data where it lives, including Hive, Cassandra, relational databases, or even proprietary data stores. A single Presto query can combine data from multiple sources, allowing for analytics across your entire organization. Hosts: Randal Schwartz and Simon Phipps Guests: Manfred Moser and Dain Sundstrom Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsors: twit.cachefly.com barracuda.com/floss

clients analytics analysts big data aws hive sql presto floss management tools guis simon phipps floss weekly randal schwartz relational databases lullabot's jeff robbins floss weekly email randal
FLOSS Weekly (Video HD)
FLOSS Weekly 577: Presto

FLOSS Weekly (Video HD)

Play Episode Listen Later May 6, 2020 63:00


Distributed SQL Query Engine.Presto is an open-source distributed SQL query engine for running interactive analytic queries against data sources of all sizes ranging from gigabytes to petabytes. Presto allows querying data where it lives, including Hive, Cassandra, relational databases, or even proprietary data stores. A single Presto query can combine data from multiple sources, allowing for analytics across your entire organization. Hosts: Randal Schwartz and Simon Phipps Guests: Manfred Moser and Dain Sundstrom Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsors: twit.cachefly.com barracuda.com/floss

clients analytics analysts big data aws hive sql presto floss management tools guis simon phipps floss weekly randal schwartz relational databases lullabot's jeff robbins floss weekly email randal
FLOSS Weekly (MP3)
FLOSS Weekly 577: Presto

FLOSS Weekly (MP3)

Play Episode Listen Later May 6, 2020 63:00


Distributed SQL Query Engine.Presto is an open-source distributed SQL query engine for running interactive analytic queries against data sources of all sizes ranging from gigabytes to petabytes. Presto allows querying data where it lives, including Hive, Cassandra, relational databases, or even proprietary data stores. A single Presto query can combine data from multiple sources, allowing for analytics across your entire organization. Hosts: Randal Schwartz and Simon Phipps Guests: Manfred Moser and Dain Sundstrom Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsors: twit.cachefly.com barracuda.com/floss

clients analytics analysts big data aws hive sql presto floss management tools guis simon phipps floss weekly randal schwartz relational databases lullabot's jeff robbins floss weekly email randal
FLOSS Weekly (Video LO)
FLOSS Weekly 577: Presto

FLOSS Weekly (Video LO)

Play Episode Listen Later May 6, 2020 63:00


Distributed SQL Query Engine.Presto is an open-source distributed SQL query engine for running interactive analytic queries against data sources of all sizes ranging from gigabytes to petabytes. Presto allows querying data where it lives, including Hive, Cassandra, relational databases, or even proprietary data stores. A single Presto query can combine data from multiple sources, allowing for analytics across your entire organization. Hosts: Randal Schwartz and Simon Phipps Guests: Manfred Moser and Dain Sundstrom Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsors: twit.cachefly.com barracuda.com/floss

clients analytics analysts big data aws hive sql presto floss management tools guis simon phipps floss weekly randal schwartz relational databases lullabot's jeff robbins floss weekly email randal
FLOSS Weekly (Video LO)
FLOSS Weekly 577: Presto

FLOSS Weekly (Video LO)

Play Episode Listen Later May 6, 2020 63:00


Distributed SQL Query Engine.Presto is an open-source distributed SQL query engine for running interactive analytic queries against data sources of all sizes ranging from gigabytes to petabytes. Presto allows querying data where it lives, including Hive, Cassandra, relational databases, or even proprietary data stores. A single Presto query can combine data from multiple sources, allowing for analytics across your entire organization. Hosts: Randal Schwartz and Simon Phipps Guests: Manfred Moser and Dain Sundstrom Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsors: twit.cachefly.com barracuda.com/floss

clients analytics analysts big data aws hive sql presto floss management tools guis simon phipps floss weekly randal schwartz relational databases lullabot's jeff robbins floss weekly email randal
FLOSS Weekly (Video HI)
FLOSS Weekly 577: Presto

FLOSS Weekly (Video HI)

Play Episode Listen Later May 6, 2020 63:00


Distributed SQL Query Engine.Presto is an open-source distributed SQL query engine for running interactive analytic queries against data sources of all sizes ranging from gigabytes to petabytes. Presto allows querying data where it lives, including Hive, Cassandra, relational databases, or even proprietary data stores. A single Presto query can combine data from multiple sources, allowing for analytics across your entire organization. Hosts: Randal Schwartz and Simon Phipps Guests: Manfred Moser and Dain Sundstrom Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsors: twit.cachefly.com barracuda.com/floss

clients analytics analysts big data aws hive sql presto floss management tools guis simon phipps floss weekly randal schwartz relational databases lullabot's jeff robbins floss weekly email randal
FLOSS Weekly (Video HD)
FLOSS Weekly 576: Contractor

FLOSS Weekly (Video HD)

Play Episode Listen Later Apr 29, 2020 57:08


Create / Destroy / Manipulate Your API's.Contractor is an Extendable Resource Management API. The goal of Contractor is to provide an API to Automate the Provisioning, Deployment, Configuration, and Management of Resources. Hosts: Jonathan Bennett and Dan Lynch Guest: Peter Howe Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music.

FLOSS Weekly (Video LO)
FLOSS Weekly 576: Contractor

FLOSS Weekly (Video LO)

Play Episode Listen Later Apr 29, 2020 57:08


Create / Destroy / Manipulate Your API's.Contractor is an Extendable Resource Management API. The goal of Contractor is to provide an API to Automate the Provisioning, Deployment, Configuration, and Management of Resources. Hosts: Jonathan Bennett and Dan Lynch Guest: Peter Howe Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music.

FLOSS Weekly (Video HI)
FLOSS Weekly 576: Contractor

FLOSS Weekly (Video HI)

Play Episode Listen Later Apr 29, 2020 57:08


Create / Destroy / Manipulate Your API's.Contractor is an Extendable Resource Management API. The goal of Contractor is to provide an API to Automate the Provisioning, Deployment, Configuration, and Management of Resources. Hosts: Jonathan Bennett and Dan Lynch Guest: Peter Howe Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music.

FLOSS Weekly (Video HI)
FLOSS Weekly 576: Contractor

FLOSS Weekly (Video HI)

Play Episode Listen Later Apr 29, 2020 57:08


Create / Destroy / Manipulate Your API's.Contractor is an Extendable Resource Management API. The goal of Contractor is to provide an API to Automate the Provisioning, Deployment, Configuration, and Management of Resources. Hosts: Jonathan Bennett and Dan Lynch Guest: Peter Howe Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music.

FLOSS Weekly (Video LO)
FLOSS Weekly 576: Contractor

FLOSS Weekly (Video LO)

Play Episode Listen Later Apr 29, 2020 57:08


Create / Destroy / Manipulate Your API's.Contractor is an Extendable Resource Management API. The goal of Contractor is to provide an API to Automate the Provisioning, Deployment, Configuration, and Management of Resources. Hosts: Jonathan Bennett and Dan Lynch Guest: Peter Howe Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music.

FLOSS Weekly (MP3)
FLOSS Weekly 576: Contractor

FLOSS Weekly (MP3)

Play Episode Listen Later Apr 29, 2020 57:08


Create / Destroy / Manipulate Your API's.Contractor is an Extendable Resource Management API. The goal of Contractor is to provide an API to Automate the Provisioning, Deployment, Configuration, and Management of Resources. Hosts: Jonathan Bennett and Dan Lynch Guest: Peter Howe Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music.

FLOSS Weekly (Video LO)
FLOSS Weekly 575: XCP-ng

FLOSS Weekly (Video LO)

Play Episode Listen Later Apr 22, 2020 52:42


XCP-ng is an open-source virtualization platform that is hosted in the Linux Foundation. It aims to be the bridge between the user community and the developers, to deliver a product without limits. It has no restrictions on features and all of XCP-ng is available on GitHub. Hosts: Jonathan Bennett and Simon Phipps Guest: Olivier Lambert Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsor: WWT.COM/TWIT

security cloud scale open source github floss vms linux foundation cloud technology xen jonathan bennett web ui sponsor wwt simon phipps floss weekly olivier lambert xcp randal schwartz lullabot's jeff robbins floss weekly email randal
FLOSS Weekly (Video HI)
FLOSS Weekly 575: XCP-ng

FLOSS Weekly (Video HI)

Play Episode Listen Later Apr 22, 2020 52:42


XCP-ng is an open-source virtualization platform that is hosted in the Linux Foundation. It aims to be the bridge between the user community and the developers, to deliver a product without limits. It has no restrictions on features and all of XCP-ng is available on GitHub. Hosts: Jonathan Bennett and Simon Phipps Guest: Olivier Lambert Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsor: WWT.COM/TWIT

security cloud scale open source github floss vms linux foundation cloud technology xen jonathan bennett web ui sponsor wwt simon phipps floss weekly olivier lambert xcp randal schwartz lullabot's jeff robbins floss weekly email randal
FLOSS Weekly (Video LO)
FLOSS Weekly 575: XCP-ng

FLOSS Weekly (Video LO)

Play Episode Listen Later Apr 22, 2020 52:42


XCP-ng is an open-source virtualization platform that is hosted in the Linux Foundation. It aims to be the bridge between the user community and the developers, to deliver a product without limits. It has no restrictions on features and all of XCP-ng is available on GitHub. Hosts: Jonathan Bennett and Simon Phipps Guest: Olivier Lambert Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsor: WWT.COM/TWIT

security cloud scale open source github floss vms linux foundation cloud technology xen jonathan bennett web ui sponsor wwt simon phipps floss weekly olivier lambert xcp randal schwartz lullabot's jeff robbins floss weekly email randal
FLOSS Weekly (MP3)
FLOSS Weekly 575: XCP-ng

FLOSS Weekly (MP3)

Play Episode Listen Later Apr 22, 2020 52:42


XCP-ng is an open-source virtualization platform that is hosted in the Linux Foundation. It aims to be the bridge between the user community and the developers, to deliver a product without limits. It has no restrictions on features and all of XCP-ng is available on GitHub. Hosts: Jonathan Bennett and Simon Phipps Guest: Olivier Lambert Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsor: WWT.COM/TWIT

security cloud scale open source github floss vms linux foundation cloud technology xen jonathan bennett web ui sponsor wwt simon phipps floss weekly olivier lambert xcp randal schwartz lullabot's jeff robbins floss weekly email randal
FLOSS Weekly (Video HD)
FLOSS Weekly 575: XCP-ng

FLOSS Weekly (Video HD)

Play Episode Listen Later Apr 22, 2020 52:42


XCP-ng is an open-source virtualization platform that is hosted in the Linux Foundation. It aims to be the bridge between the user community and the developers, to deliver a product without limits. It has no restrictions on features and all of XCP-ng is available on GitHub. Hosts: Jonathan Bennett and Simon Phipps Guest: Olivier Lambert Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsor: WWT.COM/TWIT

security cloud scale open source github floss vms linux foundation cloud technology xen jonathan bennett web ui sponsor wwt simon phipps floss weekly olivier lambert xcp randal schwartz lullabot's jeff robbins floss weekly email randal
FLOSS Weekly (Video HI)
FLOSS Weekly 575: XCP-ng

FLOSS Weekly (Video HI)

Play Episode Listen Later Apr 22, 2020 52:42


XCP-ng is an open-source virtualization platform that is hosted in the Linux Foundation. It aims to be the bridge between the user community and the developers, to deliver a product without limits. It has no restrictions on features and all of XCP-ng is available on GitHub. Hosts: Jonathan Bennett and Simon Phipps Guest: Olivier Lambert Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsor: WWT.COM/TWIT

security cloud scale open source github floss vms linux foundation cloud technology xen jonathan bennett web ui sponsor wwt simon phipps floss weekly olivier lambert xcp randal schwartz lullabot's jeff robbins floss weekly email randal
FLOSS Weekly (Video LO)
FLOSS Weekly 574: FLOSS News

FLOSS Weekly (Video LO)

Play Episode Listen Later Apr 15, 2020 64:34


RIP John Conway and COVID-19 Open Source Applications This week on FLOSS Weekly, Randal Schwartz, Jonathan Bennett, and Dan Lynch talk about current news within the realm of open-source. Hosts: Randal Schwartz, Jonathan Bennett, and Dan Lynch Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsor: LastPass.com/twit

FLOSS Weekly (Video HI)
FLOSS Weekly 574: FLOSS News

FLOSS Weekly (Video HI)

Play Episode Listen Later Apr 15, 2020 64:34


RIP John Conway and COVID-19 Open Source Applications This week on FLOSS Weekly, Randal Schwartz, Jonathan Bennett, and Dan Lynch talk about current news within the realm of open-source. Hosts: Randal Schwartz, Jonathan Bennett, and Dan Lynch Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsor: LastPass.com/twit

FLOSS Weekly (MP3)
FLOSS Weekly 574: FLOSS News

FLOSS Weekly (MP3)

Play Episode Listen Later Apr 15, 2020 64:34


RIP John Conway and COVID-19 Open Source Applications This week on FLOSS Weekly, Randal Schwartz, Jonathan Bennett, and Dan Lynch talk about current news within the realm of open-source. Hosts: Randal Schwartz, Jonathan Bennett, and Dan Lynch Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsor: LastPass.com/twit

FLOSS Weekly (Video HD)
FLOSS Weekly 574: FLOSS News

FLOSS Weekly (Video HD)

Play Episode Listen Later Apr 15, 2020 64:34


RIP John Conway and COVID-19 Open Source Applications This week on FLOSS Weekly, Randal Schwartz, Jonathan Bennett, and Dan Lynch talk about current news within the realm of open-source. Hosts: Randal Schwartz, Jonathan Bennett, and Dan Lynch Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsor: LastPass.com/twit

FLOSS Weekly (Video HI)
FLOSS Weekly 574: FLOSS News

FLOSS Weekly (Video HI)

Play Episode Listen Later Apr 15, 2020 64:34


RIP John Conway and COVID-19 Open Source Applications This week on FLOSS Weekly, Randal Schwartz, Jonathan Bennett, and Dan Lynch talk about current news within the realm of open-source. Hosts: Randal Schwartz, Jonathan Bennett, and Dan Lynch Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsor: LastPass.com/twit

FLOSS Weekly (Video LO)
FLOSS Weekly 574: FLOSS News

FLOSS Weekly (Video LO)

Play Episode Listen Later Apr 15, 2020 64:34


RIP John Conway and COVID-19 Open Source Applications This week on FLOSS Weekly, Randal Schwartz, Jonathan Bennett, and Dan Lynch talk about current news within the realm of open-source. Hosts: Randal Schwartz, Jonathan Bennett, and Dan Lynch Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsor: LastPass.com/twit

FLOSS Weekly (Video LO)
FLOSS Weekly 573: Hydra

FLOSS Weekly (Video LO)

Play Episode Listen Later Apr 8, 2020 49:45


Elegantly Configure Complex Applications Hydra is a framework that simplifies the development of complex applications by enabling their configuration to be dynamically composed and overridden. It lets you focus on the problem at hand, compose your configuration dynamically, and has a pluggable architecture to enable it to integrate with your infrastructure. Hosts: Randal Schwartz and Simon Phipps Guest: Omar Yadan Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsor: expressvpn.com/floss

framework applications hydra logging floss open source software command line configurations simon phipps floss weekly randal schwartz lullabot's jeff robbins floss weekly email randal
FLOSS Weekly (Video HI)
FLOSS Weekly 573: Hydra

FLOSS Weekly (Video HI)

Play Episode Listen Later Apr 8, 2020 49:45


Elegantly Configure Complex Applications Hydra is a framework that simplifies the development of complex applications by enabling their configuration to be dynamically composed and overridden. It lets you focus on the problem at hand, compose your configuration dynamically, and has a pluggable architecture to enable it to integrate with your infrastructure. Hosts: Randal Schwartz and Simon Phipps Guest: Omar Yadan Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsor: expressvpn.com/floss

framework applications hydra logging floss open source software command line configurations simon phipps floss weekly randal schwartz lullabot's jeff robbins floss weekly email randal
FLOSS Weekly (Video HD)
FLOSS Weekly 573: Hydra

FLOSS Weekly (Video HD)

Play Episode Listen Later Apr 8, 2020 49:45


Elegantly Configure Complex Applications Hydra is a framework that simplifies the development of complex applications by enabling their configuration to be dynamically composed and overridden. It lets you focus on the problem at hand, compose your configuration dynamically, and has a pluggable architecture to enable it to integrate with your infrastructure. Hosts: Randal Schwartz and Simon Phipps Guest: Omar Yadan Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsor: expressvpn.com/floss

framework applications hydra logging floss open source software command line configurations simon phipps floss weekly randal schwartz lullabot's jeff robbins floss weekly email randal
FLOSS Weekly (MP3)
FLOSS Weekly 573: Hydra

FLOSS Weekly (MP3)

Play Episode Listen Later Apr 8, 2020 49:45


Elegantly Configure Complex Applications Hydra is a framework that simplifies the development of complex applications by enabling their configuration to be dynamically composed and overridden. It lets you focus on the problem at hand, compose your configuration dynamically, and has a pluggable architecture to enable it to integrate with your infrastructure. Hosts: Randal Schwartz and Simon Phipps Guest: Omar Yadan Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsor: expressvpn.com/floss

framework applications hydra logging floss open source software command line configurations simon phipps floss weekly randal schwartz lullabot's jeff robbins floss weekly email randal
FLOSS Weekly (Video HI)
FLOSS Weekly 573: Hydra

FLOSS Weekly (Video HI)

Play Episode Listen Later Apr 8, 2020 49:45


Elegantly Configure Complex Applications Hydra is a framework that simplifies the development of complex applications by enabling their configuration to be dynamically composed and overridden. It lets you focus on the problem at hand, compose your configuration dynamically, and has a pluggable architecture to enable it to integrate with your infrastructure. Hosts: Randal Schwartz and Simon Phipps Guest: Omar Yadan Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsor: expressvpn.com/floss

framework applications hydra logging floss open source software command line configurations simon phipps floss weekly randal schwartz lullabot's jeff robbins floss weekly email randal
FLOSS Weekly (Video LO)
FLOSS Weekly 573: Hydra

FLOSS Weekly (Video LO)

Play Episode Listen Later Apr 8, 2020 49:45


Elegantly Configure Complex Applications Hydra is a framework that simplifies the development of complex applications by enabling their configuration to be dynamically composed and overridden. It lets you focus on the problem at hand, compose your configuration dynamically, and has a pluggable architecture to enable it to integrate with your infrastructure. Hosts: Randal Schwartz and Simon Phipps Guest: Omar Yadan Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsor: expressvpn.com/floss

framework applications hydra logging floss open source software command line configurations simon phipps floss weekly randal schwartz lullabot's jeff robbins floss weekly email randal
FLOSS Weekly (Video HD)
FLOSS Weekly 572: f-droid

FLOSS Weekly (Video HD)

Play Episode Listen Later Apr 1, 2020 68:27


F-Droid is an installable catalog of FOSS (Free and Open Source Software) applications for the Android platform. F-Droid is also a whole FOSS "app store kit", providing all the tools needed to set up and run an app store. It also includes complete build and release tools for managing the process of turning app source code into published builds. Hosts: Jonathan Bennett and Simon Phipps Guest: Hans-Christoph Steiner Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsors: barracuda.com/floss twit.cachefly.com

tools os android applications app store linux malware foss floss open source software jonathan bennett f droid simon phipps floss weekly randal schwartz android sdk lullabot's jeff robbins floss weekly email randal
FLOSS Weekly (Video HI)
FLOSS Weekly 572: f-droid

FLOSS Weekly (Video HI)

Play Episode Listen Later Apr 1, 2020 68:27


F-Droid is an installable catalog of FOSS (Free and Open Source Software) applications for the Android platform. F-Droid is also a whole FOSS "app store kit", providing all the tools needed to set up and run an app store. It also includes complete build and release tools for managing the process of turning app source code into published builds. Hosts: Jonathan Bennett and Simon Phipps Guest: Hans-Christoph Steiner Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsors: barracuda.com/floss twit.cachefly.com

tools os android applications app store linux malware foss floss open source software jonathan bennett f droid simon phipps floss weekly randal schwartz android sdk lullabot's jeff robbins floss weekly email randal
FLOSS Weekly (Video LO)
FLOSS Weekly 572: f-droid

FLOSS Weekly (Video LO)

Play Episode Listen Later Apr 1, 2020 68:27


F-Droid is an installable catalog of FOSS (Free and Open Source Software) applications for the Android platform. F-Droid is also a whole FOSS "app store kit", providing all the tools needed to set up and run an app store. It also includes complete build and release tools for managing the process of turning app source code into published builds. Hosts: Jonathan Bennett and Simon Phipps Guest: Hans-Christoph Steiner Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsors: barracuda.com/floss twit.cachefly.com

tools os android applications app store linux malware foss floss open source software jonathan bennett f droid simon phipps floss weekly randal schwartz android sdk lullabot's jeff robbins floss weekly email randal
FLOSS Weekly (MP3)
FLOSS Weekly 572: f-droid

FLOSS Weekly (MP3)

Play Episode Listen Later Apr 1, 2020 68:27


F-Droid is an installable catalog of FOSS (Free and Open Source Software) applications for the Android platform. F-Droid is also a whole FOSS "app store kit", providing all the tools needed to set up and run an app store. It also includes complete build and release tools for managing the process of turning app source code into published builds. Hosts: Jonathan Bennett and Simon Phipps Guest: Hans-Christoph Steiner Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsors: barracuda.com/floss twit.cachefly.com

tools os android applications app store linux malware foss floss open source software jonathan bennett f droid simon phipps floss weekly randal schwartz android sdk lullabot's jeff robbins floss weekly email randal
FLOSS Weekly (Video HD)
FLOSS Weekly 571: Agones

FLOSS Weekly (Video HD)

Play Episode Listen Later Mar 25, 2020 59:02


Agones is an open-source, multiplayer dedicated game server scaling and orchestration platform, that can run anywhere Kubernetes can run. You can orchestrate game servers, integrate any engine, and monitor a servers' metrics. Hosts: Randal Schwartz and Jonathan Bennett Guest: Mark Mandel Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsors: WWT.COM/TWIT Melissa.com/twit

games platform scaling monitoring metrics engine open source multiplayer kubernetes sdks floss yaml jonathan bennett floss weekly sponsors wwt mark mandel agones randal schwartz lullabot's jeff robbins floss weekly email randal
FLOSS Weekly (Video HI)
FLOSS Weekly 571: Agones

FLOSS Weekly (Video HI)

Play Episode Listen Later Mar 25, 2020 59:02


Agones is an open-source, multiplayer dedicated game server scaling and orchestration platform, that can run anywhere Kubernetes can run. You can orchestrate game servers, integrate any engine, and monitor a servers' metrics. Hosts: Randal Schwartz and Jonathan Bennett Guest: Mark Mandel Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsors: WWT.COM/TWIT Melissa.com/twit

games platform scaling monitoring metrics engine open source multiplayer kubernetes sdks floss yaml jonathan bennett floss weekly sponsors wwt mark mandel agones randal schwartz lullabot's jeff robbins floss weekly email randal
FLOSS Weekly (Video LO)
FLOSS Weekly 571: Agones

FLOSS Weekly (Video LO)

Play Episode Listen Later Mar 25, 2020 59:02


Agones is an open-source, multiplayer dedicated game server scaling and orchestration platform, that can run anywhere Kubernetes can run. You can orchestrate game servers, integrate any engine, and monitor a servers' metrics. Hosts: Randal Schwartz and Jonathan Bennett Guest: Mark Mandel Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsors: WWT.COM/TWIT Melissa.com/twit

games platform scaling monitoring metrics engine open source multiplayer kubernetes sdks floss yaml jonathan bennett floss weekly sponsors wwt mark mandel agones randal schwartz lullabot's jeff robbins floss weekly email randal
FLOSS Weekly (MP3)
FLOSS Weekly 571: Agones

FLOSS Weekly (MP3)

Play Episode Listen Later Mar 25, 2020 59:02


Agones is an open-source, multiplayer dedicated game server scaling and orchestration platform, that can run anywhere Kubernetes can run. You can orchestrate game servers, integrate any engine, and monitor a servers' metrics. Hosts: Randal Schwartz and Jonathan Bennett Guest: Mark Mandel Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsors: WWT.COM/TWIT Melissa.com/twit

games platform scaling monitoring metrics engine open source multiplayer kubernetes sdks floss yaml jonathan bennett floss weekly sponsors wwt mark mandel agones randal schwartz lullabot's jeff robbins floss weekly email randal
FLOSS Weekly (MP3)
FLOSS Weekly 570: xs:code

FLOSS Weekly (MP3)

Play Episode Listen Later Mar 20, 2020 52:12


Open Source That Makes Sense. xs:code helps you pay open source developers to maintain and improve their code – so you don't have to. Xs:code was started with one goal in mind – empowering developers on both sides of the equation. Both open source developers, and developers who use open-source when developing for companies and R&D teams. Xs:code truly believes that creating a sustainable way to develop and use open source, is a mutual interest of developers, and commercial companies alike. Hosts: Randal Schwartz and Michael Tunnell Guest: Chen Ravid Download or subscribe to this show at https://twit.tv/shows/floss-weekly Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com Thanks to Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsors: expressvpn.com/floss LastPass.com/twit

code xs floss open source software floss weekly randal schwartz michael tunnell lullabot's jeff robbins floss weekly email randal
Open Source – Software Engineering Daily
Flutter in Practice with Randal Schwartz

Open Source – Software Engineering Daily

Play Episode Listen Later Jul 11, 2018 62:04


Flutter allows developers to build cross-platform mobile apps. In our previous show about Flutter, Eric Seidel from Google described the goals of Flutter, why he founded the project, and how Flutter is built. In today’s show, Randal Schwartz talks about Flutter in more detail–including the developer experience of building Flutter apps and why he finds The post Flutter in Practice with Randal Schwartz appeared first on Software Engineering Daily.

bsdtalk
bsdtalk183 - Randal L. Schwartz

bsdtalk

Play Episode Listen Later Sep 13, 2015


Four years of BSDTalk.Interview with Randal Schwartz. We talk about his early experiences with BSD, permissive licenses, OpenBSD, OpenSolaris, perl, the BSDFund credit card, and the Floss Weekly podcast.File Info: 24Min, 12MB.Ogg Link:https://archive.org/download/bsdtalk183/bsdtalk183.ogg

interview operating schwartz randal bsd freebsd openbsd floss weekly netbsd 12mb randal schwartz opensolaris randal l schwartz
TWiT Throwback (MP3)
FLOSS Weekly 224: PostgreSQL and EnterpriseDB

TWiT Throwback (MP3)

Play Episode Listen Later Aug 29, 2012 58:32


PostgreSQL is the #1 enterprise-class open source database with a feature set comparable to the major proprietary RDBMS vendors and a customer list that spans every industry. Hosts: Randal Schwartz and Dan Lynch Guest: Ed Boyajian Download or subscribe to this show at https://twit.tv/shows/floss-weekly. We invite you to read, add to, and amend our show notes. Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com. Thanks to CacheFly for providing the bandwidth for this podcast, and Lullabot's Jeff Robbins, web designer and musician, for our theme music.

floss postgresql cachefly rdbms jeff robbins lullabot floss weekly randal schwartz enterprisedb
TWiT Throwback (Video HI)
FLOSS Weekly 224: PostgreSQL and EnterpriseDB

TWiT Throwback (Video HI)

Play Episode Listen Later Aug 29, 2012 58:32


PostgreSQL is the #1 enterprise-class open source database with a feature set comparable to the major proprietary RDBMS vendors and a customer list that spans every industry. Hosts: Randal Schwartz and Dan Lynch Guest: Ed Boyajian Download or subscribe to this show at https://twit.tv/shows/floss-weekly. We invite you to read, add to, and amend our show notes. Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com. Thanks to CacheFly for providing the bandwidth for this podcast, and Lullabot's Jeff Robbins, web designer and musician, for our theme music.

floss postgresql cachefly rdbms jeff robbins lullabot floss weekly randal schwartz enterprisedb
TWiT Throwback (MP3)
FLOSS Weekly 223: Openbravo

TWiT Throwback (MP3)

Play Episode Listen Later Aug 22, 2012 60:56


Learn why more than 6,000 organizations worldwide, large and small, use Openbravo's modular, 100% web-based open source business software to improve their operations--while minimizing their expenditure on information systems. Hosts: Randal Schwartz and Aaron Newcomb Guest: Paolo Juvara Download or subscribe to this show at https://twit.tv/shows/floss-weekly. We invite you to read, add to, and amend our show notes. Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com. Thanks to CacheFly for providing the bandwidth for this podcast, and Lullabot's Jeff Robbins, web designer and musician, for our theme music.

floss cachefly jeff robbins lullabot floss weekly randal schwartz
TWiT Throwback (Video HI)
FLOSS Weekly 223: Openbravo

TWiT Throwback (Video HI)

Play Episode Listen Later Aug 22, 2012 60:56


Learn why more than 6,000 organizations worldwide, large and small, use Openbravo's modular, 100% web-based open source business software to improve their operations--while minimizing their expenditure on information systems. Hosts: Randal Schwartz and Aaron Newcomb Guest: Paolo Juvara Download or subscribe to this show at https://twit.tv/shows/floss-weekly. We invite you to read, add to, and amend our show notes. Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com. Thanks to CacheFly for providing the bandwidth for this podcast, and Lullabot's Jeff Robbins, web designer and musician, for our theme music.

floss cachefly jeff robbins lullabot floss weekly randal schwartz
TWiT Throwback (MP3)
FLOSS Weekly 222: SugarCRM

TWiT Throwback (MP3)

Play Episode Listen Later Aug 15, 2012 65:06


Sugar is an affordable and easy to use customer relationship management (CRM) platform, designed to help your business communicate with prospects, share sales information, close deals and keep customers happy. Hosts: Randal Schwartz and Simon Phipps Guest: John Mertic Download or subscribe to this show at https://twit.tv/shows/floss-weekly. We invite you to read, add to, and amend our show notes. Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com. Thanks to CacheFly for providing the bandwidth for this podcast, and Lullabot's Jeff Robbins, web designer and musician, for our theme music.

sugar crm floss cachefly sugarcrm jeff robbins lullabot floss weekly randal schwartz
TWiT Throwback (Video HI)
FLOSS Weekly 222: SugarCRM

TWiT Throwback (Video HI)

Play Episode Listen Later Aug 15, 2012 65:06


Sugar is an affordable and easy to use customer relationship management (CRM) platform, designed to help your business communicate with prospects, share sales information, close deals and keep customers happy. Hosts: Randal Schwartz and Simon Phipps Guest: John Mertic Download or subscribe to this show at https://twit.tv/shows/floss-weekly. We invite you to read, add to, and amend our show notes. Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com. Thanks to CacheFly for providing the bandwidth for this podcast, and Lullabot's Jeff Robbins, web designer and musician, for our theme music.

sugar crm floss cachefly sugarcrm jeff robbins lullabot floss weekly randal schwartz
TWiT Throwback (MP3)
FLOSS Weekly 221: The Falcon Programming Language

TWiT Throwback (MP3)

Play Episode Listen Later Aug 8, 2012 58:23


The Falcon Programming Language: An Open Source, simple, fast and powerful programming language, easy to learn and to feel comfortable with. Hosts: Randal Schwartz and Simon Phipps Guests: Giancarlo Niccolai and Paul Davey Download or subscribe to this show at https://twit.tv/shows/floss-weekly. We invite you to read, add to, and amend our show notes. Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com. Thanks to CacheFly for providing the bandwidth for this podcast, and Lullabot's Jeff Robbins, web designer and musician, for our theme music.

falcon floss programming languages cachefly jeff robbins lullabot floss weekly randal schwartz
TWiT Throwback (Video HI)
FLOSS Weekly 221: The Falcon Programming Language

TWiT Throwback (Video HI)

Play Episode Listen Later Aug 8, 2012 58:23


The Falcon Programming Language: An Open Source, simple, fast and powerful programming language, easy to learn and to feel comfortable with. Hosts: Randal Schwartz and Simon Phipps Guests: Giancarlo Niccolai and Paul Davey Download or subscribe to this show at https://twit.tv/shows/floss-weekly. We invite you to read, add to, and amend our show notes. Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com. Thanks to CacheFly for providing the bandwidth for this podcast, and Lullabot's Jeff Robbins, web designer and musician, for our theme music.

falcon floss programming languages cachefly jeff robbins lullabot floss weekly randal schwartz
TWiT Throwback (Video HI)
FLOSS Weekly 217: Scalr

TWiT Throwback (Video HI)

Play Episode Listen Later Jul 11, 2012 68:52


We'll be talking about Scalr, the software that manages your application in the cloud so you don't have to. Hosts: Randal Schwartz and Aaron Newcomb Guests: Sebastian Stadil and Julien Rialan Download or subscribe to this show at https://twit.tv/shows/floss-weekly. We invite you to read, add to, and amend our show notes. Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com. Thanks to CacheFly for providing the bandwidth for this podcast, and Lullabot's Jeff Robbins, web designer and musician, for our theme music.

floss cachefly jeff robbins lullabot floss weekly randal schwartz
TWiT Throwback (MP3)
FLOSS Weekly 217: Scalr

TWiT Throwback (MP3)

Play Episode Listen Later Jul 11, 2012 68:52


We'll be talking about Scalr, the software that manages your application in the cloud so you don't have to. Hosts: Randal Schwartz and Aaron Newcomb Guests: Sebastian Stadil and Julien Rialan Download or subscribe to this show at https://twit.tv/shows/floss-weekly. We invite you to read, add to, and amend our show notes. Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com. Thanks to CacheFly for providing the bandwidth for this podcast, and Lullabot's Jeff Robbins, web designer and musician, for our theme music.

floss cachefly jeff robbins lullabot floss weekly randal schwartz
TWiT Throwback (Video HI)
FLOSS Weekly 211: OpenShift

TWiT Throwback (Video HI)

Play Episode Listen Later May 16, 2012 63:47


We about OpenShift, the platform as a service that's free. Hosts: Randal Schwartz and Simon Phipps Guest: Mark Atwood Download or subscribe to this show at https://twit.tv/shows/floss-weekly. We invite you to read, add to, and amend our show notes. Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com. Thanks to CacheFly for providing the bandwidth for this podcast, and Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsor: Ford Technology

floss openshift cachefly jeff robbins lullabot floss weekly randal schwartz
TWiT Throwback (Video HI)
FLOSS Weekly 210: Spree Commerce

TWiT Throwback (Video HI)

Play Episode Listen Later May 9, 2012 73:52


We talk about Spree Commerce, a really great way to sell things on the internet. Hosts: Randal Schwartz and Aaron Newcomb Guest: Sean Schofield Download or subscribe to this show at https://twit.tv/shows/floss-weekly. We invite you to read, add to, and amend our show notes. Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com. Thanks to CacheFly for providing the bandwidth for this podcast, and Lullabot's Jeff Robbins, web designer and musician, for our theme music.

commerce spree floss cachefly jeff robbins lullabot floss weekly randal schwartz
TWiT Throwback (MP3)
FLOSS Weekly 210: Spree Commerce

TWiT Throwback (MP3)

Play Episode Listen Later May 9, 2012 73:52


We talk about Spree Commerce, a really great way to sell things on the internet. Hosts: Randal Schwartz and Aaron Newcomb Guest: Sean Schofield Download or subscribe to this show at https://twit.tv/shows/floss-weekly. We invite you to read, add to, and amend our show notes. Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com. Thanks to CacheFly for providing the bandwidth for this podcast, and Lullabot's Jeff Robbins, web designer and musician, for our theme music.

commerce spree floss cachefly jeff robbins lullabot floss weekly randal schwartz
TWiT Throwback (Video HI)
FLOSS Weekly 209: Citadel

TWiT Throwback (Video HI)

Play Episode Listen Later May 2, 2012 60:40


We go old school and talk about the early days of BBSing and Citadel. Hosts: Randal Schwartz and Simon Phipps Guest: Art Cancro Download or subscribe to this show at https://twit.tv/shows/floss-weekly. We invite you to read, add to, and amend our show notes. Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com. Thanks to CacheFly for providing the bandwidth for this podcast, and Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsor: Netflix

citadel floss cachefly jeff robbins lullabot floss weekly randal schwartz
TWiT Throwback (MP3)
FLOSS Weekly 209: Citadel

TWiT Throwback (MP3)

Play Episode Listen Later May 2, 2012 60:40


We go old school and talk about the early days of BBSing and Citadel. Hosts: Randal Schwartz and Simon Phipps Guest: Art Cancro Download or subscribe to this show at https://twit.tv/shows/floss-weekly. We invite you to read, add to, and amend our show notes. Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com. Thanks to CacheFly for providing the bandwidth for this podcast, and Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsor: Netflix

citadel floss cachefly jeff robbins lullabot floss weekly randal schwartz
TWiT Throwback (Video HI)
FLOSS Weekly 208: Liz Quilty

TWiT Throwback (Video HI)

Play Episode Listen Later Apr 25, 2012 68:18


Randi Harper joins us this week to chat with Liz Quilty about all things open source. Hosts: Randal Schwartz and Randi Harper Guest: Liz Quilty Download or subscribe to this show at https://twit.tv/shows/floss-weekly. We invite you to read, add to, and amend our show notes. Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com. Thanks to CacheFly for providing the bandwidth for this podcast, and Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsor: Netflix

floss quilty cachefly jeff robbins lullabot floss weekly randal schwartz
TWiT Throwback (MP3)
FLOSS Weekly 208: Liz Quilty

TWiT Throwback (MP3)

Play Episode Listen Later Apr 25, 2012 68:18


Randi Harper joins us this week to chat with Liz Quilty about all things open source. Hosts: Randal Schwartz and Randi Harper Guest: Liz Quilty Download or subscribe to this show at https://twit.tv/shows/floss-weekly. We invite you to read, add to, and amend our show notes. Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com. Thanks to CacheFly for providing the bandwidth for this podcast, and Lullabot's Jeff Robbins, web designer and musician, for our theme music. Sponsor: Netflix

floss quilty cachefly jeff robbins lullabot floss weekly randal schwartz
Paul's Security Weekly
Paul's Security Weekly - Episode 250 part 1 - July 7th 2011

Paul's Security Weekly

Play Episode Listen Later Jul 18, 2011 62:52


Sorry for the long delay! Our new production system is still in process, and you will see episodes released more timely. Our 250th episode was extremely special, featuring Randal Schwartz, and a host of good friends and familiar faces! In part 1 we interview Randal Schwartz: Episode 250 Show Notes Episode 250 part 1 Direct Audio Download All the Paul's Security Weekly episodes on our Bliptv archives. Hosts: Paul Asadoorian,Carlos Perez,Larry Pesce

security hacking carlos perez security weekly randal schwartz bliptv larry pesce paul's security weekly
TWiT Throwback (Video HI)
FLOSS Weekly 167: Racket

TWiT Throwback (Video HI)

Play Episode Listen Later May 25, 2011 60:07


Racket is a programming language derived from Scheme. Hosts: Randal Schwartz and Aaron Newcomb Guest: Matthew Flatt Download or subscribe to this show at https://twit.tv/floss. We invite you to read, add to, and amend our show notes. Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com. Thanks to CacheFly for providing the bandwidth for this podcast, and Lullabot's Jeff Robbins, web designer and musician, for our theme music.

scheme racket floss cachefly jeff robbins lullabot floss weekly randal schwartz
TWiT Throwback (MP3)
FLOSS Weekly 167: Racket

TWiT Throwback (MP3)

Play Episode Listen Later May 25, 2011 59:56


Racket is a programming language derived from Scheme. Hosts: Randal Schwartz and Aaron Newcomb Guest: Matthew Flatt Download or subscribe to this show at https://twit.tv/floss. We invite you to read, add to, and amend our show notes. Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com. Thanks to CacheFly for providing the bandwidth for this podcast, and Lullabot's Jeff Robbins, web designer and musician, for our theme music.

scheme racket floss cachefly jeff robbins lullabot floss weekly randal schwartz
TWiT Throwback (Video HI)
FLOSS Weekly 166: Compiz

TWiT Throwback (Video HI)

Play Episode Listen Later May 18, 2011 68:10


Compiz the compositing window management system for X11. Hosts: Randal Schwartz and Dan Lynch Guest: Sam Spilsbury Download or subscribe to this show at https://twit.tv/floss. We invite you to read, add to, and amend our show notes. Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com. Thanks to CacheFly for providing the bandwidth for this podcast, and Lullabot's Jeff Robbins, web designer and musician, for our theme music.

floss cachefly x11 jeff robbins lullabot floss weekly randal schwartz compiz
TWiT Throwback (MP3)
FLOSS Weekly 166: Compiz

TWiT Throwback (MP3)

Play Episode Listen Later May 18, 2011 67:57


Compiz the compositing window management system for X11. Hosts: Randal Schwartz and Dan Lynch Guest: Sam Spilsbury Download or subscribe to this show at https://twit.tv/floss. We invite you to read, add to, and amend our show notes. Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com. Thanks to CacheFly for providing the bandwidth for this podcast, and Lullabot's Jeff Robbins, web designer and musician, for our theme music.

floss cachefly x11 jeff robbins lullabot floss weekly randal schwartz compiz
TWiT Throwback (Video LO)
FLOSS Weekly 146: Tiki Wiki CMS Groupware

TWiT Throwback (Video LO)

Play Episode Listen Later Dec 30, 2010 62:08


Tiki is a tool to build and maintain your Website/Wiki/Groupware/CMS/Forum/Blog/Bug Tracker or any other project you can run in a browser window. Hosts: Randal Schwartz and Simon Phipps Guest: Marc Laporte Download or subscribe to this show at https://twit.tv/floss. We invite you to read, add to, and amend our show notes. Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com. Thanks to CacheFly for providing the bandwidth for this podcast, and Lullabot's Jeff Robbins, web designer and musician, for our theme music.

wiki tiki floss cachefly jeff robbins lullabot floss weekly randal schwartz
TWiT Throwback (Video HI)
FLOSS Weekly 146: Tiki Wiki CMS Groupware

TWiT Throwback (Video HI)

Play Episode Listen Later Dec 30, 2010 62:08


Tiki is a tool to build and maintain your Website/Wiki/Groupware/CMS/Forum/Blog/Bug Tracker or any other project you can run in a browser window. Hosts: Randal Schwartz and Simon Phipps Guest: Marc Laporte Download or subscribe to this show at https://twit.tv/floss. We invite you to read, add to, and amend our show notes. Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com. Thanks to CacheFly for providing the bandwidth for this podcast, and Lullabot's Jeff Robbins, web designer and musician, for our theme music.

wiki tiki floss cachefly jeff robbins lullabot floss weekly randal schwartz
TWiT Throwback (MP3)
FLOSS Weekly 146: Tiki Wiki CMS Groupware

TWiT Throwback (MP3)

Play Episode Listen Later Dec 30, 2010 61:53


Tiki is a tool to build and maintain your Website/Wiki/Groupware/CMS/Forum/Blog/Bug Tracker or any other project you can run in a browser window. Hosts: Randal Schwartz and Simon Phipps Guest: Marc Laporte Download or subscribe to this show at https://twit.tv/floss. We invite you to read, add to, and amend our show notes. Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com. Thanks to CacheFly for providing the bandwidth for this podcast, and Lullabot's Jeff Robbins, web designer and musician, for our theme music.

wiki tiki floss cachefly jeff robbins lullabot floss weekly randal schwartz
TWiT Throwback (Video LO)
FLOSS Weekly 138: Cappuccino

TWiT Throwback (Video LO)

Play Episode Listen Later Oct 6, 2010 53:07


Cappuccino is an open source framework that makes it easy to build desktop-caliber applications that run in a web browser. Hosts: Randal Schwartz and Aaron Newcomb Guest: Ross Boucher Download or subscribe to this show at https://twit.tv/floss. We invite you to read, add to, and amend our show notes. Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com. Thanks to CacheFly for providing the bandwidth for this podcast, and Lullabot's Jeff Robbins, web designer and musician, for our theme music.

floss cappuccino cachefly jeff robbins lullabot floss weekly randal schwartz floss weekly email randal
TWiT Throwback (Video HI)
FLOSS Weekly 138: Cappuccino

TWiT Throwback (Video HI)

Play Episode Listen Later Oct 6, 2010 53:07


Cappuccino is an open source framework that makes it easy to build desktop-caliber applications that run in a web browser. Hosts: Randal Schwartz and Aaron Newcomb Guest: Ross Boucher Download or subscribe to this show at https://twit.tv/floss. We invite you to read, add to, and amend our show notes. Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com. Thanks to CacheFly for providing the bandwidth for this podcast, and Lullabot's Jeff Robbins, web designer and musician, for our theme music.

floss cappuccino cachefly jeff robbins lullabot floss weekly randal schwartz floss weekly email randal
TWiT Throwback (MP3)
FLOSS Weekly 138: Cappuccino

TWiT Throwback (MP3)

Play Episode Listen Later Oct 6, 2010 52:55


Cappuccino is an open source framework that makes it easy to build desktop-caliber applications that run in a web browser. Hosts: Randal Schwartz and Aaron Newcomb Guest: Ross Boucher Download or subscribe to this show at https://twit.tv/floss. We invite you to read, add to, and amend our show notes. Here's what's coming up for FLOSS in the future. Think your open source project should be on FLOSS Weekly? Email Randal at merlyn@stonehenge.com. Thanks to CacheFly for providing the bandwidth for this podcast, and Lullabot's Jeff Robbins, web designer and musician, for our theme music.

floss cappuccino cachefly jeff robbins lullabot floss weekly randal schwartz floss weekly email randal
Overthinking It Podcast
Episode 115: Danger Has a Two-Year Contract

Overthinking It Podcast

Play Episode Listen Later Sep 13, 2010 59:21


The Overthinkers tackle listener feedback with special guest Randal Schwartz. Episode 115: Danger Has a Two-Year Contract originally appeared on Overthinking It, the site subjecting the popular culture to a level of scrutiny it probably doesn't deserve. [Latest Posts | Podcast (iTunes Link)]

Overthinking It Podcast
Episode 110: 20 Sided Die in the Bathroom

Overthinking It Podcast

Play Episode Listen Later Aug 8, 2010 65:39


The Overthinkers and special guest Randal Schwartz tackle geeks and geekiness. Episode 110: 20 Sided Die in the Bathroom originally appeared on Overthinking It, the site subjecting the popular culture to a level of scrutiny it probably doesn't deserve. [Latest Posts | Podcast (iTunes Link)]

The Kindle Chronicles
6 Randal Schwartz

The Kindle Chronicles

Play Episode Listen Later Aug 29, 2008 32:19


Kindle News: We have fresh rumors of new student-oriented Kindle models coming as soon as September from Andrea James of the Seattle Post-Intelligencer and Peter Burrows of Business Week's The Tech Beat.  This led John C. Dvorak to increase the warmth of his Kindle assessment compared with his initial scoffing on This Week in Tech just after the Kindle was introduced.  (Note to social-network savvy Amazon exec if you're listening to this podcast: feel free to call me at 303-919-7187 if you'd like to arrange for The Kindle Chronicles to evaluate a review unit of the any new Kindle...)LATE-BREAKING REPORT WHICH DIDN'T MAKE THE PODCAST: Via Jim Cheshire, I see the New York Times today is quoting Craig Berman, Amazon's chief spokesman, as saying, "One thing I can tell you for sure is that there will be NO new version of the Kindle this year. A new version is possible sometime next year at the earliest.” I hope that's just smoke.Tech Tip: Adrienne Cousins on the Yahoo Kindle Korner group has posted several bookmark files which make it much easier to reach web sites on the Kindle. Also, Jim Cheshire of DecodingTheKindle recommends Skweezer to format blogs for quicker and cleaner viewing on the Kindle. Hat tip to Stephen Windwalker for suggesting Adrienne's bookmarks.The "What's on Your Kindle?" Interview: My guest this week is Randal L. Schwartz of Stonehenge. We met at a photography workshop last week conducted by Chris Marquardt of the Tips from the Top Floor podcast.   Randal recommends Baen Books as a great source of inexpensive quality books for the Kindle, especially in the science fiction category.  A favorite of his is James P. Hogan. Kindle Quote: "Fear Oratory Will Be Obama's Undoing" by Edward Luce.Kindle Comments by Bob Boyken, RobinTX and Steven Schwindt.Music for my podcast is "Ra-Monk" by Eval Manigat on the "Variations in Time: A Jazz Perspective" CD by Public Transit Recording, courtesy of IODA Promonet.

Geekcruise
MacMania V GeekCruise - Day 6

Geekcruise

Play Episode Listen Later Feb 15, 2007 8:24


Day 6 finds us in the tropical paradise of Costa Maya, Mexico located between Cancun and Belize. Join us as we go ashore and look around. Later we will talk to GeekCruise presenters Rob Griffiths and Randal Schwartz and join the On Deck For The Cure, 5K walk.

apple mexico travel mac geeks cruise 5k cancun belize key west macworld costa maya rob griffiths randal schwartz macmania
ExpoCaster
Let the games begin! (... und Elvis lebt...)

ExpoCaster

Play Episode Listen Later Sep 29, 2006


Die Expo hat begonnen, und wie. Alles was Rang und Namen hat in und um die Podcastszene ist hier vor Ort. Chris spricht mit Mr. Podsafe Music himself: CC Chapman (Accident Hash) und Randal Schwartz, seines Zeichens nicht nur als Kermit bekannt, sondern auch Buchautor, Geekcruiser und selbst Podcaster. Außerdem: eine seltsame Begegnung mit einem Huhn. Oder war es doch Elvis? Download/Ansehen Spieldauer: 4:53min Weiterführende Informationen: Chris Marquardt ExpoCaster Bilderschau Podcasting PodcastAward (engl.) Ontario, Californien (engl.) peppr Unser Podcast-Tipp: DieLigaShow. Der Bundesliga-Podcast mit Franz Strasser und Max Türck --------------------------------------------------------------