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
#!/usr/bin/env bash | |
# Dependencies: | |
# | |
# 1. Create a nix shell with: `nix shell nixpkgs#phpPackages.composer nixpkgs#gitMinimal nixpkgs#diffoscopeMinimal` | |
# 2. Run this script | |
composer --version | |
if [[ ! -d "phpdocumentor" ]]; then |
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 typing import Callable, Generic, TypeVar, final | |
A = TypeVar("A", covariant=True) | |
B = TypeVar("B", covariant=True) | |
C = TypeVar("C", covariant=True) | |
@final | |
class Either(Generic[A, B]): | |
class Left: |
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
(self: super: { | |
openblas = super.openblas.overrideAttrs (oldAttrs: { | |
makeFlags = oldAttrs.makeFlags ++ [ | |
"DEBUG=1" | |
]; | |
}); | |
}) |
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
Show hidden characters
{ | |
"image": "mcr.microsoft.com/devcontainers/base:alpine", | |
"features": { | |
"ghcr.io/devcontainers/features/nix:1": { | |
"extraNixConfig": "experimental-features = nix-command flakes" | |
} | |
}, | |
"onCreateCommand": "nix run home-manager/master -- init --switch && rm -rf ~/.config/git/config && nix shell nixpkgs#git -c nix run home-manager/master -- switch --flake git+https://code.europa.eu/ecphp/devs-profile#light --impure", | |
"customizations": { | |
"vscode": { |
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
{ lib | |
, dockerTools | |
, writeText | |
, writeShellScriptBin | |
, postgresql | |
, bash | |
, coreutils | |
, nss_wrapper | |
}: |
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
{ | |
inputs = { | |
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; | |
systems.url = "github:nix-systems/default"; | |
}; | |
outputs = inputs @ { self, flake-parts, ... }: flake-parts.lib.mkFlake { inherit inputs; } { | |
systems = import inputs.systems; | |
perSystem = { config, self', inputs', pkgs, system, lib, ... }: let |
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
typst-preview> Compiling typst-ts-compiler v0.4.2-rc9 | |
typst-preview> Compiling await-tree v0.1.2 | |
typst-preview> Compiling futures v0.3.30 | |
typst-preview> warning: [email protected]: could not find repository at '/build/source'; class=Repository (6); code=NotFound (-3) | |
typst-preview> warning: [email protected]: VERGEN_GIT_DESCRIBE set to default | |
typst-preview> warning: [email protected]: VERGEN_GIT_SHA set to default | |
typst-preview> Compiling open v5.1.2 | |
typst-preview> Compiling tokio-tungstenite v0.21.0 | |
typst-preview> error: couldn't read src/index.html: No such file or directory (os error 2) | |
typst-preview> --> src/lib.rs:116:20 |
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
(use-modules (guix) | |
(guix build-system gnu)) | |
(define-public datetime | |
(package | |
(name "datetime") | |
(version "1.0") | |
(source (local-file "./src" #:recursive? #t)) | |
(build-system gnu-build-system) | |
(arguments |
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
# This CITATION.cff file was generated with cffinit. | |
# Visit https://bit.ly/cffinit to generate yours today! | |
cff-version: 1.2.0 | |
title: Reproducible Builds | |
message: >- | |
If you use this software, please cite it using the | |
metadata from this file. | |
type: software | |
authors: |
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
diff --git i/ext/standard/css.c w/ext/standard/css.c | |
index 9009d95291..bb4a95c3c8 100644 | |
--- i/ext/standard/css.c | |
+++ w/ext/standard/css.c | |
@@ -32,8 +32,8 @@ PHPAPI ZEND_COLD void php_info_print_css(void) /* {{{ */ | |
PUTS("h1 {font-size: 150%;}\n"); | |
PUTS("h2 {font-size: 125%;}\n"); | |
PUTS(".p {text-align: left;}\n"); | |
- PUTS(".e {background-color: #ccf; width: 300px; font-weight: bold;}\n"); | |
- PUTS(".h {background-color: #99c; font-weight: bold;}\n"); |
NewerOlder