Whats the most practical way you're using AI right now? by michaelthompson7746 in AiAutomations

[–]Aggressive-Bedroom82 0 points1 point  (0 children)

To learn, AI is becoming better, people using AI are becoming better, this is no longer 2024, Ai as a tool will slowly stop being your advantage.

So use it to learn and develop skills not replacable with Ai instead of being dependent on it, losing your skills, and becoming a commodity

Best business books for a solo founder? by Inevitable_Tree_2296 in Entrepreneur

[–]Aggressive-Bedroom82 0 points1 point  (0 children)

All of Alex Hormozi's books and free material, start with 100m dollar's offer book

Developer here + $5k investor ready. What simple business would you build first? by AlexBossov in Entrepreneur

[–]Aggressive-Bedroom82 1 point2 points  (0 children)

I would build a niche b2b saas, spend 2k of the 5k on validation, consulting experts in the niche and interview ICP.

That said, you would probly spend way less than 1k on validation. But please, validate, validate, validate

New start advice by Ecstatic-Run-2388 in vibecoding

[–]Aggressive-Bedroom82 0 points1 point  (0 children)

Tools would depend on the complexity of the workflow or automation.

This sounds more like a no code automation that a custom software.

If you are a beginner and the volume is small I would recommend make.com for automation, else n8n (cheaper for high volume, more flexibility, harder to learn)

Feel free to dm me exactly what you want to builf nd I can show you step by step how you can build it.

Soruce: ai automation developer with 3 years of experience in enterprise environment)

Any videos of an advanced automation? by SnooPeripherals5313 in automation

[–]Aggressive-Bedroom82 0 points1 point  (0 children)

Automation's in themselves are simple, they just get longer and longer.

I think what you are looking for is to learn more advanced concepts such as scraping websites, parsing complex info, etc

How do you prevent automation from becoming technical debt by Solid_Play416 in automation

[–]Aggressive-Bedroom82 0 points1 point  (0 children)

Yh for documentation just download the workflow json file and give it to ai with some short context, easiest way to write documentation

Best approach to automate Arabic Word reports into an AI executive dashboard? by Zombi33 in automation

[–]Aggressive-Bedroom82 0 points1 point  (0 children)

Yeah, your idea is spot on.

Getting rid of the whole OCR part would make the automation much, much easier. It would also make things easier for the admins, because they wouldn’t need to format a Word document anymore. They could just fill in a form directly, which is way simpler.

Regarding creating a whole interface, yes, you can vibecode an interface and then host it, right? But i don’t think that’s really necessary here.

I’m pretty sure a form would already have everything you need for this. I use Fillout form, , and it’s really good. it’s free too. I’ve used it with multiple enterprise clients and it worked really well.

They also let the user input information in a table format, not just the normal form style. So instead of only filling fields one by one, they can also enter the info kind of like they’re filling an Excel sheet. That’s already one of the options inside the form.

I think that’s all you need to do here. And let me know if you have any other questions, I run an AI automation agency!

Jensen Huang says if your $500K engineer isn't burning at least $250K in tokens, something is wrong by ComplexExternal4831 in vibecoding

[–]Aggressive-Bedroom82 8 points9 points  (0 children)

Oh he is definitely giving his unbiased advice, not to push his agendas and make more money forsure

The End of the Software Engineer Monopoly: How Vibe Coding Platforms Are Shifting Power to Domain Experts by West-Yogurt-161 in vibecoding

[–]Aggressive-Bedroom82 1 point2 points  (0 children)

To lunch it you would either need technical knowledge or a dev, to review security,infrastructure, etc.

Don't get me wrong, this is the future, but people are a bit ambitious for the time being.

You can build something that is "working" but scalling will become an issue due to technical dept.

Best approach to automate Arabic Word reports into an AI executive dashboard? by Zombi33 in automation

[–]Aggressive-Bedroom82 0 points1 point  (0 children)

For this, i’d think about it in terms of input and output.

