Skip to content

Instantly share code, notes, and snippets.

View obelich's full-sized avatar
:octocat:
Aprendiendo Dart + Flutter

Oscar Miguel Amezcua Estrella obelich

:octocat:
Aprendiendo Dart + Flutter
View GitHub Profile
ssh -i [file_name].pem ubuntu@[ip]
@obelich
obelich / bash
Last active May 20, 2018 23:14
ALTER USER postgres WITH PASSWORD 'password';
sudo apt install postgresql postgresql-client libpq-dev
axios.post(`$urlPost$`, {
body: {}
})
.then(response => {
console.log(response);
})
.catch(e => {
this.errors.push(e)
})
axios.get("$url$").then((response) => {
console.log(response);
})
@extends('layouts.$NombreLayout$')
@slot('$NombreSlot$')
$END$
@endslot
<a href="{{ route('$route$') }}" class="">$Texto$</a>
<script src="{{ asset('/js/$nombreArchivo$.js') }}"></script>
@include('$path$')
@component('$DireccionComponente$')
@slot('$Nombre$', '$contenido$')
@endcomponent