Every element in current Baseline
browsers
that would need a margin or padding removing in a reset stylesheet:
| Element | Chrome | Chrome for Android | Edge | Firefox | Firefox for Android | Safari | Safari for iOS |
|---|---|---|---|---|---|---|---|
body |
✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ |
h1 |
✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ |
Every element in current Baseline
browsers
that would need a margin or padding removing in a reset stylesheet:
| Element | Chrome | Chrome for Android | Edge | Firefox | Firefox for Android | Safari | Safari for iOS |
|---|---|---|---|---|---|---|---|
body |
✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ |
h1 |
✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ |
OpenAI's whisper was most likely trained on subtitled videos by German public-service television broadcaster ZDF.
Whisper "is a general-purpose speech recognition model […] trained on a large dataset of diverse audio", as it's written in the project's README.
A clear indication is the (so to say) transcription of silent audio to text saying "Untertitel im Auftrag des ZDF, 2017".
This sentence may be seen in videos of ZDF's youth program Funk. One example may be a 2017 video of Funk's format musstewissen Mathe at the end of the video.
Thus, Whisper translates silence into copyright notices.
| <?php | |
| /** | |
| * Title: Content-only Test | |
| * Slug: prefix/content-only-test | |
| */ | |
| ?> | |
| <!-- wp:group {"templateLock": "contentOnly", "align":"wide","layout":{"type":"constrained","wideSize":"2000px"}} --> | |
| <div class="wp-block-group alignwide"><!-- wp:columns --> | |
| <div class="wp-block-columns"><!-- wp:column --> | |
| <div class="wp-block-column"><!-- wp:image {"id":231,"sizeSlug":"large","linkDestination":"none"} --> |
Since I need a TYPO3 test environment from time to time, I use these bash scripts for the automatic installation and removal of TYPO3. The installation script currently supports TYPO3 versions 10, 11, 12, 13, 14 and dev.
I have stored the scripts under:
~/.shellscripts/typo3/
I use the following aliases:
| /** | |
| * Forwards routes in the given list to a route with a trailing slash in the dev server | |
| * Useful for multi page vite apps where all rollup inputs are known. | |
| * | |
| * Vite fix is upcoming, which will make this plugin unnecessary | |
| * https://github.com/vitejs/vite/issues/6596 | |
| */ | |
| export default routes => ({ | |
| name: 'forward-to-trailing-slash', | |
| configureServer(server) { |
Previously, front matter REQUIRED a layout property (e.g. layout: ../../layouts/MarkdownPostLayout.astro) Now, it's ALSO OK to include your layout as an import in "setup":
setup: |
import Layout from '../../layouts/BlogPost.astro'
import SomeOtherComponent from '../../components/SomeOtherComponent.astro'
| <?php | |
| /** | |
| * Polylang Shortcode - https://wordpress.org/plugins/polylang/ | |
| * Add this code in your functions.php | |
| * Put shortcode [polylang_langswitcher] to post/page for display flags | |
| * | |
| * @return string | |
| */ | |
| function custom_polylang_langswitcher() { | |
| $output = ''; |