Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View iler's full-sized avatar

Ilari Mäkelä iler

  • Finland
View GitHub Profile
@iler
iler / pihole-cloudflared.yaml
Created March 29, 2020 10:22
pihole-cloudflared.yaml
apiVersion: v1
kind: Namespace
metadata:
name: pihole-system
---
apiVersion: v1
kind: ConfigMap
metadata:
name: pihole-ftl.conf
namespace: pihole-system
@iler
iler / 1-metallb.yaml
Last active June 12, 2020 14:12
Metallb + pihole
apiVersion: v1
kind: Namespace
metadata:
labels:
app: metallb
name: metallb-system
---
apiVersion: policy/v1beta1
kind: PodSecurityPolicy
metadata:

Keybase proof

I hereby claim:

  • I am iler on github.
  • I am ilarii (https://keybase.io/ilarii) on keybase.
  • I have a public key whose fingerprint is AE49 E247 4FA1 1A08 2361 EA49 F6AB 7432 F45E EF4C

To claim this, I am signing this object:

<?php
/**
* Database settings:
*/
$databases = array();
/**
* Location of the site configuration files.
*/
In file included from third_party/icu/source/common/unicode/ptypes.h:25:0,
from third_party/icu/source/common/unicode/umachine.h:52,
from third_party/icu/source/common/unicode/utypes.h:36,
from third_party/icu/source/common/putil.c:60:
third_party/icu/source/common/putil.c: In function 'uprv_timezone_46':
third_party/icu/genfiles/arch/linux/common/include/unicode/platform.h:292:25: error: '__timezone' undeclared (first use in this function)
#define U_TIMEZONE __timezone
^
third_party/icu/source/common/putil.c:622:12: note: in expansion of macro 'U_TIMEZONE'
return U_TIMEZONE;
@iler
iler / Dockerfile
Last active August 2, 2019 02:27
Nginx + ngx_pagespeed on Alpine Linux
FROM alpine:3.3
ENV NGINX_VERSION 1.9.14
ENV PAGESPEED_VERSION 1.11.33.0-beta
RUN build_pkgs="build-base linux-headers openssl-dev pcre-dev wget zlib-dev subversion git patch bash gperf python" && \
runtime_pkgs="ca-certificates openssl pcre zlib" && \
apk --no-cache --update add ${build_pkgs} ${runtime_pkgs} && \
mkdir -p /tmp/src/mod_pagespeed/src && \
cd /tmp/src && \
@iler
iler / 0_reuse_code.js
Created February 29, 2016 10:59
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console