See the new site: https://postgresisenough.dev
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -e | |
| tmp=$(mktemp -d) | |
| pushd "$tmp" || exit 1 | |
| function cleanup { | |
| popd || exit 1 | |
| rm -rf "$tmp" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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. | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from "react"; | |
| export type CommentPost = { | |
| post: { | |
| author: { | |
| did: string; | |
| handle: string; | |
| displayName: string; | |
| avatar: string; | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This powershell script will remove all the in your face content on Edge and the widgets | |
| # that are annoying | |
| # use at your own risk | |
| # Disable Edge new tab content and quick links | |
| $edgePolicy = "HKLM:\SOFTWARE\Policies\Microsoft\Edge" | |
| New-Item -Path $edgePolicy -Force | Out-Null | |
| Set-ItemProperty -Path $edgePolicy -Name "NewTabPageContentEnabled" -Type DWord -Value 0 | |
| Set-ItemProperty -Path $edgePolicy -Name "NewTabPageQuickLinksEnabled" -Type DWord -Value 0 |
REPO HERE: https://github.com/tandpfun/wardrobe
name: extract-clothing-cutouts description: Extract high-quality, deduplicated transparent ecommerce clothing cutouts from a folder of photographs where people wear one or more garments. Use when Codex must find outfit or model photos, identify unique clothing across images, create focused references, reconstruct complete garments with Imagegen, remove a solid chroma background into RGBA PNGs, and output only the finished clothing images into a new folder under the current working directory.
Turn photographs of worn clothing into source-faithful standalone catalog PNGs. Treat each result as a reconstruction from visible evidence, not literal segmentation whenever the wearer or another layer occludes part of the garment.
OlderNewer