Skip to content

Instantly share code, notes, and snippets.

View infinityonlinesolutions's full-sized avatar

Santosh Ramachandran infinityonlinesolutions

View GitHub Profile
@infinityonlinesolutions
infinityonlinesolutions / install-buildkit.sh
Created June 6, 2024 06:43 — forked from jniltinho/install-buildkit.sh
Enable BuildKit Docker Ubuntu 22.04|24.04
#!/bin/bash
#
# https://docs.docker.com/build/buildkit/
# https://github.com/docker/buildx/releases/
# https://github.com/docker/buildx
VERSION=v0.14.1
mkdir -p $HOME/.docker/cli-plugins
@infinityonlinesolutions
infinityonlinesolutions / README.md
Created June 23, 2024 05:39 — forked from gilangvperdana/README.md
Kubernetes with KubeSpray on BareMetal Ubuntu Server 20.04 LTS

Kubernetes with KubeSpray on BareMetal Ubuntu Server 20.04 LTS

Provisioning Kubernetes Cluster BareMetal with KubeSpray

Environment

2x Ubuntu Server 20.04LTS
@infinityonlinesolutions
infinityonlinesolutions / INSTALL.md
Created August 10, 2024 12:24 — forked from s-lyn/INSTALL.md
Configure Kubernetes Dashboard Web UI hosted with Nginx Ingress Controller
@infinityonlinesolutions
infinityonlinesolutions / paddle-wh-verify.php
Created October 16, 2024 11:23 — forked from tempelmann/paddle-wh-verify.php
Paddle.com webhook verification (PHP)
// https://developer.paddle.com/webhooks/signature-verification shows code using a `Verifier` class
// to check that the message from Paddle is authentic.
// Sadly, it doesn't explain where the value for the `$request` variable comes from. It seems you need to use
// the PSR framework for that, but I was unable to find a way to use it for getting the data for the POST
// I am handling in my webhook handler.
// Fortunately, I was able to resolve this by looking into the code of the Verifier class from the SDK.
// Here's a version that does not rely on PSR. You still haveo to install Paddle's PHP SDK, though,
// see https://github.com/PaddleHQ/paddle-php-sdk/
require_once 'vendor/autoload.php'; // the path to your vendor dir created with "composer" tool