Skip to content

Instantly share code, notes, and snippets.

View reoring's full-sized avatar
🏢
work at office

reoring reoring

🏢
work at office
View GitHub Profile
@reoring
reoring / gist:73b27ebfd525f31c37a3c3132982861c
Created November 17, 2018 08:38
Dockerハンズオン Laravel + Docker + docker-compose
# Dockerハンズオン
```bash
mkdir docker-handson && cd docker-handson
mkdir src laravel
```
## install.sh
### Keybase proof
I hereby claim:
* I am reoring on github.
* I am reoring (https://keybase.io/reoring) on keybase.
* I have a public key ASDbmRe2qHwSB9Sgh0QCa-EKgdHVF4Q_pVE_1o02yiyt4Qo
To claim this, I am signing this object:
@reoring
reoring / gist:8fe11a8969300677bd2060ca68cf1eeb
Created November 15, 2020 07:24
Kubernetes service controller keep deployment example
package controllers
import (
"context"
"encoding/base64"
appsv1 "k8s.io/api/apps/v1"
v1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/tools/record"
@reoring
reoring / sample.ts
Last active April 16, 2023 22:49
"Multi Cloud Kubernetes Cluster with Cilium" generated by Pulumi AI
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
import * as awsx from "@pulumi/awsx";
import * as eks from "@pulumi/eks";
import * as azure from "@pulumi/azure";
import * as k8s from "@pulumi/kubernetes";
// Create an AWS VPC.
const vpc = new awsx.ec2.Vpc("vpc");
@reoring
reoring / install-davinci.sh
Last active March 9, 2026 03:28
Arch Linux DaVinci Resolve Install Script (ROCm 7.1.1 + XWayland)
#!/usr/bin/env bash
set -euo pipefail
# Why this script exists:
# - The AUR package cannot auto-download the Blackmagic ZIP, so we stage it first.
# - Resolve 20.3.x starts but later crashes with opencl-mesa/Rusticl on this AMD system.
# - Resolve 20.3.x also fails very early with ROCm/OpenCL 7.2.x here.
# - ROCm OpenCL 7.1.1 plus XWayland has been the stable combination.
# - The launcher also clears stale Resolve lock/socket files that can block relaunches.
#