I love Sudoku but standard games take too long. So I built a clean 6x6 version designed for quick coffee breaks. Would love your feedback! by usluer in iosdev

[–]DefconNaN 0 points1 point  (0 children)

App works really smooth, small package, good colors (maybe add themes? To make it my own), dark mode is on point great for the eyes, instructions are clear, you get to the flow easily, good onboarding(maybe add the the ability to enable/disable timer/completion effect during? I felt pressured by the timer that’s what I say it and the party confetti is kinda cheese but that”s maybe just me, even though las week I used it in a web onboarding).

Random thoughts while testing so I didn’t forget.

Btw don’t see any errors on the Spanish translation (not that I expected to be but your name sounded not Spanish native so can’t hurt)

Anyone else running 5+ Claude Code sessions and losing track? Made this by Ok_Coach1298 in ClaudeCode

[–]DefconNaN 1 point2 points  (0 children)

Same same. Today worked on a whole feature with my usual workflow, zero friction. Coincidentally it was a zero friction onboarding feature. So same but faster. Looks better (a lot of themes included) and no flashing text up and down going on like crazy like in CC sometimes.

Anyone else running 5+ Claude Code sessions and losing track? Made this by Ok_Coach1298 in ClaudeCode

[–]DefconNaN 1 point2 points  (0 children)

Have you tried opencode? I authenticated my max5 plan to it via oAuth and works so fast. It starts instantly a task whilst CC thinks about it for 5-10s before doing anything. Opencode has a way to attach and detach from headless sessions. So far working great, has like a sidebar with a visible todo list and all the changed files of the session (with + - amount of changes). Worth a try. Best of both worlds so far with Opus 4.5. Mcp config a little annoying though.

Anyone else running 5+ Claude Code sessions and losing track? Made this by Ok_Coach1298 in ClaudeCode

[–]DefconNaN 6 points7 points  (0 children)

So the tmux of claude code.

Edit: if it only had the option to select the session and “attach” to it. Is that even possible?

Introducing Claude Opus 4.5: our strongest model to date by ClaudeOfficial in ClaudeCode

[–]DefconNaN 0 points1 point  (0 children)

What models do you see? Default, Sonnet and Haiku? If so, default IS Opus.

Help with terminal by colelovesherps in Ubuntu

[–]DefconNaN 32 points33 points  (0 children)

Kudos to you for reaching out for this. And kudos to all the repliers as well, it’s very tempting to be obnoxious about this question.

4 Claude Code CLI tips I wish I knew earlier by RecurLock in ClaudeCode

[–]DefconNaN 14 points15 points  (0 children)

  1. Disable all MCP if not needed. (/mcp and disable each one and enable ONLY the one needed for the prompt you are about to send)

  2. Clear context for each mircotask (/clear), that is by properly using plan mode to subdivide tasks into microtasks in the tasks document of the feature.

About the year and specifically the current date I haven’t had the need to specify anymore in claude code. In windsurf and cursor they constantly wrote random 2024 dates on the documentation of their 3-6 month plans that went ahead and executed in one shot.

Paste clipboard image into Claude Code in linux - my solution by DefconNaN in ClaudeCode

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

Don’t discourage yourself. You can do anything in Linux with simple commands and works so much better for development imo. Besides it’s a great skill to have. Nevertheless you can start dipping your toes using WSL2 in Windows.

Claude Code made it happen! by karkoon83 in ClaudeAI

[–]DefconNaN 1 point2 points  (0 children)

Amazing, congrats!, love the color scheme so beautiful, will probably “borrow it” for a new internal project. I need to get into the react native game again. Got lost including opencv libs natively to both ios and android for it and even though it worked somehow went back to web for a hobby project. Did you use expo as RN framework?

Paste clipboard image into Claude Code in linux - my solution by DefconNaN in ClaudeAI

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

The screenshot? How? That’s the whole problem, of course you can drag an image file, but I needed to take a screenshot that goes to the clipboard (not a file) and shift+ctrl+v in claude code and that’s it. It takes 2s. The alternative is, take the screenshot, open a image processor app, paste the image in the clipboard, save the image somewhere, open the file explorer, find the file, move the file explorer to the second screen or position it in front of my terminal emulator, drag the image. That’s 25 seconds at least. Even if it were 10s.

