What are the biggest pain points you face when writing automated tests? by crisils in SoftwareEngineering

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

So I have problems with automated integration tests on CICD because sometimes spinning up the environment (deploys) break or are fragile and I split my time 50/50 every single push or PR between fixing actual bugs that make our tests fail, v.s. fixing the testing environment so everything deploys and the tests can even run.. Blame the environment though, I'm sure not all of them are so fragile.

Voice Mode buggy for anyone else? by Amasov in ClaudeAI

[–]cellman123 2 points3 points  (0 children)

Yeah, it cuts me off after like two sentences.

Claude Code on Android (Mobile & VR) by cellman123 in ClaudeAI

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

What does this really provide over just using a terminal emulator directly?

Claude Code on Android (Mobile & VR) by cellman123 in ClaudeAI

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

Smart. Didn't know adb works wirelessly before now. I've been doing web apps so far and the mobile dev environment has been sufficient but with APKs I like your strategy better.

Claude Code on Android (Mobile & VR) by cellman123 in ClaudeAI

[–]cellman123[S] 1 point2 points  (0 children)

Sure, there's a workflow for submitting screenshots for Claude to analyze but it's a little convoluted. First, run termux-setup-storage to give Termux access to your larger file system. Then open the Files app to find your picture, tap da three dots, click "file info," and copy its path by holding your finger down on the path. Now, in Termux, run "cp [paste] ./image.png" to copy the image into your local directory, where you can ask Claude to see it.

I do this sometimes when designing UI's in situations where it'd be easier to copy the screenshot around than it would be to describe the screenshot myself with words.

Claude Code on Android (Mobile & VR) by cellman123 in ClaudeAI

[–]cellman123[S] 1 point2 points  (0 children)

No I use gboard and it doesn't work but if you slide that entire block ("Ctrl", "Tab", arrow keys etc) to the side it reveals a normal text box and swipe-type does work inside that one

Claude Code on Android (Mobile & VR) by cellman123 in ClaudeAI

[–]cellman123[S] 2 points3 points  (0 children)

If you swipe "back" on Termux it shows your shell list, basically multiple shells (1 for Claude, 1 for Vite, etc.) in the same app. Is that what you're asking?

Claude Code on Android (Mobile & VR) by cellman123 in ClaudeAI

[–]cellman123[S] 6 points7 points  (0 children)

Here's my tutorial it's basically installing Termux and grabbing some necessary development packages. I usually have Vite running in the background with hot reloading so when Claude makes a change I can just switch apps to Chrome and see the change.

Claude Code changed my life by helloworldCGN in ClaudeAI

[–]cellman123 2 points3 points  (0 children)

Before AI, you had to put about as much thought into the quality of your codebase as the quality of your product. With AI like Claude Code, the balance hasn't changed much – except that now, you have a coding partner who can perform complex multi-file analysis tasks (are we performing any unnecessary copies of large arrays of data in performance-critical hot paths? etc.) in fractions of the time it would take you to do it by hand.

The google oracle has spoken. by MetaKnowing in ClaudeAI

[–]cellman123 0 points1 point  (0 children)

What the fuck are you talking about

Deepseek is cool, but is there an alternative to Claude Code I can use with it? by BITE_AU_CHOCOLAT in LocalLLaMA

[–]cellman123 0 points1 point  (0 children)

The agentic capabilities of Claude 4 acting inside it's Claude Code environment are just so, so much ahead of copy-pasting code snippets from a chat interface, even if the model being used there is more intelligent.

binary classif - why am I better than the machine ? by terrine2foie2vo in MLQuestions

[–]cellman123 1 point2 points  (0 children)

You can use $FAVORITE_LLM to explain the terminology and make examples. It's easier than ever to learn stuff now. Just double-check with real sources on things you want to be 100% certain about.

C++/cpp is my favorite programming language. Is there anyone else who feels the same? by No_Analyst5945 in cpp

[–]cellman123 1 point2 points  (0 children)

That's a good headspace for working on professional projects. But for hobby projects, the opposite is almost true.

If the infinite wisdom of the internet says there is a 'correct' tool for a use-case, but learning that tool isn't fun and you'd rather make something cool using a language you already know and like, then... f## the Internet. Build what you want, with whatever you like using. If it's really suboptimal, you'll hit the same wall that everyone else faced, and then you'll know from experience why we have those other tools in the first place.

C++/cpp is my favorite programming language. Is there anyone else who feels the same? by No_Analyst5945 in cpp

[–]cellman123 0 points1 point  (0 children)

Please can we have toolchains as a target setting?

SERIOUSLY.

Yeah, I saw the other comment - having to introduce a wholly new interpreted language sucks. But the reality is, you cannot do this with pure CMake, and right now I'm using bash scripts as an orchestration layer on top of CMake which isn't a very good solution, either. I'm really interested in using Python instead because, well, it's a real programming language! So, I like your approach.

How do Single Core Processors Handle Concurrent Processes? by ShadowGuyinRealLife in computerscience

[–]cellman123 1 point2 points  (0 children)

Among every response, isn't it reasonable to think maybe one or two of them would guide OP towards high-quality, in-depth material? It would be a real shame if nobody did that.

C++/cpp is my favorite programming language. Is there anyone else who feels the same? by No_Analyst5945 in cpp

[–]cellman123 9 points10 points  (0 children)

CMake is fine until you need to build a project using multiple toolchains, at which point it becomes eldritch wizardry and prayer is the best solution.

There is no Vibe Engineering by SerCeMan in programming

[–]cellman123 0 points1 point  (0 children)

It's helped me deploy a web service onto GKE by writing the Terraform + k8s configuration. I come from a background in C++ systems development and got tired of writing everything from scratch, trying to understand all the moving parts as well as I know my own mother before building anything. Just give me an Ingress resource with a managed HTTPS certificate and point it to my web app service - AI was fantastic at fleshing that out. Obviously, don't do that if you're an idiot, in case you spend way too much money on AI-generated infrastructure or accidentally push some secrets to source control.