Hello, Javaniceday!

  • How to write to S3 bucket from Lambda function

    How to write to S3 bucket from Lambda function

    AWS Lambda functions are a great way to automate certain tasks and processes in the cloud. They can be triggered by events, such as a file upload to an S3 bucket or a message sent to an SNS topic, allowing you to execute some code in response. Read more

  • Configure Prettier in your Node JS project

    Configure Prettier in your Node JS project

    Prettier is a great tool for making your Node.js code look clean and consistent. It is an easy way to eliminate some of the frustrations associated with coding, such as redundant and messy code formatting. With a few simple steps, you can set up Prettier and get your code looking beautiful. Overview Prettier is a Read more

  • Getting some insights from Jacoco html report

    Getting some insights from Jacoco html report

    Jacoco is a tool used to generate detailed reports on code coverage. It is an essential part of a software developer’s toolkit, since it helps determine what portions of a project’s code were actually tested. Jacoco produces HTML reports that display code coverage information in an easy to read format. Context After running the Jacoco Read more

  • pg-promise self signed certificate error in Postgres

    pg-promise self signed certificate error in Postgres

    PG-Promise is a popular Node.js library for interacting with PostgreSQL databases. Unfortunately, it does not always work with self-signed SSL certificates generated by Postgres. If you’re seeing errors related to self-signed certificates when using PG-Promise, here is how to fix the issue. If you are using Node.js with some of these packages: pg-promise or pg Read more

  • How to download a file from Salesforce using Java Rest API

    How to download a file from Salesforce using Java Rest API

    Downloading a file from Salesforce using Java is not as difficult as it may seem. With the right tools and knowledge, you can quickly and easily download any type of file from Salesforce via a Rest API. To get started, you’ll need a few software tools and a few lines of code. Let say we Read more

  • Redirect all requests from HTTP to HTTPS in Node.js and Express

    Redirect all requests from HTTP to HTTPS in Node.js and Express

    When creating web applications in Node.js and Express, it is important that all requests are redirected from an unsecured HTTP connection to a secure HTTPS connection. Read more