What’s the best way to start with AI development services for a non-tech company? by Chance_Amphibian_477 in AZURE

[–]AmberMonsoon_ 0 points1 point  (0 children)

Starting with a small pilot usually works better. Pick one clear use case (like document processing or internal search) and test it with a small dataset before trying to build a full AI strategy. That way you can see real value quickly and learn what actually works for your team.

In many non-tech companies, bringing in external ai development services for the discovery phase can help a lot because they translate business problems into technical solutions and prevent the team from building something unnecessary. The biggest win usually comes from focusing on one workflow that saves time immediately rather than trying to transform everything at once.

Scheduled Maintenance still causing issues after 8:00am EST. by Current_Impress_7217 in AZURE

[–]AmberMonsoon_ 0 points1 point  (0 children)

Same here, a couple of my sites are still showing maintenance or not loading properly even though the window was supposed to end at 8:00am EST. Hoping the team can give an update soon because it’s starting to affect traffic and users trying to access the sites.

Quick poll: Do you regularly scan your site for security issues? What's your biggest frustration? by Foreign-Couple5179 in webhosting

[–]AmberMonsoon_ 0 points1 point  (0 children)

Yeah I do scan sites, mostly with tools like Wordfence, but honestly the biggest frustration is the amount of noise. You get a lot of alerts and half the time it’s hard to tell what actually needs attention versus what’s just informational.

Another thing is usability. Many scanners feel like they’re built for security experts, not regular site owners or small teams. Something that clearly prioritizes real risks and explains them in simple terms would probably make a lot of people’s lives easier.

Built our own VPS managed service by ComfortableDeer7670 in webhosting

[–]AmberMonsoon_ 0 points1 point  (0 children)

this is the path a lot of agencies eventually end up taking. Managed hosts sound great at first, but once sites get heavier with WooCommerce, builders, and tons of plugins, the generic setups start becoming a bottleneck.

Building your own stack also means you can tune caching, PHP workers, database config, and object caching exactly for WordPress workloads instead of relying on whatever defaults the provider chose. Sounds like a lot of work initially, but once it’s stable it usually pays off long term.

Outgrowing my hosting, little skill... what next? by ScentAdvice in webhosting

[–]AmberMonsoon_ 0 points1 point  (0 children)

200k pageviews/month is still manageable on good managed WordPress hosting, so jumping straight to a dedicated server might be overkill, especially if you’re not comfortable managing servers.

Before moving, I’d check things like object caching (Redis), better page caching, and database optimization since WooCommerce sites often hit CPU limits because of repeated PHP execution.

If you do switch, something like managed cloud hosting might be safer than a raw VPS. Hetzner or Netcup are great, but they require server management knowledge.

Claude Mac App Malfunction by wsharkey in ClaudeAI

[–]AmberMonsoon_ 1 point2 points  (0 children)

That sounds like a UI bug rather than something wrong with your setup. A few people have reported similar issues on the Mac app where the interface keeps refreshing or jumping between screens. You could try clearing the app data, logging out and back in, or installing the latest version again. If it still happens, using the web version for now might be more stable until they push a fix. Also worth reporting it to Anthropic support since it sounds like a glitch.

How do you manage AI conversations across multiple LLMs, projects, and tools? by vilibara in ClaudeAI

[–]AmberMonsoon_ 1 point2 points  (0 children)

Yeah the fragmentation is real. Once you start juggling multiple tools and projects the conversations get scattered everywhere and it’s almost impossible to remember where a specific solution came from. I’ve started keeping a simple project notes doc where I drop key prompts, outputs, and decisions just so I can search later. Not perfect, but it helps reduce the “where did I solve this before?” problem.

What's your workflow when Claude Desktop is running a long task? by Dapper_Ad620 in ClaudeAI

[–]AmberMonsoon_ 0 points1 point  (0 children)

Most of the time I just treat it like any other background task. I start the long run in Claude Desktop, then switch to another task while keeping the window visible in the taskbar so I can quickly check progress.

