Abhinav Sarkar's Avatar

Abhinav Sarkar

@abhin4v.bsky.social

Programming languages aficionado, occasional runner, quantified-self enthusiast, and fervent napper. Works as senior software engineer at Google. Also at @abnv.me. #programminglanguages #software #running #Haskell #NixOS #photography #quantifiedself

23 Followers  |  47 Following  |  10 Posts  |  Joined: 24.08.2023  |  1.9358

Latest posts by abhin4v.bsky.social on Bluesky


I Want You to Understand Chicago
Politics Chicago
2025-11-08

I want you to understand what it is like to live in Chicago during this time.

Every day my phone buzzes. It is a neighborhood group: four people were kidnapped at the corner drugstore. A friend a mile away sends a Slack message: she was at the scene when masked men assaulted and abducted two people on the street. A plumber working on my pipes is distraught, and I find out that two of his employees were kidnapped that morning. A week later it happens again.

An email arrives. Agents with guns have chased a teacher into the school where she works. They did not have a warrant. They dragged her away, ignoring her and her colleagues’ pleas to show proof of her documentation. That evening I stand a few feet from the parents of Rayito de Sol and listen to them describe, with anguish, how good Ms. Diana was to their children. What it is like to have strangers with guns traumatize your kids. For a teacher to hide a three-year-old child for fear they might be killed. How their relatives will no longer leave the house. I hear the pain and fury in their voices, and I wonder who will be next.

Understand what it is to pray in Chicago. On September 19th, Reverend David Black, lead pastor at First Presbyterian Church of Chicago, was praying outside the ICE detention center in Broadview when a DHS agent shot him in the head with pepper balls. Pepper balls are never supposed to be fired at the head because they can seriously injure, or even kill. “We could hear them laughing as they were shooting us from the roof,” Black recalled. He is not the only member of the clergy ICE has assaulted. Methodist pastor Hannah Kardon was violently arrested on October 17th, and Baptist pastor Michael Woolf was shot with pepper balls on November 1st.

Understand what it is to sleep in Chicago. On the night of September 30th, federal agents rappelled from a Black Hawk helicopter to execute a raid on an apartment building on the South Sho…

I Want You to Understand Chicago Politics Chicago 2025-11-08 I want you to understand what it is like to live in Chicago during this time. Every day my phone buzzes. It is a neighborhood group: four people were kidnapped at the corner drugstore. A friend a mile away sends a Slack message: she was at the scene when masked men assaulted and abducted two people on the street. A plumber working on my pipes is distraught, and I find out that two of his employees were kidnapped that morning. A week later it happens again. An email arrives. Agents with guns have chased a teacher into the school where she works. They did not have a warrant. They dragged her away, ignoring her and her colleagues’ pleas to show proof of her documentation. That evening I stand a few feet from the parents of Rayito de Sol and listen to them describe, with anguish, how good Ms. Diana was to their children. What it is like to have strangers with guns traumatize your kids. For a teacher to hide a three-year-old child for fear they might be killed. How their relatives will no longer leave the house. I hear the pain and fury in their voices, and I wonder who will be next. Understand what it is to pray in Chicago. On September 19th, Reverend David Black, lead pastor at First Presbyterian Church of Chicago, was praying outside the ICE detention center in Broadview when a DHS agent shot him in the head with pepper balls. Pepper balls are never supposed to be fired at the head because they can seriously injure, or even kill. “We could hear them laughing as they were shooting us from the roof,” Black recalled. He is not the only member of the clergy ICE has assaulted. Methodist pastor Hannah Kardon was violently arrested on October 17th, and Baptist pastor Michael Woolf was shot with pepper balls on November 1st. Understand what it is to sleep in Chicago. On the night of September 30th, federal agents rappelled from a Black Hawk helicopter to execute a raid on an apartment building on the South Sho…

Kyle Kingsbury is not a journalist. He is not an op-ed writer.

He is a computer safety researcher.

And he has written one of the most compelling, comprehensive accounts of the ongoing hell in Chicago that you could possibly imagine.

In under 1600 words.

aphyr.com/posts/397-i-...

