I hereby claim:
- I am hghazal on github.
- I am hechamghazal (https://keybase.io/hechamghazal) on keybase.
- I have a public key whose fingerprint is B2F6 496E 32C3 D8B8 6088 7331 7EF5 F92B 0D24 E2F3
To claim this, I am signing this object:
[ | |
{ | |
"identity_business_id": "572dbaef-362c-11e2-b840-00163ead23c4", | |
"owners": [ | |
"97f51ddf-08ce-4393-9c00-5b02f9d3d36e" | |
] | |
}, | |
{ | |
"identity_business_id": "572dbaef-362c-11e2-b840-00163ead23c4", | |
"owners": [ |
[ | |
{ | |
"identity_business_id": "1fc09828-a935-4f08-8a10-eebae08d889f", | |
"owners": [ | |
"f1ca3ec4-d9a4-4a3a-8b2c-b90628b49828" | |
], | |
"collaborators": [] | |
}, | |
{ | |
"identity_business_id": "38ed761f-fda8-4d37-ada8-1da500dc7e1d", |
I hereby claim:
To claim this, I am signing this object:
This script scans your Dropbox (or any given folder) for folders stored in the ignore
array and excludes them from syncing. Makes use of the official Dropbox CLI
I'm a beginner at bash, so all improvements are welcome!
#!/bin/bash
set -e
# SETTINGS
This script scans your Dropbox (or any given folder) for folders stored in the ignore
array and excludes them from syncing. Makes use of the official Dropbox CLI
I'm a beginner at bash, so all improvements are welcome!
#!/bin/bash
set -e
# SETTINGS
find . -name "*.mkv" -exec sh -c 'ffmpeg -i "$0" -vcodec copy -acodec copy "${0%.mkv}.mp4"' {} \; | |
mkdir mkv | |
find . -name "*.mkv" -exec sh -c 'echo "$1" ➜ "${1%.mkv}.mp4"' _{} \; |
brew install ffmpeg --with-libass --with-openssl --with-x265 --with-libvorbis --with-libvpx --with-theora |