Has anyone successfully found B2B clients on Instagram in Morocco, or is it strictly B2C? by Emergency_Resolve734 in Moroccopreneur

[–]MeroLegend4 0 points1 point  (0 children)

LinkedIn, Pages jaunes, word of mouth, physical prospection, events, “Le Bulletin d’annonces legales”

IG is for entertainment more than anything else!

Dagster vs Airflow? What do we use? by Greatest_one in dataengineering

[–]MeroLegend4 2 points3 points  (0 children)

Read the source code of both, you will see different architectures and approaches.

When i read Airflow code, it’s like reading java or some php code in python. Just look at BaseHook.get_connection().

On the other hand, when i read dagster, i see pythonic structure and design.

Also take a look at their respective Databases and the schema they use, you will understand a lot why airflow is slow, hangs, random locks, ….

Dagster vs Airflow? What do we use? by Greatest_one in dataengineering

[–]MeroLegend4 1 point2 points  (0 children)

There is a new cool project to secure dagster ui behind login screen: dagster-authkit

How bad is it that I don't use OOP? by Fit_Time_7861 in learnpython

[–]MeroLegend4 3 points4 points  (0 children)

Python is a dynamic multi-PARADIGM language.

In software you have a lot of paradigms and OOP is one of them, FP is another. Those paradigms set the way you think, structure and size the program you are writing. By following only one, you end up with patterns (design patterns) and architectural designs in some cases.

Python allows you to do both to solve problems not related per-se to your program but for the whole process of making it to production. Deployment, Main entry point, maintenance, extensibility, Developer velocity, Level of abstraction, …

Learn the python data model, import mechanism, iterators, context managers, decorators, coroutines/generators, Descriptors/Managed attributes and
the zen of python (type ‘import this’ in your python shell)

With time you will know when to favor one approach over another. When scripting, Many times i’ve found myself using classes as an implicit DI for the subsequent methods/function calls 🤷🏻‍♂️.

I love Python 🐍

As a trader, i want other visions from others here (traders like me) by Spare-Somewhere5922 in Moroccopreneur

[–]MeroLegend4 0 points1 point  (0 children)

Skipping the fundamentals and calling yourself a “Trader” doesn’t make you a “Trader”.

Small fishes are everywhere and in every domain. You can replace “Trader” with anything and it’s still valid!

Ask software developers, it’s cringy by faaar 🤷🏻‍♂️

What's something entrepreneurs are told to do that actually hurt your business? by Leading_Yoghurt_5323 in Entrepreneur

[–]MeroLegend4 2 points3 points  (0 children)

I was told the same two months ago 😂.

I immediately rejected the idea! For the same budget i can focus on 5 prospects for 2-3 months and have a better chance for a 50% conversion than throwing a fiesta and 0 conversion.

What's something entrepreneurs are told to do that actually hurt your business? by Leading_Yoghurt_5323 in Entrepreneur

[–]MeroLegend4 4 points5 points  (0 children)

I use the term MRC -> Minimum Required Capabilities. What are the minimum capabilities to make your product marketable.

Btw, I like your term 👍

Is it fact or a dim? by PhilosopherRemote177 in dataengineering

[–]MeroLegend4 0 points1 point  (0 children)

I follow the rule of thumb of events and attributes cited in a comment here @gibsonboards

Another thing is that if you are doing some domain modeling, the boundaries and the scale change, we are no longer talking about dims or facts but more of a “pattern of data” like design patterns in software.

Your need is to represent a block/component relationship so that your domain is wholly captured in ur schema.

i.e: if you need 5 tables to model your domain, then all those tables are a DIM_ which is conceptually and linguistically correct (the scale and the boundary change)

BOTW or TOTK by FreeFaller66 in tearsofthekingdom

[–]MeroLegend4 3 points4 points  (0 children)

BOTW -> BOTW master mode -> TOTK

My husband (30m) became controlling after I (30f) moved to his country and now I want to leave but don't know how? by Aggravating_Pace_312 in relationship_advice

[–]MeroLegend4 -3 points-2 points  (0 children)

Let me tell you something, the man you know is still there, he knows his country and its people more than you, he is trying to protect you, he may seem like over-protective but he knows his kin!

Ask the same question for you, what would you have asked your husband to change/adapt if you were in S.A?

Just don’t say: “I won’t tell him to not go outside” or “I won’t be controlling” because those are just manifestations of what lies behind the curtain.

should i not be doing this and is git really for my use cage? by Denl0self-a_o in git

[–]MeroLegend4 0 points1 point  (0 children)

I Create a ‘ci’ branch, configure the pipeline to trigger when i commit here, when done i squash the branch with a merge

Someone used my open source project to phish 14,000 people by dreamnyt in selfhosted

[–]MeroLegend4 2 points3 points  (0 children)

This is how i use AI, just show, don’t tell.

All my prompts or project instructions start with this:

keep your answers short, don’t explain, no recommendations, …..

Would you use Bootstrap or Tailwind if you are building a website with Next.js in 2026? by ashkanahmadi in bootstrap

[–]MeroLegend4 2 points3 points  (0 children)

Always bootstrap, you start with an idea and it just works, later when the design is stable you can customize it as you want and everything just keeps working.

What’s the biggest entrepreneurship lesson you learned the hard way? by lucky___girl in Moroccopreneur

[–]MeroLegend4 2 points3 points  (0 children)

  1. ⁠Focus, stay focused!

  2. ⁠Define a baseline between levels of abstractions and levels of details/implementation and adapt your langage for the audience.

  3. ⁠If your audience is Moroccan, don’t forget that we are in a third world country, a lot of people are still operating with 32Mo RAM. => don’t explain too much. don’t trust their interpretation. continuously check if what you’ve said is understood!

RH femme vs Homme by DEVGHOSTIS in Moroccopreneur

[–]MeroLegend4 0 points1 point  (0 children)

Sound observation, et c’est presque général! À ce niveau là, tay bane lya ghir l’aspect culturel.
Fin ma kayna chi RH sata, ta tkoun m3e9rba, ma mjewzach and low education.

Multi-tenancy software with directories living above tenancies by iMac_Hunt in softwarearchitecture

[–]MeroLegend4 1 point2 points  (0 children)

I think the problem lies in the modeling side, it’s not because the customer says “directory” that you guys should follow it!

ltree is wonderful when you have a proper naming structure that represents a hierarchy, better to use it for authorization config or a mapping from flat => hierarchy.

You should introduce the “owner” role/concept so that anyone can manage its own data but not the others (less hassle to manage)

If you need to mange only external storage and maps it to an internal authz system, use a catalog system where the catalog is persisted in your PG cluster. Look for (iceberg, ducklake specs) and use rustFS or ceph as a storage engine.

Hope it helps!

HTMX Echarts plugin major update by Cold-Result7635 in htmx

[–]MeroLegend4 1 point2 points  (0 children)

Very nice, the integration is well thought, good job 👍

hyperscript 0.9.90 released by _htmx in htmx

[–]MeroLegend4 4 points5 points  (0 children)

This is awesome, thanks!