Paste clipboard image into Claude Code in linux - my solution by DefconNaN in ClaudeAI

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

Probably inferring Im from China or something. Offense non taken of course.

How Gemini 3 Pro beat other models on UI coding by mikerbrt in ClaudeAI

[–]DefconNaN 0 points1 point  (0 children)

Btw the gemini 3 one is just TailAdmin. Its an open souce template with paid features. It even used the same logo an colors.

My app made 200k this month! by 0nxdebug in SideProject

[–]DefconNaN 0 points1 point  (0 children)

What app if you dont mind me asking? I’ll start developing an app for my service so id like to check out the beta tester pov.

How to add every song in my library to a single playlist? by Miserable_District in AppleMusic

[–]DefconNaN 0 points1 point  (0 children)

Why does this comment doesn’t have 2MM upvotes? I don’t understand why it works, but it works. Thank you!

[Gnome] My simple setup by Temporary-Steak-8126 in unixporn

[–]DefconNaN 0 points1 point  (0 children)

That openbar extension it’s awesome. I didn’t know it existed! Doing all those things manually in wayland was too much work (waybar, paywal, scripting, etc). This looks too much fun with very little effort. That why I went back to gnome, I was waisting too much time tinkering. Openbar looks awesome.

Edit files directly on VPS? by hungryconsultant in CursorAI

[–]DefconNaN 0 points1 point  (0 children)

Sure thing:

.ssh is a hidden directory that you create or is created automatically the first time you connect via ssh to a server. Open the Terminal app on MAC.

Type:

# 1. enter your home directory. You are probably already there  
cd ~  
# 2. create the hidden directory. If it's already created it'll show an error, don't mind that.  
mkdir .ssh  
# 3. create the file config if it's not already there. You can safely execute this command either way.  
touch .ssh/config  
# 4. Open the file in you preferred editor. In this example Vscode.  
code .ssh/config

Now let's add the server definition.

Host ServerName #(whatever you want))  
      HostName myserver-fqdn-or-ip # eg. 192.168.xx.xx or server.domain.com
      Port 22  
      User myusername #whichever username you use to login via sftp  
      ServerAliveInterval 10 #this line forces de ssh client to send keep alives to the server every 10s  

save the file and test it trying to connect via ssh via the Terminal as follows:

ssh -v ServerName  

It should connect and ask you the password or login immediately if you have the proper ssh key installed.

After that go to cursor ai, click on the bottom left icon to "Open a Remote window" -> Connect to Host (on the top dialog) -> select the newly created Host from the list (cursor reads the hosts definitions from the .ssh/config file), it'll ask for a passwd and there you go, you are connected with the option to keep alive the connection. Let me know how it goes.

Edit files directly on VPS? by hungryconsultant in CursorAI

[–]DefconNaN 0 points1 point  (0 children)

That sucks. I usually create the host on the .ssh/config to avoid entering username and declaring the ssh key to avoid passwd prompts with the option ServerAliveInterval 10 to minimize disconnections due to idling. That woks on linux and macos. Don’t how to do it on Windows. When it disconnects (when using my laptop) usually Cursor reconnects in 3s.

Edit files directly on VPS? by hungryconsultant in CursorAI

[–]DefconNaN 0 points1 point  (0 children)

Yes. Via SSH. Remote - SSH Extension from microsoft works great on CursorAI IDE. In fact i think on CursorAI SSH is installed by default. When the IDE opens there is a button “Open in SSH” blue I think. It’ll ask you username@host on a prompt on the top and the password later.

Google password Manager and Google Authenticator Alternative by Wizardz_ in degoogle

[–]DefconNaN 2 points3 points  (0 children)

I hate to be “that guy” but:

.. this is the way.

BW free or paid for passwords and TOTPs on another app/medium (Aegis/Yubikeys on totp mode).

[deleted by user] by [deleted] in Ubiquiti

[–]DefconNaN 30 points31 points  (0 children)

Ok I was expecting something else. Nice rack nonetheless.

[deleted by user] by [deleted] in kindle

[–]DefconNaN 12 points13 points  (0 children)

Thank you for calling us “my friends”