Posts

Dino Cheat Codes

 Dino Cheat Codes  Here is the different codes of the  dino scripts that you shuld use in the inspect (ctrl+shift+I). In the console you should you all the codes when you run the dino game . 1)   Runner.instance_.tRex.config.GRAVITY =0.000000001 2)     Runner.instance_.gameOver=function(){}; 3)     Runner.instance_.setSpeed(1000) 4)     Runner.instance_.tRex.setJumpVelocity(100) ✋✋✋✋✋✋✋✋✋✋✋✋✋😁😁😁😁 you should copy the codes and use it in the console............

Analog clock usng html ,css and javascript

here is the code of the the analog clock ..... here in this site codervinay you see all the things present on the website ........ <! DOCTYPE   html > < html   lang = "en" > < head >     < meta   charset = "UTF-8" >     < meta   name = "viewport"   content = "width=device-width, initial-scale=1.0" >     < title >Analog Clock</ title > </ head > < style >      body {          margin :  0 px ;     }      #mainheader {        margin-top :  0 ;        margin :  auto ;        background-color : black ;        color : white ;        overflow :  hidden ;     ...

snake game using python

Image
 here is the important post that is here  snake game using python .............................................. all the things is available here ...................******************* this is the front view image of the snake game  ....... here is the background image of the game ......... here, is the end image of the game ......... here is the link of the music in the game used  1.link of the music used in the game  2.link of the music used in the game  import pygame import random import os pygame.mixer.init() pygame.init() # Colors white = (255, 255, 255) red = (255, 0, 0) black = (0, 0, 0) blue = (6,255,230) green = (14,255,6) # Creating window screen_width = 900 screen_height = 600 gameWindow = pygame.display.set_mode((screen_width, screen_height)) #Background Image bgimg = pygame.image.load("snake.jpg") bgimg = pygame.transform.scale(bgimg, (screen_width, screen_height)).convert_alpha() first= pygame.image.load("front.jpg") first= pygame.tr...

screenshot using Python

..................code using Python ................  By Vinay Prajapati  here is the code of how we take the screenshot in laptop .... In this we can change the time limit according to our choice. In This after the time is completed , the computer will take the screenshot whatever is opened on the screen . import pyautogui #import the module import time,random a=random.randint(0,1000) print ("wait 3 second for the processing ") print("1 seconds ") time.sleep(1) print("2 seconds ") time.sleep(1) print("3 seconds ") time.sleep(1) screenshot = pyautogui.screenshot() screenshot.save(f"{a}screenshot.jpg")

google website design

Image
Google website homepage in this we make a website that look like a google ....using the html and css and js .... this is the logo of the website that is used in the html coding... so now here is the code of that ....... Google Homepage Gmail Images Sign In Advertising Business About Privacy Terms Settings so here is the picture that is the loookkkkkkk

Site selector app using Notepad

Image
in this coding time we are code too make a app like a browser  using the Notepad my making it in the batch scripting . here is the code 👉👉👉👉 @echo off color 4f title Site Selector by Vinay Prajapati :top echo *************************************************************** echo. echo Site Selector by Vinay Prajapati echo. echo *************************************************************** echo. echo Keys: echo [ 1 ] Google - Search Engine echo [ 2 ] Whatsapp - Messaging Service echo [ 3 ] Yahoo - Search Engine/Mail Server echo [ 4 ] Facebook - Social Networking echo [ 5 ] Terminate Learnings - My Favorite Edcational Channel echo [ 6 ] Terminate Learnings - Blog echo [ 7 ] Weather - Weather echo [ 8 ] WikiHow - A How-To Website echo [ 9 ] YouTube - Online Videos echo [10] Wikipedia - Online Encyclopedia echo. echo [ e ] Exit echo. echo ******************************************************...

python GUI Calculator

In this we are give the code of the calculator making with the gui python library named Tkinter . from tkinter import * root=Tk() root.geometry("270x480") root.title("Calculator by Vinay") root.config(bg="Skyblue1") def click(event): global scvalue text=event.widget.cget("text") if text=="=": if scvalue.get().isdigit(): value=int(scvalue.get()) else: value=eval(screen.get()) scvalue.set(value) screen.update() elif text=="C": scvalue.set("") screen.update() else: scvalue.set(scvalue.get()+text) screen.update() scvalue=StringVar() scvalue.set("") screen=Entry(root,textvar=scvalue,font="lucida 15 bold") screen.pack(fill=X,ipadx=8,pady=10,padx=10) f=Frame(root,bg="grey") b=Button(f,text="9",padx=12,pady=4,font="lucida 10 bold") b.pack(side=LEFT,padx=18,pad...