- v.1.0.0 — создан проект
- v.2.0.0 — сделан дизайн
- v.2.5.5 — создан классический файл
readme.js
- v.2.5.0 — улучшен дизайн и добавлены комментарии
- v.3.0.0 — добавлена кнопка
info
в просмотр
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
@echo off | |
pause | |
color 0a | |
:a | |
echo %random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random% | |
goto a |
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
//выполняем после загрузки | |
window.onload = function() { | |
//в переменную записываем localStorage данные | |
let docs = localStorage.getItem('docs'); | |
if (docs == null) { | |
//если их нету, создаём их на следующий раз: | |
localStorage.setItem('docs', docs); | |
alert('Ты тут впервые?'); | |
} else { | |
//если они есть: |
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
.day { | |
background-color: #90b2be; | |
} | |
.dni { | |
background-color: #32819d; | |
} | |
.night { | |
background-color: #203f68; | |
} |
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
//создаём функцию | |
function timebg() { | |
//в переменную записываем час | |
var currentTime = new Date().getHours(); | |
//проверяем какой сейчас час(от 7 до 10) | |
if (7 <= currentTime&¤tTime < 10) { | |
//добавляем стиль | |
document.body.className = "day"; | |
//проверяем какой сейчас час(от 11 до 22) | |
} else if (11 <= currentTime&¤tTime < 22) { |
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
<section class="pen"> | |
<div class="panel top"> | |
<h1>Animate: background-position</h1> | |
</div> | |
<div class="panel bottom"> | |
<h1>Animate: translate3d</h1> | |
<div class="scroll"></div> | |
</div> | |
</section> |
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
# U U SSSSS EEEEEE RRRRR | BBBBB OOOOO TTTTTTTTT | |
# U U S E R R | B B O O T | |
# U U SSSS EEEEEE RRRRR | BBBBB O O T | |
# U U S E R R | B B O O T | |
# UUUU SSSSS EEEEEE R R | BBBBB OOOOO T | |
from pyrogram import Client, filters | |
from pyrogram.errors import FloodWait | |
from pyrogram.raw import functions |
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 pyrogram import Client, filters | |
from pyrogram.errors import FloodWait | |
from pyrogram.raw import functions | |
from pyrogram.types import ChatPermissions | |
import time, requests, json | |
from time import sleep | |
import random | |
app = Client("my_account") |
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 pyrogram import Client, filters | |
from pyrogram.errors import FloodWait | |
from pyrogram.raw import functions | |
from pyrogram.types import ChatPermissions | |
import time, requests, json | |
from time import sleep | |
import random | |
app = Client("my_account") |