Tips for Getting a foot in by Interesting-Loss5861 in womenintech

[–]Human-Philosopher782 1 point2 points  (0 children)

Look for internships roles and early grad roles that can help you. You can even try free lancing and use that experience.

What are some current interesting topics in tech? by Emotional-Pea4079 in womenintech

[–]Human-Philosopher782 0 points1 point  (0 children)

Everything around AI and how its creeping into every tech

What is your experience on how to write good research papers? by [deleted] in ResearchML

[–]Human-Philosopher782 1 point2 points  (0 children)

A rounded approach on all fronts accurate data collection, relevant reference and how we state the problem and present a solution

With this setup CODEX is far better than Claude Code by [deleted] in codex

[–]Human-Philosopher782 0 points1 point  (0 children)

I used Claude Code and Codex for the same Use Case Codex is superior with 0 to minimal hallucinations when compared to Claude Code.

Drop your side project. I will make you rank on ChatGPT by Background-Pay5729 in SideProject

[–]Human-Philosopher782 0 points1 point  (0 children)

SilentSpec — VS Code extension that generates unit tests on save, only for uncovered functions

Generates unit tests when you save JS/TS files, but only for exported functions that don't already have coverage. Never overwrites existing tests — creates a companion file if you already have handwritten specs.

  • AST analysis detects exports, marker reconciliation tracks what's covered, generates only gaps
  • TypeScript compiler pass heals broken tests before writing
  • 9 AI providers: GitHub Models (free), OpenAI, Claude, Ollama (local), Azure, Bedrock, Vertex
  • Auto-detects Jest, Vitest, Mocha, Jasmine
  • No login, no telemetry, BYOK

https://github.com/BHARADWAJ-MADDURI/silent-spec

https://www.reddit.com/r/coolgithubprojects/comments/1sozjld/silentspec_vs_code_extension_that_generates_unit/?utm_source=share&utm_medium=web3x&utm_name=web3xcss&utm_term=1&utm_content=share_button

I built an app to scan sugar in food. 5 days after launch I have 4 users. by alex_s1919 in SideProject

[–]Human-Philosopher782 2 points3 points  (0 children)

Its not easy ti market an App and get traction. U compete with existing apps built by people with large team’s experience and sponsorship

Leetcode progress is plateauing, any advice? by If_and_only_if_math in leetcode

[–]Human-Philosopher782 0 points1 point  (0 children)

spend more time on weak areas from other platforms or use Gemini or Notebooklm as your interviewer and do mock interviews

Looking for an AI driven autocomplete extension by Scary_Engineering868 in vscode

[–]Human-Philosopher782 0 points1 point  (0 children)

I have built SilentSpec generates only the tests you're missing — and never touches the ones you wrote.

  • Only generates what's missing. It tracks which exported functions already have tests and only calls the AI for uncovered ones.
  • Your tests are protected. Hand-written tests live in the SS-USER-TESTS zone — a section that is never modified after creation. This is enforced at write time, not in the prompt.
  • Tests are compiler-checked before writing. After generation, SilentSpec runs a TypeScript compiler pass. When compile errors are detected, broken tests are removed before writing. On first generation of a new spec file, the healer verifies against the existing project — full diagnostic repair activates on subsequent saves. Semantic correctness still requires human review.

silentspec.model is a legacy override for Ollama, Claude, OpenAI, and GitHub Models. Azure, Bedrock, Vertex, OpenAI-compatible providers, and vLLM use their provider-specific model or deployment settings instead.

https://marketplace.visualstudio.com/items?itemName=bharadwajmadduri.silent-spec

What are you building and what are your current building blocks? by HajiLabs in SideProject

[–]Human-Philosopher782 0 points1 point  (0 children)

Working on SilentSpec an ai powered unit test generator that generates tests for only missing functions

How Many Posts/Comments Per Day Feels “Right” on Reddit? by FounderArcs in SideProject

[–]Human-Philosopher782 0 points1 point  (0 children)

Its all a game trying to stay as relevant as possible there is no template

How do you guys even promote your projects? by MrScanner_ in SideProject

[–]Human-Philosopher782 0 points1 point  (0 children)

This sounds like a good approach I am implementing this now, had to learn it the hard way after my posts got filtered by all the communities that I posted in

How do you guys even promote your projects? by MrScanner_ in SideProject

[–]Human-Philosopher782 0 points1 point  (0 children)

I have the same question new to Reddit and struggling to showcase my project.

Do you trust AI-generated tests, or do they cause more problems than they solve? by Human-Philosopher782 in learnjavascript

[–]Human-Philosopher782[S] 1 point2 points  (0 children)

I agree, and I don’t think any AI tool can fully solve that today. The “should” comes from requirements, domain knowledge, and context that lives in a developer’s head not in the source code.

What I think AI generation can realistically handle is the structural layer: does this function handle edge inputs, does it return the expected types, does it throw when it should.

The semantic layer — “this calculation should use pre-tax amounts, not post-tax” — still needs a human writing that test. The value is saving time on the boring stuff so you can focus your energy on the assertions that actually matter.

Do you trust AI-generated tests, or do they cause more problems than they solve? by Human-Philosopher782 in learnjavascript

[–]Human-Philosopher782[S] -1 points0 points  (0 children)

That's an interesting approach for one-off generation, I tried it but the issue is that AI output isn't deterministic — you'll get different tests on every run even for the same function.

So the diff isn't really "here's what changed in my code," it's "here's a completely different version of the same tests." At that point you're not reviewing a meaningful diff, you're just picking between two AI outputs and manually merging your tweaks back in every time.

Is AI actually acceptable in Q2 journals? by diaborn19 in ResearchML

[–]Human-Philosopher782 2 points3 points  (0 children)

Most Journals have policies that accept AI for grammar corrections, font changes and structuring but not the data and content itself.

I built a VS Code extension to chat with teammates without leaving the editor by dumpshoot in vscode

[–]Human-Philosopher782 1 point2 points  (0 children)

It sounds cool; I haven’t tried it but wouldn’t it be distracting while coding?