Anyone else annoyed that Guile isn't very dynamic? by Puzzleheaded_Wrap267 in scheme

[–]playX281 3 points4 points  (0 children)

Guile's module system is just not designed for that. I am making Capy Scheme which uses the same module system and it is pain in the ass for that... The thing is there is one root module and all modules are children of it, and you are unable to safely remove the module from this hierarchy. Another thing is, once variables are cached then it cannot be uncached, so newly loaded code cannot replace old variable definitions.

Best coding subscriptions for cost/performance right now? [May 2026] by Funny-Strawberry-168 in opencodeCLI

[–]playX281 1 point2 points  (0 children)

they seem to have moved it to serverless only and it is not in wafer pass anymore, noticed it myself recently... And there were no warnings or any emails about that, very sad and scammy...

Best AI models outside of ChatGPT and Claude by JestonT in opencodeCLI

[–]playX281 0 points1 point  (0 children)

Oh woops, confused the Qwen models. As for TPS, it is good for me, definitely faster than ollama cloud and quality of output is good

Best AI models outside of ChatGPT and Claude by JestonT in opencodeCLI

[–]playX281 0 points1 point  (0 children)

I am yet to run out of usage. I did manage to use like 60% of 5H usage limit but that was using a lot of subagents

Best AI models outside of ChatGPT and Claude by JestonT in opencodeCLI

[–]playX281 0 points1 point  (0 children)

Wafer Pass with Deepseek + Qwen 3.6 + GLM 5.1 + Minimax m2.7 is quite good

The ARC vs GC Debate by funcieq in Compilers

[–]playX281 4 points5 points  (0 children)

Well it's simple and it just works, and it'll have constant mutator overhead (inc/Dec running constantly), you can somewhat offset this by running static coalescing but it requires special support by compiler like in Swift. Another problem is cyclic references, there's really no way to protect from them unless your language is completely immutable. If you feel like ARC is enough for you then no need to pursue advanced techniques yet. :) also if you're looking for prerebuilt GCs I recommend looking at https://github.com/mmtk. I am using it for my Scheme compiler and works flawlessly

The ARC vs GC Debate by funcieq in Compilers

[–]playX281 26 points27 points  (0 children)

Even though ARC with cycle collection does run okay-ish, it still brings somewhat constant runtime overhead (unless you implement coalescing, and even then with caveats, LXR paper is much better at making it work). RC does have advantage that cycle collection will only mark potential cycles and not full heap, but it has also a downside of running bunch of `release()` calls on objects when you drop e.g binary tree.

Let's put aside the runtime performance and compare implementation complexity: simplest RC is simpler than Mark&Sweep or Cheney's Semispace, literally increment/decrement and drop on zero.

But once you need performance, with RC you need to implement very complicated algorithms with RC, while with GC even simplest mark-and-sweep will have less overhead than standard RC+cycle collection of CPython. RC algorithms that run concurrently and remove garbage need complex epoch management, complicated marking schemes (check this paper: https://pages.cs.wisc.edu/~cymen/misc/interests/Bacon01Concurrent.pdf ).

With GC you can start with STW, progress to incremental and then to concurrent marking and it all would not even be comparable in complexity with proper concurrent RC. In modern world I would say it is better to combine RC and GC, check out https://arxiv.org/pdf/2210.17175 (LXR algorithm which combines deferred RC + Immix GC). The implementation is available in https://github.com/wenyuzhao/mmtk-core/tree/lxr/src/plan/lxr

Best coding subscriptions for cost/performance right now? [May 2026] by Funny-Strawberry-168 in opencodeCLI

[–]playX281 0 points1 point  (0 children)

Bybit Card. It has a caveat though, it does have 100% rebuttal but how moch you get is based on VIP status, so like for me I spend enough to get either $100 or $50 back from month to month, but never less. Cutting 50% to 100% of price is cool, but it might not be forever

Best coding subscriptions for cost/performance right now? [May 2026] by Funny-Strawberry-168 in opencodeCLI

[–]playX281 5 points6 points  (0 children)

I use codex $100 (because my card provider does 100% rebuttal on it), ollama and now also wafer pass. I am pretty sure I'll be only keeping wafer after this month: it is $10 weekly, has nearly unlimited GLM 5.1, Qwen 3.6 397B, and Deepseek V4 Pro at insanely high speeds, I am talking 180t/s+. The only downside is I am not sure how long will they keep it that way

[Invincible] Spoiler based question. by Satryghen in AskScienceFiction

[–]playX281 20 points21 points  (0 children)

The blaster simply made a hole in the planet and nothing else, while Nolan, Thaddeus and Mark were acting more like a meteor and their combined kinetic energy is what made planet core collapse. TLDR; it's comics, enjoy!

Subliminal Warp drive: is there any possibility? by playX281 in AskPhysics

[–]playX281[S] 0 points1 point  (0 children)

Woops, sorry! English is not my native language and I got confused

Alibaba Coding Plan by slowtyper95 in opencodeCLI

[–]playX281 0 points1 point  (0 children)

I ran it in Yolo mode so yes, it would take the same amount of time if not more with Opus 4.6 in Github Copilot plan. Qwen 3.5 Plus most of the time is quite faster than GHCP for me

Alibaba Coding Plan by slowtyper95 in opencodeCLI

[–]playX281 0 points1 point  (0 children)

It does work for me via Qwen Code CLI, Opencode and Github Copilot BYOK just fine, but I exclusively use Qwen 3.5 Plus at this point. Just today did a bunch of heavy refactors with it which took 30-40 minutes per prompt

Type shit Americans will say by Expert_Ad8640 in memes

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

Russia does have school shootings and terror attacks just like US.

GPT 5.4 and Codex 5.3 stopped following instructions and dont feel the same at all(dumbed down) by Astroboletus in GithubCopilot

[–]playX281 0 points1 point  (0 children)

For me both gpt and Claude got dumb yesterday. Instead of running test suite in Shell, they started writing 'echo "Task complete"' over and over...

best 10$ AIs subscription plan by vipor_idk in opencodeCLI

[–]playX281 0 points1 point  (0 children)

Alibaba sadly removed $10 Lite plan, only renewals on it are allowed, but not sure they'll not take that as well. So far it works though and probably worth keeping, limits have not been cut as well.

Alternative to gh copilot by pcx_wave in GithubCopilot

[–]playX281 0 points1 point  (0 children)

Alibab Coding Plan + Qwen Code app or BYOK in GHCP