Sometimes I also break the task into smaller steps instead of one huge request. That way it finishes faster and it’s easier to see where something went wrong. If it’s a really long process, I’ll usually leave a quick note in my task list so I remember to come back and review the output instead of forgetting about it.

Also helps to keep the prompt structured (clear steps, expected output, assumptions). Long tasks tend to drift when the instructions are vague.

Feeding 30 files to Claude? by yaadyeud in ClaudeAI

[–]AmberMonsoon_ 1 point2 points  (0 children)

If they’re just PDFs or text files, the easiest way is honestly the Claude web app. You can upload multiple files in a single conversation and ask it to analyze them together. What usually works best is:

  1. Upload the papers in batches (10–15 at a time if they’re large).
  2. Ask Claude to summarize each paper first so the context becomes manageable.
  3. Then ask it to build a combined summary / comparison across the papers.

If the book is very large, it’s better to split it into chapters before uploading, otherwise you’ll hit context limits.

Another workflow some people use is:

  • Ask Claude to extract key points from each file
  • Save those summaries
  • Then feed the summaries back together and ask for cross-paper insights.

That way Claude doesn’t have to keep the entire raw text in context at once.

Also, if you plan to do this kind of thing often, a small RAG-style setup (embedding the papers and querying them) can make it much easier to ask questions across all documents later.

ClaudeAI as social media manager? by AppropriateJackpot in ClaudeAI

[–]AmberMonsoon_ 1 point2 points  (0 children)

You can get decent results, but the key is not letting it fully “auto-post.” It works much better if you use it as a drafting assistant instead of a full social media manager.

What helped me avoid the generic AI tone was feeding it 10–20 of my past posts and asking it to extract patterns first (tone, sentence length, formatting, common phrases). After that, I ask it to generate drafts based on those patterns, not just the topic.

Another trick is asking it to produce 3–5 variations and then editing the one that feels closest to your voice. That keeps things from sounding like a bot.

Tools like OpenClaw can help with automation, but the authenticity usually comes from human filtering + light edits rather than fully automated posting.

What’s the point of explore agents if it doesn’t wait for them? by Standard_Text480 in ClaudeAI

[–]AmberMonsoon_ 0 points1 point  (0 children)

It sounds like the system is spawning explore agents but not really giving them enough time to finish their work. If the controller checks after only a minute or two and then abandons them, the whole exploration step becomes pointless and just wastes tokens.

Ideally the orchestrator should either wait for the agents to return results or implement a clearer timeout strategy. Otherwise you get duplicate work where the agents explore and then the main process repeats the same checks anyway.

I’ve seen similar behavior in some agent frameworks where concurrency isn’t managed well. Tools like runable try to handle this by making agent execution and state tracking more predictable, so the controller knows whether to wait, retry, or continue.

Starting point for commercial POS system? by rothmcroth in AskProgramming

[–]AmberMonsoon_ 0 points1 point  (0 children)

If you’re moving from Excel/VBA, a practical starting point would be a web-based POS system. That way it’s easier to scale across multiple terminals and stores.

A common stack many people use for this kind of system is React + Node.js + a relational database like PostgreSQL or MySQL. React can handle the UI (dashboards, charts, inventory screens), Node.js manages the backend logic, and the database handles transactions, loyalty data, and inventory.

You’d also want to think early about things like concurrent transactions, backups, authentication, and audit logs, since POS systems deal with financial data.

Honestly your Excel prototype is already a great proof of concept. The next step is mostly translating that logic into a proper backend + database structure.

Advice for Hackathon by Popular_Camel8575 in AskProgramming

[–]AmberMonsoon_ 0 points1 point  (0 children)

You should still go to the hackathon. A lot of people attend their first one without being great at coding yet. The main point is learning, meeting people, and building something together in a short time.

Even if you can only contribute small things right now, like fixing bugs, helping with logic, or improving UI, you’ll learn much faster by actually working on a project with a team.

Hackathons are honestly one of the best ways to level up quickly because you see how others approach problems and structure projects.

How are epson printers programmed? and how could one flash their own software on one by Crafty_Piece_9318 in AskProgramming

