Posts

Showing posts from August, 2020

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")