09.11.2025 20:49 — 👍 9424    🔁 5196    💬 105    📌 304
A Short Survey of Compiler Backends As an amateur compiler developer, one of the decisions I struggle with is deciding choosing the compiler backends. Unlike the 80’s when people had to target various machine architectures directly, now there are many mature options available. This is a short and very incomplete survey of some of the popular and interesting options. ### Contents 1. Machine Code / Assembly 2. Intermediate Representations 3. Other High-level Languages 4. Virtual Machines / Bytecode 5. WebAssembly 6. Meta-tracing Frameworks 7. Unconventional Backends 8. Conclusion ## Machine Code / Assembly A compiler can always directly output machine code or assembly targeted for one or more architectures. A well-known example is the Tiny C Compiler. It’s known for its speed and small size, and it can compile and run C code on the fly. Another such example is Turbo Pascal. You could do this with your compiler too, but you’ll have to figure out the intricacies of the _Instruction set_ of each architecture (ISA) you want to target, as well as, concepts like register allocation. ## Intermediate Representations Most modern compilers actually don’t emit machine code or assembly directly. They lower the source code down to a language-agnostic _Intermediate representation_ (IR) first, and then generate machine code for major architectures (x86-64, ARM64, etc.) from it. The most prominent tool in this space is LLVM. It’s a large, open-source compiler-as-a-library. Compilers for many languages such as Rust, Swift, C/C++ (via Clang), and Julia use LLVM as an IR to emit machine code. An alternative is the GNU C compiler (GCC), via its GIMPLE IR, though no compilers seem to use it directly. GCC can be used as a library to compile code, much like LLVM, via libgccjit. It is used in Emacs to _Just-in-time_ (JIT) compile Elisp. Cranelift is another new option in this space, though it supports only few ISAs. For those who find LLVM or GCC too large or slow to compile, minimalist alternatives exist. QBE is a small backend focused on simplicity, targeting “70% of the performance in 10% of the code”. It’s used by the language Hare that prioritizes fast compile times. Another option is libFIRM, which uses a graph-based SSA representation instead of a linear IR. ## Other High-level Languages Sometimes you are okay with letting other compilers/runtimes take care of the heavy lifting. You can transpile your code to a another established high-level language and leverage that language’s existing compiler/runtime and toolchain. A common target in such cases is C. Since C compilers exist for nearly all platforms, generating C code makes your language highly portable. This is the strategy used by Chicken Scheme and Vala. Or you could compile to C++ instead, like Jank, if that’s your thing. Another ubiquitous target is JavaScript (JS), which is one of the two options (other being WebAssembly) for running code natively in a web browser or one of the JS runtimes (Node, Deno, Bun). Multiple languages such as TypeScript, PureScript, Reason, ClojureScript, Dart and Elm transpile to JS. Nim interestingly, can transpile to C, C++ or JS. A more niche approach is to target a Lisp dialect. Compiling to Chez Scheme, for example, allows you to leverage its macro system, runtime, and compiler. The Idris 2 and Racket use Chez Scheme as their primary backends. ## Virtual Machines / Bytecode This is a common choice for application languages. You compile to a portable bytecode for a _Virtual machine_ (VM). VMs generally come with features like _Garbage collection_ , _JIT compilation_ , and security sandboxing. The Java Virtual Machine (JVM) is probably the most popular one. It’s the target for many languages including Java, Kotlin, Scala, Groovy, and Clojure. Its main competitor is the Common Language Runtime, originally developed by Microsoft, which is targeted by languages such as C#, F#, and Visual Basic.NET. Another notable VM is the BEAM, originally built for Erlang. The BEAM VM isn’t built for raw computation speed but for high concurrency, fault tolerance, and reliability. Recently, new languages such as Elixir and Gleam have been created to target it. Finally, this category also includes MoarVM—the spiritual successor to the Parrot VM—built for the Raku (formerly Perl 6) language, and the LuaJIT VM for Lua, and other languages that transpile to Lua, such as MoonScript and Fennel. ## WebAssembly WebAssembly (Wasm) is a relatively new target. It’s a portable binary instruction format focused on security and efficiency. Wasm is supported by all major browsers, but not limited to them. The _WebAssembly System Interface_ (WASI) standard provides APIs for running Wasm in non-browser and non-JS environments. Wasm is now targeted by many languages such as Rust, C/C++, Go, Kotlin, Scala, Zig, and Haskell. ## Meta-tracing Frameworks _Meta-tracing Frameworks_ are a more complex category. These are not the backend you target in your compiler, instead, you use them to build a custom JIT compiler for your language by specifying an interpreter for it. The most well-known example is PyPy, an implementation of Python, created using the RPython framework. Another such framework is GraalVM/Truffle, a polyglot VM and meta-tracing framework from Oracle. Its main feature is zero-cost interoperability: code from GraalJS, TruffleRuby, and GraalPy can all run on the same VM, and can call each other directly. ## Unconventional Backends Move past the mainstream, and you’ll discover a world of unconventional and esoteric compiler backends. Developers pick them for academic curiosity, artistic expression, or to test the boundaries of viable compilation targets. * Brainfuck: An esoteric language with only eight commands, Brainfuck is _Turing-complete_ and has been a target for compilers as a challenge. People have written compilers for C, Haskell and Lambda calculus. * Lambda calculus: Lambda calculus is a minimal programming languages that expresses computation solely as functions and their applications. It is often used as the target of educational compilers because of its simplicity, and its link to the fundamental nature of computation. Hell, a subset of Haskell, compiles to Simply typed lambda calculus. * SKI combinators: The SKI combinator calculus is even more minimal than lambda calculus. All programs in SKI calculus can be composed of only three combinators: S, K and I. MicroHs compiles a subset of Haskell to SKI calculus. * JSFuck: Did you know that you can write all possible JavaScript programs using only six characters `[]()!+`? Well, now you know. * Postscript: Postscript is also a Turing-complete programming language. Your next compiler could target it! * Regular Expressions? Lego? Cellular automata? ## Conclusion I’m going to write a compiler from C++ to JSFuck. If you have any questions or comments, please leave a comment below. If you liked this post, please share it. Thanks for reading!

