flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo
flatpak install flathub com.google.Chrome
flatpak install flathub io.github.celluloid_player.Celluloid
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#cloud-config | |
ssh_authorized_keys: | |
- ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDIYcPMMY049Cj7AZFfDYVLHCUuAVnM8b8I51IqWynN+MVOOUe3WXwQmdmuHdbMg0/cnjEI5dp/DrdSxbyGFdFfw6WDtESGKgwZSSGEZvFntoQVlMVgvE6r80wJn8ShbjEtjaILnlUW4jlFH3y3iMmRXspamN7T4G9swI3iI0+RtGWl6O6UqN+4oShARbXHKWAy4NV/791iEV22fX7yjW3BSz/tNimSYkCcXpsqM+5TYHQR7RqmgeJAKn5NZwGK+Hcxhug8djEabAiZYjXtJol77KtW0HfoX3BG6R9Q/d3G4dLzR/l9nYriZy+eebKcGd9yDdRnBsCHnAAeYwA51SAIsEvh93hYwO5S81KSbxzw/+jH+UFjgCuPhjU+/kShMDvVLilO3HZsySttgo0oo6GwYCZaXTpxdx6Yw4FtQaiy7tqJ2eY2N6jeFdb4lzWEDu6Lrf9/hmvGbaH/vM/AnelCALeqE2z5iKPRfvGTXZ9rfL60WsdnavflPOhYFuOCp+a2PyuGvJJOR5qyWy8hkHOzt5i3UOGL6lhBX0BmuO+uEaDTlBuMBlE2rDP1MMBpbjNsLo+PaHpPQHqbOHXhs2XM2aYZmFeEmZ75ZQVcOOwXCoAqRaIAOrwWaMTcbbUMDcOymCDt9tZ9JxOB0JWUJlw2jRDp8yF1wnoOb24dTVoBbw== [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
web: | |
build: | |
context: ./ | |
dockerfile: deploy/web.docker | |
volumes: | |
- ./:/var/www | |
ports: | |
- "8081:80" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Member | |
{ | |
private $email; | |
public function getEmail(): string | |
{ | |
return $this->email; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php // lib/Database.php | |
namespace lib; | |
class Database | |
{ | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Query | |
{ | |
private $pdo; | |
private $sql; | |
public function __construct(PDO $pdo, $sql) | |
{ | |
$this->pdo = $pdo; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM alpine:3.5 | |
ENV OPENLAYERS_VERSION=3.20.1 | |
RUN apk update --no-cache \ | |
&& apk add --no-cache \ | |
nodejs \ | |
openjdk8 \ | |
&& mkdir -p /openlayers \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM php:7.1.1-fpm-alpine | |
MAINTAINER herloct <herloct@***.com> | |
RUN apk update --no-cache \ | |
&& apk add --no-cache \ | |
freetype-dev \ | |
hiredis-dev \ | |
icu-dev \ | |
libjpeg-turbo-dev \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git clone --recursive git://github.com/nvie/gitflow.git | |
make install prefix=$HOME | |
PATH=$PATH:$HOME/bin | |
. ~/.bashrc | |
# Copied from http://www.alpine-lab.com/blog/installer-git-flow-dans-une-box-nitrous-io/ |