Skip to main content

Posts

Showing posts from May, 2022

Hack the Google Chrome Dino game

  Hack the Google Chrome Dino game Just for Fun Hello there, I’m going to show you how to hack Google Chrome dino’s game. If you don’t have an internet connection you can play a Dino game. Just for fun with this game. You can start the game by pressing the “space bar”, once you do it starts the game and will begin running. The main target avoids the object coming you away which means You should avoid whatever coming to the object such as birds, Cactus. Once you get to hit the object, the game is over. I give you tips to allow your dino game to continue the play the game without any fear. Follow the Steps, Right-click anywhere to screen and select the “Inspect” option 2. After you click the ” Inspect” you can show DevTool. Select the “console” tab in Chrome DevTool 3. Once you click the Console tab paste the following command after that press the “Enter Key” Runner.prototype.gameOver = function(){} if you are interesting, have fun with the Google Chrome Dino game. Stay on ...

You simply understand Java Objects and Classes

A Trip to Objects and Classes You simply understand Java Objects and Classes Photo by Thought Catalog on  Unsplash Hello everyone, In this article, you will learn about Java Objects and Classes. What is an Object in Java? if we consider the real world, we can find objects around us. Examples, computer, car, dog, human, book, bag etc. All these objects have states and behavior. if we consider a dog's state is colour, name, breed and its behaviour is barking, running, wagging. Then Object is an entity that has state and behaviour. An object has an identity. it’s typically implemented in Unique id. An Object is an instance of the class . A class template from which objects are created. What is a Class in Java? A class is a blueprint from which individual objects are created. Syntax of the class class <class_name>{    field;    method; } Thinking about Objects Photo by Jonathan Cosens Photography on  Unsplash Instance Variables of J...

Amazing Google Chrome Extension Tool

  Faster away to select and copy from text Videos & Images Amazing Google Chrome Extension Tool                                      Photo by Nathana Rebouças on  Unsplash Hello Everyone, you will be amazed at what you can do with the  BlackBox Google Chrome extension tool. Let’s see how gonna it will help. First, you add the Blackbox Chrome Extension tool. Click the Add to Chrome Button . After you add this tool, you can see BlackBox Tool on the top bar. if you don’t have to see BlackBox Tool on the bar, you can see it in the Google Chrome extension section. after that click the pin icon. you will have the ability to click this extension, Select a text inside a video. after that copy it and you can paste it into a text editor. see this video This is an amazing extension that selects and copies text from anything.

The basics you need to know about Java Programming Language

  JAVA- Beginners need to know The basics you need to know about Java Programming Language Hello everyone, you are new to Java, This article is for you. This article great place to start learning JAVA. Let’s start What is the JAVA? Java is a Programming Language and platform-independent. It’s friendly syntax, object-oriented and has strong memory management and portability. The history of Java is very interesting. Read the history of Java by following the Link Click here —  History of Java . Platform : Any hardware or software environment in which a program runs is known as a platform. Java code can run on a variety of platforms, such as Windows, Linux, Sun Solaris, Mac OS, and others. You can understand more about it. Let’s see H ow the way Java Works Step 1 : Create a source code file. (with the .java extension) Source code means to hold on to class definition. class represent a piece of the program. the class has one or more methods. for example, In the student clas...