ffmpeg -r 24 -pattern_type glob -i '*.JPG' -s hd1080 -vcodec libx264 timelapse.mp4
-r 24
- output frame rate-pattern_type glob -i '*.JPG'
- all JPG files in the current directory-s hd1080
- 1920x1080 resolution
#include <stdio.h> | |
#include <limits.h> | |
#include <float.h> | |
#include <math.h> | |
#define STRFY(A) #A | |
#define SIZEOFI(T,MIN,MAX) printf("%-20s\t%5zu\t%20lld\t%20llu\n", STRFY(T), sizeof(T), (long long)MIN, (unsigned long long)MAX); | |
#define SIZEOFFP(T,MIN,MAX,RES) printf("%-20s\t%5zu\t%20Lg\t%20Lg\t%20Lg\n", STRFY(T), sizeof(T), (long double)MIN, (long double)MAX, (long double)RES); | |
void main() { |
#!/usr/bin/env python3 | |
import os | |
import sys | |
import subprocess | |
import re | |
import argparse | |
import hashlib | |
args = None |
while true; do | |
(echo -e 'HTTP/1.1 200 OK\r\n'; echo -e "\n\tMy website has date function" ; echo -e "\t$(date)\n") | nc -lp 8080; | |
done |
#!/usr/bin/env python3 | |
from bs4 import BeautifulSoup | |
import requests | |
import re | |
import json | |
import datetime | |
urlbase = 'https://administracion.gob.es/pagFront/empleoBecas/empleo' | |
url = urlbase + '/buscadorEmpleoAvanzado.htm' |
#!/bin/bash | |
# Source this file | |
# The output length follows an expotential sequence, the same as the computation time | |
function bex { outstr=$1; incount=$2; while [[ ! incount -eq 0 ]]; do outstr=$(echo "$outstr" | base64 -w0); (( incount-- )); done; echo $outstr; } | |
function bdx { outstr=$1; incount=$2; while [[ ! incount -eq 0 ]]; do outstr=$(echo "$outstr" | base64 -d); (( incount-- )); done; echo $outstr; } |
CROSS_COMPILE ?= arm-unknown-eabi | |
AOPS = --warn --fatal-warnings | |
COPS = -Wall -Werror -O0 -nostdlib -nostartfiles -ffreestanding | |
callasm.bin: print.s callasm.c | |
$(CROSS_COMPILE)-as $(AOPS) print.s -o print.o | |
$(CROSS_COMPILE)-cc -c $(COPS) callasm.c -o callasm.o | |
# Caution! The order of the object files is critical | |
$(CROSS_COMPILE)-ld callasm.o print.o -o callasm.elf |
# set to 1 to enable 64bits target by default (32bit is the default) | |
set $64BITS = 1 | |
# Allows the prettyprinting of structs | |
set print pretty on | |
set confirm off | |
set verbose off | |
set output-radix 0x10 |
#!/bin/bash | |
mkdir -p ~/dev/i386 | |
cd ~/dev/i386 | |
# Vanilla | |
mkdir vanilla | |
cd vanilla | |
## Crosstool |
# State flow diagram | |
https://i.stack.imgur.com/vGuay.png | |
# Delete containers | |
docker rm $(docker ps -a -q) | |
# List containers | |
docker container ls -a | |
# Delete images |