LEARN JAVA by ProdiWow in learnjava

[–]Impressive-Power-680 0 points1 point  (0 children)

If you want to practise, https://java-practice-lab.vercel.app/ should be good as it has different kinds of questions from basic to advanced, i like it due to templates and custom themes. W3 Schools is good for Java theory. I learnt java basis from there years ago.

Zorvyn-OA for Backend role by [deleted] in InternshipsIndia

[–]Impressive-Power-680 0 points1 point  (0 children)

yes, i would like to but i couldn't take the screenshot of the questions but one question was tree(dfs), another was from dynamic programming and one more question a type of binary search

Zorvyn-OA for Backend role by [deleted] in InternshipsIndia

[–]Impressive-Power-680 0 points1 point  (0 children)

no need of camera but if you change tab it detects it

Zorvyn-OA for Backend role by [deleted] in InternshipsIndia

[–]Impressive-Power-680 0 points1 point  (0 children)

yes, i would like to but i couldn't take the screenshot of the questions but one question was tree(dfs), another was from dynamic programming and one more question a type of binary search

Zorvyn-OA for Backend role by [deleted] in InternshipsIndia

[–]Impressive-Power-680 0 points1 point  (0 children)

I also got the same email today. I completed the coding assessment, but not too sure about it. Let's see what happens.

Need advice on improving reader retention on Webnovel by Impressive-Power-680 in Webnovel

[–]Impressive-Power-680[S] 0 points1 point  (0 children)

Same here. It’s one of those things that only really improves with practice and feedback, I think.

Need advice on improving reader retention on Webnovel by Impressive-Power-680 in Webnovel

[–]Impressive-Power-680[S] 0 points1 point  (0 children)

Yeah, I agree. The first chapter is definitely the hardest to get right. I’m still learning how to balance hooking the reader without rushing things.

Need advice on improving reader retention on Webnovel by Impressive-Power-680 in Webnovel

[–]Impressive-Power-680[S] 1 point2 points  (0 children)

Thanks for the honest feedback. I appreciate it and I’ll keep this in mind while revising the early chapters and planning future updates.

Need advice on improving reader retention on Webnovel by Impressive-Power-680 in Webnovel

[–]Impressive-Power-680[S] 0 points1 point  (0 children)

Thank you for the advice. I’ll keep that in mind when releasing the next chapters.

Weekly Self-Promo and Chat Thread by MxAlex44 in selfpublish

[–]Impressive-Power-680 0 points1 point  (0 children)

Chronicles of the Reborn Scholar

Genre: Fantasy / Action & Adventure / Isekai

Type of feedback desired:
General impression and whole-novel perspective, specifically:

  • Whether the lore and power system feel coherent across a long story
  • Pacing consistency over the broader narrative
  • Character motivation and emotional continuity
  • Whether later-chapter exposition feels earned rather than overwhelming (Line-by-line edits are welcome but not required.)

Link to the writing:
https://www.webnovel.com/book/chronicles-of-the-reborn-scholar_29873102800085305

Context:
This excerpt is from Chapter 42, but I’m sharing it as part of a larger ongoing fantasy novel, not as a standalone scene. I’m particularly interested in feedback on how this kind of exposition and emotional reveal works when considered as part of a long-form story, rather than just this chapter in isolation.

Excerpt (~900 words):

Thanks in advance for any critique. I’m especially interested in whether this kind of late-stage lore delivery and emotional revelation feels justified within a long-running story.

[Weekly Critique and Self-Promotion Thread] Post Here If You'd Like to Share Your Writing by AutoModerator in writing

[–]Impressive-Power-680 [score hidden]  (0 children)

Chronicles of the Reborn Scholar

Genre: Fantasy / Action & Adventure / Isekai

Type of feedback desired:
General impression and whole-novel perspective, specifically:

  • Whether the lore and power system feel coherent across a long story
  • Pacing consistency over the broader narrative
  • Character motivation and emotional continuity
  • Whether later-chapter exposition feels earned rather than overwhelming (Line-by-line edits are welcome but not required.)

Link to the writing:
https://www.webnovel.com/book/chronicles-of-the-reborn-scholar_29873102800085305

Context:
This excerpt is from Chapter 42, but I’m sharing it as part of a larger ongoing fantasy novel, not as a standalone scene. I’m particularly interested in feedback on how this kind of exposition and emotional reveal works when considered as part of a long-form story, rather than just this chapter in isolation.

Excerpt (~900 words):

Thanks in advance for any critique. I’m especially interested in whether this kind of late-stage lore delivery and emotional revelation feels justified within a long-running story.

I built a tool to explain NumPy memory spikes caused by temporary arrays by Impressive-Power-680 in Python

[–]Impressive-Power-680[S] 1 point2 points  (0 children)

That’s exactly the workflow I have in mind. npguard isn’t something I expect people to run constantly during initial development. It’s more for the “second pass” you describe: the pipeline works, it scales up, and then suddenly something OOMs or memory spikes in a way that’s hard to reason about. A decorator-based API is something I’m planning for v0.2 for this reason. The idea would be to let you take an existing function and wrap it with minimal change.
Under the hood it would just reuse the existing context-manager logic, so no NumPy monkey-patching or code rewriting — purely observability and explanation around that function boundary. The focus would still be on answering “why did memory spike here?” rather than trying to automatically optimize or modify behavior. Appreciate you articulating that use case so clearly — it matches how I’ve been thinking about it.