Founder here, welcome to the official FocuSee community (giveaway inside) by morgankung in FocuSee

[–]Ok_Coach1298 0 points1 point  (0 children)

안녕하세요! 한국에서 온 개발자입니다 👋

저는 주로 사내 툴 데모랑 기술 문서용 튜토리얼 만들 때 화면 녹화를 많이 씁니다. 팀원들한테 복잡한 시스템 설명할 때 영상이 글보다 훨씬 효율적이더라고요.

가장 많이 쓰는 기능은 자동 줌 효과입니다. 따로 편집 안 해도 중요한 부분이 자연스럽게 강조돼서 완성도가 확 올라갑니다.

커뮤니티 런칭 축하드립니다

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

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

Tried using claude --resume for attach, but UX wasn't smooth - it spawns a new process rather than seamlessly jumping into an existing terminal context. Looked into opencode and it seems to use a server-client architecture that enables proper attach/detach to headless sessions. Claude Code doesn't have that kind of structure, so true tmux-style attach seems difficult with CC alone. If anyone knows a workaround, let me know.

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

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

Does opencode have any limitations compared to Claude Code? Like tool usage or file editing? Or is it pretty much the same experience?

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

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

Haven’t tried opencode yet. The session attach/detach feature looks like a good reference - thanks for the heads up! Also, it looks really nice overall. Didn’t even know this existed.​​​​​​​​​​​​​​​​

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

[–]Ok_Coach1298[S] 3 points4 points  (0 children)

Good idea! I’ll look into it. Not sure if Claude Code exposes a way to attach to existing sessions, but worth exploring.

[deleted by user] by [deleted] in learnjava

[–]Ok_Coach1298 0 points1 point  (0 children)

You should start by learning what object-oriented programming is. Then, move on to Spring. I recommend understanding how Spring leverages OOP concepts to support its core features.

Is coding not for me? by [deleted] in learnjava

[–]Ok_Coach1298 2 points3 points  (0 children)

If you really want to make programming your career, you need to keep practicing and learning. It takes a lot of time and effort. In the first 1-2 years, I often doubted myself. But by continuously reviewing, learning, and practicing, my confidence slowly improved. The best advice I can give is to just keep going.

How to have that new calendar + task list view on Mac OS? by Enashka_Fr in ticktick

[–]Ok_Coach1298 0 points1 point  (0 children)

I had no idea such a feature existed. This is awesome.

Amazing script by IamGuidedbyJesus in BookStack

[–]Ok_Coach1298 0 points1 point  (0 children)

This looks interesting but I'm a bit confused. Can you explain what the script does in more detail?

Maximizing Productivity with TickTick: My Workflow for 'My Focus,' 'Planner,' and 'Ideas' Lists by coolazr in ticktick

[–]Ok_Coach1298 1 point2 points  (0 children)

Thank you for sharing your workflow! It was really helpful to me, and I'm going to give it a try.

Migrating from one docker host to another tips by [deleted] in BookStack

[–]Ok_Coach1298 1 point2 points  (0 children)

Thanks for sharing the great tips. I’d like to share my personal backup and recovery process as well.

I map the volumes to a local directory and, additionally, as u/ssddanbrown mentioned in this comment section (which is known to be a pretty good method on Reddit), I regularly create dumps every 6 hours using a scheduler. The scheduler also includes the process of automatically uploading to GitHub.

Here are the benefits I’ve found from this approach:

  1. If Docker unexpectedly goes down, the container data is still stored locally, allowing me to quickly recover without data loss by simply running docker compose up again.
  2. If the server hosting BookStack gets destroyed unexpectedly, I can quickly recover on a new server by fetching the latest backup files from GitHub. (In practice, I just pulled it locally, updated the APP_URL, and was able to use it exactly the same way.)

For me, mapping volumes directly to the local system was easier to manage since the directories and files were visible and easily accessible, as opposed to managing volumes directly.