Install Java OpenJDK on Windows

Install Java OpenJDK on Windows

Tiempo de lectura: 2 minutos Oracle’s Java version has become a paid service, which compels us to use OpenJDK, the open-source version that allows for a commercial form of Java. In this tutorial, I will show you how to install Java OpenJDK on Windows 10/11. To do this, we go to the website and download it. In my case, we … Read more

Resolve ERROR: JAVA_HOME is not set and no ‘java’ command could be found in your PATH. On Windows.

Resolve ERROR: JAVA_HOME is not set and no ‘java’ command could be found in your PATH. On Windows.

Tiempo de lectura: 2 minutos html Copy code Reading Time: 2 minutes Hello, today we are going to see how we can solve the error: “ERROR: JAVA_HOME is not set and no ‘java’ command could be found in your PATH. Please set the JAVA_HOME variable in your environment to match thelocation of your Java installation.” What is happening is that … Read more

Upload PDF File Using FAST-API

Upload PDF File Using FAST-API

Tiempo de lectura: < 1 minutos Reading time: < 1 minute Hello, today we are going to see how we can upload a PDF file using FAST-API. The first thing we need to do is install python multipart: install python-multipart Once installed, we need to go to our routes file and import this: import shutil Now we create this Route: @app.post("/_pdf", ... Read more

Importing Projects in Eclipse with Different Versions

Importing Projects in Eclipse with Different Versions

Tiempo de lectura: < 1 minutos Reading Time: < 1 minute Reading Time: < 1 minute Importing Projects in Eclipse with Different Versions Photo by luis gomes on Pexels When we want to import projects with packages, classes, etc. from one computer to another with different versions of Eclipse, it can give us an error due to missing libraries or incompatibility ... Read more

Flutter in Docker Compose Container to run in web browser

Flutter in Docker Compose Container to run in web browser

Tiempo de lectura: < 1 minutos Reading time: < 1 minute Hello, today we’re going to see how to use Docker Compose to run Flutter in the web browser of the host machine where Docker is running. The first thing we’re going to do is create the docker-compose.yml file and add this content: version: "3.1" services: flutter: build: context: ./Dockerfile dockerfile: ... Read more

Accordion Component Using HTML, CSS, and JavaScript

Accordion Component Using HTML, CSS, and JavaScript

Tiempo de lectura: 2 minutos Reading Time: 2 minutes Photo by Yan Krukau In the example, I’m showing an accordion component using HTML, CSS, and JavaScript. The accordion has three sections. Each section has a title that can be clicked to show or hide the corresponding content. The code for the example is as follows: <!DOCTYPE html> <html> <head> <style> … Read more

Unable to determine application id: com.android.tools.idea.run.ApkProvisionException: Error loading build artifacts from:

Unable to determine application id: com.android.tools.idea.run.ApkProvisionException: Error loading build artifacts from:

Tiempo de lectura: < 1 minutos Reading time: < 1 minute To solve this error, follow these steps: Go to Android Studio –> File –> Invalidate Caches A window will open. Click on Invalidate and Restart The project will close and reopen. The error will be resolved. I hope this helps. Have a great day! DevCodeLightdevcodelight.com

Using Pexels API with Python

Using Pexels API with Python

Tiempo de lectura: 4 minutos Reading Time: 2 minutes Hello, today we are going to learn how to use the Pexels API to retrieve images directly using Python. The first thing we need to do is obtain a free Pexels API key. Go to the API website: https://www.pexels.com/api/ First, sign in: Now go to your profile and navigate to Image … Read more

Add Github Project to a Jenkins Pipeline

Add Github Project to a Jenkins Pipeline

Tiempo de lectura: 3 minutos Reading time: 3 minutes Hello and welcome, today we are going to learn how we can add a Github project in Jenkins. The first thing we’re going to do is go to our Job created in Jenkins. Now we go to Configure and then Pipeline. We choose Pipeline script from SCM. Now we choose SCM … Read more