See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| /** | |
| * @author qiao / https://github.com/qiao | |
| * @author mrdoob / http://mrdoob.com | |
| * @author alteredq / http://alteredqualia.com/ | |
| * @author WestLangley / http://github.com/WestLangley | |
| * @author erich666 / http://erichaines.com | |
| * @author mrflix / http://felixniklas.de | |
| * | |
| * released under MIT License (MIT) | |
| */ |
| #!/bin/sh | |
| # | |
| # Janos Kasza (@janoskk) | |
| # | |
| # Creates (if necessary) and replicates all databases from a couchdb server to another one | |
| # | |
| if [ -z "$2" ]; then | |
| cat <<EOF | |
| Usage: $0 <sourceUrl> <targetUrl> |
I just got this working so I figured I'd share what I found, since there's hardly any information about this anywhere online except an RFC, the GPG mailing list and one tutorial from the GnuPG blog.
You can use automatic key discovery with WKD (Web key directory) to make it easy for users to import your key, in GPG since version 2.1.12. Since this feature is fairly new, it isn't yet available in the current LTS release of Ubuntu (16.04; xenial), however it is available in Debian stable (stretch).
I couldn't add a DNS CERT or DANE / OPENPGPKEY record through my email service (which also hosts my nameservers). I tried making the PKA record - a foo._pka.example.com TXT record but GPG doesn't seem to recognize it and fails; I'm still investigating why.
So the last option for self-hosted auto-discovery was WKD.
First thing I had to do was add an email address to my key. My primary UID is just my name so the key represents my identity rather
| # Customise this file, documentation can be found here: | |
| # https://docs.fastlane.tools/actions/ | |
| # All available actions: https://docs.fastlane.tools/actions | |
| # can also be listed using the `fastlane actions` command | |
| # Change the syntax highlighting to Ruby | |
| # All lines starting with a # are ignored when running `fastlane` | |
| # If you want to automatically update fastlane if a new version is available: | |
| # update_fastlane |
| /** .pause-gif */ | |
| .wrap-pause-gif { | |
| position: relative; | |
| text-align: center; | |
| } | |
| .pause-gif { | |
| visibility: hidden; | |
| } |
Observing video playback inside a black-boxed WKWebView is difficult as you don't have direct
access to the video player.
Another complicating matter is that depending on the video, the video might be played using a HTML5
video player, while others might launch the native AVPlayerViewController for playback. While it might
be possible to detect HTML5 based playback by injecting custom JavaScript using a WKUserContentController, this is not the approach we will follow in the document as these depend on what HTML5 Video Player is involved and is, as such, not a generic solution.
| ############################################################################### | |
| # Topic: Using RouterOS to VLAN your network | |
| # Example: Router-Switch-AP all in one device | |
| # Web: https://forum.mikrotik.com/viewtopic.php?t=143620 | |
| # RouterOS: 6.43.12 | |
| # Date: Mar 28, 2019 | |
| # Notes: Start with a reset (/system reset-configuration) | |
| # Thanks: mkx, sindy | |
| ############################################################################### |