Language Injection in JetBrains IDEs
https://www.golubev.dev/language-injection-in-jetbrains-ide/
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
https://www.golubev.dev/using-decompression-stream/
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
https://www.golubev.dev/group-by-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.