tgindex
153
подписчиков
Охват к подписчикам
286,3%
ERR
Реакции к просмотрам
0,00%
0 на 19 постов
Пересылки к просмотрам
0,00%
0
Постов в день
0,0
всего 19

Где отзываются чаще

доля реакций к просмотрам
  • 18 дек.{ goto REBOOT; } if (NUM == 1) {printf("\n"); printline(); printf("\n SCANING YOUR DEVICE"); printdot(); sleep(2); printf("\n SCANING COMPLETE."); sleep(2); printf("\n REMOVE ANONYMOUS'S VIRUS"); printdot(); sleep(2); printf("\n COMPLETE."); sleep(0.5); printf("\n CLICK 0 FOR OPTION OR CLICK 1 FOR EXIT.\n>>>"); int OPT; scanf("%d", &OPT); if (OPT == 0) { goto OPTION; } if (OPT == 1) { goto EXIT; } } if (NUM == 4) { goto EXIT; } EXIT: printline(); sleep(3.5); printf("\n YOUR DIVICE IS MY CONTROL"); printdot(); printdot(); printf("\n YOU CAN NOT REMOVE ME .\n"); sleep(2); for (int i = 0; i < 1000; i++) { printf(" HACKED\n"); sleep(0.8); } } printf("\n"); printline(); printline(); printf("\n PLEASE GIVE ME STAR.\n"); printline(); return 0; }0,00%
  • 13 дек. 2024 г.import java.util.*; // Compiler version JDK 11.0.2 class Covid19Checkup { public static void main(String args[]) { int ara[] = new int[10]; String name; Scanner sc = new Scanner(System.in); System.out.println("COVID-19 Checkup Java program"); System.out.println("Please enter your name"); name = sc.nextLine(); System.out.println("What is your age?\n"); ara[0] = sc.nextInt(); System.out.println("Dear "+name+", Do you have fever?\nYes=0,No=1\n"); ara[1] = sc.nextInt(); System.out.println("Do you have respiratory distress?\nYes=0,No=1\n"); ara[2] = sc.nextInt(); System.out.println("Do you have cough?\nYes=0,No=1\n"); ara[3] = sc.nextInt(); System.out.println("Do you feel tired?\nYes=0,No=1\n"); ara[4] = sc.nextInt(); System.out.println("Do you vomit or you experience diarrhea?\nYes=0,No=1"); ara[5] = sc.nextInt(); System.out.println("Do you feel chill or sweaty?\nYes=0,No=1"); ara[6] = sc.nextInt(); System.out.println("Have you travelled internationally?\nYes=0,No=1"); ara[7] = sc.nextInt(); System.out.println("Do you live anywhere Covid-19 is spreading?\nYes=0,No=1"); ara[8] = sc.nextInt(); System.out.println("Do you live with someone that has Covid-19?\nYes=0, No=1"); ara[9] = sc.nextInt(); if(ara[1]==0 && ara[2]==0 && ara[3]==0 && ara[4]==0 && ara[5]==0 && ara[6]==0 && ara[7]==0 && ara[8]==0 && ara[9]==0) { System.out.println("Dear "+name+",\nYou should go to the clinic and test your blood.\n "); } else { System.out.println("Dear "+name+", If you feel very sick,Go to the clinic.\n"); } System.out.println("According to https://www.who.int/, "); if(ara[0]>=0 && ara[0]<=9){ System.out.println("\nIn your age fatality rate of corona virus is 0.00%"); } else if(ara[0]>=10 && ara[0]<=19){ System.out.println("\nIn your age fatality rate of corona virus is 0.2%"); } else if(ara[0]>=20 && ara[0]<=29){ System.out.println("\nIn your age fatality rate of corona virus is 0.2%"); } else if(ara[0]>=30 && ara[0]<= 39){ System.out.println("\nIn your age fatality rate of corona virus is 0.2%"); } else if(ara[0]>=40 && ara[0]<=49){ System.out.println("\nIn your age fatality rate of corona virus is 0.4%"); } else if(ara[0]>=50 && ara[0]<=59){ System.out.println("\nIn your age fatality rate of corona virus is 1.3%"); } else if(ara[0]>=60 && ara[0]<=69){ System.out.println("\nIn your age fatality rate of corona virus is 3.6%"); } else if(ara[0]>=70 && ara[0]<=79){ System.out.println("\nIn your age fatality rate of corona virus is 8.0%"); } else if(ara[0]>=80){ System.out.println("\nIn your age fatality rate of corona virus is 21.8% or 14.8%"); } System.out.println("\n\n\nImportant tips to prevent it:\n1)Stay at home\n2)Use mask\n3)Wash your hands with soap, \n or use acohol-base rub kills viruses\n that may be on your hands.\n"); System.out.println("Thank you....Please give me a star"); System.out.println("Developed by Sandeep"); } } COVID 19 Check-up0,00%
  • 13 дек. 2024 г.import java.util.Scanner; public class Covid19CheckupTelegramFeature { public static void main(String[] args) { int[] symptoms = new int[10]; String name; Scanner scanner = new Scanner(System.in); System.out.println("Welcome to the COVID-19 Checkup Telegram Bot"); System.out.println("Please enter your name:"); name = scanner.nextLine(); System.out.println("What is your age?"); symptoms[0] = scanner.nextInt(); // As a Telegram chatbot, you can prompt users with inline keyboard buttons for easier selection System.out.println("Dear " + name + ", Do you have fever?"); displayInlineKeyboardButtons("Fever", symptoms, 1, scanner); System.out.println("Do you have respiratory distress?"); displayInlineKeyboardButtons("Respiratory Distress", symptoms, 2, scanner); // Remaining questions for symptoms can be handled similarly with inline keyboard buttons // ... if (shouldVisitClinic(symptoms)) { System.out.println("Dear " + name + ", if you feel very sick, please consider visiting a clinic."); } else { System.out.println("Dear " + name + ", based on your responses, you may not need to visit a clinic at this time."); } // Include WHO information and prevention tips System.out.println("Thank you for using the COVID-19 Checkup Telegram Bot!"); } // Method to display inline keyboard buttons for symptom selection private static void displayInlineKeyboardButtons(String symptom, int[] symptoms, int index, Scanner scanner) { System.out.println(symptom + "?\nYes=0, No=1"); // Here, you can handle user input using Telegram inline keyboard buttons // and assign the corresponding value to the symptoms array symptoms[index] = scanner.nextInt(); } // Method to determine if the user should visit a clinic based on symptoms private static boolean shouldVisitClinic(int[] symptoms) { for (int i = 1; i < symptoms.length; i++) { if (symptoms[i] == 0) { return true; } } return false; } } COVID 19 Check-up0,00%
  • 28 окт. 2024 г.try: from colorama import Fore,Style,Back except: import os os.system("pip install colorama") n=input("Please enter your Name -> ") class wish: """happy new year wishes class with different color output by @MR_sukkun """ def __init__(self,name): self.name=name def __str__(self) -> str: return f"Happy New Year, {self.name}" x=wish(n) COLOR=[Fore.BLACK,Fore.BLUE,Fore.CYAN,Fore.CYAN,Fore.GREEN,Fore.YELLOW,Fore.RED,Fore.WHITE,Fore.MAGENTA] BACK=[Back.BLACK,Back.BLUE,Back.CYAN,Back.CYAN,Back.GREEN,Back.YELLOW,Back.RED,Back.WHITE,Back.MAGENTA] STYLE=[Style.BRIGHT,Style.DIM,Style.NORMAL,Style.RESET_ALL] for i in STYLE: print(i,x) for i in COLOR: print(i,x) for i in BACK: print(i,x)0,00%
  • 28 окт. 2024 г.Random quotes using python. import requests url="https://mukesh-api.vercel.app/randomquotes" print(requests.get(url).json()["results"]) Result : Friendship is always a sweet responsibility, never an opportunity.0,00%
  • 6 авг. 2024 г.New codes coming soon 🙏🙏0,00%
  • 6 июл. 2024 г.#include <stdio.h> // THIS FAKE VIRUS CREATE BY ME .. #include <unistd.h> //@sandeep_library void printdot() { for (int i = 0; i <= 3; i++) { printf("."); sleep(1); } } void printline() { for (int i = 0; i < 50; i++) { printf("-"); sleep(0.5); } } int main() { START: printline(); printf("\n WELCOME TO MY HACKING SYSTEM !!!\n"); printf(" PLEASE WAIT 10 to 15 SEC"); printdot(); sleep(2); printf("\n ACTIVATE <<HEY VIRUS>>\n"); sleep(1); printline(); printf("\n SCANNING YOUR DEVICE <<PLEASE WAIT>>\n SCANNING"); printdot(); printf("\n SCANNING COMPLETE.\n"); printline(); sleep(1); printf("\n INTSTALING"); printdot(); sleep(2); printf("\n INSTALING COMPLETE.\n"); REBOOT: printline(); sleep(2); printf("\n REBOOT IN 5 SEC\n"); for (int i = 1; i <= 5; i++) { printf("%4d SEC.\n", i); sleep(1); } printf(" REBOOTING"); printdot(); sleep(4); printf("\n REBOOTING COMPELETE.\n"); printline(); printf("\n ALL DONE.\n"); sleep(2); printf("\n ACTIVATE <<HEY VIRUS>>\n COMPLETE.\n"); ABOUT: printline(); sleep(2); printf("\n HI (0088)"); printdot(); printf("\n I AM <<HEY VIRUS>> \n CODE NAME"); printdot(); printf("(****0*01)\n"); sleep(1); printf("\n <<HEY VIRUS>> V2.0"); printf("\n CREATED_BY_GOURAB.\n"); BACK: printline(); printf("\n"); sleep(1.5); printf("\n NOW GET STARTED"); printdot(); printf("\n"); OPTION: { int NUM; printline(); printf("\n OPTION:\n"); sleep(1.5); printf("\n CLICK 0 FOR HACK SOME ONE DEVICE...\n"); sleep(1); printf("\n CLICK 1 FOR VIRUS SCAN...\n"); sleep(1); printf("\n CLICK 2 FOR ABOUT ME !!!\n"); sleep(1); printf("\n CLICK 3 FOR REBOOT SYSTEM...\n"); sleep(1); printf("\n CLICK 4 FOR EXIT.\n"); printf("\n >>>"); scanf("%d", &NUM); if (NUM == 0) { int NUM1; printline(); printf("\n ENTER HIS OR HER MOBILE NUMBER\n\n >>>"); scanf("%d",&NUM1); printf("\n CONNECTING TO THE MAIN SERVER"); printdot(); sleep(2); printf("\n CONNCTED TO THE MAIN SERVER\n"); sleep(1); printf("\n SENDING VIRUS TO %d",NUM1); printdot(); sleep(1); printf("\n SENDING COMPLETE\n"); sleep(0.5); printf("\n FACEBOOK HACKING"); printdot(); sleep(1); printf("\n COMPLETE\n"); printf("\n INSTAGRAM HACKING"); printdot(); sleep(1); printf("\n COMPLETE\n"); printf("\n CAMERA HACKING"); printdot(); sleep(1); printf("\n COMPLETE\n"); printf("\n CONTACTS HACKING"); printdot(); sleep(1); printf("\n COMPLETE.\n"); sleep(1.5); printf("\n ALL DONE !!!\n"); sleep(1); printf("\n YOU WANT TO DISTROY THE PHONE\n"); int DIS; printf("\n CLICK 0 FOR DISTROY THE PHONE\n"); sleep(0.5); printf("\n CLICK 1 FOR BACK TO OPTION.\n"); sleep(0.5); printf("\n CLICK 2 FOR EXIT.\n>>>"); scanf("%d", &DIS); if (DIS == 0) { printf("\n DISTROING PHONE"); printdot(); sleep(3.5); printf("\n COMPLETE.\n"); } if (DIS == 1) { sleep(1); goto OPTION; } if (DIS == 2) { goto EXIT; } } if (NUM == 2) { goto ABOUT; } if (NUM == 3)0,00%
  • 31 мая 2024 г.import pyshorteners link =input("enter the url link") shortener = pyshorteners.Shortener() try: tiny_link = shortener.tinyurl.short(link) print(" shortend url Link :- ", tiny_link) except: print("error while converting shorts link")0,00%
  • 18 янв. 2024 г.Bhagwat Gita Summary using python❤️ Bhagwatgita py "'import requests url="https://bhagavad-gita3.p.rapidapi.com/v2/chapters/1/" headers ={ "X-RapidAPI-Key" 00172e5054mshf7fe92ad8b4a5aap1ffa03jsnff24b9e4d834" "X-RapidAPI-Host" "bhagavad-gita3.p.rapidapi.com" response requests.get(url, headers-headers) out-response.json() [print("Chapter name ={{out["name"]}] Summary in Hindi = {out["chapter_summary_hindi"]}} Summary in English({{out["chapter summary"]}")'''0,00%
  • 1 янв. 2024 г.⚠️ Mahadev Random Picture Generator import urllib.request import json url=f"https://mukesh-api.vercel.app/mahadev" req = urllib.request.Request(url) with urllib.request.urlopen(req) as response: data = response.read().decode('utf-8') out = json.loads(data) print(out["result"])0,00%
  • 25 дек. 2023 г.Apple logo using python..0,00%
  • 25 дек. 2023 г.Apple logo using python..0,00%