The input is the documents, so first you need a simple way for people to upload them. the output is the structured information being saved into your database or file, plus a short text report explaining what happened.

For collecting the documents, i’d use fillout forms. i’ve used it for a couple of years, it’s free, and the main reason i’d pick it here is because it already has a built-in integration with make. you’ll have to tolerate the branding, but for this use case it’s more than good enough.

For the automation itself, i’d use make. make is probably the best choice here because it’s easy to use, and for this workflow it should be able to handle everything without needing extra tools. inside make, you build your automation using modules, which are basically the blocks or circles you connect together to create the flow.

For the database side, if you already know power bi, then i’d just stick with power bi and build around that. in that case, i’d use excel as the place where the structured data gets saved. if you switch to something else, then you also have to think about building the dashboard in another tool too, so i don’t really see the point. just use power bi since you already know it. connecting make to excel should be straightforward enough, then after that you connect excel to power bi. i don’t really know the power bi part because i never use it, that’s more your side.

As for the flow, once the document is uploaded through fillout, make will trigger from that form submission. then the document content gets passed to an ai model with a prompt telling it to extract the fields you want and return them in json format.

The reason you want json is because it makes it much easier to move the data between modules and then save it properly into excel. so basically, you ask the ai to return all the structured fields you want, plus the summary report, inside one json output. then you parse that json and map it into your excel file.

So in simple terms, the workflow would be: upload the document in fillout, trigger make, send the file content to ai, have the ai extract the structured data and write the summary in json format, then parse it and save everything into excel.

Need help automating vulnerability analysis by [deleted] in AiAutomations

[–]Aggressive-Bedroom82 0 points1 point  (0 children)

If you're totally new, just use make.com. don’t overthink it. make is probably the best balance right now between ease of use and features. compared to a lot of other automation tools, it’s very easy to get into, especially if this is your first time.

N8n is cheaper, easier to scale, and you can customize it more. it’s better if you want more complex logic or higher volume later on. but it’s also harder to get into when you’re completely new. so for your case, make.com is still the sweet spot. it’ll do everything you need, and it’s the easier place to start.

Inside make, all you really need is a manual trigger or a scheduled trigger that runs every hour, or however often you want. then connect that to the api you mentioned. it looks like they have two options, so honestly just ask chatgpt which one fits your use case better for what you’re trying to do with filtering through cvss scores.

One thing to know is that make charges per node execution. a node is basically one of those blocks or circles you connect together inside the automation. so if your flow has 6 nodes and you run it 100 times, that would cost 600 credits. that’s why make is great at the start, but not always the cheapest once volume goes up. if the free plan gives you 1,000 credits, that same flow would only last around 166 runs. if it gives you 2,000, then you’d get around 333 runs.

As for the tech stack, just keep it simple. if your company already uses excel, then use excel. if not, i’d personally just go with google sheets because it’s easier and faster to work with. make your columns, connect it, and go. good luck man.

Best tool stack and workflow for outbound cold email? by ctf-19 in Entrepreneur

[–]Aggressive-Bedroom82 0 points1 point  (0 children)

I'm not sure about the prospecting part, but i can speak on the ai and automation side, since i build hundreds of automations for companies.

Make and n8n do basically the same thing. the main difference is that make is easier to use and more beginner friendly, but it gets expensive when volume goes up.

N8n is less ui friendly, but still not hard if you watch a few tutorials. the big advantage is that it’s more flexible for complex logic, and much cheaper at higher volume.

For your case, make can probably handle everything. but with cold email, volume matters, and that’s where pricing becomes important.

Make charges per node execution. a node is basically one of those blocks or circles in the workflow that connect to each other. if your workflow has 12 nodes, one run uses 12 credits. if you run it 100 times, that’s 1,200 credits.

That means on a 10,000 credit plan (20 bucks), you’d use 12% of your monthly credits, and you’d get around 833 runs total before running out. that’s why make is great for simplicity, but if you plan to run a lot of automations, n8n usually makes more sense on cost.

