I put IPFS on a Raspberry Pi and so should you!
- Raspberry Pi 3 B: $43
- Micro SD card: $11
- [Raspberry Pi charger](ht
#!/bin/sh | |
set -e | |
# TODO: | |
# - check arguments | |
# - check file | |
ffmpeg -i $1 -s hd480 -c:v libx264 -crf 23 -c:a aac -strict -2 `basename $1 .mp4`_480p.mp4 |
#!/bin/sh | |
set -e | |
su gitea | |
cd /home/git/gitea | |
./gitea --version | |
./gitea admin change-password --username your-login --password your-new-super-password | |
exit 0 |
@echo off | |
echo "be careful this can explode your disk" | |
echo "hit enter to continue" | |
pause | |
d: | |
cd d:\docs | |
takeown /r /f * | |
ICACLS * /T /Q /C /RESET | |
pause |
/* | |
c, ansi c, ansi c99, exemplo, faculdade, notas, alunos, ... | |
aceita input pelo teclado ou via argumentos | |
https://groups.google.com/g/ccppbrasil/c/WIJkUFWlcNg |
--- | |
--- license: public domain | |
--- author: denis dos santos silva | |
--- date : 20/05/17 | |
--- lua 5.1+ | |
--- | |
function processa(data) | |
local _c3 = {}; | |
local _c; |