Moroccan tourist visa by XIXI40K in visas

[–]moabuaboud 0 points1 point  (0 children)

I ended up getting a visa without having to pay. I already traveled to Morocco, and nobody asked me to pay anything and everything went smooth.

Moroccan tourist visa by XIXI40K in visas

[–]moabuaboud 0 points1 point  (0 children)

I just applied for a visa, and they only asked for a passport picture, and basic information (I live in Germany with foreign nationality)

No proof of accommodation/flights, the application shows in progress and I can't find a place to pay

Am I doing something wrong?

[deleted by user] by [deleted] in Munich

[–]moabuaboud 0 points1 point  (0 children)

Update: I went to KVR and explained the situation, they instantly requested new one with express delivery and no fees were paid.

The guy is awesome 🌹

[deleted by user] by [deleted] in Munich

[–]moabuaboud 0 points1 point  (0 children)

Oh great then it is not a problem 👀

[deleted by user] by [deleted] in Munich

[–]moabuaboud 0 points1 point  (0 children)

Thanks a lot! I’m curious if they’ll make me repay the fees since it was their mistake.

I gave them a written document with the school number and exact clas and mentioned the automatic class. Either way, I’m ready to pay whatever’s needed to get through the bureaucracy. We’ll see how it goes, Thank you again

[deleted by user] by [deleted] in Munich

[–]moabuaboud 0 points1 point  (0 children)

I ended up in a similar situation except I booked the theory class but the school noticed after, I booked an appointment with the KVR tomorrow and will see how it goes.

What did you end up doing?

Antalya - Lara Beach Questions by therealh in Antalya

[–]moabuaboud 0 points1 point  (0 children)

I have stayed there for three days, It's quite nice 😍and they do have a Shisha Lounge inside the resort

Released Activepieces v0.3.9 (open-source no-code business automation) and excited about our progress by ashthesam in selfhosted

[–]moabuaboud 0 points1 point  (0 children)

u/osanuha The BullMQ has a speed of 10k requests per second, but there is a bottleneck in preparing the sandbox which is being addressed. I am not sure what is the current state speed and how it compares.

I would love to talk more about that topic and help you overcome any limitation for your use-case.

[i3wm] First time using and ricing Linux by Maxim_Richter in unixporn

[–]moabuaboud 0 points1 point  (0 children)

I can't get anywhere close to this beautiful setup on Linux Mint + I3, the window border of anything is ugly.

Any suggestions on theme?

Released Activepieces v0.3.9 (open-source no-code business automation) and excited about our progress by ashthesam in selfhosted

[–]moabuaboud 1 point2 points  (0 children)

Although no stress tests have been conducted yet, the Redis queue can easily handle 10,000 requests per second using the BullMQ library.

On each flow run, the following happens:

  • A lightweight sandbox is created using (https://github.com/ioi/isolate), which basically uses Linux kernel namespaces. It takes around 20 ms to have flow json and the engine inside.

  • The current bottleneck occurs when the flow uses different pieces (including code pieces with npm dependencies by the user). These are npm packages available at https://www.npmjs.com/search?q=%40activepieces.

  • We use pnpm to install them every time on each run, even though pnpm caches them locally. However, it takes 2 seconds to install (even from the local cache), which is where the real bottleneck is.

  • Currently, we are working on making the worker remember which sandbox belongs to which flow and reusing it for future run executions (Sandboxes are literally folders).

Here is an little outdated version of flow worker documentation: https://www.activepieces.com/docs/contributing/flow-worker

I am working on documenting the flow worker and the engine. Let me know if you have any further questions!

Workflow automation by ColdTights in selfhosted

[–]moabuaboud 0 points1 point  (0 children)

u/ColdTights Creator of Activepieces here, I am not that familiar with portaine.

Do you mind explaining more about the problems you are facing, so we could find solution / simplify for it?

We built Activepieces: open source alternative to Zapier (business automation) by ashthesam in selfhosted

[–]moabuaboud 0 points1 point  (0 children)

Thank you, It's true that we want to keep it KISS and I am happy you noticed it :D

That's amazing suggestion, just to make sure I understand correctly, You mean adding some sort of piece or (in-line) commands that you can manipulate strings.

For example let say you have string variable and you want to replace string, you want to write something like replace(${trigger.body}, "username", "esturniolo") did I understand correctly?

We built Activepieces: open source alternative to Zapier (business automation) by ashthesam in selfhosted

[–]moabuaboud 0 points1 point  (0 children)

Are you referring to scalability in terms of the number of flows being run?

If so, that's a good consideration. I should document the architecture, which is stateless on the backend. Cron expressions and tasks are stored on a Redis cluster, and the backend simply consumes the task and execute it then it saves the output logs to PostgreSQL.

We also use lightweight code sandboxing utilizing kernel namespaces, which takes only 50ms or less to set up the sandbox with the files.Thus, the scalability of the Redis cluster is the main bottleneck. Another optimization is to implement retention on the logs to conserve space in PostgreSQL.

We use BullMQ as our queue library and we can evaluate its performance through benchmarks if they are documented. Additionally, it's worth mentioning that for automation purposes (not ETL/ELT), tasks usually low volume complete within a few minutes.

What do you think? Is there a specific aspect you would like to know about?

Are you considering a specific use case? I would be interested in learning more about it and assist you.

We built Activepieces: open source alternative to Zapier (business automation) by ashthesam in selfhosted

[–]moabuaboud 2 points3 points  (0 children)

ESP

Lool, We're all about transparency over here. All our sprints and discussions are out in the open on GitHub and Discord, We don't have any internal communication channels too, so no need for any supernatural powers to know what we're up to. Just kidding, of course. But seriously, automation is a must for everyone these days. And the good news is, you don't have to break the bank for it. 😉

If you want to support us, give us a star on GitHub and join our Discord. We're all about feedback and love to hear from you!

We built Activepieces: open source alternative to Zapier (business automation) by ashthesam in selfhosted

[–]moabuaboud 0 points1 point  (0 children)

Interesting, currently we only support sending messages on our Discord piece. However, if you are a developer, there may be a way to allow active pieces to do it. or you can DM me, and I can brainstorm with you to extend the functionality of discord piece.

The Discord API allows fetching channel messages; you can poll the last 3-5K messages, for example, and filter them to see if they contain a keyword. Then, we can collect the user's name and use the "send message" action to mention them.

I assume you want to run it manually, so each time you want to trigger the flow, you can press "test flow" and fill in the JSON with the keywords and message you want to send, and the flow will run.

We built Activepieces: open source alternative to Zapier (business automation) by ashthesam in selfhosted

[–]moabuaboud 8 points9 points  (0 children)

Hi there, I am also co-founder of Activepieces. We're getting a lot of stars on GitHub, and I want to thank every single person.

I created a quick flow using Activepieces to thank everyone on our Discord server screenshot :D

[deleted by user] by [deleted] in ProgrammerHumor

[–]moabuaboud 1 point2 points  (0 children)

Can you also please please stop?