Skip to content

Instantly share code, notes, and snippets.

View hghazal's full-sized avatar

Hecham Ghazal hghazal

  • Toronto, Canada
View GitHub Profile
[
{
"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",
@hghazal
hghazal / keybase.md
Last active February 27, 2017 14:46

Keybase proof

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:

@hghazal
hghazal / DropboxIgnore.md
Created March 6, 2017 18:54 — forked from idleberg/DropboxIgnore.md
Ignore node_modules/bower_components folders in your Dropbox

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
@hghazal
hghazal / DropboxIgnore.md
Created March 6, 2017 18:54 — forked from idleberg/DropboxIgnore.md
Ignore node_modules/bower_components folders in your Dropbox

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
@hghazal
hghazal / ffmpeg_mkv_to_mp4.sh
Created October 9, 2017 06:09
convert mkv to mp4
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"' _{} \;
@hghazal
hghazal / install_ffmpeg.bash
Last active December 17, 2019 03:36
Install ffmpeg with all the codec on mac
brew install ffmpeg --with-libass --with-openssl --with-x265 --with-libvorbis --with-libvpx --with-theora