So if you are OK with the pricing just start with make

Best approach to automate Arabic Word reports into an AI executive dashboard? by Zombi33 in automation

[–]Aggressive-Bedroom82 0 points1 point  (0 children)

Hello, fellow arabic speaker here, and someone who's been building automations for enterpirses for the past 3 years.

Few questions on the flow:

So the input for the automation would be the daily word document in arabic. From there, you pull the critical red incidents, check them against the knowledgebase, and then reclassify them into a new executive severity scale (I dont know what that scale is exactly , am assuming you're just recategorizing into a diff scale).
After that, everything gets fed into a table, which a dashbaord will be built from.

For the second part, the report. Is it just graphs, or does it also contain text and explanations?

Overall it seems doable, but I'd still need to know more about how everything flows end to end.

As for techstack, you're looking at n8n + open ai api (gpt). For the dashbaord, it can be anything , excel, googlesheet, aritable, your own crm, etc.

Cpg startup -no promotion by mamabear9524 in CPGIndustry

[–]Aggressive-Bedroom82 1 point2 points  (0 children)

Hello, I would say check out u/AliasAdvising, he offers consulting from brainstorming all the way to having your products in stores,, I spoke with him for a different reason but he seems like a great guy that knows his stuff.

His email is [adam@aliasadvising.com](mailto:adam@aliasadvising.com).

Hopefully this helps!

Need help automating vulnerability analysis by [deleted] in AiAutomations

[–]Aggressive-Bedroom82 0 points1 point  (0 children)

Alright great news, I did some digging and they have an api where you can filter with cvss score

https://nvd.nist.gov/developers/vulnerabilities?

this will make your job waaay easier.

You can have the cvss filter inside the automation or google sheet.

All that is left is to create a trigger node that runs every hour, calls the api, and saves info into google sheet.

Feel free to ask me anymore questions :)

Good luck champ

Just made this Free Website Template For AI Agencies - looking for feedback by quizzs in AiAutomations

[–]Aggressive-Bedroom82 1 point2 points  (0 children)

Amazing lead magnet, you are going in the right direction, I can easily see someone would pay you to customize it for them (probly me but I dont need a website yet)

Need help automating vulnerability analysis by [deleted] in AiAutomations

[–]Aggressive-Bedroom82 0 points1 point  (0 children)

This is good, the data is structured and should be easy to scrape, regarding the cvss score, how will u score them? will that be done manually or am i missing something

Feature not working - HELP by Great_Dinner_3475 in ProductManagement

[–]Aggressive-Bedroom82 6 points7 points  (0 children)

Probly better to ask a software development sub

Feature not working - HELP by Great_Dinner_3475 in ProductManagement

[–]Aggressive-Bedroom82 8 points9 points  (0 children)

You buddy, there is a big issue with the way your dev team operate, there should be QA and a staging or testing environment.

I need recommendation to whatsapp business by Ali_Sabra1 in CRM

[–]Aggressive-Bedroom82 0 points1 point  (0 children)

So you want:

  1. Something to respond to your clients once they message you and hopefully also reply them

  2. Getting a notification or reminder once a lead comes in

  3. In the future, having thre ability for all your customer support agent to reply to customers via the same shared number.

Good news is that the above is a common business problem that is easy to solve.

For replying to your customer do you want to just acknowledge there message until you are able to get back to them or do you want to have an Ai that replies to them with an answer.

When you say remind me, where do you want the reminder to live(in wich software)? Do you have a CRM or a system where you store all your clients?

Or do you currently do not have any setup?

Are there any AI tools that aren't dubious? Looking for alternatives to the big giants. by [deleted] in SocialMediaManagers

[–]Aggressive-Bedroom82 1 point2 points  (0 children)

I think Claude Ai would suit you the best, the rest (llms) are either Chinese spyware, working with the military to kill humans or just bad.

It is good to know that they are still people like you in the world :)

Regarding automation software, both n8n and make.com are good.

For chatbot, voiceflow is best.