I did a short survey of #compiler backends: https://abhinavsarkar.net/notes/2025-compiler-backend-survey/

#compilers #programming #pldev #langdev #blogging

05.11.2025 11:17 — 👍 1    🔁 3    💬 0    📌 0
Batman "This is the weapon of the enemy" meme format:

Batman breaking/shattering "GRADUAL TYPING" while saying "*THIS* IS THE WEAPON OF THE *ENEMY*.  WE DO NOT *NEED* IT.  WE WILL NOT *USE* IT."

Batman "This is the weapon of the enemy" meme format: Batman breaking/shattering "GRADUAL TYPING" while saying "*THIS* IS THE WEAPON OF THE *ENEMY*. WE DO NOT *NEED* IT. WE WILL NOT *USE* IT."

03.11.2025 17:58 — 👍 42    🔁 2    💬 1    📌 0
Notes for the Week #43 This week note covers the week of 20th-26th Oct. The Loovre * The week started with Diwali. We made a rangoli, lit lamps and decorated with lights. We had great food for breakfast and lunch. The sky was filled with fireworks. It was a lot of fun, especially for my little one. * I wrote a new blog post, concluding my “A Fast Bytecode VM for Arithmetic” series. Some friends have asked me how long it takes me to write these posts, so this time I paid attention. The idea came to me on 28th January 2025, and the series ended on 21st October 2025. So it took me about nine months from conception to end. I did about 70 revisions (commits) of the code, and about 50 revisions of the post text over the months. The end result was over 8300 words of text and 1700 lines of code. * I finally got the count of unread items in my feed reader below 1000. For a while, it peaked around 1800! * The traffic has been a dream this week. The stretch that took me three hours last week, took only 30 minutes this time. This amount of variation is crazy, to be honest. * I’ve been diving deeper into Jujutsu, and now I’m quite comfortable with it. I don’t use most of its advanced features on my personal repos, but I still feel like it is much easier than Git. * I finished watching _City the Animation_ , and I absolutely loved it. It’s wonderful to see a wacky anime about nothing after a long period of remakes and rehashes. I greatly enjoyed the finale that unexpectedly turned into a musical. * Though my health has been improving consistently, this week I faced debilitating shoulder pain caused by my bad posture. I must constantly remind myself that I’m too old to work for hours in bad postures. Thankfully, the hot water bag and slow stretching helped, and now I’m feeling better again. * On to regular website updates: * Some friends gave me harsh feedback on the bad readability of the justified text of posts, so it is back to being left aligned. * I added popular posts and notes pages. * We visited some old friends this weekend and it was lovely to catch up after a long gap. We chatted for hours about all things in the world, including good breads, modern cars, investing for future, writing books, making personal software, and setting up routers. They gifted me some keycaps and now my old keyboard looks amazing again. That’s all for this week. Write to me in the comments. If you have any questions or comments, please leave a comment below. If you liked this post, please share it. Thanks for reading!

I wrote a new #weeknote: https://abhinavsarkar.net/notes/2025-weeknotes-10-26/

#blogging #weeknotes

26.10.2025 15:59 — 👍 1    🔁 2    💬 0    📌 0
Original post on fantastic.earth

