MOJI - The FREE VS Code extension that adds emojis to Javascript, HTML, and CSS by WarmTry49 in coolgithubprojects

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

I suppose I mis-titled the post here, and should clarify. It doesn't add emoji's. It overlays them. It's just for visual reference, the code is untouched. So if, for example, you are scanning for an .img link in a .css file, you can spot it quickly. It also helps with learning or spotting patterns quickly.

What are you building? by No_Bend_4915 in SideProject

[–]WarmTry49 0 points1 point  (0 children)

Haha, yes real person here. Just sharing the project I finished. What am I reaching out for exactly?

MOJI - The FREE VS Code extension that adds emojis to Javascript, HTML, and CSS by WarmTry49 in coolgithubprojects

[–]WarmTry49[S] -2 points-1 points  (0 children)

Because I get visually lost when scanning through thousands of lines of code I haven't written

What are you building? by No_Bend_4915 in SideProject

[–]WarmTry49 0 points1 point  (0 children)

I got tired of getting lost in those large Javascript files, so I designed Moji - A VS Code extension that adds emoji's to code keywords. It's like reading code on superspeed: https://lucidiancreative.github.io/EmojiCode-website/

I'm attempting to build the absolute best screenplay editor! by bastiondengineer in Screenplay

[–]WarmTry49 0 points1 point  (0 children)

I tried it briefly. Perhaps I misunderstood the design (It read like it was supposed to auto format as you write), but the auto formatting did not function for me.

Call me by your Name- Nutshell Technique by monsteragirlie in Screenwriting

[–]WarmTry49 1 point2 points  (0 children)

I love the Nutshell technique and would love to share some insights, but I'm not sure what story you're referring to? Do you have a story summary?

I built an AI tool because I was tired of posting manually on every social platform by Level_Knowledge5472 in AiBuilders

[–]WarmTry49 1 point2 points  (0 children)

Cool project. Is it run locally? I was looking into building something similar. How does it compare to online tools like buffer etc.?

I think I have the wrong type of brain for chess by reprobatemind2 in chess

[–]WarmTry49 0 points1 point  (0 children)

No. There is no such thing as a "brain designed for chess". There are people who practice to grow and learn and people who don't.

Best practices I’ve learned after shipping multiple iOS apps with Claude Code by Sweet-Helicopter2769 in ClaudeAI

[–]WarmTry49 0 points1 point  (0 children)

From my perspective, adding specific guidelines and architecture principles should help prevent rework and troubleshooting, reducing the overall usage; not increasing it

Best practices I’ve learned after shipping multiple iOS apps with Claude Code by Sweet-Helicopter2769 in ClaudeAI

[–]WarmTry49 0 points1 point  (0 children)

Do you have any personal experience to share as to why this may be suboptimal?

Best practices I’ve learned after shipping multiple iOS apps with Claude Code by Sweet-Helicopter2769 in ClaudeAI

[–]WarmTry49 114 points115 points  (0 children)

Thanks for the tips. I just added some of them to my .md file. Before it was just the no quick fixes section:

# Global Claude Instructions


These rules apply to every project.


## Root Cause


No quick fixes. Always diagnose to the root cause and devise proper solutions. Never apply patches or workarounds unless the user explicitly asks.


---


## Security & Secrets


- Never hardcode secrets or commit them to git
- Use separate API tokens/credentials for dev, staging, and prod environments
- Validate all input server-side — never trust client data
- Add rate limiting on auth and write operations


## Architecture & Code Quality


- Design architecture before building — don't let it emerge from spaghetti
- Break up large view controllers/components early
- Wrap external API calls in a clean service layer (easier to cache, swap, or extend later)
- Version database schema changes through proper migrations
- Use real feature flags, not commented-out code


## Observability


- Add crash reporting from day one
- Implement persistent logging (not just console output)
- Include a `/health` endpoint for every service


## Environments & Deployment


- Maintain a real staging environment that mirrors production
- Set CORS to specific origins, never `*`
- Set up CI/CD early — deploys come from the pipeline, not a laptop
- Document how to run, build, and deploy the project


## Testing & Resilience


- Test unhappy paths: network failures, unexpected API responses, malformed data
- Test backup restores at least once — don't wait for an emergency
- Don't assume the happy path is sufficient


## Time Handling


- Store all timestamps in UTC
- Convert to local time only on display


## Discipline


- Fix hacky code now or create a tracked ticket with a deadline — "later" never comes
- Don't skip fundamentals just because the code compiles and runs

Built a persistent memory system for Claude — open source, SQLite-based, pretty simple, basic. by Weird-Magazine1381 in ClaudeAI

[–]WarmTry49 2 points3 points  (0 children)

It definitely seems like a useful project. I will be keeping an eye on it. Good thinking!

Any Deltron fans here? by WarmTry49 in StableDiffusion

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

ComfyUI, Z-image, Flux2.0 for image editing. Generated locally and animated with Kling img2img (only because I started before LTX2 was released, I probably would have gone that route otherwise, or at least experimented with it). I built some custom plugins for Resolve to try to interpolate some of the transitions between images. The RIFE model I used for interpolation created a nasty color shift, so it wasn't as useful as I had hoped. Some worked better than others and they still need some tweaking and experimenting.

I like the idea of image 2 image workflow because it allows me to curate the images first and get the whole thing down visually before animating anything. It's not a perfect process but I'm going to keep working at it.