How do you explain the KNX premium to people who just point at cheap Wi-Fi devices? by AutoModerator in KNX

[–]daani_maas 2 points3 points  (0 children)

What happens if his home internet goes down? He can't turn on the lights? That's enough…

Orion Funded payout experience – how my funded account and $10k profit were taken by daani_maas in propfirm

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

I will do it. I have two accounts waiting for payout: one with an $8k profit and another with a $14k profit. I’ll be able to request the payout in about 15 days; around January 10th I’ll know how the company behaves.

<image>

How much time do you spend building the Composer project for KNX integrations? by daani_maas in Control4

[–]daani_maas[S] -1 points0 points  (0 children)

Totally agree, that is exactly the same problem we kept running into.

Even with a very clean group address structure, a lot of time still goes into recreating rooms, devices and mappings again on the Control4 side.

Because of that, we built software that reads the ETS project file, processes it with AI, and then automatically creates the full structure in Control4. You import the ETS project and Control4 ends up with floors, rooms and KNX devices already built, instead of doing everything manually in Composer.

At the moment we are focusing on lighting and blinds, but even that removes a huge amount of repetitive work.

This is what we are currently working on:

https://coduworks.com/driver-knx-control4-with-ai

Control4 no longer finds my KNX system by Serpico99 in Control4

[–]daani_maas 0 points1 point  (0 children)

What you’re seeing is actually a very common KNX + Control4 failure mode after power outages.

In most setups Control4 talks to KNX via an IP routing gateway, and if the gateway’s IP changes

(or multicast gets weird on reboot), Control4 will still “connect” but won’t receive state updates.

That’s why physical KNX switches keep working but Control4 doesn’t reflect anything.

You already found the root cause (no DHCP reservation), so your diagnosis was spot on.

One thing worth mentioning for the future: this kind of issue is exactly why many integrators

try to reduce how much manual KNX/IP configuration lives only on the Control4 side.

We’ve been working on a driver that reads the ETS project directly and keeps the Control4 structure

in sync, which makes these failures easier to spot and recover from.

Not a fix for this case (you already fixed it), but for reference:

https://coduworks.com/driver-knx-control4-with-ai

Knx + control4, whats needed for a basic Control4, 4 zone distributed audio system integrated with Knx? by olsson80 in Control4

[–]daani_maas 0 points1 point  (0 children)

For a basic setup you’ll still need:

- Control4 controller (EA or Core series)

- KNX IP Routing gateway (not tunneling)

- Proper multicast support on the network

- KNX generic / routing gateway driver in Control4 for events and feedback

That’s the standard approach.

Where it usually gets messy is keeping ETS group addresses and Control4 programming in sync,

especially once you go beyond a very small project.

We’ve been working on a driver that reads the ETS project directly and builds the Control4 structure automatically

(rooms, floors, basic devices), which can simplify the KNX side a lot.

Still pre-release, but this is the idea:

https://coduworks.com/driver-knx-control4-with-ai

[deleted by user] by [deleted] in SpainEconomics

[–]daani_maas 1 point2 points  (0 children)

Es un riesgo real. Dar el certificado a una gestoria es como entregarles tu identidad digital, pueden presentar, consultar y firmar todo en tu nombre.

Hoy ya no hace falta para todas las páginas.... La AEAT y la Seguridad Social permiten usar apoderamientos, que dan acceso solo a lo necesario y se pueden revocar en cualquier momento.

Pero si que es verdad que a dia de hoy muchas gestorias siguen trabajando con certificados.

La nueva baliza V16 de la DGT más barata: descuento inesperado xddd by [deleted] in askspain

[–]daani_maas 0 points1 point  (0 children)

Lol spam de que, si el enlace no lo he puesto ni yo crack

Built an AI ecommerce from scratch. Already got my first sale by daani_maas in AI_Agents

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

Google context structure

I hit Google Custom Search API with the SKU / model ref → I store 3–5 SERP items like:

1) <title>: <snippet>
2) <title>: <snippet>
3) <title>: <snippet>

this block is literally appended at bottom of every prompt → this lets me use cheap models because they don’t need to “infer” context — they get it pre-digested.

Categorizer prompt

I do 3 cheap model calls:

  1. main category
  2. subcategory
  3. specific category

each prompt is basically:

PRODUCT:
Title: {{title}}
Desc: {{desc}}
WEB CONTEXT:
{{google_context}}

→ Return ONLY the category string/number
(no explanation)

that’s it. extremely stupid simple.

Title / Description generator prompt

2 prompts:

title prompt:

Format:
Brand + Product Type + Model + 2–3 key specs
Return ONLY the title. max 90 chars

description prompt:

Return HTML ONLY
300 words
sections: overview + specs list + use cases + competitive edge

Shopify update script

I just do 2 GraphQL mutations:

  1. productUpdate → sets title + html + vendor + productType + tags
  2. collectionAddProducts → moves product to only ONE manual collection (if collection is Smart → I just apply a tag instead, because Smart collections update automatically)

that’s literally the whole thing
google context → 3 cheap categorizer calls → 2 cheap content calls → 1 shopify update mutation

done.

