Skip to content

Instantly share code, notes, and snippets.

View SeryiBaran's full-sized avatar
🐒
жоски

SeryiBaran SeryiBaran

🐒
жоски
View GitHub Profile
@SeryiBaran
SeryiBaran / README.md
Created November 5, 2022 18:02
SeryiBaran

Тут почти ничего не будет публиковаться. Всё лежит на github.com =))

@SeryiBaran
SeryiBaran / index.html
Created May 15, 2022 16:49
Hello from VSCode extension
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<p>Hello, World!</p>
@SeryiBaran
SeryiBaran / index.html
Created April 23, 2021 18:08
Стартовый шаблон HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>Test</title>
</head>
@SeryiBaran
SeryiBaran / py.py
Last active August 8, 2021 13:40
Python Таймер
import time
import pygame
import os
pygame.mixer.init()
song = pygame.mixer.Sound("file.mp3")
seconds = int(input("Сколько секунд ждать: "))
for i in range(1, seconds+1):
time.sleep(1)
os.system("cls")
print("Таймер поставлен на", seconds)
@SeryiBaran
SeryiBaran / index.html
Created April 23, 2021 17:33
link css
<link rel="stylesheet" href="css/style.css">