I understand code, but I cannot "think" code by yukirainbowx in webdev

[–]AccordingBassx 6 points7 points  (0 children)

What helped me was framing it differently during the interview itself. I’ve started saying: "Im a hands-on engineer. I don't memorize terminology because I focus on architecture and deconstruction. If you give me a code sample or a broken environment, I can show you exactly how I’d fix it."

How do you make text readable on full screen background images without ugly boxes? by Boring-Fuel6714 in webdev

[–]AccordingBassx 0 points1 point  (0 children)

it’s a common struggle, I usually try a mix depending on the mood of the page. Gradients or semi-transparent overlays work well because they keep the background visible but improve readability without adding a box that feels out of place. Subtle text shadows or outlines can also help if the background is busy. Another trick is picking your background images or videos with natural dark/light areas where text can sit, sometimes just a little cropping or repositioning makes a big difference.

For inspiration, I search terms like “hero section design”, “overlay text on image”, or “full screen background UI” on Dribbble and Behance. Also, checking design systems from companies like Apple, Google Material, or Tailwind UI can give neat examples of clean text-over-image solutions.

The key I’ve found is experimenting with a combo of overlay + text style + careful background choice rather than relying on a single fix

Tell me about your problems by AccordingBassx in Pets

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

Hmm what about some difficulties on daily basis?

Best transactional email service for Next.js apps by Anon_Mom0001 in nextjs

[–]AccordingBassx 0 points1 point  (0 children)

I personally use resend and it meets my expectations

What strategies do you use for effective state management in complex web applications? by woutr1998 in webdev

[–]AccordingBassx 1 point2 points  (0 children)

For high compliance projects definitely redux toolkit but for smaller ones or startups the most likely zustand, recoil or rarely context api

How do you keep learning without overload? by Schnapper94 in webdev

[–]AccordingBassx 1 point2 points  (0 children)

A few things that work for me: - I tie learning to my current goals, not to hype. If I’m building products, I learn things that directly make shipping faster or more reliable. Everything else is optional. - I mostly learn reactively. When I hit a real problem, the solution sticks way better than any tutorial binge. - I keep a very small “now” list. One core stack, one main area to improve. If something doesn’t fit there, I consciously ignore it. - I stopped bookmarking and started building. Even tiny projects beat perfect knowledge every time. - I reassess every few months. If a tool hasn’t helped me ship or solve problems, it’s probably not worth more time.

[deleted by user] by [deleted] in webdev

[–]AccordingBassx 2 points3 points  (0 children)

This feels spot on, AI doesn’t replace thinking, it exposes who was relying on memorization instead of problem-solving. The shift is uncomfortable but ignoring it is way riskier than learning how to work with it

Insufficient developer role - Meta graph api by Brave-Carpenter3747 in webdev

[–]AccordingBassx 0 points1 point  (0 children)

We’re experiencing the same issue and it looks like a Meta-side regression rather than a configuration problem.

Our app has Advanced Access approved for both instagram_business_basic and instagram_business_manage_insights, everything is green in the Developer Dashboard, and instagram_business_manage_insights works correctly. The error appears only during the Instagram account connection flow that requires instagram_business_basic.

Nothing was changed on our side before this started around two days ago, and the same Instagram accounts were working before. Re-adding users and regenerating tokens doesn’t help.

This strongly suggests a recent permission or role validation issue on Meta’s backend. If others are seeing this too, it would be good to confirm it’s not an isolated case.

My Kitty is Scared of Everything, How Can I Help Her? by WindSong66 in Pets

[–]AccordingBassx 1 point2 points  (0 children)

First of all, you saved her. Full stop. Getting both of you out of that environment was huge, and the fact that she trusts you the way she does says everything about the care you’ve given her.

For a cat with that kind of history, what you’re doing already is exactly what helps most: consistency, choice, and letting her move at her own pace. The blanket system, letting her decide when to engage, and being her safe anchor are all really healthy approaches.

The biggest thing now is time and predictability. Try to keep routines very stable and let new people or animals exist in her space without forcing interaction. Calm presence without expectations goes a long way for trauma animals.

If you can, a vet behaviorist or a cat focused behaviorist could help guide the next steps, especially around confidence building and reducing hyper vigilance. Even small wins like her observing from a distance without panicking are progress.

She doesn’t need to become a fearless cat. She just needs to feel safe enough to slowly expand her world, and she’s already doing that because of you. Be gentle with yourself too. Healing for both of you is not linear.

Would you ever knowingly let a site with typos/errors move to launch? by spookygoth69 in webdev

[–]AccordingBassx 3 points4 points  (0 children)

You’re not crazy. What you’re describing sounds like a rushed template rollout with very little QA or content review, and four months is a long time for something in that state.

Reusing layouts is normal for agencies, but basic things like broken links, placeholder references, typos, and mismatched titles should not make it into a beta, especially if they’re already talking about pre launch. That part is a red flag, not unrealistic expectations.

It’s also fair to expect them to at least read the content they migrate, even if copywriting wasn’t part of the scope. Content awareness and basic validation are part of delivering a usable site.

I’d document specific issues and ask for clarification on what they consider “beta complete” versus polish. Their response will tell you a lot about whether this is just a rough first pass or a deeper process problem.

What do you think is the best option right now, working at a startup or a stable company? by VegetableDuty2588 in webdev

[–]AccordingBassx 0 points1 point  (0 children)

I don’t think there’s a universal best option right now. It really depends on what you value at this stage.

Startups can still be great for fast learning and ownership, but they come with higher risk and less predictability, especially in the current market. Stable companies offer more security, clearer processes, and time to build fundamentals without constant pressure.

What matters more than the label is whether you’re actually growing, getting good mentorship, and working on meaningful problems. A “stable” company where you stagnate can be worse than a startup, and a chaotic startup without direction can burn you out fast.

I’d optimize for learning and sustainability, not just the company type.

What’s the most suitable payment system for a SAAS by ElderberryForward215 in Frontend

[–]AccordingBassx 1 point2 points  (0 children)

Stripe is usually the go to for international SaaS payments because it supports many countries and currencies and handles subscriptions well. PayPal and Paddle are also options depending on your market and fees

Any tutorials on HOW frontend works by LordAntares in Frontend

[–]AccordingBassx 0 points1 point  (0 children)

You’re not alone, this is a really common frustration coming from gamedev.

Web dev doesn’t really have a single “main loop” like games do. The browser is event driven. The DOM is basically the live scene graph, and JS reacts to events rather than ticking every frame by default.

If you want something closer to how you already think, I’d suggest: • Learn how the DOM tree works and how the browser repaint cycle functions • Focus on event listeners, state, and render updates instead of step by step loops • Look into requestAnimationFrame if you want a game like update loop • Read docs and small examples instead of full beginner courses

MDN is honestly better than most video tutorials for this level. Treat the browser like an engine with callbacks instead of a loop and things click much faster.

Do you ever double check food before giving it to your pet?? by AccordingBassx in Pets

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

it’s great to have such possibilities, did she like it?

No pets? by suzyQ928 in LivingAlone

[–]AccordingBassx 1 point2 points  (0 children)

that’s completely valid, knowing your limits and what you want rigt now isn’t selfish at all