Skip to content

Instantly share code, notes, and snippets.

View leonardobiffi's full-sized avatar
💭
working... ☕

Leonardo Biffi leonardobiffi

💭
working... ☕
View GitHub Profile
@leonardobiffi
leonardobiffi / Popcorn-Time.desktop
Created January 26, 2020 18:51 — forked from ed-flanagan/Popcorn-Time.desktop
Gnome Popcorn Time application launcher
[Desktop Entry]
Version=1.0
Encoding=UTF-8
Name=Popcorn Time
Name[en_US]=Popcorn Time
GenericName=BitTorrent Stream Player
GenericName[en_US]=BitTorrent Stream Player
Comment=Run the Popcorn Time application
Comment[en_US]=Run the Popcorn Time application
Type=Application
@leonardobiffi
leonardobiffi / ubuntu_posinstall.sh
Last active December 21, 2019 12:53
Pos Install Ubuntu 19.10
#!/usr/bin/env bash
#VARIAVEIS
URL_GOOGLE_CHROME="https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb"
URL_TEAMVIEWER="https://download.teamviewer.com/download/linux/version_13x/teamviewer_amd64.deb"
DIRETORIO_DOWNLOADS="$HOME/Downloads/programas"
PROGRAMAS_PARA_INSTALAR=(
flameshot
@leonardobiffi
leonardobiffi / docker-compose.yml
Created October 22, 2019 17:55
Docker Compose LAMP
version: "3"
services:
web:
image: php:7.2-apache
ports:
- "80:80"
volumes:
- ./app:/var/www/html
links:
- mysql