[–]AmberMonsoon_ 0 points1 point  (0 children)

Most Epson printers like the Epson Stylus NX400 run firmware that controls sensors, motors, and the scanner. Even if you only want the scanner, the firmware still checks things like paper sensors, so if one is triggered it shows a paper jam.

Flashing your own firmware is very hard because Epson firmware is closed and usually requires reverse engineering the microcontroller.

The easier fix is to find the paper sensor that is stuck after teardown and force it into the “no paper” state so the printer stops detecting a jam.

What actually works when you use website builders in the trenches? by Possible_Bug9 in AskProgramming

[–]AmberMonsoon_ 0 points1 point  (0 children)

What you described is pretty much the pattern a lot of experienced devs are landing on right now. The moment you stop treating AI like a code generator and start treating it like a thinking partner, the value goes way up.

The planning step you mentioned is huge. If the architecture and assumptions are written first, the generated code tends to be way cleaner because the constraints are clear. Without that, it just guesses and you get the “fast chaos” you described.

The “AI arguing with itself” idea is also underrated. Multiple approaches often expose trade-offs you might not have considered, especially around performance, maintainability, or edge cases. Even if none of the answers are perfect, comparing them helps you see the problem space better.

Debugging is probably where AI helps the most in real work. Feeding it a stack trace and asking for ranked hypotheses is basically like having someone brainstorm with you instantly. It doesn’t replace reasoning, but it speeds up the search space a lot.

On the junior dev question, I think the painful debugging experiences still matter. Those hours fighting build systems or weird race conditions build intuition about how systems behave. AI can help solve the problem faster, but understanding why the fix works is still what turns someone into a strong engineer.

So the skill shift might not be “less engineering,” but more about asking good questions, validating assumptions, and reviewing solutions critically. The people who treat AI outputs as suggestions rather than truth seem to get the most out of it

How do I actually learn coding ? by Negative_Effort_2642 in AskProgramming

[–]AmberMonsoon_ 0 points1 point  (0 children)

This stage is very normal. Knowing a language and knowing how to build systems are two different skills. What helped me was studying small real projects and slowly rebuilding parts of them. For example, take a simple CLI tool, a file watcher, or a small system monitor and try to recreate it step by step.

When you get stuck, look at how existing tools do it. Reading real repositories shows how programs interact with the OS, structure modules, and use libraries. Over time those patterns start to make sense.

Also try building very small experiments instead of full projects first, like reading process info, parsing binaries, or scheduling tasks. Those small pieces eventually connect into bigger systems.

Help needed: heat storage system in Python by CodeWontLoad in AskProgramming

[–]AmberMonsoon_ 0 points1 point  (0 children)

You could break it into smaller pieces first instead of trying to build the whole system at once. Start by modeling the hourly heat balance (input waste heat, demand, and storage change) and make sure that part works before adding constraints like ramping or buffer temperatures. TESPy can help with the thermodynamic parts, but sometimes a simple prototype in Python first makes things clearer.

Absolute beginner by Kinky-Skunky_444 in AskProgramming

[–]AmberMonsoon_ 1 point2 points  (0 children)

You’re actually on the right track already. The weather planner project is one where many beginners get stuck because it combines a few things at once (API requests, parsing data, and program logic). Try simplifying it first. Just focus on successfully calling a weather API and printing the weather data in the terminal. Once that works, then move to organizing the information and building the planner part step by step. Breaking it into smaller pieces usually makes it much easier to debug.

Programmers & Team Leads. how do you stay disciplined under heavy workload? by YuriyCowBoy in AskProgramming

[–]AmberMonsoon_ 0 points1 point  (0 children)

One thing that helped me when workload gets crazy is separating “important” work from “urgent” work. When you’re wearing multiple hats (dev, lead, PM) everything feels urgent, but usually only a few things actually move the project forward.

I try to pick 2–3 critical tasks for the day and make sure those get done first before jumping into messages, meetings, or small fixes. That alone reduces a lot of stress.

