Skip to content

Instantly share code, notes, and snippets.

View jeckel's full-sized avatar
🐧
Freelance (Available for new projects)

Julien Mercier-Rojas jeckel

🐧
Freelance (Available for new projects)
View GitHub Profile
@jeckel
jeckel / config.yml
Last active February 20, 2019 13:52
Loopback CircleCI Sample
version: 2
jobs:
# Run tests
test:
working_directory: ~/novi
docker:
- image: circleci/node:10
- image: postgres:alpine
environment:
POSTGRES_USER: root
@jeckel
jeckel / .editorconfig
Created April 11, 2019 07:45
My editor config file
# EditorConfig is a normalisation file compatible with different editors
# Find more documentation here : http://editorconfig.org/#download
# top-most EditorConfig file
root = true
[*]
end_of_line = lf
insert_final_newline = true
charset = utf-8
@jeckel
jeckel / Locale.php
Last active October 29, 2023 14:48 — forked from heiglandreas/index.php
Locale Value Object
<?php
namespace ValueObject;
use ResourceBundle;
use Stringable;
final readonly class Locale implements Stringable
{
private function __construct(public string $locale) {}