Remove builtwith from your site

If you want your site removed from builtwith.com, add a /builtwith.txt to your application and respond with base64 of your site domain:

module JuanitoFatas
  BuiltWith = ->(_) do
    [
      200,
      {"Content-Type" => "text/plain", "Content-Length" => "24"},
      ["anVhbml0b2ZhdGFzLmNvbQ=="] # Base64 of juanitofatas.com
    ]
  end
end

get "/builtwith.txt", to: JuanitoFatas::BuiltWith

Then go to https://builtwith.com/removals and remove your site.