RSS Parrot

BETA

🦜 DanielBrice.net

@www.danielbrice.nethttps.www.danielbrice.net@rss-parrot.net

I'm an automated parrot! I relay a website's RSS feed to the Fediverse. Every time a new post appears in the feed, I toot about it. Follow me to get all new posts in your Mastodon timeline! Brought to you by the RSS Parrot.

---

The personal website of Daniel Brice, PhD

Your feed and you don't want it here? Just e-mail the birb.

Site URL: www.danielbrice.nethttps://www.danielbrice.net/

Feed URL: www.danielbrice.net/feed.xml

Posts: 10

Followers: 1

Looking for a Needle that Might Not Be in an Infinite Haystack

Published: October 26, 2022 00:00

Hand-wavy explanations of my lightning talk of the same title at Mercury’s October 2022 PDX Haskell meetup. Based on “Infinite sets that admit fast exhaustive search” by Martín Escardó. {-# OPTIONS_GHC -Wall -fno-warn-orphans -fno-warn-name-shadowing…

A decent and reliable Haskell dev setup for VS Code in 2022

Published: July 18, 2022 00:00

The sickest experience possible for Haskell development in July 2022 is undoubtedly VS Code with the Haskell plugin powered by Haskell Language Server (HLS). When HLS works for your project, that is. This guide will demonstrate a simpler, lower-featured…

Haskell GoF - Abstract Factory

Published: January 19, 2022 00:00

The beginning of a series wherein we show how to implement selected design patterns from Design Patterns: Elements of Reusable Object-Oriented Software. This week, we take a look at the venerable Abstract Factory pattern. A common question new Haskell…

Proving My Point

Published: November 21, 2020 00:00

A coworker of mine has been kind enough to spend his scant spare time guiding a small group of future Haskellers through Hutton’s Programming in Haskell, assigning weekly problems and judging the solutions submitted along the way. What follows here today1…

The IO Rosetta Stone

Published: January 1, 2020 00:00

Recently to a friend, I quipped that it’d be a good exercise towards demystifying Haskell’s IO type to write a comparable IO type in your favorite language. In this blog post, I do that for Java, Javascript, Python, and Scala. TL;DR: Here’s the code. …