Skip to content

Instantly share code, notes, and snippets.

@kaczmar2
kaczmar2 / pihole-v6-letsencrypt-cloudflare.md
Last active July 5, 2025 19:14
Automating SSL Certificate Renewal for Pi-hole v6 (acme.sh + Cloudflare)

Pi-hole v6: Automating Let's Encrypt SSL Renewal with Cloudflare DNS

See my other guides for SSL certificates on Pi-hole v6:

Overview

Pi-hole v6 introduces changes to its web server:

  • Embedded Web Server – Pi-hole no longer relies on lighttpd.
@bsilva0x87
bsilva0x87 / PrintSchemaCommand.php
Created October 12, 2019 15:35
Simple implementation for command "lighthouse:print-schema" to compile the final GraphQL schema using Lighthouse / Lumen PHP.
<?php
namespace Nuwave\Lighthouse\Console;
use Nuwave\Lighthouse\GraphQL;
use Illuminate\Console\Command;
use GraphQL\Utils\SchemaPrinter;
class PrintSchemaCommand extends Command
{
@mdamien
mdamien / 0readme.md
Last active April 24, 2025 10:07
404 link detector with scrapy

List all the broken links on your website

Requirements:

python3 and scrapy (pip install scrapy)

Usage

  • scrapy runspider -o items.csv -a site="https://yoursite.org" 1spider.py
  • python3 2format_results.py