No video

How to Create a Random Hashtag Generator | Make.com (formerly Integromat) Tutorial 2023

  Рет қаралды 1,468

TechflowAI - Producing Time

TechflowAI - Producing Time

Күн бұрын

Do you want to pick a random hashtag or coupon or anything from a list and send it to another place like a Chatbot? Then this Integromat Tutorial is for you.
You'll learn how to build a random generator with Make.com (formerly Integromat) in this tutorial, which is applicable to any kind of list that you want to pick a certain amount of random items from and send it somewhere else.
FREE Make.com Functions - Cheat Sheet 👇
🤫 tchflw.ai/Make...
Get the Random Hashtag List Generator - Google Sheet
📄 tchflw.ai/rand...
📄📄 tchflw.ai/rand...
9 Quick and Easy Ways to Stay Organized on Make.com (formerly Integromat)
🔥 • Make.com (formerly Int...
0:00 - Introduction
0:19 - Building a Simple Generator
3:39 - Intermediate - Grab File and Post With Random Hashtag
4:29 - Using a Full List of Items to Pick From
5:22 - Advanced Make.com (formerly Integromat) Scenario Set Up
9:42 - Running the Make.com Scenario
11:17 - Other Use Cases - Coupon Generator
12:55 - Staying Organized on Make
13:44 - Make.com it Even More Dynamic
15:09 - Quick Summary and Formula
Hit the subscribe button if you're looking to improve your Automation skills with Make.
🤩 tchflw.ai/yt-s...
Talk to Tony - Your Custom GPT AI Assistant for all Make.com related questions:
🤖 makesimplified...
Get 1 month of the Make.com Pro plan for free 👇
🎁 tchflw.ai/1-mo...
Finally Master RegEx? - Check out our Ultimate RegEx Bootcamp 👇
tchflw.ai/the-...
(The LAST time you'll wonder - wth is RegEx?!)
################################
My KZbin Channel: / @techflowai
TechflowAI Facebook Page: / techflowai
Private Facebook Contact: / manuelgick
Our Website: techflow.ai

Пікірлер: 18
@TechflowAI
@TechflowAI 2 жыл бұрын
You can easily subscribe here to not miss any new videos: tchflw.ai/yt-subscribe What will you use a random generator for? Comment below 👇
@byerdalisik8794
@byerdalisik8794 Жыл бұрын
Teşekkürler, harika bir anlatım, çok fazla işime yarayacak.
@TechflowAI
@TechflowAI Жыл бұрын
Glad you liked it and it helps! :)
@AlexLunnar
@AlexLunnar Жыл бұрын
I understood how the formula works, but I still have some doubts about certain parts. 1. Random will generate any number between 0 and 1. 2. That's why we have the Floor function, which is used to round the number. 3. The value MAX - MIN ensures that the result is never greater than my list. 4. The "+1" after the Floor ensures that my result is never "0." Now, here's my question: What is the purpose of the "+1" after the MIN value? Because when I tested it without it, I still got results within the correct range from MIN to MAX value. Thanks for the great video. I hope you can help me clear up this doubt that is keeping me awake haha.
@TechflowAI
@TechflowAI 10 ай бұрын
Great question, and apologies for my (very late) reply! *TL;DR:* This is to make sure that the MAX value is included in the potential outputs. Because random can be 0 but never quite hits 1, the multiplication would fall short of MAX. Adding 1 corrects for this. [Random = Random number between 0 (inclusive) and 1 (exclusive)] Let's say, your *MAX* value is 2 and your *MIN* is 0. The floor would look like this: floor( random * (2 - 0 + 1)) floor( random * (3)) Let's say the random number would be 0.999, it would be floor(0.999 * 3) = floor(2.997) >> 2 If we would leave out the +1 it would be: floor(0.999 * 2) = floor(1.998) >> 1 Therefore, the random number can never reach our *MAX* value.
@AlexLunnar
@AlexLunnar 10 ай бұрын
Thank you very much for your response; it made a lot of sense. I confess I hadn't reached this conclusion yet. I'm very grateful for the tutorial you provided; I've been using this formula in almost all the automations I've been working on for the past few months. The great thing is that being a mathematical formula, I also use it extensively with spreadsheets. In any case, thank you for your attention and for taking the time to respond to me. Hugs from Brazil.@@TechflowAI
@TechflowAI
@TechflowAI 9 ай бұрын
@@AlexLunnar de nada! Foi um prazer. ;)
@iBotoved
@iBotoved 2 жыл бұрын
Hi! How to make Random (10-50) ?
@TechflowAI
@TechflowAI 2 жыл бұрын
That's a good question! Check out the formula at Minute 1:24 of this video and replace MAX with 50 and both MIN variables with 10. That way you'll get a random number between (incl.) the numbers you define. Let me know if that helps! 😊
@iBotoved
@iBotoved 2 жыл бұрын
@@TechflowAI Wow! It worked! Thanks 👍
@TechflowAI
@TechflowAI 2 жыл бұрын
Awesome! 😊 You're welcome and glad it worked.
@erikzolotnikov366
@erikzolotnikov366 Жыл бұрын
Hi. Is it possible to make it so that a random number is generated from 1 to 10? But at the same time, all the numbers from 1 to 10 would definitely fall out for 10 runs of the scenario.
@TechflowAI
@TechflowAI Жыл бұрын
That's an interesting approach. You can achieve this by using a data store for example. Every time a number is picked, you delete that entry or update a column that it's "Picked". Then add another data store or global variable that contains the "total amount of numbers left". The next time you run it, get the "total amount of numbers left" value first, then "search records" of your data store. Then generate your random number with "total amount of numbers left" as your max. After that, put a filter after your "Search Records" and let only the bundle pass where "bundle order position" = "random number". Does that help?
@erikzolotnikov366
@erikzolotnikov366 Жыл бұрын
@@TechflowAI Thank you! I took a slightly different approach. That look like: - round(random=10) -> Then storing that value inside a gSheet -> Then outputting it to wherever I want On Run #2, there would need to be an added "Checking" step to see if the number randomly generated this time, matches the number previously generated.
@TechflowAI
@TechflowAI Жыл бұрын
Interesting. And what if it has been generated already? Keep repeating the process trying to find a random that hasn't been used before?
@erikzolotnikov366
@erikzolotnikov366 Жыл бұрын
@@TechflowAI Yes it is
@TechflowAI
@TechflowAI Жыл бұрын
My only concern is, this can consume A LOT of operations until it finds a random number that's hasn't been used before. My approach was to pick a random number only among the ones that are still not used before so there is no need for repeating it until you found something. But both options work obviously. Like always, there are multiple ways of solving something.
How to Share a YouTube Video or Blog Post on Social Media Automatically
12:12
TechflowAI - Producing Time
Рет қаралды 862
Random Number Generator (PIN Code/2FA/Temp Code) - DocuWare & Make.com (Integromat)
10:01
Ayoh Group - DocuWare Tips & Tricks
Рет қаралды 230
UNO!
00:18
БРУНО
Рет қаралды 4,6 МЛН
Why Is He Unhappy…?
00:26
Alan Chikin Chow
Рет қаралды 104 МЛН
👨‍🔧📐
00:43
Kan Andrey
Рет қаралды 10 МЛН
managed to catch #tiktok
00:16
Анастасия Тарасова
Рет қаралды 29 МЛН
Why "pop-up" restaurants are everywhere now
6:05
Vox
Рет қаралды 671 М.
66 Most Useful Websites Everyone Should Know!
44:06
Brett In Tech
Рет қаралды 1,2 МЛН
Top 10 Emerging Technologies of 2024 (According to Science)
10:45
AI Uncovered
Рет қаралды 24 М.
Make.com Multiple Certificates Fast with Automation
16:26
TechflowAI - Producing Time
Рет қаралды 543
Convert File Formats Automatically: Excel, Google Docs and Images Made Easy
11:35
TechflowAI - Producing Time
Рет қаралды 593
Notion AI vs. ChatGPT: Is Notion AI Worth It?
13:23
XRay Automation
Рет қаралды 10 М.
How to do API Calls in Make.com No Code Automation: A Beginners Guide
16:36
TechflowAI - Producing Time
Рет қаралды 619
Is ChatGPT Plus Worth It? A Review after Extensive Use..
20:47
UNO!
00:18
БРУНО
Рет қаралды 4,6 МЛН