- 125g beurre
- 150g vergeoise
- 1 œuf
- 175g de farine
- Un peu de levure chimique
- Chocolat (100g)
This file contains hidden or 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
{ pkgs ? import <nixpkgs> {} }: | |
let | |
# Try specifying a specific Python version if needed | |
pythonEnv = pkgs.python312; # Or python310, python312 etc. | |
# Fetch a specific version of pydantic if the default isn't right | |
# You might need to find the correct hash using tools like nix-prefetch-git or by looking at nixpkgs history | |
# Or, more simply, hope the version in your chosen pkgs snapshot is sufficient | |
pydantic_override = pkgs.python3Packages.pydantic; # Use the default from nixpkgs first |
This file contains hidden or 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
alias: freebox.remote | |
fields: | |
cmd: | |
description: cmd to send | |
example: RIGHT | |
required: true | |
selector: | |
select: | |
options: ['RIGHT', 'LEFT', 'DOWN', 'UP', 'HOME', 'CENTER', 'ASSISTANT', 'BACK', 'SERVICE_FREE', 'SERVICE_NETFLIX', 'SERVICE_PRIME', 'SERVICE_CANAL', 'SERVICE_DISNEY', 'AUDIO_MUTE', 'AUDIO_UP', 'AUDIO_DOWN', 'P_PLUS', 'P_MINUS', 'NUM_0', 'NUM_1', 'NUM_2', 'NUM_3', 'NUM_4', 'NUM_5', 'NUM_6', 'NUM_7', 'NUM_8', 'NUM_9', 'POWER'] | |
entity: |
This file contains hidden or 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: "3.7" | |
services: | |
projector: | |
image: registry.jetbrains.team/p/prj/containers/projector-phpstorm | |
ports: | |
- 8887:8887 | |
volumes: | |
- ./data:/home/projector-user |
This file contains hidden or 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
Here is a curated list of docker-compose for some databases I use. |
This file contains hidden or 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
body *{ | |
all: unset; | |
} |
This file contains hidden or 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: "3.7" | |
services: | |
mercure: | |
image: dunglas/mercure | |
environment: | |
MERCURE_PUBLISHER_JWT_KEY: 'changeme' | |
MERCURE_SUBSCRIBER_JWT_KEY: 'changeme' | |
SERVER_NAME: ":80" | |
MERCURE_EXTRA_DIRECTIVES: |- | |
cors_origins "http://127.0.0.1:8000" |
This file contains hidden or 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
#!/bin/sh | |
du -hsx ${1:-.}/* | sort -rh | head -10 |
This file contains hidden or 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 | |
// This is the hidden part ;-) | |
trait Generic | |
{ | |
private $_T = null; | |
private $__generic_nullable = false; | |
private $__originalObject = null; | |
/** |
NewerOlder