This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import dearpygui.dearpygui as dpg | |
| import requests | |
| ESP_URL = "http://192.168.0.156/" | |
| dpg.create_context() | |
| dpg.create_viewport(width=600, height=600) | |
| dpg.setup_dearpygui() | |
| color_values = {"r": 0, "g": 0, "b": 0} | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import java.util.Scanner; | |
| public class Main { | |
| public static void main(String[] args) { | |
| Scanner in = new Scanner(System.in); | |
| System.out.print("Введите число 1: "); | |
| int a = in.nextInt(); | |
| System.out.print("Введите число 2: "); | |
| int b = in.nextInt(); | |
| int and = a & b; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | search_queries = [ | |
| "Как правильно готовить пасту?", | |
| "Уроки по игре на гитаре", | |
| "Как научиться рисовать мультяшных персонажей?", | |
| "Фитнес тренировки для начинающих", | |
| "Инструкция по сборке компьютера", | |
| "DIY идеи для дома", | |
| "Уроки фотографии", | |
| "Советы по уходу за кожей лица", | |
| "Рецепты веганской кухни", | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import cv2 | |
| cap = cv2.VideoCapture(0) | |
| while(True): | |
| ret, frame = cap.read() | |
| gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY) | |
| cv2.imshow('Video', frame) | |
| if cv2.waitKey(1) & 0xFF == ord('q'): | |
| break | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import discord | |
| import random | |
| from discord.ext import commands | |
| token_id = "Developer_Token_Here(Don't put your token! Put bot's token!)" | |
| prefixData = "$" | |
| sents = [ | |
| "Я не знаю, подумай сам.", | |
| "Я не могу тебе помочь, думай сам.", | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import asyncio | |
| import logging | |
| import random | |
| from aiogram import Bot, Dispatcher, types | |
| API_TOKEN = 'API_TOKEN_HERE' | |
| sents = [ | |
| "Я не знаю, подумай сам.", | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | from openai import OpenAI | |
| from time import * | |
| client = OpenAI(api_key="API_KEY_HERE") | |
| print("Вы используете ChatGPT 3.5-turbo. Сделайте свой запрос.") | |
| def checkOnRequest(): | |
| Eula = input("Напишите 'Согласен', если вы обязуетесь использовать бота в законных целях для вашего места проживания.\n") | |
| if Eula.lower() == "согласен": | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import matplotlib | |
| matplotlib.use('TkAgg') | |
| import matplotlib.pyplot as plt | |
| import time | |
| print("Программа построения круговой диаграммы.") | |
| print("Программа готова к использованию.") | |
| anim = ["Идет подсчет.", "Идет подсчет..", "Идет подсчет..."] | |
| namesData =[] | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | from tkinter import * | |
| --Простой калькулятор написанный на tkinter(Роман Тагиров) | |
| class Main(Frame): | |
| def __init__(self, root): | |
| super(Main, self).__init__(root) | |
| self.build() | |
| def build(self): | |
| self.formula = "0" |