Skip to content

Instantly share code, notes, and snippets.

View ReinanHS's full-sized avatar
:shipit:

Reinan Gabriel ReinanHS

:shipit:
View GitHub Profile
@ReinanHS
ReinanHS / Dockerfile
Last active September 18, 2022 19:39
Dockerfile limarka
FROM ubuntu:20.04
LABEL maintainer="reinangabriel1520@gmail.com"
LABEL version="0.1"
LABEL description="Imagem para escrever TCCS em Markdown e gerar PDFs em conformidades com as Normas da ABNT usando o limarka"
ENV LANG=pt_BR.UTF8
# Update Ubuntu Software repository
RUN apt update
@ReinanHS
ReinanHS / UsersController.php
Last active October 19, 2020 00:13
Laravel filtering users by birthday
<?php
namespace App\Http\Controllers\Dashboard;
use App\User;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
class UsersController extends Controller
{
@ReinanHS
ReinanHS / html5-video-play-file-blob.html
Created December 24, 2017 17:20 — forked from edin-m/html5-video-play-file-blob.html
HTML video play file blob object url
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<video></video>
<br/>
<input type="file" name="file" id="fileItem" onchange="onChange()" >