Skip to content

Instantly share code, notes, and snippets.

View alejandromangione's full-sized avatar

Alejandro F Mangione alejandromangione

View GitHub Profile
Error: spawn solargraph ENOENT
	at notFoundError ...

After see this erro I try to figurate out and here is the soluction for VSCode using WSL

Create a .bat file

solargraph.bat

@alejandromangione
alejandromangione / ffmpeg.md
Last active October 5, 2018 16:07 — forked from dvlden/ffmpeg.md
Convert video files to MP4 through FFMPEG

This is my personal list of functions that I wrote for converting mov files to mp4!

Command Flags

Flag Options Description
-codec:a libfaac, libfdk_aac, libvorbis Audio Codec
-quality best, good, realtime Video Quality
-b:a 128k, 192k, 256k, 320k Audio Bitrate
-codec:v mpeg4, libx264, libvpx-vp9 Video Codec
@alejandromangione
alejandromangione / git-deployment.md
Last active June 24, 2018 03:49 — forked from noelboss/git-deployment.md
Simple automated GIT Deployment using Hooks

Simple automated GIT Deployment using GIT Hooks

Here are the simple steps needed to create a deployment from your lokal GIT repository to a server based on this in-depth tutorial.

How it works

You are developing in a working-copy on your local machine, lets say on the master branch. Most of the time, people would push code to a remote server like github.com or gitlab.com and pull or export it to a production server.

# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
# editor.onDidSave ->