I've written a series of blog posts, in which I write a #bytecode #compiler and a #virtualMachine for arithmetic in #Haskell. We explore the following topics in the series:

- Parsing arithmetic expressions to ASTs.
- Compiling ASTs to bytecode.
- Interpreting ASTs.
- Efficiently executing […]

21.10.2025 15:12 — 👍 1    🔁 3    💬 0    📌 0
Preview
Exploring Arrows for sequencing effects Monads are <em>one</em> way to sequence effects, but they're not the only way!

Don't get too hung up on #Monads, there are other ways to sequence effects; including Arrows; and they provide even better static analysis!

Let me know what you think :)

#Haskell

chrispenner.ca/posts/arrow-...

21.10.2025 02:41 — 👍 12    🔁 6    💬 1    📌 0
Advice _I wrote this post for a prompt given during ourlocal Indieweb club meeting._ A brain-dump of advice I have for my present/future self: * Go for a walk at 8 PM. * Buy a bed. * Set more alarms. * Write down your daily plans on your palms. * Buy expensive shoes. * Put on shoes. * Get many online subscriptions. * Talk to your phone. * Fill your backpack with books. * Ask for advice and ideas. * Do what people tell you to do. * Go to paries uninvited. * Spend more money. * Learn Assembly. * Go for a walk at 6 AM. * Keep your water bottle in sight. * Make Lego towers. * Buy more domain names. * Jump on the bed (gently). * Don’t get bitten by mosquitoes. * Eat greasy food. * Throw away your cloths. * Don’t drive. * Use OverloadedRecordDot. * Stop talking. * Don’t overdo any of the above. If you have any questions or comments, please leave a comment below. If you liked this post, please share it. Thanks for reading!

I wrote a new #note: https://abhinavsarkar.net/notes/2025-self-advice/

#blogging

18.10.2025 12:20 — 👍 0    🔁 1    💬 0    📌 0
Preview
IndieWebClub Bangalore Website of the IndieWebClub Bangalore community

The website of #IndieWeb Club #Bangalore is finally up at https://blr.indiewebclub.org

19.10.2025 06:16 — 👍 1    🔁 1    💬 0    📌 0
Notes for the Week #42 This week note covers the week of 13th-19th Oct. A Desert Orchard * Bangalore—the city I live in—is notorious for its bad traffic. I had a confirmation of it just this week, when I was stuck in a cab for **three entire hours**. The traffic jam made the news, like many such before it, but experiencing it first-hand was a crazy thing. As I sat there in the cab for three whole hours, hungry, thirsty, sleepy but unable to sleep, I became so distraught that it made me challenge my belief that Bangalore is a good city to live in. Something will have to change. * As they say, you are not stuck in traffic, you are traffic. So better learn how to drive in Bangalore by reading this great guide by my friend Kiran. I’ve been thinking of writing such a piece for years now, but Kiran did it better than I could ever do, so now I don’t have to do it anymore. * I can’t write about my work in details, but I can tell you that I hate shift-reduce conflicts now. * On health, I’m feeling better with every passing day. Strength, clarity and curiosity is returning to me in waves. * Ankur convinced me to try Jujutsu (JJ), the new VCS that everyone is talking about these days. I configured it on my website’s repo, and it somehow deleted all the untracked files! After struggling for a bit, I fixed the repo by running multiple arcane Git commands (`reset/restore`, `for-each-ref`, `update-ref`). My strong suggestion is to deal with all the untracked files before you try JJ, by committing them to branches, or stashes, or adding them to `.gitignore`. JJ has no staging area unlike Git, and commits everything automatically. It also makes it easy to rewrite history, leading to lost commits. Together, they are a great recipe for losing untracked files. I’m starting to get a hang of JJ now after using it for few days. I’ve been working with Mercurial for the last six years at Google, so picking up JJ was quite easy for me, as JJ borrows a lot of concepts from Mercurial. The hardest part was abandoning the Git mindset of branches and rebases. * One Punch Man Season 3 is out! I’ve been waiting for it for six years! I can’t believe it took such a long break, but then the last six years have been pretty terrible for the world so I can understand. * I attended another fun IndieWebClub Bangalore meeting on Saturday. This was a technical session and we had a lively discussion about: * The right domain name for the IndieWebClub Bangalore website. * Adding share buttons to websites. * Pros and cons of adding Open Graph tags to websites. * Rendering charts on server-side for blog posts. * Justifying text on internet. * Automation. We finally **launched** the IndieWebClub Bangalore website at blr.indiewebclub.org! I also wrote a note for the writing exercise. * Moving on to personal projects, I did some more polishing of this website this week: * I added Atom feeds for the Readings and Activities pages. * I added my latest photo to the homepage. * I fixed some styling to switch from using tables to CSS. * Perceptive readers may have noticed that the text in the posts and notes is aligned justified now. Let me know how you feel about it. * Some interesting things I read on the internet this week: * Modeling State Machines with Dependent Types in Haskell * How Rhyme Works (and Why) * All I want for Christmas is a negative leap second That’s all for this week. Catch up with me in comments. If you have any questions or comments, please leave a comment below. If you liked this post, please share it. Thanks for reading!

