Skip to content

Instantly share code, notes, and snippets.

View guitarrapc's full-sized avatar
:octocat:

Ikiru Yoshizaki guitarrapc

:octocat:
View GitHub Profile
name: README embed-code
on:
workflow_dispatch:
pull_request:
branches: ["main"]
jobs:
embed-code:
runs-on: ubuntu-latest
This is a *markdown* document with a code block:

```ts
// src/example.ts

export function helloWorld(name: string): string {
  return `Hello ${name}!, how are you today?`;
}
This is a *markdown* document with a code block:

```ts
// src/example.ts
@guitarrapc
guitarrapc / kustomization.yaml
Last active May 6, 2022 07:12
Agones configMapGenerator suffix hash reference in Agones GameServer and Fleet.
bases:
- ../../agones/overlays/dev
- ../../configmap/overlays/dev
configurations:
- nameref.yaml
public static class TaskExtentions
{
public static Task<TResult[]> WhenAllFailFast<TResult>(IEnumerable<Task<TResult>> tasks)
{
return WhenAllFailFast(tasks.ToArray());
}
public static Task<TResult[]> WhenAllFailFast<TResult>(params Task<TResult>[] tasks)
{
if (tasks is null) throw new ArgumentNullException(nameof(tasks));
if (tasks.Length == 0) return Task.FromResult(new TResult[0]);
@guitarrapc
guitarrapc / CancelCancellationTokenSource.cs
Last active April 15, 2022 02:26
C# CancellatonSource Status when Cancel on cts or LinkedCancellationSource.
// cancel on Source CancellationTokenSource
async Task Main()
{
using var cts = new CancellationTokenSource();
var ct = cts.Token;
var task = FooAsync(ct);
await Task.Delay(TimeSpan.FromSeconds(3));
cts.Cancel();
cts.Dump("cts"); // IsCancellationRequested True
}
@guitarrapc
guitarrapc / command.sh
Created March 15, 2022 07:46
Connect redis-cli in Docker to TLS Encypted ElastiCache Redis Cluster.
# run on host...
docker run -it --entrypoint /bin/bash redis
# run inside docker...
apt-get update
apt-get install -y stunnel net-tools
cat <<EOF > /etc/stunnel/redis-cli.conf
fips = no
setuid = root
setgid = root
pid = /var/run/stunnel.pid
@guitarrapc
guitarrapc / gitsubmodule_cheatsheet.md
Last active January 21, 2022 08:06
git submodule のチートシート。ベースはこれで。十分そろってる。 https://www.m3tech.blog/entry/git-submodule

サブモジュールごと clone したい

git clone https://example.com/repo-with-sub-modules --recursive

サブモジュールのファイルを取得したい

git submodule update --init --recursive
@guitarrapc
guitarrapc / _get_github_oidc_thumbprint.sh
Last active May 26, 2024 18:45
Get Thumbprint of GitHub OIDC, updated on 2022/01/13.
$ openssl s_client -servername token.actions.githubusercontent.com -showcerts -connect token.actions.githubusercontent.com:443 < /dev/null 2>/dev/null | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sed "0,/-END CERTIFICATE-/d" > certificate.crt
$ openssl x509 -in certificate.crt -fingerprint -noout | cut -f2 -d'=' | tr -d ':' | tr '[:upper:]' '[:lower:]'
6938fd4d98bab03faadb97b34396831e3780aea1
name: dotnet lint
on:
workflow_dispatch:
schedule:
- cron: 0 1 * * 1 # At AM10:00 JST on Monday
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_NOLOGO: true