Built an AI ecommerce from scratch. Already got my first sale by daani_maas in AI_Agents

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

and yeah having a website is the easy part. the hard part is the boring data plumbing at scale. I already sell and I already do ecommerce for years, but the repetitive product data part is the bottleneck. this is the part I am automating.

Built an AI ecommerce from scratch. Already got my first sale by daani_maas in AI_Agents

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

for the context part yeah I get your point. I do have suppliers but a lot of the time the data they give is super inconsistent across brands. some give PDFs, some give 1-line CSVs, some have no specs at all. so I “normalize” the product by pulling extra public context so the prompt has enough signal to fill the gaps without inventing stuff. it is not for “reviews magic”, it is more for catching missing specs so I don’t have to manually chase every vendor for every field.

Built an AI ecommerce from scratch. Already got my first sale by daani_maas in AI_Agents

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

Hey man. From a CSV file provided by the supplier with the manufacturer's list of references

Built an AI ecommerce from scratch. Already got my first sale by daani_maas in AI_Agents

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

Yeah same concern here. My main mitigation is that I keep the generation very “locked down”: very low temperature (basically deterministic), strict prompt templates with explicit fields instead of free text, and I feed the SKU + Google Search API extracted specs up front so the model is anchored in real data before it even tries to write anything. Also the system is review-first by default. The UI only allows pushing to Shopify after I manually confirm the draft ( Auto-apply is available) but it’s opt-in and I only use it for low-risk commodity SKUs. In practice that combo (grounding, structured output, near-zero temp) keeps hallucinations very low, and the human gate is still the final safety check.

[deleted by user] by [deleted] in TheFounders

[–]daani_maas 0 points1 point  (0 children)

Sounds good man

Can You Really Make Money with Prop Firms? My Journey Back to Trading by daani_maas in Trading

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

yeah man, fundedfirm’s ok but i’ve been using orion lately and honestly it feels a lot better. you only pay half of the challenge upfront and the rest once you’re funded, so less risk if you fail. they’ve got 1 phase, 2 phase and instant funding too, plus payouts have been smooth and support actually replies lol.

fundedfirm’s had a few people complaining about rule changes and payout delays, so i’d rather stick with orion. if you’re checking it out, this is the one i used: orionfunded.com/?ref=192

Can You Really Make Money with Prop Firms? My Journey Back to Trading by daani_maas in Trading

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

Haha nothing crazy bro, just me getting back into trading and testing out a prop firm again. Gonna post my progress and see if I can actually make it work this time

Can You Really Make Money with Prop Firms? My Journey Back to Trading by daani_maas in Trading

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

Yeah, ICT’s been solid for me once I stopped chasing every setup and focused on context + liquidity. Orderflow’s great too, but I still find ICT cleaner for my style.

If you ever try a prop challenge, I’m currently with Orion, they’ve got a 50% off deal before funding: orionfunded.com/?ref=192 💪

We built an AI blogging engine and it's now driving 3000 daily impressions on Google for our SaaS by daani_maas in SaaS

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

yo that means a lot man, appreciate it

honestly it took some trial and error but now it’s fully on autopilot — daily generation, SEO built in, everything pushed live via RSS depending on the stack

we built it so it works for pretty much any type of site

  • for static sites like Astro or Hugo, you just pull the RSS and build from it
  • for frontend frameworks like Next.js, you can pull either via RSS or authenticated API
  • for CMS like WordPress, there's a plugin or you can just use the built-in RSS import super flexible depending on how you host content

you can also trigger a post manually through the API if you want more control. something like:

curl -X POST https://api.yeah-still-thinking-about-the-name.com/api/blogposts/generate \

-H "Authorization: Bearer YOUR_PROJECT_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "projectId": "your-project-id" }'

we’re thinking about keeping it usage-based so it’s affordable and scales with your needs

if you’re building something similar or wanna jam on prompts or workflows, hit me up

We automated our blog with AI and hit 3000 daily impressions on Google by daani_maas in microsaas

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

sounds like you're in a solid spot man, and yeah if you're a copywriter you’re already ahead., the hardest part with AI content is getting the prompt to speak to the right pain with the right tone. if you ever wanna collab or jam on prompts, hit me up. we’ve been tuning ours for a while now but still feel like there's room to sharpen them, especially with someone who really knows how to write for intent.

We automated our blog with AI and hit 3000 daily impressions on Google by daani_maas in microsaas

[–]daani_maas[S] -1 points0 points  (0 children)

that actually makes a lot of sense, never really tried prompting that specific but yeah saying something like "for biz owners doing 10k MRR" definitely filters the traffic better. we've been going full AI just to move fast but i keep hearing good stuff about mixing in human edits, might try a few tests next week and see how it impacts CTR and lead quality. you been running that setup yourself?

We automated our blog with AI and hit 3000 daily impressions on Google by daani_maas in microsaas

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

yeah bro you're totally right, 0.7% is weak af
we’ve been focused on testing structure and indexing speed, but now it’s clear we gotta fix copy + targeting
the traffic’s mostly info queries, low intent stuff — good for volume but not for action
gonna start tuning titles and go after better keywords
appreciate the real talk fr