I had this entity import {Entity, PrimaryGeneratedColumn, Column} from “typeorm”; @Entity() export class User { @PrimaryGeneratedColumn() id!: number; @Column(‘text’) firstName!: string; } and I was getting the error “column “firstName”...
This folder structure allows me to scale Angular and find every file quickly by understanding and grouping their overall functionality. /app /features /product #one folder per entity /get-products component /create-product component /update-product component...
These are few ways I modify the code, if needed, in SuiteCRM: SuiteCRM User Guide: this guide is well written and maps the way to learn about the system as a user and as a developer. https://docs.suitecrm.com/user I joined the SuiteCRM Community: Here I learn a lot of...
Linux Malware Detect (LMD) or Maldet is a malware scanner for Linux I used for checking threats while managing Linux servers. In Ubuntu or CentOs, I like to use the following directory: $ cd /usr/local/src Here are the commands I use for a quick installation: $ sudo...