Skip to content

Instantly share code, notes, and snippets.

View dguardia's full-sized avatar
💭
Setting up my laravel Docker -My jupyter Docker ....all about Docker!

David Guardia dguardia

💭
Setting up my laravel Docker -My jupyter Docker ....all about Docker!
View GitHub Profile
@dguardia
dguardia / ffmpeg-install.sh
Created May 31, 2019 13:39 — forked from clayton/ffmpeg-install.sh
Install FFMPEG on OS X with HomeBrew to convert Mp4 to WebM
# Installation
brew install ffmpeg --with-vpx --with-vorbis --with-libvorbis --with-vpx --with-vorbis --with-theora --with-libogg --with-libvorbis --with-gpl --with-version3 --with-nonfree --with-postproc --with-libaacplus --with-libass --with-libcelt --with-libfaac --with-libfdk-aac --with-libfreetype --with-libmp3lame --with-libopencore-amrnb --with-libopencore-amrwb --with-libopenjpeg --with-openssl --with-libopus --with-libschroedinger --with-libspeex --with-libtheora --with-libvo-aacenc --with-libvorbis --with-libvpx --with-libx264 --with-libxvid
# Easy Peasy
ffmpeg -i video.mp4 video.webm
@dguardia
dguardia / .block
Created March 29, 2018 20:28
Pie charts labels
license: mit
@dguardia
dguardia / .block
Last active March 29, 2018 20:28
Pie charts labels
license: mit
@dguardia
dguardia / .block
Created March 29, 2018 20:15
Pie charts labels
license: mit
@dguardia
dguardia / docker-destroy-all.sh
Created April 4, 2017 03:29 — forked from JeffBelback/docker-destroy-all.sh
Destroy all Docker Containers and Images
#!/bin/bash
# Stop all containers
docker stop $(docker ps -a -q)
# Delete all containers
docker rm $(docker ps -a -q)
# Delete all images
docker rmi $(docker images -q)
<!DOCTYPE html>
<html ng-app="app">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0-rc.3/angular.min.js"></script>
<script type="text/javascript">
var app = angular.module('app',['ng']);
app.controller('MainCtrl', function($scope){
});
@dguardia
dguardia / index.html
Created October 23, 2013 14:52
mygits
<html>
<head>
<title>Trying GitHub</title>
</head>
<body>
<h1>Here the body</h1>
</body>
</html>