Posts

Showing posts from 2025

React For Beginners #1 - Introduction & Environment Setup

Image

PC Shortcut Keys and Useful Tricks for Windows | Viral Tips for Producti...

Image

shortcut key of zoom in excel #exceltricks #shortsvideo

Image

Create Rock Paper Scissors in Java in 6 Minutes

Image
Code import java.util.Scanner; import java.util.Random; public class RockPaperScissors {     public static void main(String[] args) {         Scanner scanner = new Scanner(System.in);         Random random = new Random();                  String[] choices = {"rock", "paper", "scissors"};                  System.out.println("🎮 Rock Paper Scissors Game!");         System.out.print("Enter your choice (rock/paper/scissors): ");         String playerChoice = scanner.nextLine().toLowerCase();                  int computerIndex = random.nextInt(3);         String computerChoice = choices[computerIndex];                  System.out.println("Computer chose: " + computerChoice);        ...

Random Password Generator in Java |Generate Password using Java

Image
CODE  String chars = "jdslkfjsldjjd23423uHKHKHKJDFG34@";        StringBuilder pass = new StringBuilder();        Random random = new Random();        for(int i=0;i<12;i++){            pass.append(chars.charAt(random.nextInt(chars.length())));                    }        txt_passtest.setText(pass.toString()); 

How To Build A Website with Wordpress (Full Tutorial)

Image
#wordpresstutorial #freecourse #website Get up to 20% off your hosting with Hostinger: Premium Web Hosting Everything you need to create your website https://shorturl.at/6zLVI US$ 3.99/mo 25 Websites ~25 000 Visits Monthly 25 GB SSD Storage 400 000 Files and Directories (Inodes) Business Web Hosting Level-up with more power and enhanced features https://shorturl.at/0AhQf US$ 4.99/mo 50 Websites ~100 000 Visits Monthly 50 GB NVMe Storage 600 000 Files and Directories (Inodes) Cloud Startup Optimized for business and eCommerce websites https://shorturl.at/ZNBzN US$ 9.99/mo 100 Websites ~200 000 Visits Monthly 100 GB NVMe Storage 2 000 000 Files and Directories (Inodes) This deal is only available to my audience. Hostinger is a great Wordpress hosting service that I've used for years. You can't go wrong with either option.

SUM Formula in Excel | Add Total Values #shorts #excel

Image

Boost Your Excel Skills: Master the RANDBETWEEN Function for Random Numb...

Image

How to use Scene Builder javafx #installation #use #javafx #scene #buil...

Image

Shortcut to open font settings | #keyboard #typing #tricksShortcut To Ch...

Image

shortcut key to open the on-screen keyboard in windows #shorts #youtubes...

Image

Java Program to Convert a Number to a String | Java Interview Questions ...

Image

Building a Web3 Blockchain Decentralized Application (DAPP) using Node J...

Image

JavaFX animations 🎬 with source code

Image
package javafx_animation; import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.effect.*; import javafx.scene.paint.*; import javafx.scene.shape.*; import javafx.stage.Stage; import javafx.animation.*; import javafx.scene.Group; import javafx.util.Duration; /**  *  * @author wajid  */ public class JavaFX_Animation extends Application {          @Override     public void start(Stage primaryStage) {        Circle circle = new Circle(50);         circle.setFill(new LinearGradient(0, 0, 1, 1, true, CycleMethod.REFLECT,                 new Stop(0, Color.DEEPSKYBLUE), new Stop(1, Color.DARKBLUE)));             DropShadow shadow = new DropShadow(30, Color.DARKBLUE);     shadow.setSpread(0.5);     circle.setEffect(shadow);          Group root = new Group(circle)...

JavaFx Watch application Demo #apple #java

Image

JavaFX Simple Calculator - Design and Code

Image
package sample_calculator; import javafx.application.Application; import javafx.geometry.Insets; import javafx.scene.Scene; import javafx.scene.control.Button; import javafx.scene.control.Label; import javafx.scene.layout.GridPane; import javafx.scene.layout.VBox; import javafx.stage.Stage; /**  *  * @author wajid  */ public class Sample_Calculator extends Application {          private final StringBuilder input = new StringBuilder();     private String currentOpt = "";     private double result = 0;               private Label display;         public static void main(String[] args){        launch(args);    }          @Override    public void  start(Stage primaryStage){        primaryStage.setTitle("Material Java Calculator Demo");             ...

javafx Calculator

  package sample_calculator; import javafx.application.Application; import javafx.geometry.Insets; import javafx.scene.Scene; import javafx.scene.control.Button; import javafx.scene.control.Label; import javafx.scene.layout.GridPane; import javafx.scene.layout.VBox; import javafx.stage.Stage; /**  *  * @author wajid  */ public class Sample_Calculator extends Application {     private StringBuilder inputBuffer = new StringBuilder();     private String currentOperator = "";     private double result = 0;     private Label display;     public static void main(String[] args) {         launch(args);     }     @Override     public void start(Stage primaryStage) {         primaryStage.setTitle("Material java Calculator Demo");         GridPane grid = new GridPane();         grid.setPadding(new Insets(10, 10, 10, 10))...

App UI In Canva | Dashboard UI Design | Desktop APP

Image

JAVA - How To Design Login And Register Form In Java Netbeans (part-2)

Image

JavaFX UI - Premium

Image

How to add libraries to JavaFX Gluon Scene Builder

Image

JavaFx Tutorial Creating Media Player UI in JavaFX With Animation

Image