How to install Java/JDK 21.0 on Mac M1, M2, MacBook Pro on macOS Ventura || Set Java_Home in Mac OS Ventura

install_java_jdk_on_macos_ventura

In this tutorial session we will learn easy way to install JDK on MacOS Ventura and we will see how to setup java_home environment variable here in Mac OS Ventura. Step 1: First we will download and install compatible JDK version for Mac OS Ventura.(Mac M1 and M2 are ARM-based CPU architecture)Link: https://www.oracle.com/java/technologies/downloads/#jdk21-mac Step 2: … Read more

Setting up GCC with MinGW-w64 in Visual Studio Code on Windows 11 | C & C++ Programming

GCC with MinGW-w64 in Visual Studio Code on Windows 11

In this tutorial: Let’s begin: Step 1: Open Visual Studio Code and install this plugin-C/C++ extension for VS Code Step 2: Installing the MinGW-w64 toolchain :– Downloading latest version of MinGW-w64, which gives up-to-date native builds of GCC, MinGW-w64, and other helpful C++ tools and libraries.– We will get the necessary tools to compile the … Read more

Working with Python in IntelliJ IDEA : The Complete guide for Beginners

python setup in intellij idea community edition

In this tutorial we will learn to setup python development environment in IntelliJ IDEA community edition from scratch. Python support in IntelliJ IDEAIntelliJ IDEA provides the following features to help you work with Python: Note:Supported version of python in IntelliJ Idea is:Python 2: version 2.7Python 3: from the version 3.6 up to the version 3.12 … Read more

How to setup JavaFX development Environment with JDK 21.0 in Eclipse on Windows 11? (Updated 2024) || Full explanation for beginners

javafx setup in eclipse with jdk 21

In this tutorial, i am going to show you how to setup JavaFX development environment with latest JDK 21.0 inside eclipse. I have explained every thing in very easy manner for beginners, this video will give you complete idea to setup javafx with jdk 21 in lastest eclipse IDE. Let’s begin.First i have downloaded following … Read more

PowerDirector Mod Apk Download For Android

Download the PowerDirector Mod APK for Android: Enhance your video editing skills on Android by downloading the PowerDirector Mod APK. Video editing is a cool skill, and with the right tools, you can make it even better. PowerDirector is a top-notch tool, offering many features found in pricey professional computer video editing programs. The best … Read more

How to Fix ‘javac’ is not recognized as an internal or external command in Windows 11?

This error message, “javac is not recognized as an internal or external command,” may appear if you are just attempting to launch a Java program. When there is only JRE is found and JDK is not found on your system, this error message appears. The good news is that it’s not too hard to fix … Read more

How to increase views on YouTube : 9 Tips to get Success, Try today.

Increasing your YouTube video views requires a combination of quality content, optimization, promotion, and how much audience watching your videos that is called engagement. Here I am showing you how to increase views on your YouTube videos: 1. Create Quality Content: The core foundation of success in YouTube is creating engaging and valuable content. Ensure … Read more

FFmpeg: How to add a color border to a video?

In this tutorial, I will show you how to add a color border to a video using the FFmpeg command. ffmpeg -i myinput.mp4 -filter_complex “[0]pad = w=40+iw : h=40+ih: x=20 : y=20 : color=#FF0000” -movflags +faststart output.mp4 w=40+iw h=40+ih x=20:y=20 is used for if x=0,y=0 so the border is not shown on the left and … Read more

FFmpeg | Concatenate multiple videos with different transitions | Video Transition Effects Part #2

In this tutorial, we will learn to concatenate multiple videos with different types of GL transitions. Prerequisites: 1) node js 2) ffmpeg-concat module FFmpeg: Video Transitions Effects – Part #1 Step 1: In this step, we will write a script to concatenate multiple videos with different kinds of transitions. Create a file with .js extension … Read more