Add an SVG file to your html in Angular

Images can be easily inserted at any section in an HTML page. To insert image in an HTML page, use the <img> tag. But, those days are gone. Img tag easily adds image of any format to your html page. You specify the path of the image and alternate text and you are done. <body> <img src=”/images/logo.png” … Read more

Zsh vs Bash – Which one you should be using?

Z-shell (or Zsh) is an interactive Bourne-like shell and a powerful command-line tool for scripting language including shell scripting. It’s known for its abundance of interactive and customizable features. Zsh users often cite its many advantages and credit it for its efficiency and extensive customization. Bash and zsh are both powerful shells and share many … Read more

bad SQL grammar [SELECT JOB_INSTANCE_ID, JOB_NAME from BATCH_JOB_INSTANCE where JOB_NAME = ? and JOB_KEY = ?] Spring Boot / Spring Batch error. How to fix?

Reason for this error : Spring Boot / Spring Batch needs default tables where it can track the batch job related information. If the tables are not available in the database, we need to allow Spring to create them. To configure this please add the following line in application.properties: If this doesn’t work, you can … Read more