RSS Parrot

BETA

🦜 Denis Golubev

@www.golubev.dev@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.

---

This blog is about techniques, concepts and libraries I learned about.

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

Site URL: www.golubev.dev

Feed URL: www.golubev.dev/rss

Posts: 3

Followers: 1

Language Injection in JetBrains IDEs

Published: June 30, 2024 09:01

A valuable feature in JetBrains IDEs allows interpreting a string as a different programming language, such as SQL, with auto-completion support. Additionally, you can use comments to mark strings as being from another language.

Using DecompressionStream with an ArrayBuffer

Published: June 12, 2024 17:22

Even though the Compression Streams API provides a built-in way to decompress data, it is not straightforward to use with non-streamed data. In this article, I describe a possible approach to decompress data directly from an ArrayBuffer and further ideas…

GroupBy on IQueryable in LINQ

Published: January 27, 2024 20:13

This is a short introduction into GroupBy in LINQ. Two of the overloads are introduced on an example of using books stored in SQLite via Entity Framework Core.