Bring them into a common naming format (ordered by date):
jhead -n%Y-%m-%d.%H-%M-%S *.JPG
Create a timelapse video out of those images:
<?php | |
/* | |
Script that cleans up old builds of all repos of a drone server. | |
Dependencies: | |
$ # having PHP and composer installed | |
$ composer require "guzzlehttp/guzzle=^6.3" |
let parent = document.querySelectorAll('[class*="matrix__list"]')[0]; | |
if (parent) { | |
document.querySelectorAll('[class*="status_number__failure"]').forEach(item => parent.prepend(item.parentNode.parentNode.parentNode)); | |
} | |
var parent = document.querySelectorAll('[class*="matrix__list"]')[0]; | |
if (parent) { | |
document.querySelectorAll('[class*="status_number__failure"]').forEach(item => parent.prepend(item.parentNode.parentNode.parentNode)); | |
} |
<?php | |
$branchesOutput = shell_exec('git branch | egrep -v "^\\*"'); | |
$branches = explode("\n", $branchesOutput); | |
foreach ($branches as $branch) { | |
$branch = trim($branch); | |
if ($branch === '') { | |
continue; | |
} |
<!doctype html> | |
<!-- http://taylor.fausak.me/2015/01/27/ios-8-web-apps/ --> | |
<html> | |
<head> | |
<title>iOS 8 web app</title> | |
<!-- CONFIGURATION --> |
Ubuntu 16.04 (xenial): 7.0 https://packages.ubuntu.com/xenial/php | |
Debian 9 (stretch): 7.0 https://packages.debian.org/stretch/php | |
SUSE Linux Enterprise Server 12: 7.0 https://scc.suse.com/docs/lifecycle/sle/12/modules (Web and Scripting Module) | |
CentOS/Red Hat 7: 5.4 http://mirror.centos.org/centos/7/os/x86_64/Packages | |
CentOS/Red Hat 7 with RHSCL: 7.1 https://developers.redhat.com/products/softwarecollections/updates/ |
apt install golang-go | |
export GOPATH=$HOME/go | |
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin | |
mkdir ~/go | |
git clone git://github.com/drone/drone.git $GOPATH/src/github.com/drone/drone | |
cd $GOPATH/src/github.com/drone/drone | |
make deps | |
make gen | |
make build | |
docker build -t drone/drone:0.5 . |
$('[field="amount_usdollar"]') | |
.map(function(index, value){ | |
return $(value) | |
.text() | |
.trim() | |
.replace(',', '') | |
.replace('€',''); | |
}) | |
.toArray() | |
.map(function(value){ |
ssh [email protected] apps:create pad | |
ssh [email protected] mariadb:create pad | |
ssh [email protected] mariadb:import pad < ~/backup.sql | |
ssh [email protected] mariadb:link pad pad | |
ssh [email protected] config:set pad ETHERPAD_SETTINGS=settings.json | |
git clone [email protected]:bright-star/etherpad-lite-heroku | |
cd etherpad-lite-heroku | |
git remote add dokku [email protected]:pad |