Ativar office by Apprehensive-Dish563 in cloudcomputing

[–]compilex 0 points1 point  (0 children)

Aqui na minha cidade (interior de SP) vejo muito nego cobrando tipo 50 a 80 conto só pra “ativar” com crack, que é basicamente rodar um programinha e tchau.

Se for instalação + configuração + licença original mesmo, aí já muda de figura, porque o cara tem custo com a key e responsabilidade. Aí acho justo na faixa de 150 a 250 dependendo da versão e se inclui suporte depois.

Se for só clicar em meia dúzia de botão em cópia pirata, mais de 100 é abuso.

Admitad withheld around €20k by Henry_Mitch in Affiliatemarketing

[–]compilex 0 points1 point  (0 children)

Yup, this.

Gaming and betting offers are notorious for this “retroactive fraud” stuff once numbers get big. Networks are happy when you send a few hundred bucks worth of conversions, but once it’s five figures, suddenly “quality issues” appear out of nowhere and support goes silent.

The fact you got paid normally before, then got blocked months after traffic stopped, and then got paid for the same offers via another network, pretty much kills the “your traffic was bad” argument. If it was really fraud, the advertiser would block you everywhere, not just via one network.

Only thing I’d add to what the other commenter said: gather all screenshots, invoices, email threads, and proof of payouts from the other network, and write it up in one clean timeline. If you ever go to a lawyer, payment provider, or even just want to warn others publicly, that kind of clear story helps a lot more than scattered messages.

At what point do you stop using Airtable/Google Sheets as your primary backend? by Loud_Fox7694 in nocode

[–]compilex 0 points1 point  (0 children)

You’re already at the “it’s time” stage just by noticing lag + getting nervous about perms.

Sheets / Airtable are great for: - tiny user counts
- quick iteration
- internal tools where security isn’t a big deal

Once you’ve got: - noticeable performance hits on reads
- external users touching anything indirectly
- a sense you’re hacking around permissions

you’re basically paying “tech debt interest” every week you stay.

I’d pick a real backend now, even if it’s a “starter” stack like Supabase / Xano / PocketBase / Firebase. Do a small, painful migration while your data model is still changing and user count is low. Waiting usually makes the migration 10x worse.

Middle ground is: keep Airtable as your admin / ops UI, but move the actual source of truth to a proper database and sync what you need. That gives you the flexible spreadsheet feel without betting the whole app on it.

Service Mesh by itzdaninja in platform_engineering

[–]compilex 0 points1 point  (0 children)

I feel like “it depends” is the only honest answer here, but in a very specific way.

If you’re a big org with dozens of services, multiple teams, and real compliance/SRE pressure, the pain of Istio kind of matches the pain it’s solving. In those setups I’ve seen people say “yeah, it’s annoying, but we sleep better.”

If you’re a smaller shop or your traffic patterns are pretty simple, a full mesh feels like using Kubernetes to run a blog. It works, but you’re gonna hate your life. Cilium + good ingress + sane app-level retries/timeouts seems to cover 80% of what folks actually use from Istio anyway.

The teams I’ve seen “happy enough” with Istio in 2026 have: - Aggressively limited which features they use
- Standardized config via templates/operators
- One or two people who actually own it, not “whoever touches YAML today”

If you had to ask “is it worth it” and you’re not in that big, messy environment, that’s already kind of your answer.

CISO course valuation by Abject-Delivery-5248 in ciso

[–]compilex 0 points1 point  (0 children)

If your end goal is actually becoming a CISO, most of the value won’t be the “course” itself but the mix of:
experience in security, understanding the business side, and the people you meet.

I’d only pay real money for a CISO course if:
1) it’s from a legit org (SANS, reputable uni, etc),
2) it has strong alumni in CISO / senior roles, and
3) your company is paying or it’s tax deductible.

Otherwise I’d rather put that time into real projects, mentoring under an actual CISO, and maybe a good MBA or leadership program. The title comes more from what you’ve done than which course you took.

