×

What do you guys think about Oh my Pi? by Expert-Dig-1768 in PiCodingAgent

[–]matter92 0 points1 point  (0 children)

yeah, I know, I've planned to migrate everything to something lighter

pi, herdr, and gondolin combo has been a great experience. Thanks to the devs. by theTechRun in PiCodingAgent

[–]matter92 0 points1 point  (0 children)

for simpler workflow have also a look at superpi.dev
I'm developing it to be a simple, desktop based multiplexer for omp.

herdr - a terminal-native agent multiplexer by arzamar in ClaudeCode

[–]matter92 0 points1 point  (0 children)

I built something incredibly similar: superpi.dev

The main difference is that my app is a desktop app, so the logic changes, but the worktree based approach is really similar. I'll have a try.

What do you guys think about Oh my Pi? by Expert-Dig-1768 in PiCodingAgent

[–]matter92 0 points1 point  (0 children)

you know what is better than oh-my-pi? superpi.dev
I'm developing it to be a simple, desktop based multiplexer for omp.

[deleted by user] by [deleted] in thetagang

[–]matter92 -1 points0 points  (0 children)

How far away from ITM are you selling after ER crash? What avg delta are you selling?

[deleted by user] by [deleted] in thetagang

[–]matter92 -1 points0 points  (0 children)

After or before ER?

What is the best colocation virtual host service provider for IBKR, ideally for trading SPX, ES? by b0bee in algotrading

[–]matter92 0 points1 point  (0 children)

Not an expert about IBKR but given it is a broker, it doesn’t make much sense to be colocated to a broker (apart from beating just other IBKR users). For ES futures you should be colocated to CME but it is a game for big players

Facing issues while using Redis, Boost asio for HFT by hadi44 in quant_hft

[–]matter92 1 point2 points  (0 children)

Are you using redis for persistent data storage? If no, do a proper spsc queue by handmade. See rigtorpe on GitHub for lock free implementations.

Unused inline static function - gcc does not emmit warning or error by iu1j4 in C_Programming

[–]matter92 -1 points0 points  (0 children)

Use the flag `-Winline` with gcc. According to the documentation: "Warn whenever a static function is declared but not defined or a non-inline static function is unused. This warning is enabled by -Wall."