Skip to content

Instantly share code, notes, and snippets.

View marcanuy's full-sized avatar
💭
⌨ on 🔥

marcanuy

💭
⌨ on 🔥
View GitHub Profile
@marcanuy
marcanuy / mkvToMp3.sh
Created February 19, 2016 23:26
Batch file conversors from videos to mp3
#!/bin/bash
for i in *.mkv
do
ffmpeg -i "$i" -ab 128k -vn "${i%mkv}mp3"
done

Keybase proof

I hereby claim:

  • I am marcanuy on github.
  • I am marcanuy (https://keybase.io/marcanuy) on keybase.
  • I have a public key whose fingerprint is A669 4437 28F1 2537 F26F C799 C3DF 3D9B B733 DB5A

To claim this, I am signing this object:

SHELL := /bin/bash
YARN := yarn
VENDOR_DIR = assets/vendor/
JEKYLL := jekyll
PROJECT_DEPS := package.json
.PHONY: all clean install update
all : serve
@marcanuy
marcanuy / gist:fb07bfd03781b885371b09a05a1fb456
Created July 15, 2018 14:38
Trying to resolve a website address with a public DNS
dig www.example.com @8.8.8.8
dig www.example.com @9.9.9.9