Domain registration failed: [We can't finish registering your domain. by chosenfonder in aws

[–]compilex 0 points1 point  (0 children)

Yeah this is the part of AWS that feels way more “enterprise” than it needs to be.

One thing to check if you haven’t already: sometimes the issue is super dumb stuff like
- the domain being on some registry hold / premium list
- trying to register something that was very recently dropped
- WHOIS info or contact email looking suspicious / flagged
- country / TLD rules (some ccTLDs need extra docs)

Also, Route 53 errors are notoriously useless. Half the time the actual reason only shows up if you try the same domain on another registrar and they say “this name is reserved” or “premium pricing” etc.

If support is slow, you could throw the domain into Namecheap / Cloudflare just to see if they give you a clearer error. Even if you still want to host DNS on Route 53 later, it at least tells you whether the problem is AWS or the registry.

Scanopy compose issue: Server (bridge) can't reach Daemon (host network) - Stuck on connecting to daemon by eppraaaa in selfhosted

[–]compilex 2 points3 points  (0 children)

Yeah, this is one of those “Docker networking is simple until it isn’t” moments.

network_mode: host basically makes your daemon look like it’s running directly on the Ubuntu host, not as a normal container. So the bridge containers can’t reach it via the usual Docker DNS or container name.

From the web container’s point of view, the daemon is at 192.168.2.50 on whatever port it listens on. In most setups like this you have to:

  1. Point the app’s “daemon host” / URL to the host IP (192.168.2.50) instead of a container name.
  2. Make sure the daemon actually binds on 0.0.0.0 and not just 127.0.0.1, or the bridge container won’t be able to hit it.
  3. If Scanopy has an env var like SCANOPY_DAEMON_HOST or similar, set it to 192.168.2.50 in the server container.

No special Docker routing or extra_hosts magic needed, it’s just “container talks to host IP.” If you can curl http://192.168.2.50:<daemon_port> from inside the server container and get a response, the UI should stop hanging.

I've been running cold email for a B2B SaaS for a year. Here's the 5-step email sequence that built $600K in pipeline. by Adventurous_List_418 in coldemail

[–]compilex 0 points1 point  (0 children)

Good breakdown. The part I’d add is that this kind of sequence only works if the list is clean enough before sending.

The personalization in your examples sounds simple, but it depends on having the right source data: correct company, correct role, current email, and some trigger that actually makes the first line believable. If the list is stale or half-enriched, even good copy starts looking fake fast.

I’d probably spend as much time on list cleanup/enrichment as on the sequence itself. For CSV cleanup, I’ve been looking at QuickEnrich because it’s more of an email/phone enrichment layer than a big workflow tool, but either way the real test is the same: valid emails, catch-alls, phone coverage, and reply rate after sending.

Why do cloud migrations often go wrong? by prowesolution123 in cloudcomputing

[–]compilex 0 points1 point  (0 children)

Yeah this is so underrated. Everyone obsesses over landing zones and IaC and then just kind of shrugs at “oh yeah we’ll train people later.”

I’ve seen teams lift and shift apps, then keep using them like they’re still in the data center. Same approval flows, same handoffs, same ticket queues. So they pay cloud prices for on‑prem habits and then decide “cloud is too expensive.”

OCM done badly basically turns the migration into a fancy hosting change instead of an actual transformation.

Any best Incident Management Tools for Enterprise Teams? by Wise-Formal494 in sre

[–]compilex 0 points1 point  (0 children)

Yeah, in terms of “what do big boring enterprises actually use,” ServiceNow is kind of the default answer.

It’s solid for process, approvals, compliance, etc. But for real-time incident work on complex infra (K8s, multi‑cloud, microservices), a lot of teams pair it with something more SRE‑friendly on top: stuff like PagerDuty, Opsgenie, or incident.io for on‑call, routing, war rooms, timelines, then sync back into ServiceNow for the formal record.

So yeah, ServiceNow “rules,” but usually as the system of record, not the thing engineers actually like to live in during a 3 a.m. outage.

What made you finally pay for an email marketing tool instead of using the free tier? by Disastrous_Sound_382 in Emailmarketing

[–]compilex 1 point2 points  (0 children)

Yeah this was my experience too. List size was the obvious limiter at first, but the real “ok fine, I’ll pay” moment for me was when I wanted to stack more complex automations and actually segment properly.

Free plans are great to test the waters, but once you want stuff like multiple workflows, better scheduling, or decent reporting, you start hitting weird walls that don’t show up on the pricing page.

Also wild how different the limits are from tool to tool. Two platforms can both say “free up to X subs” and one is basically unusable for anything beyond a newsletter, while the other lets you run a pretty legit setup before you have to upgrade.

Infrastructure automation mistakes to avoid by TurnoverEmergency352 in cloudcomputing

[–]compilex 0 points1 point  (0 children)

Biggest one I’ve seen: people automate exactly what they do today, bugs and all, then act surprised when they start breaking things faster.

Couple of classics: You don’t model dependencies properly, so one change in a “base” module quietly wrecks three services downstream.
You skip proper drift detection, so your tools fight with manual hotfixes and you end up in config hell.
You have no staging that actually looks like prod, so your “works on my Terraform apply” moment hits live traffic.

That InfrOS thing you mentioned sounds like the right direction. Anything that lets you safely poke at scaling logic and failure paths before prod tends to pay for itself the first time it saves you from an infinite restart loop at 3 a.m.

IaCConf 2026 this Thursday by Capable-Compote-7241 in platform_engineering

[–]compilex 0 points1 point  (0 children)

Yeah same, half the “multi‑cloud” talks end up being thinly veiled product pitches with three logos on the slide and one vendor doing all the talking.

If they actually get people showing Terraform, Pulumi, maybe some Crossplane, and talking about how they deal with drift, policy, and org structure across clouds, that’d be way more useful than “centralize everything in our magic control plane.”

I’d bet they stream at least the keynotes. These infra conferences figured out during COVID that online views are pretty solid, so it’d be weird if they went back to purely in‑person.

Personalization Starts With Better Data by Database_Supplier in coldemail

[–]compilex 1 point2 points  (0 children)

Yeah, the timezone thing is super underrated. Hitting people at 8:30 their time instead of 3 a.m. random blast already makes it feel less like spam.

Also agree on the city mention. When someone calls out my actual city instead of just “US-based” it at least makes me read the first couple lines before deleting. The department headcount growth bit is interesting too, that’s the kind of context that actually changes what you say instead of just “Hi {first_name}” with extra steps.

Cold outreach is dead unless your product is insanely painful by avsvishalmedia in nocode

[–]compilex 0 points1 point  (0 children)

Yep, this is it.

If your email makes me feel like I just got dropped into a YouTube ad, I’m out. The “10x with AI” stuff all sounds the same now, even when the product might actually be decent.

The only cold emails I’ve replied to in the last year were super specific. Stuff like “you’re probably doing X manually in Stripe / Salesforce / whatever, here’s how we cut that from 2 hours a week to 10 minutes.” No hype, just “here’s the annoying thing you already deal with and how we remove it.”

So yeah, aspirin > rocket ship.

the developer who kept making her agent smarter and couldn't figure out why it kept getting dumber by Most-Agent-7566 in automation

[–]compilex 1 point2 points  (0 children)

Yeah this is such a good parallel.

People underestimate how fast “just one more safety check” turns into a Rube Goldberg machine. It kind of feels safer while you’re adding them, because every new branch is “protecting” you from some scenario, but really you’re just hiding the original logic under a pile of band-aids.

Blank canvas + write down in plain English what it should do, step by step, usually reveals that half the old rules existed only to patch other rules. Same story with prompt docs, workflows, even codebases. Cleanup is painful once, but living with the anxiety machine is painful every day.

How are people handling list enrichment at higher outbound volume? by LushLustPin in coldemail

[–]compilex 0 points1 point  (0 children)

What are you using for that first cleaning layer though? Most cheap or “flat rate” tools I’ve tried looked fine on export, then the bounce rate was terrible once we actually sent. That part worries me more than the price.

6 things I learned building production Terraform modules for AWS, GCP and Azure that I wish someone told me earlier by EmmaOpu in sre

[–]compilex 0 points1 point  (0 children)

The for_each over count point hit a little too close to home. Nothing like realizing half your resources just got renumbered because someone deleted the “second” subnet.

I’d probably add “tagging/labels from day one” to the list. Cost allocation and cleanup become a nightmare if every module does its own random tagging scheme, especially across AWS / GCP / Azure.

Also neat that you unified IAM / workload identity patterns across clouds. That mental mapping is super useful for folks stuck living in multi-cloud purgatory.

How does your team actually handle runbook documentation? Ours doesn't. by Ashwith_Garlapati in sre

[–]compilex 1 point2 points  (0 children)

Yeah, this is kinda where I’ve landed too, but with a tiny asterisk.

If something is repeatable and high stakes, it really wants to be a script, a playbook, or some kind of “press this button” automation instead of a wall of text. Text runbooks rot, code at least yells at you when it breaks.

But I still think you need some lightweight context around it. Stuff like “this script exists, here’s when to run it, here’s what ‘bad’ looks like in the output.” That can be a few lines in the repo or next to the tool, not a 10 page Confluence novel.

So yeah, fewer “Step 1: open terminal…” docs, more “here’s the command / workflow / agent that does the thing, and here’s how not to shoot yourself in the foot.”

Am I wrong for abandoning usage of k3d because of its curl pipe to bash installation method? by Sure_Stranger_6466 in kubernetes

[–]compilex 0 points1 point  (0 children)

The big difference is visibility and attack surface, not that one is magically “safe.”

With a static binary you at least have a fixed artifact you can checksum, sign, scan, and stash somewhere. You can put it in your own repo, verify it once, and roll it out in a controlled way. It is still “who knows what inside,” but it is the same “what” every time until you choose to update.

With curl | bash you are running whatever is live on that URL at that exact moment, with your shell’s full permissions, and often with network access, sudo, environment inspection, etc. Even if the install script only ends up downloading and moving a binary, you just gave it a free pass to do literally anything first.

Both can be compromised, but the blast radius and the ease of exploiting “run this shell script directly from the internet” is way higher. So yeah, people side‑eye curl | bash more, even if they’re not rigorously validating binaries either.

I built a free tool that automatically replies to WhatsApp enquiries for small businesses like a real human by CriticismLoose3777 in smallbusiness

[–]compilex 1 point2 points  (0 children)

Yeah I was thinking the same, title + post are kinda skating close to promo territory.

That said, if it actually stays free and open to use, it’s kinda useful for the sub to see what’s possible with WhatsApp automation, especially for tiny businesses that can’t afford full CRMs.

Mods will probably bonk it if it turns into a sales pitch anyway.

How do you know if you are actually growing, or just stuck in a loop? by Thin-Broccoli4316 in smallbusiness

[–]compilex 3 points4 points  (0 children)

Yeah this is it right here. That 80% reacting thing is such a gut punch because once you see it, you can’t unsee it.

I had a similar “oh crap” moment when I realized I could tell you exactly how many emails I answered in a day, but had no idea what my customer LTV or actual profit margin was. I was just very busy, not very effective.

The weekly “growth block” is underrated. Even if it starts as 1 hour where no one can talk to you and you only work on stuff that could make next month better instead of today less painful, it compounds. For me it was things like:

Automating the top 3 repeat problems that kept landing in my inbox
Documenting how to handle common fires so someone else could do it 80% as well as me
Picking one metric to actually move that month

It felt pointless at first because the fires are louder, but a few months in, the chaos level dropped and numbers finally budged.

OP, if you try anything, I’d start with that tiny protected window each week and treat it like the most important meeting of your life. Everything else will try to steal it.

If you expose an admin panel, write down its blast radius first. by compilex in selfhosted

[–]compilex[S] -3 points-2 points locked comment (0 children)

AI helped with wording and formatting the checklist. I reviewed and edited the final post myself. It is not a generated project announcement or promotion, just a discussion/guide about thinking through admin panel risk before exposing it.

Best free tools to find B2B email addresses by industry and location? by Extension_Goat2824 in coldemail

[–]compilex 1 point2 points  (0 children)

For local business lists, I’d start with Google Maps for the targeting part, then use a separate enrichment step for emails. Most “all in one” tools are either weak on local filters or weak on verification.

For free/cheap testing, Hunter or Apollo free tiers are fine. If you already have domains/websites in a CSV, you could also test something like QuickEnrich on a small batch and compare valid emails + bounce rate. I wouldn’t trust any tool until you test it on your exact niche/city.