by tech | Aug 4, 2024 | Uncategorized
JAVASCRIPT TUTORIAL Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings. Click...
by tech | Sep 15, 2022 | Uncategorized
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
by ronew | Jun 28, 2022 | PostgreSQL, TypeORM
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”...
by ronew | Jun 28, 2022 | Angular, Typescript
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...
by ronew | Jun 28, 2022 | PHP, SuiteCRM
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...
by ronew | Jun 27, 2022 | ClamAV, Maldet
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...