Tech Blog

  • Supress Error Interceptor

    September 24, 2025

    As it is often the case, I have to enable an exception to a rule that's working very well - the error handling interceptor should not trigger the toast message when looking for a recent information a...

    Tags: Angular
  • Query parameter always present in URL

    February 27, 2025

    After successfully building and deploying an Angular web app, we wanted this app to be accessed from another app by a super admin like user and the request was to always have in the URL the query para...

    Tags: angular
  • 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