I wrote a new #weeknote: https://abhinavsarkar.net/notes/2025-weeknotes-10-19/

#blogging

19.10.2025 07:13 — 👍 0    🔁 2    💬 0    📌 0
A screenshot of Miniflux feed reader showing articles sorted by similarity.

A screenshot of Miniflux feed reader showing articles sorted by similarity.

Wrote some JavaScript code to customize #Miniflux #feedReader to automatically sort articles by similarity. Now I can read similar articles one after another easily.

28.09.2025 13:05 — 👍 0    🔁 3    💬 0    📌 0
Sorting by Similarity in Miniflux As mentioned by in a previous note, I have customized Miniflux, my preferred feed reader, to add custom sorting for the articles. Recently, I added another sorting option: sorting by similarity. I kept finding myself wanting to read articles grouped by their topics, instead of hopping from topic to topic while going through my feed. So I build it: Screenshot of the Miniflux reader showing articles sorted by similarity Screenshot of the Miniflux reader showing articles sorted by similarity Screenshot of the Miniflux reader showing articles sorted by similarity

I wrote a #note about adding similarity based sorting in #Miniflux #feedReader: https://abhinavsarkar.net/notes/2025-miniflux-similar-sorting/

#blog #programming

30.09.2025 15:40 — 👍 0    🔁 6    💬 0    📌 0
Preview
Monads are too powerful: The Expressiveness Spectrum Monads are a useful tool, but what costs do we pay for their expressive power?

New blog post!

#Haskell is built on a foundation of Monads, but are they really the optimal way to sequence effects or should we keep looking for something better?

What's the big deal with Applicatives and Selective Applicatives?

Read on!

chrispenner.ca/posts/expres...