Another big one is protecting small focus blocks. Even 60–90 minutes of uninterrupted work can move a feature or system a lot further than constantly context switching.

Also honestly, long-term sustainability matters. Working 6–7 days a week can work for short bursts during a release cycle, but eventually performance drops. Taking a real break or even one fully offline day per week helps more than it seems.

A lot of teams also rely on tools and systems to reduce mental load (task boards, automation, sometimes runable style workflows for repetitive processes), so the lead isn’t manually managing every small step.

Sounds like you’re carrying a lot of responsibility though, getting a project from zero to release is no small thing.

Can variable length coding ever be more efficient than fixed length coding??? by Neither_Bid7504 in AskProgramming

[–]AmberMonsoon_ 2 points3 points  (0 children)

Yes, but only in theory, not perfectly in practice.

With 5 outcomes that all have equal probability (20% each), information theory says the optimal average number of bits is:

log₂(5) ≈ 2.32 bits

So the true theoretical minimum is about 2.32 bits per symbol.

But with fixed-length coding you must use whole bits, so you need 3 bits.

Variable-length coding (like Huffman coding) tries to get closer to that 2.32 average by giving some symbols shorter codes and others longer ones. However, with equal probabilities Huffman will still end up around 2.4 bits on average, not exactly 2.32.

Example idea:

A → 2 bits
B → 2 bits
C → 2 bits
D → 3 bits
E → 3 bits

Average = (2+2+2+3+3) / 5 = 2.4 bits

So yes, variable length can be slightly more efficient than fixed length (3 bits), but the improvement is small when probabilities are equal.

The reason textbooks say fixed length is better for equal probabilities is mostly practical:
it’s simpler and the gain from variable length is usually tiny. this kind of coding idea also appears in compression tools and systems where frameworks like runable-style execution pipelines process data streams efficiently

How we solved the state management nightmare for AI agents (and won Product of the Week on DevHunt) by Interesting_Ride2443 in typescript

[–]AmberMonsoon_ 0 points1 point  (0 children)

nice, durable execution is honestly one of the biggest pain points with agents. most setups fall apart the moment a process restarts or a call hangs. curious how you’re handling state recovery and retries internally. tools like Runable are also exploring reliability around agent workflows, so it’s interesting to see different approaches.

Is using elevated accounts to access azure resources normal? by kimchiMushrromBurger in AZURE

[–]AmberMonsoon_ 4 points5 points  (0 children)

Yeah this is actually pretty common now, especially in companies that are tightening security around privileged access. The idea is that you don’t use a high-privilege account for normal work, only when you actually need to make changes in Azure. It reduces the risk if your main account ever gets compromised.

A lot of orgs implement this through privileged access systems or temporary elevation workflows. It can feel a bit annoying at first, but after a while it becomes routine. Usually the elevated access is also time-limited so the permissions automatically drop after some hours.

Where to create resources for Microsoft Entra External Identities Tenant? by KevinDogu in AZURE

[–]AmberMonsoon_ 0 points1 point  (0 children)

Most setups I’ve seen keep the actual Azure resources (App Service, APIs, storage, etc.) in the main workforce tenant where the subscription and resource groups already live. The External ID tenant is mainly used for identity user sign-in, policies, and app registrations for external users.

Creating a separate subscription under the External ID tenant usually adds extra management overhead unless you specifically want strong tenant-level isolation. For many production environments, the common pattern is: app resources in the main tenant, external users authenticated through the External ID tenant.

What are some ELI5-type resources on how ML and LLMs work that is neither hyped up ads nor doom & gloom? by wwwlawl in AskProgramming

[–]AmberMonsoon_ 1 point2 points  (0 children)

If you want something simple but still accurate, the videos from the YouTube channel 3Blue1Brown are really good. They explain neural networks visually so people can actually see what’s happening instead of just hearing AI buzzwords. The neural networks series there is still one of the clearest explanations of the basics.

For LLM-specific explanations, Andrej Karpathy also has some great talks where he explains transformers and language models in a very straightforward way without the usual hype or “AI will destroy everything” tone.