If you plan to use iconv()
to transliterate string in you PHP project, please, take this:
FROM alpine:3.4
RUN apk add --update php5-cli wget build-base php5-dev autoconf re2c libtool \
{ pkgs ? import <nixpkgs> {} }: | |
with pkgs; | |
let | |
su_exec = pkgs.stdenv.mkDerivation { | |
name = "su-exec-0.2"; | |
src = fetchurl { | |
url = https://github.com/ncopa/su-exec/archive/v0.2.tar.gz; | |
sha256 = "09ayhm4w7ahvwk6wpjimvgv8lx89qx31znkywqmypkp6rpccnjpc"; |
#!/usr/bin/env python | |
import argparse | |
import base64 | |
import json | |
import os | |
def main(): | |
parser = argparse.ArgumentParser( | |
description="Dump all certificates out of Traefik's acme.json file") |
[ Update 2020-05-31: I won't be maintaining this page or responding to comments anymore (except for perhaps a few exceptional occasions). ]
Most of the terminal emulators auto-detect when a URL appears onscreen and allow to conveniently open them (e.g. via Ctrl+click or Cmd+click, or the right click menu).
It was, however, not possible until now for arbitrary text to point to URLs, just as on webpages.
FROM alpine:3.8 as build | |
ENV CXXFLAGS -std=c++98 | |
RUN apk add --no-cache \ | |
gcc g++ musl-dev make libc6-compat cmake \ | |
unixodbc-dev zlib-dev openssl-dev ncurses-dev bison \ | |
wget | |
#!/bin/bash | |
# | |
# Mush mosh and SSM sessions together. | |
# | |
# Run mosh-server on an EC2 instance as part of an AWS Session Manager SSH | |
# session, and feed the output into mosh-client locally. This is helpful | |
# if you have an EC2 instance which: | |
# | |
# * Is publicly addressable | |
# * Has a predictable Name tag but a shifting IP |