Please see: https://github.com/kevinSuttle/html-meta-tags, thanks for the idea @dandv!
Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/
#!/bin/bash | |
convert example4.png +flop ref.png | |
cp ref.png flip1.png | |
convert flip1.png +flop flip3.png | |
convert flip3.png +flip flip2.png | |
convert flip2.png +flop flip4.png | |
convert flip3.png flip1.png -rotate 90 -append out1.png |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"/> | |
<title>Triangulation Image Generator - js do it</title> | |
<meta name="Description" content="jsdo.it - share JavaScript, HTML5 and CSS - "/> | |
<meta name="Keywords" content="JavaScript,HTML5,CSS"/> | |
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1"> | |
<!-- | |
python -m SimpleHTTPServer |
Sursa: data.gov.ro | |
https://nces.ed.gov/nceskids/createagraph/ | |
http://phptester.net/ | |
<?php | |
$str ="Castigator^CastigatorCUI^CastigatorTara^CastigatorLocalitate^CastigatorAdresa^TipProcedura^AutoritateContractanta^AutoritateContractantaCUI^NumarAnunt^DataAnunt^Descriere^TipIncheiereContract^NumarContract^DataContract^TitluContract^Valoare^Moneda^ValoareRON^ValoareEUR^CPVCodeID^CPVCode"; | |
$arH = explode("^", $str); | |
echo "CREATE TABLE achizitii (<br>"; | |
foreach($arH as $ah){ |
##################################################################### | |
# | |
# Installation Anaconda Tensorflow PyTorch Jupyter Notebook Ubuntu 18.04 Server Xfce4 VM Virtualbox | |
# https://ftp-stud.hs-esslingen.de/pub/Mirrors/releases.ubuntu.com/18.04/ | |
# | |
# Install | |
# ubuntu-18.04.2-live-server-amd64.iso | |
# sudo apt update && sudo apt upgrate && sudo apt install xfce4 | |
# 20:21 - 20:36 = 15 min ~ |
################################################################ | |
# Installation Anaconda PyTorch Image Classifier 2019-01-03 | |
################################################################ | |
# Install Sublime-Text | |
http://docs.sublimetext.info/en/latest/getting_started/install.html | |
https://www.sublimetext.com/3 | |
https://www.simonewebdesign.it/how-to-install-sublime-text-3-on-debian/ | |
https://download.sublimetext.com/sublime-text_build-3184_amd64.deb |
############################################################## | |
# | |
# Extract plate von video - todo | |
# | |
############################################################## | |
# Steps | |
# download video -> youtube-dl | |
# convert 2 png -> ffmpeg - resize | |
# detect car in png -> yolo3 tf |
--- | |
sudo apt install composer | |
sudo apt install php7.2-intl php7.2-mysql | |
sudo apt install php7.2-mbstring | |
sudo apt install php7.2-xml | |
sudo apt install php7.2-zip |
for z in *.csv; do zip -6 $z.zip $z ; done | |
------------------------------------------------------ | |
sudo apt install composer | |
composer jsonlint php-cli php-cli-prompt php-common php-composer-ca-bundle | |
php-composer-semver php-composer-spdx-licenses php-json-schema php-psr-log | |
php-symfony-console php-symfony-filesystem php-symfony-finder | |
php-symfony-polyfill-mbstring php-symfony-process php7.1-cli php7.1-common |
""" | |
sudo apt install python-pip | |
pip install --upgrade pip | |
pip install scipy | |
pip install numpy | |
pip install opencv-python | |
pip install opencv-contrib-python | |
pip install pytesseract |