I hereby claim:
- I am timw4mail on github.
- I am timw4mail (https://keybase.io/timw4mail) on keybase.
- I have a public key ASC7SlmqpsRmOuaFxqzF6TVO8jxYqGE-wpkawVHCwgehHgo
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| declare threads=`getconf _NPROCESSORS_ONLN` | |
| optimise () { | |
| declare -a exts=("${!1}") | |
| declare msg=$2 | |
| for ext in ${exts[@]} |
| <?php declare(strict_types=1); | |
| function createDataObject (int $min, int $max, array $blacklist = []): array | |
| { | |
| $output = []; | |
| $index = 0; | |
| for ($i = $min; $i <= $max; $i++) | |
| { | |
| $n = base_convert((string)$i, 10, 16); |
| #!/bin/sh | |
| make clean; # For those rebuilds | |
| phpize; | |
| autoreconf --install --force; # Stupid autotools/libtool version incompatibilities | |
| ./configure; | |
| make; | |
| sudo make install; |
| <?php declare(strict_types=1); | |
| /** | |
| * XML <=> PHP Array codec | |
| */ | |
| final class XML { | |
| /** | |
| * XML representation of the data | |
| * |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| docker pull tootsuite/mastodon:latest; | |
| docker-compose down; | |
| docker-compose run --rm web bundle exec rake db:migrate; | |
| docker-compose run --rm web bundle exec rake assets:precompile; | |
| docker-compose up -d; |
| <?php | |
| $animals = [ | |
| 'dog' => '🐶', | |
| 'cat' => '🐱', | |
| 'mouse' => '🐭' | |
| ]; | |
| ?> | |
| <script> | |
| let wildAnimals = { |
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| # !IMPORTANT! Set your RewriteBase here and don't forget trailing and leading | |
| # slashes. | |
| # If your page resides at | |
| # http://www.example.com/mypage/test1 | |
| # then use | |
| # RewriteBase /mypage/test1/ | |
| RewriteBase / | |
| RewriteCond %{REQUEST_FILENAME} !-f |
| #include <stdio.h> | |
| typedef struct { | |
| char *name; | |
| int age; | |
| int height; | |
| int weight; | |
| } Person; | |
| Person Person_create(char *name, int age, int height, int weight) |