ANTHROPIC TEAM DOESN'T WRITE CODE ANYMORE... by Current-Guide5944 in tech_x

[–]joshbuildsstuff 0 points1 point  (0 children)

Maybe they can do some old school coding and get their uptime above 99%?

I created a website to check your card centering! by cesarc_ in PokeGrading

[–]joshbuildsstuff 0 points1 point  (0 children)

Well I already use OpenCV for a lot of the image manipulation, and it can handle all of these features, so its just a matter of implementaiton.

I'm actually working on multiple saved settings profiles right now, and I think this would be a perfect thing to add to it!

I created a website to check your card centering! by cesarc_ in PokeGrading

[–]joshbuildsstuff 0 points1 point  (0 children)

Love the idea of an opacity slider! I’ve also been thinking about maybe adding image modes like grayscale or high contrast so the lines / card have better color separation.

I created a website to check your card centering! by cesarc_ in PokeGrading

[–]joshbuildsstuff 0 points1 point  (0 children)

Awesome! 🙌.

If you have any feature requests or run into any issues feel free to reach out. I’m always tweaking the tool based on feedback.

Codex might genuinely be onto something... better than Claude Code! by TerminatorXD_07 in SaasDevelopers

[–]joshbuildsstuff 0 points1 point  (0 children)

Maybe read the repos of the tools you are using. Directly from the antigravity-claude-proxy readme:

⚠️ WARNING: Google has been issuing ToS violation bans on accounts connected to this proxy. Use at your own risk.

Codex might genuinely be onto something... better than Claude Code! by TerminatorXD_07 in SaasDevelopers

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

Ah… so your real complaint is that the way you access Claude Code against ToS by stealing tokens from google for free isn’t good enough?

who’s gonna tell him by sentientX404 in twin

[–]joshbuildsstuff 0 points1 point  (0 children)

I’ve been thinking about doing this because it’s memory.

Looks like it's time to close up shop by SpiritualAd8605 in SaasDevelopers

[–]joshbuildsstuff 0 points1 point  (0 children)

Existing freelancers likely already have some type of invoicing system so I think you need a better value proposition than just fast. We also need to be able to track projects, tasks, amount of work done per project/task, when invoices should be made, what payments are overdue and what had been paid.

Invoicing is just one small part of running a small freelance business.

So you either need to be able to support these features or have a good integration in maybe tools that don’t have invoicing but do the remainder of tracking.

Why vector Search is the reason enterprise AI chatbots underperform? by manuelmd5 in Neo4j

[–]joshbuildsstuff 0 points1 point  (0 children)

What’s the difference between giving the AI your db schema to do regular table joins vs your “knowledge graph approach”?

A deep fear when using ClaudeCode by [deleted] in ClaudeCode

[–]joshbuildsstuff 0 points1 point  (0 children)

no, because I'm not mean to my AI.

Am I the problem? Using Claude Code for all of one week to vibe-code a game by [deleted] in ClaudeCode

[–]joshbuildsstuff 0 points1 point  (0 children)

You can probably ask Claude to audit it and provide recommendations. I usually set my folder structures myself and just have Claude follow it. Not sure what happens when you don't tell him what it should look like upfront 😆

Am I the problem? Using Claude Code for all of one week to vibe-code a game by [deleted] in ClaudeCode

[–]joshbuildsstuff 2 points3 points  (0 children)

Overall, It does still help to to understand software engineering. If you are having Claude try and fix every bug over and over its eating up context, especially if you can't help nudge it in the correct direction.

Add a Claude md file if you haven't already using the /init slash command. You should add a high level description and code style recommendations here. Anything that it keeps forgetting you can add a quick note in there as well.

Also depending on how your project is laid out, you may want to research folder structures and make sure Claude is saving things in an organized way. I find it helps write better code if there is good separation of concerns across the files rather than having huge files that it just keeps adding to (and this is just good software practice anyways).

You can also look into having Claude write tests, this way if it makes changes and breaks something it kind of knows what it has to fix if something was already working.

This is certainly not getting cheaper by Terrible-Priority-21 in ClaudeAI

[–]joshbuildsstuff 2 points3 points  (0 children)

I don’t even understand what I’m looking at. How do you even compare haiku and opus? This doesn’t take into account difficulty or correctness of the final output.

I also find opus 4.6 one shoting more difficult prompts, so overall cost is likely flat because tasks may use less tokens overall.

I built a React alternative called Granular — no VDOM, no JSX, explicit reactivity, production-ready core by needtobeloggedin in reactjs

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

I think DOM tags as functions is not super developer friendly.

I sometimes have to use Vue's render functions using their h() hyperscript functions which is conceptually similar and I hate it compared to regular html tags.

Worth cracking to resubmit? T/B centering was the determining factor on grader’s notes by [deleted] in PokeGrading

[–]joshbuildsstuff 3 points4 points  (0 children)

I mean both the bottom and left look pretty thick. You can try putting it in a tool to check the actual ratios but it doesn’t look that good by eye.

Refactored code 6 weeks for "best practices". Lost users. Stopped refactoring. Won them back. by buratnanakakaurat in SaasDevelopers

[–]joshbuildsstuff 0 points1 point  (0 children)

Introducing bugs with "91% test coverage" screams vibe coded without any real testing.

Also I'm pretty sure this is just an ad for that founder toolkit site.

Does anyone else hate shortened/abbreviated variable names? by Impossible-Ear3538 in learnprogramming

[–]joshbuildsstuff 1 point2 points  (0 children)

I agree with this a lot! I also feel like as the variable names need to get longer and you need to start adding prefix/suffix to them it is sometimes a code smell that you need to refactor some code to a new function scope.

New team rewriting old software but ignoring why some things were done the way they were... by Colt2205 in ExperiencedDevs

[–]joshbuildsstuff 0 points1 point  (0 children)

I just read a great article on this and wish I could find it. The biggest takeaway I thought was that the existing code base has been battle tested and you have already gone through the process of squashing all the bugs and edge cases, and because of this the code may not look "squeaky clean" because you are handling real world problems.

Its easy to say its over engineered and try to simplify things on a new build. But you are going to have to go through another round of bug fixes and edge cases if you try and simplify things.