Skip to content

Instantly share code, notes, and snippets.

View mbtools's full-sized avatar
📦
Busy building apm 😀

Marc Bernard mbtools

📦
Busy building apm 😀
View GitHub Profile
@theaog
theaog / update-golang.sh
Last active August 12, 2025 07:43
update-golang.sh
#!/usr/bin/env bash
set -e
tmp=$(mktemp -d)
pushd "$tmp" || exit 1
function cleanup {
popd || exit 1
rm -rf "$tmp"
}
<?php
/**
* Plugin Name: Disable Textdomain Error
* Description: Prevents triggering errors for the '_load_textdomain_just_in_time' function.
* Author: Kowsar Hossain
* Version: 1.0
*
* Note: This is a Must-Use (MU) plugin. Place this file in the 'wp-content/mu-plugins' directory.
*/
@brittanyellich
brittanyellich / BlueskyComments.tsx
Created August 5, 2025 21:49
Showing Likes and Comments on Bluesky
import React from "react";
export type CommentPost = {
post: {
author: {
did: string;
handle: string;
displayName: string;
avatar: string;
};