Skip to content

Instantly share code, notes, and snippets.

View neerfix's full-sized avatar
🦜
Work at @cospirit

Nicolas Notararigo neerfix

🦜
Work at @cospirit
View GitHub Profile
@neerfix
neerfix / Dockerfile php
Last active March 14, 2023 14:15
Example of php/Dockerfile
FROM php:8.1-fpm
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
RUN apt-get upgrade -y
RUN apt-get update -y
# Used for image compression
RUN apt-get install -y jpegoptim optipng
@neerfix
neerfix / nginx.conf
Last active March 14, 2023 14:15
example of nginx-conf in docker
server {
server_name www.example.local;
error_log /var/log/nginx/error.log;
access_log /var/log/nginx/access.log;
root /app/public;
listen 80;
location / {
# try to serve file directly, fallback to app.php
@neerfix
neerfix / docker-compose.yml
Last active March 14, 2023 14:16
Example of docker-compose for symfony project
version: '3.1'
services:
web:
image: nginx:latest
ports:
- "9080:80"
volumes:
- .:/app:cached
- .docker/nginx/nginx.conf:/etc/nginx/conf.d/default.conf
depends_on:
⭐ Total Stars: 3
➕ Total Commits: 3.3k
🔀 Total PRs: 842
🚩 Total Issues: 393
📦 Contributed to: 17
let value = 0;
let perroquet = 'P E R R O Q U E T';
function setup() {
createCanvas(600, 600);
angleMode(DEGREES);
}
function mouseClicked() {
switch (value) {
Vue +6.6k/ -1.3k ███████▋░░░░░░░░░░░░░ 36.8%
CSS +3.2k/ -0 ██▋░░░░░░░░░░░░░░░░░░ 13.0%
Markdown +3.1k/ -0 ██▍░░░░░░░░░░░░░░░░░░ 11.5%
PHP +1.0k/ -925 ██▏░░░░░░░░░░░░░░░░░░ 10.3%
JavaScript +3.7k/ -493 █▍░░░░░░░░░░░░░░░░░░░ 6.6%
JSON +707/ -44 █▎░░░░░░░░░░░░░░░░░░░ 6.0%
Hack +10.2k/ -474 ▊░░░░░░░░░░░░░░░░░░░░ 4.0%
HTML +474/ -18 ▋░░░░░░░░░░░░░░░░░░░░ 3.4%
TypeScript +708/ -19 ▋░░░░░░░░░░░░░░░░░░░░ 3.1%
Twig +181/ -226 ▌░░░░░░░░░░░░░░░░░░░░ 2.5%
Money, Money, Money - F Meryl Streep & Ju
Nothin' but Blue Skies Nick Kingsley & D
Honey, Honey - From 'Ma Amanda Seyfried &
Super Trouper - From 'M Meryl Streep & Ju
Shankara Panda Dub
Mamma Mia - From 'Mamma Meryl Streep
Not Ready to Die - From Avenged Sevenfold
Get Jinxed League of Legends
Borrowed Time (From Ric Rick and Morty &
Samantha's Rest Brian Tuey
🌞 Morning 265 commits █████████░░░░░░░░░░░░ 43.1%
🌆 Daytime 213 commits ███████▎░░░░░░░░░░░░░ 34.6%
🌃 Evening 136 commits ████▋░░░░░░░░░░░░░░░░ 22.1%
🌙 Night 1 commits ░░░░░░░░░░░░░░░░░░░░░ 0.2%