Skip to content

Instantly share code, notes, and snippets.

View danielverissimo's full-sized avatar

Daniel Eduardo danielverissimo

View GitHub Profile
@danielverissimo
danielverissimo / ffmpeg_install.md
Created May 18, 2021 19:00 — forked from jmsaavedra/ffmpeg_install.md
Install FFmpeg on a Linux Box

Install FFmpeg via CLI on Linux box

These steps walk through installing a static binary of any ffmpeg version on to your linux machine. If you want to compile from source, there are several ways to do so. Here's the official guide. Tested and works on an AWS EC2 Ubuntu instance, but should work on any Linux machine.

  • SSH into your instance and become root
@danielverissimo
danielverissimo / gist:24bacff5770cc1e4d58c62cedabea3a4
Created July 17, 2020 01:55 — forked from wacko/gist:5577187
SSH between Mac OS X host and Virtual Box guest

On Mac OS (host):

Shutdown your VM and do:

VirtualBox > Settings > Network > Add (you will get vboxnet0)

On a terminal ifconfig will show you new interface vboxnet0

VM's Settings > System > check "Enable I/O APIC." VM's Settings > Network > Adapter 2 > host-only vboxnet0

@danielverissimo
danielverissimo / lara.md
Last active May 12, 2018 23:04
Laravel

Laravel Knowledged Base

Vuejs multiselect ajax
<multiselect
v-model="filter.additional.analyst_cb_id"
@input="fetchIndexData"
:options="analysts"
track-by="id"
label="name"
:multiple="false"
:searchable="true"
@danielverissimo
danielverissimo / Utilidades
Last active December 18, 2018 02:10
Desenvolvimento, utilidades
FTP/SFTP
Criar FTP/SFTP Mac
http://osxdaily.com/2011/09/29/start-an-ftp-or-sftp-server-in-mac-os-x-lion/
Habilitar ZSH Ubuntu
apt-get install zsh
echo "DEBIAN_PREVENT_KEYBOARD_CHANGES=yes" >> ~/.zshenv
SSHFS Ubuntu
@danielverissimo
danielverissimo / android_tools.txt
Last active December 7, 2016 13:28
Android Tools
* Record Screen Video
adb shell screenrecord /sdcard/example.mp4
* Get File from Device
adb pull /sdcard/exmple.mp4 /path
* Send File to Device