Posts in English

Getting to know lambdas in C++

\(\lambda\)s in C++: Nameless functions serving sweet syntactic sugar — just enough to give your codebase diabetes.

Read more ...


Advent of Code 2024 [Days 10 and 11]

The plutonian pebbles are getting out of hand! And we also have to find a hiking trail.

Read more ...


Learning CPP via Advent of Code 2024 [Day 9]

This isn’t how you’re supposed to defrag a disk… right?

Read more ...


Hello World

  • 12 August 2024
  • Author: me
  • Language: English

Hi!! I have made a website and if you are seeing this, it is live

Read more ...


Late Binding of Python Closures

A subtle source of bugs in loops and closures. When lambda functions capture loop variables, they may not behave as you expect.

Read more ...


Writing C wrapper for C++ libraries

When working on projects that involve both C and C++ components, integrating functionality between the two can sometimes pose challenges due to the differences in their language constructs and compilation models. One common scenario is when you have a C++ library that you want to use within a C codebase.

Read more ...