Skip to content

Instantly share code, notes, and snippets.

View Stanislas-Poisson's full-sized avatar
🤓
En recherche d'un poste remote Senior Fullstack Ingenieur

Stanislas Poisson Stanislas-Poisson

🤓
En recherche d'un poste remote Senior Fullstack Ingenieur
View GitHub Profile
@xxRockOnxx
xxRockOnxx / Handler.php
Last active January 20, 2021 21:35
[Laravel] Convert dot array validation error to nested array
<?php
namespace App\Exceptions;
class Handler
{
/**
* Convert a validation exception into a JSON response.
*
* @param \Illuminate\Http\Request $request
@mackensen
mackensen / .gitlab-ci.yml
Created November 14, 2016 15:49
Mocked up gitlab config for running selenium in a linked container
# Custom docker image which exposes 8080
image: lafayette/hoth:5.5
services:
- selenium/standalone-chrome:latest
before_script:
# Use 0.0.0.0 instead of localhost to allow external connections
- php -S 0.0.0.0:8080 -t ../ &> /dev/null &
@devynspencer
devynspencer / ansible-github.yml
Last active May 10, 2025 16:47
Example playbook for cloning a private git repository with Ansible.
---
hosts: all
tasks:
- name: add github ssh key
copy: >
src=files/id_rsa.github
dest=/root/.ssh/id_rsa.github
owner=root
group=root