Tech Blog

  • PrimeNG Chips Multiple Separator while Pasting Multiple Values

    September 20, 2024

    PrimeNG offers the possibility to update it's chips component with different separator other than enter. The property accepts a string or a RegExp as such. chips.component.html <p-chips ...

    Tags: AngularPrimeNGRegExp
  • Function to Check If Domain or www Subdomain are already owned

    September 18, 2024

    I have created a cute function to check if a domain or subdomain is already owned: isDomainOrWwwExisting = ( domains: string[], domainToCheck: string ): boolean => { const remove...

    Tags: JavascriptTypeScriptAngular
  • NGINX configure for internationalization

    June 5, 2024

    Working on a consumer facing app with hundreds of thousands of users comes with it's special challenges - there is MarTech (marketing technology) with Google Tag Management and it's related scripts w...

    Tags: AngularNGINX
  • Angular Emoji Validation RegExp

    May 27, 2024

    One of the crucial tasks in web development is validating user input, ideally on both front and back end. Today I've created a regular expression which allows all alphabet letters (any kind of alphab...

    Tags: AngularRegExp
  • AG Grid Display Formatter

    May 15, 2024

    AG Grid is a very powerful paid component library with numerous personalization options and settings. The fact that it is paid, makes it less likely to find information about it on forums such as...

    Tags: AGGridAngular
  • Opening chrome with disabled web security

    April 19, 2024

    A project I'm working on needs to have chrome opened with disabled web security in order to communicate with the back end so I really want to have this comand line saved: open -n -a /Ap...

    Tags: CLIChrome