Make a Deploy to Netlify button like this:
With this:
<? | |
// | |
// AUTO KEYWORD-BASED FOLLOWER CURATION BOT (by @levelsio) | |
// | |
// File: twitterFollowerCuratorBot.php | |
// | |
// Created: May 2021 | |
// License: MIT | |
// |
/** | |
* Annoying.js - How to be an asshole to your users | |
* | |
* DO NOT EVER, EVER USE THIS. | |
* | |
* Copyright (c) 2011 Kilian Valkhof (kilianvalkhof.com) | |
* Visit https://gist.github.com/767982 for more information and changelogs. | |
* Visit http://kilianvalkhof.com/2011/javascript/annoying-js-how-to-be-an-asshole/ for the introduction and weblog | |
* Check out https://gist.github.com/942745 if you want to annoy developer instead of visitors | |
* |
<div class="flex bg-white max-h-full font-roboto" style="height:580px"> | |
<div class="md:w-1/2"> | |
<div class="flex flex-col justify-center items-center h-full px-16"> | |
<div> | |
<h2 class="text-4xl font-semibold text-gray-900">Build Your New <span class="text-indigo-500">Idea</span></h2> | |
<p class="text-gray-500">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Blanditiis commodi cum cupiditate ducimus, fugit harum id necessitatibus odio quam quasi, quibusdam rem tempora voluptates. Cumque debitis dignissimos id quam vel!</p> | |
</div> | |
<div class="mt-8 flex w-full"> |
.infinite-zoom{ | |
-webkit-animation: zoomSlow 60s infinite linear; | |
-moz-animation: zoomSlow 60s infinite linear; | |
animation: zoomSlow 60s infinite linear; | |
} | |
@-webkit-keyframes zoomSlow { | |
0% { | |
-moz-transform: scale(1); | |
-webkit-transform: scale(1); |
Contents:
Ctrl+A
and Ctrl+C
)alt+click
on the mask icon/thumbnail)for i in **/*.mp4; do
d=$(dirname "$i");
b=$(basename "$i" .mp4);
mkdir -p "720/${d}"
ffmpeg -i "$i" -c:v libx264 -s hd720 "720/${d}/${b}_720.mp4"
done