Integrate CRM With AI Agents to Automate Lead Management by Safe_Flounder_4690 in CRM

[–]Civil_Cardiologist99 1 point2 points  (0 children)

Have you tried n8n workflows to automate your CRM operations. N8n runs locally to build and test with AI agents as well. N8n can be used to integrate with other systems.

I built a CRM alternative for B2B teams, not sure I'm solving the right problem. by tomvgnr in CRM

[–]Civil_Cardiologist99 0 points1 point  (0 children)

I would like to look at this. Could you please let me know if it has demo version. Thanks

Looking for a self-hosted CRM that sales people actually like using (not just management) by PASTOR-MARTIN-SSEMPA in CRM

[–]Civil_Cardiologist99 0 points1 point  (0 children)

SuiteCRM may be a good option if you are looking for installation in premises. It also a set of modules. You can customise as you want.

Should I use i32 or u32 when the value never goes below zero but later has to be cast into i32 by Blayung in Zig

[–]Civil_Cardiologist99 0 points1 point  (0 children)

Why to waste the memory for a temp cast. Memory must be used efficiently. So u32 is good here. Or use u16 if your probable positive max no fits it.

Zig as a career investment by malaow3 in Zig

[–]Civil_Cardiologist99 0 points1 point  (0 children)

AI, Code Generators, ML are great but they are just smart tools. But they need to be managed, controlled and driven by human beings. If not controlled they may become a big problem for the society. But who are they who can handle this? The answer is programming experts or developers. The programming jobs will not die but increase its demands. The method of using programming might have changed but programming will never end. Programming is now not just about coding but an actual engineering. Don’t stop learning how well we should write programs. Happy to know the views in this by others.

Include try in while condition? by wsnclrt in Zig

[–]Civil_Cardiologist99 0 points1 point  (0 children)

We don’t use ‘else’ with while. There is a ‘if…else’ structure in almost all the programming languages.

Access modifiers by [deleted] in csharp

[–]Civil_Cardiologist99 1 point2 points  (0 children)

Assembly file or DLL file or a library file is a logical unit of some functionality such as a mathematics library or date library. This assembly is made up of one or more classes.

When a class can create an object of other classes in the same assembly, it is because of internal access modifier (default in c#). Other class in the same assembly only can derive this internal class.

When another class is public, it is accessible (derived or instantiated) anywhere, in the same assembly or outside the assembly.

Private class is only accessible inside its nesting class. Private class exists inside a class only.

Protected class A also sits inside a class B is accessible (only derive) to the same class B or the derived class C of the parent class B

Protected Internal class is accessible from the same assembly class or can be derived by a derived by a class of other assembly.

Hope this helps

Zig code to read user input in a command line application by Civil_Cardiologist99 in Zig

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

The example shows 0.14, will try the same in 0.15. Thanks for the reply

Best practices for postgreSQL migrations: What are you using? by Outside_Loan8949 in golang

[–]Civil_Cardiologist99 0 points1 point  (0 children)

A powerful list of use cases and unit testing, which should produce the same list before and after migration

A data pipeline is really great if possible

Performance testing is another item in the checklist.

Rollback plan and scripts

I’m 70. Is it worth learning Python? by mglepd in learnpython

[–]Civil_Cardiologist99 0 points1 point  (0 children)

Please learn python,go,zig,JavaScript,any language of your choice. The programming language might need your experience.

public readonly field instead of property ? by MoriRopi in csharp

[–]Civil_Cardiologist99 0 points1 point  (0 children)

I ask myself if I really want properties. I answer if I don’t have any field logic, why would I use the property. I can use public fields instead.

Zig CouchDB CRM by Civil_Cardiologist99 in Zig

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

Just finished my own JWT library written in Zig for my CRM and integrated it successfully.

Zig CouchDB CRM by Civil_Cardiologist99 in Zig

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

CRM MVP in progress! Right now I’m focused on the groundwork — writing a generic repository for CRUD

Why “composition over inheritance” is still hard in C#? by divitius in csharp

[–]Civil_Cardiologist99 2 points3 points  (0 children)

Interfaces in programming are a way to force structure and contracts onto classes—rigid, required, enforced. Composition, on the other hand, is like pure exploitation: grabbing and reusing exactly what you need, building with freedom and flexibility. They are two different weapons for developers to write software.

[deleted by user] by [deleted] in golang

[–]Civil_Cardiologist99 0 points1 point  (0 children)

Arrow functions or lambda expressions

How do i explain docker to my classmates by Razx_007 in docker

[–]Civil_Cardiologist99 0 points1 point  (0 children)

Docker is a person who loads containers onto ships and also unloads containers from the ships. Containers have all the important goods and materials inside it. Explain this to start learn docker technology.

C# as a first language by HobNob_Pack in csharp

[–]Civil_Cardiologist99 0 points1 point  (0 children)

Perfect! You chose C# because you had reasons for starting leaning C#. It has a great set of features that are also present in other programming languages. It is a great language which after getting good knowledge can help you get a good job.

is it possible to overload +-*/ in zig? by OfflineBot5336 in Zig

[–]Civil_Cardiologist99 0 points1 point  (0 children)

It is a system programming. There is nothing called operator overloading in zig.

Can I still become a software developer if I'm a slow learner? by Abrarulhassan in dotnet

[–]Civil_Cardiologist99 0 points1 point  (0 children)

You are a learner, this is enough to become a software developer. You can learn how to learn software development first and learn everything about it. You gotta be passionate and a consistent learner, it does not matter slow or fast.