27.09.2025 04:02 — 👍 30    🔁 8    💬 5    📌 1
Steering Committee Retrospective Steering Committee Retrospective I am voluntarily ending my Steering Committee term early (I am only serving...

I wrote up a retrospective explaining why I ended my Nix Steering Committee term one year early

www.haskellforall.com/2025/09/stee...

17.09.2025 20:14 — 👍 40    🔁 9    💬 4    📌 0
PLP 3.6-3.7: Referencing Environments, Closures, and Macros
YouTube video by Jonathan Aldrich PLP 3.6-3.7: Referencing Environments, Closures, and Macros

How do first-class functions look up the value of a variable from an outer scope? Learn about referencing environments, closures, and macros in my latest Programming Language Pragmatics video!

PLP 3.6-3.7: Referencing Environments, Closures, and Macros - youtu.be/JBs4dY9nwOY

12.09.2025 13:16 — 👍 63    🔁 13    💬 2    📌 0

If you write a raytracer in Haskell, the camera must always point in the positive Y direction.

This is because Haskell doesn't allow downcasting.

12.09.2025 19:23 — 👍 10    🔁 1    💬 0    📌 0
My Quarterly System Health Check-in

It is essential to periodically take a few steps back from the day to day and reflect on where we are against our strategic goals. If you’re an engineering leader, a head of engineering, a director, or a VP, you likely have a recurring meeting to this effect.

In this post, I propose a structure for this operational exercise (complementing a business review) that lasts 2-4 hours, every month or quarter. I see quality as solving for the Pareto front with the tangible dimensions of reliability, performance, cost, delivery and security, and the more intangible dimensions of simplicity and social structures. For each dimension, go through the list of questions below and try to answer them together.

My Quarterly System Health Check-in It is essential to periodically take a few steps back from the day to day and reflect on where we are against our strategic goals. If you’re an engineering leader, a head of engineering, a director, or a VP, you likely have a recurring meeting to this effect. In this post, I propose a structure for this operational exercise (complementing a business review) that lasts 2-4 hours, every month or quarter. I see quality as solving for the Pareto front with the tangible dimensions of reliability, performance, cost, delivery and security, and the more intangible dimensions of simplicity and social structures. For each dimension, go through the list of questions below and try to answer them together.

I've been poking Srihari, our most experienced engineer @nilenso.com to share his hard-earned knowledge for the benefit of others.

Even if you're not an engineering leader like me, this checklist gives a lot of insight into what makes a great engineering org.

blog.nilenso.com/blog/2025/09...

12.09.2025 06:32 — 👍 2    🔁 2    💬 0    📌 0
:sad_turtle:

:sad_turtle:

functional programmers never beating the “mostly write compilers” allegations

10.09.2025 10:48 — 👍 26    🔁 6    💬 0    📌 1

Once again, the problem is that people ignore all of the invisible costs of vibe coding:

- prompting (specifying what to do *takes time*)
- learned helplessness
- constantly interrupting their own flow state
- babysitting rules files
- reviewing the LLM's output
- fixing bugs introduced by the LLM

21.07.2025 15:32 — 👍 14    🔁 2    💬 2    📌 1
Preview
Bangalore FP October 2025 meetup Bangalore FP October 2025 meetup

Announcing the October #FPIndia #Bangalore #Meetup!

#Haskell #PureScript #Elixir #Erlang #Scala #Clojure #India #FunctionalProgramming

RSVP: hasgeek.com/fpindia/bang...

10.09.2025 09:54 — 👍 4    🔁 2    💬 0    📌 0
Rewriting dataframes for MicroHs My fondness for alternative Haskells

"Rewriting dataframes for MicroHs" by @mschav.bsky.social mchav.github.io/rewriting-da...

#Haskell

08.09.2025 06:15 — 👍 4    🔁 2    💬 0    📌 0
Preview
PKM apps need to get better at resurfacing information — Ankur Sethi Modern PKM apps allow me to collect vast quantities of information. The downside is they're not good at resurfacing what I've already captured.

i wrote about a limitation of PKM apps that's been bothering me lately.

ankursethi.com/blog/pkm-app...

(this is a pretty short post, but for some reason it took me a REALLY long time to write. still not sure why. and i'm not particularly happy about how it came out.)

05.09.2025 17:53 — 👍 2    🔁 1    💬 0    📌 0

No silksong today, go write Haskell 😈

04.09.2025 20:50 — 👍 11    🔁 2    💬 1    📌 1

you can pry my leading commas from my cold dead hands, ormolu

01.09.2025 12:14 — 👍 7    🔁 2    💬 2    📌 0

I wrote a new #note about how I got into #programming: https://notes.abhinavsarkar.net/2024/into-programming

#Blogging #personal

31.08.2025 04:43 — 👍 1    🔁 2    💬 0    📌 0
Original post on fantastic.earth

I'm writing a series of blog posts, in which I write a #bytecode #compiler and a #virtualMachine for arithmetic in #Haskell. We explore the following topics in the series:

- Parsing arithmetic expressions to ASTs.
- Compiling ASTs to bytecode.
- Interpreting ASTs.
- Efficiently executing […]

24.08.2025 12:27 — 👍 2    🔁 4    💬 0    📌 0
Type inference for plain data Type inference for plain data using Monoids The context behind this post is that my partner asked me how to ...

I wrote up a post on how to infer the type of plain data with One Simple Trick ™️

www.haskellforall.com/2025/08/type...

13.08.2025 15:57 — 👍 25    🔁 3    💬 1    📌 2
The haskell.org frontpage with an alternative logo that resembles the style used by the VTubing community.

The haskell.org frontpage with an alternative logo that resembles the style used by the VTubing community.

Be Not Afraid
www.haskell.org?uwu=true

09.08.2025 10:18 — 👍 72    🔁 8    💬 3    📌 2

Programming language design in a nutshell:

Whatever Elisp does, don't.

07.08.2025 18:10 — 👍 10    🔁 3    💬 1    📌 0

Oh hey. I wrote this! #Haskell #compilers #programmingLanguages

03.08.2025 10:02 — 👍 2    🔁 0    💬 0    📌 0

The year is 2032. AI bots patrol a broken world. Most are hunted. A few remain.

One group discovers robots can't see them. They were erased from the training data.

The revolution begins.

This is Transfeminator: revengance.

24.07.2025 12:32 — 👍 5    🔁 1    💬 1    📌 0

@abhin4v is following 20 prominent accounts