sudo xbps-install -Su void-repo-nonfree
sudo xbps-remove firefox-esr
sudo xbps-install -Su \
ascii \
baobab \
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# All Vagrant configuration is done below. The "2" in Vagrant.configure | |
# configures the configuration version (we support older styles for | |
# backwards compatibility). Please don't change it unless you know what | |
# you're doing. | |
Vagrant.configure("2") do |config| | |
# The most common configuration options are documented and commented below. | |
# For a complete reference, please see the online documentation at |
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
<?php | |
// After this run the registry garbage collector, | |
// it will mark new blob layers for removal: | |
// $ docker exec registry registry garbage-collect [--dry-run] /etc/docker/registry/config.yml | |
require_once __DIR__.'/vendor/autoload.php'; | |
$apiBaseURI = 'https://registry.example.com:5000'; |
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
-- 100 million INSERTs benchmark | |
-- stock PostgreSQL 9.6 setup running on an Ubuntu 16.04 workstation | |
-- PK TYPE INSERT* time (ms) Relative time AVG throughput (op/s) | |
------------------------------------------------------------------------ | |
-- BIGSERIAL 242,849.46 1.00 411,777.73 | |
-- UUID COMB 337,028.15 1.39 296,711.12 | |
-- UUID 1 470,385.37 1.94 212,591.65 | |
-- UUID 4 7,808,502.45 32.15 12,806.55 | |
------------------------------------------------------------------------ |
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
Vagrant.configure("2") do |config| | |
config.vm.box = "centos/7" | |
config.vm.network "private_network", ip: "10.0.1.10" | |
config.ssh.forward_agent = true | |
config.vm.synced_folder "./", "/vagrant", type: "virtualbox" | |
config.vm.provider "virtualbox" do |vb| |
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
<?php | |
declare(strict_types=1); | |
if ( | |
1 === \version_compare('7.1.0', PHP_VERSION) || | |
false === \extension_loaded('curl') | |
) { | |
\fwrite(STDERR, "bye bye\n"); | |
exit(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
[*] Updating `https://repo.voidlinux.eu/current/musl/x86_64-repodata' ... | |
[*] Updating `https://repo.voidlinux.eu/current/musl/nonfree/x86_64-repodata' ... | |
x86_64-repodata: [1550B 100%] 18MB/s ETA: 00m00s | |
x86_64-repodata: 1550B [avg rate: 18MB/s] | |
[*] Updating `https://repo.voidlinux.eu/current/x86_64-repodata' ... | |
[*] Updating `https://repo.voidlinux.eu/current/nonfree/x86_64-repodata' ... | |
x86_64-repodata: [15KB 27%] -- stalled -- ETA: 00m00s | |
x86_64-repodata: 15KB [avg rate: -- stalled --] | |
[*] Updating `https://repo.voidlinux.eu/current/aarch64/x86_64-repodata' ... | |
[*] Updating `https://repo.voidlinux.eu/current/multilib/x86_64-repodata' ... |
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 alpine:3.8 | |
ENV PHP_VERSION=7.2.7 | |
ENV CFLAGS="-O3 -march=x86-64" | |
RUN apk add --no-cache \ | |
# generic dependencies for compiling the source | |
alpine-sdk \ | |
autoconf \ |
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 ubuntu:14.04 AS adacore2016 | |
ENV PATH="/usr/gnat/bin:${PATH}" | |
RUN apt-get update \ | |
&& apt-get install -y --no-install-recommends \ | |
curl \ | |
libc6-dev \ | |
make \ | |
&& cd /tmp \ |
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
<?php | |
declare(strict_types=1); | |
final class AvailabilityServiceDriver | |
{ | |
/** | |
* @var IterableAvailabilityService | |
*/ | |
private $as; |
OlderNewer