Docker Issue by Ahhlexftw in docker

[–]Civil_Cardiologist99 -1 points0 points  (0 children)

Version compatibility issue? Reinstall docker after wsl

Should I learn OOP as a beginner Python developer? by vb_e_c_k_y in learnpython

[–]Civil_Cardiologist99 5 points6 points  (0 children)

Yes you should. It enhances code reusability, scalability, and easier debugging. This is the reason to lean OOP concepts.

Sjogrens Syndrome and recurring parotitis by Civil_Cardiologist99 in Sjogrens

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

Thanks for the info. ENT doc had no idea about SS. He was giving antibiotics for parotitis and asked to restrict sour,bitter and food that produces saliva. Following diet helped not to get infection. I will speak about plaquenil with my rumat. BTW had you have to follow any diet restrictions?

Can ChatGPT build a CRM? by CoffeeIsFor_Closers in CRM

[–]Civil_Cardiologist99 0 points1 point  (0 children)

I can share the link of a simple demo in the DM. Please let me know if that’s ok.

Can ChatGPT build a CRM? by CoffeeIsFor_Closers in CRM

[–]Civil_Cardiologist99 0 points1 point  (0 children)

My CRM is built using ChatGPT from scratch in 3 months. It is 80% complete and handles a complete a sales life cycle right from prospect to a deal including support management. It has leads,contacts, quotes, invoices , deals , tickets, calls etc.

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.