reminders
-remindme 14m35s @izzi#9752 rd bt all hidebt
-remindme 10m @izzi#9752 rd bt hidebt
-remindme 5m @izzi#9752 rd bt hidebt
-remindme 14m35s @izzi#9752 rd bt all hidebt
-remindme 10m @izzi#9752 rd bt hidebt
-remindme 5m @izzi#9752 rd bt hidebt
#!/usr/bin/env nix-shell | |
#!nix-shell -i bash -p ffmpeg pngquant gifski gifsicle | |
# shellcheck shell=bash | |
set -euo pipefail | |
if [[ "$#" -ne 3 ]]; then | |
echo "Usage: gif.sh <name> <scale> <fps>" | |
exit 1 | |
fi |
Here I used glob style input. I also had to pad because the image height was odd
ffmpeg -framerate 10 -pattern_type glob -i '*.jpg' -vf "pad=ceil(iw/2)*2:ceil(ih/2)*2" out.gif
ffmpeg -framerate 20 -pattern_type glob -i '*.jpg' -vf "scale=trunc(iw/4)*2:trunc(ih/4)*2" out.gif
Apache and Nginx are the two most common web servers in the world. Apache is a classical solution, but due to it's memory consumption (because to it's nature of creating a new process for each request) we will leave it for another occasion. Nginx is very fast and the RAM consumption is very-very low, if we need to serve static pages. But Nginx's configuration is not to easy read and understand, this is why we will try more flexible and clear solution, which is more intended for newbies.
Caddy is written is Go, open-source and pretty fast web server. If you're looking for low-memory solution the Cadd
slmgr /ipk your_license_key
Replace your_license_key
with following volumn license keys according to Windows Edition:
sudo apt-get install tilix
sudo ln -s /etc/profile.d/vte-2.91.sh /etc/profile.d/vte.sh
sudo chmod +x /etc/profile.d/vte.sh
owner: tigefa4u # Your GitHub organization or username, where this repository lives | |
repo: status # The name of this repository | |
runner: [ubuntu-latest] | |
user-agent: tigefa4u | |
sites: | |
- name: Tigefa | |
url: https://tigefa.com | |
icon: https://tigefa.com/favicon.ico | |
- name: Tigefa Neet |
I hereby claim:
To claim this, I am signing this object:
[licenses] | |
# This indicates which are the only licenses that Licensebat will accept. | |
# The rest will be flagged as not allowed. | |
accepted = ["MIT", "MSC", "BSD"] | |
# This will indicate which licenses are not accepted. | |
# The rest will be accepted, except for the unknown licenses or dependencies without licenses. | |
# unaccepted = ["LGPL"] | |
# Note that only one of the previous options can be enabled at once. | |
# If both of them are informed, only accepted will be considered. |