A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
/** | |
* Axios Request Wrapper | |
* --------------------- | |
* | |
* @author Sheharyar Naseer (@sheharyarn) | |
* @license MIT | |
* | |
*/ | |
import axios from 'axios' |
<?php | |
namespace App\Providers; | |
use Illuminate\Support\Collection; | |
use Illuminate\Pagination\LengthAwarePaginator; | |
class AppServiceProvider extends ServiceProvider | |
{ | |
public function boot() |
axios({ | |
url: 'http://localhost:5000/static/example.pdf', | |
method: 'GET', | |
responseType: 'blob', // important | |
}).then((response) => { | |
const url = window.URL.createObjectURL(new Blob([response.data])); | |
const link = document.createElement('a'); | |
link.href = url; | |
link.setAttribute('download', 'file.pdf'); | |
document.body.appendChild(link); |
CurrentFeed = GetOemDRO(818) ' Obtención de la velocidad de avance (feedrate) para después | |
DoSpinStop() ' Paramos la fresa (spindle) por seguridad | |
ZMax = 20.00 ' Longitud máxima de movimiento antes de abortar la operación de puesta a cero del eje Z | |
ZSonda = 19.75 ' Altura / grosor de la peana de la sonda | |
ZSeparacion = 2 ' Altura de separación entre la sonda y la fresa una vez realizada la operación | |
ZFinal = ZSonda + ZSeparacion | |
If GetOemLed (825) = 0 Then ' Si el eje Z no está ya sondeado (entrada de sonda ya activa)... |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<link rel="apple-touch-icon" sizes="76x76" href="static/img/apple-icon.png"> | |
<link rel="icon" type="image/png" sizes="96x96" href="static/img/favicon.png"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | |
<title>Vue Paper Dashboard</title> | |
<!-- Bootstrap core CSS --> |
# Added to the bottom of my file | |
PROXY_OAUTH_CLIENT_ID=2 | |
PROXY_OAUTH_CLIENT_SECRET=SECRET-GENERATED-KEY-HERE | |
PROXY_OAUTH_GRANT_TYPE=password |
A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html