Mmrtechmakerinmrtechmaker.hashnode.dev·Sep 19, 2024 · 1 min readHow to add sonar.coverage.jacoco.xmlReportPaths in jenkins for android project ?I was trying to configure jacoco plugin with sonarqube. To do this, we need to provide sonarqube with the path of coverage report xml file generated by the jacoco plugin.we can do this on local environment by adding a sonarqube property as shown be...00
Mmrtechmakerinmrtechmaker.hashnode.dev·Sep 5, 2024 · 1 min readpython pip CERTIFICATE_VERIFY_FAILED , SSLCertVerificationError error on windows with zscalerHi Makers, I was on a windows machine with zscaler corporate proxy.When I cloned a python github repository and did a pip install -e . I got below error : ERROR: Could not install packages due to an OSError: HTTPSConnectionPool(host='files.python...00
Mmrtechmakerinmrtechmaker.hashnode.dev·Sep 3, 2024 · 1 min readHow to setup JUnit in android java project.1) Use appropriate Android gradle plugin version , gradle version. If our project is a new project then we can use the latest Android gradle plugin , latest gradle version.The Android gradle plugin is specified in the project's build.gradle file.The ...00
Mmrtechmakerinmrtechmaker.hashnode.dev·Apr 15, 2023 · 2 min readMerge Algorithm (Kotlin Code)The Problem Statement: You are given two sorted arrays. you need to merge them into a sorted array. https://pl.kotl.in/qkmeIev8e Example : The Elevator Pitch of the solution: First compare the first element of each input array.(2,1) Pick the smaller...00
Mmrtechmakerinmrtechmaker.hashnode.dev·Oct 13, 2022 · 2 min readHow to connect laravel nginx droplet (Digital Ocean) to remote managed postgres database.You can see the connection parameters of the managed database in the digital ocean admin panel. so you copy those params over to the laravel .env file like so : DB_CONNECTION=pgsql DB_HOST=karigaridb-do-user-1.b.db.ondigitalocean.com DB_PORT=25060 DB...00