Improved .visually-hidden
Theorically bulletproof CSS class for visually hide anything and keep it accessible to ATs.
Nginx can be configured to route to a backend, based on the server's domain name, which is included in the SSL/TLS handshake (Server Name Indication, SNI).
This works for http upstream servers, but also for other protocols, that can be secured with TLS.
nginx -V for the following:
...
TLS SNI support enabled| @app.route("/sitemap") | |
| @app.route("/sitemap/") | |
| @app.route("/sitemap.xml") | |
| def sitemap(): | |
| """ | |
| Route to dynamically generate a sitemap of your website/application. | |
| lastmod and priority tags omitted on static pages. | |
| lastmod included on dynamic content such as blog posts. | |
| """ | |
| from flask import make_response, request, render_template |
| extends Camera | |
| var _duration = 0.0 | |
| var _period_in_ms = 0.0 | |
| var _amplitude = 0.0 | |
| var _timer = 0.0 | |
| var _last_shook_timer = 0 | |
| var _previous_x = 0.0 | |
| var _previous_z = 0.0 |
| #! /usr/bin/env python | |
| from gimpfu import * | |
| import commands | |
| import glob | |
| import os | |
| import string | |
| import subprocess | |
| suffixes = (['diffuse', '_d'], ['specular', '_s'], ['normal', '_n'], ['height', '_h'], \ |
| #!/bin/bash | |
| # Copyright (c) 2015 Calinou | |
| # CC0 1.0 Universal | |
| # <https://creativecommons.org/publicdomain/zero/1.0/> | |
| update() { | |
| for d in "$@"; do | |
| test -d "$d" -a \! -L "$d" || continue | |
| cd "$d" |
| #!/bin/bash | |
| # Copyright (c) 2015 Calinou | |
| # CC0 1.0 Universal | |
| # <https://creativecommons.org/publicdomain/zero/1.0/> | |
| update() { | |
| for d in "$@"; do | |
| test -d "$d" -a \! -L "$d" || continue | |
| cd "$d" |
| #!/bin/sh -x | |
| # This script compiles Godot for GNU/Linux in 64-bit. | |
| # Place this script at the root of your Godot Git clone. | |
| # CC0 1.0 Universal | |
| # Build 64-bit Godot for GNU/Linux desktop, in debug and release mode | |
| scons p=x11 -j$(nproc) verbose=no tools=yes target=release_debug openssl=builtin | |
| scons p=x11 -j$(nproc) verbose=no tools=no target=release_debug openssl=builtin |
| :: This script must be run from a Windows system with the Emscripten SDK | |
| :: installed and configured. 7-Zip and MinGW also need to be installed. | |
| :: Place this script at the root of your Godot Git clone. | |
| :: CC0 1.0 Universal | |
| set threads=%NUMBER_OF_PROCESSORS% | |
| :: Set MinGW path | |
| set PATH=%PROGRAMFILES%\mingw-w64\x86_64-6.2.0-posix-seh-rt_v5-rev0\mingw64\bin\;%PATH% |