Skip to content

Instantly share code, notes, and snippets.

@Seawed
Seawed / simple_Calendar.php
Created March 29, 2018 08:59
simple calendar on PHP(without css and js).
<html>
<title>
Simple Calendar
</title>
<?php
If (!empty ($_GET['y']) or !empty($_GET['month'])) {
$dateYear=$_GET['y'];
$nowYear = $_GET['y'];
$nowYear2 = $_GET['y'];
$nowMonth = $_GET['month'];
@Seawed
Seawed / readme.md
Last active May 19, 2020 08:52 — forked from alksily/readme.md
Debian Nginx+PHP7+MySQL+other(Redis)

Only for self-dev

Made to fast-easy create server from vscale.io Create Ubuntu 16.04 64bit

Update:
apt-get update

Optional:

@Seawed
Seawed / text-to-video.py
Created April 1, 2023 19:56
simple app to convert word[or text] to video.
import cv2
from moviepy.editor import *
import numpy as np
# Words - массив из слов на английском. Каждое слово - 1 кадр.
words = ['All', 'what', 'you', 'want', 'YOU', 'can', 'do', 'it']
# Создание изображений с надписями
images = []
for word in words: