Skip to content

Instantly share code, notes, and snippets.

View jkphl's full-sized avatar

Joschi Kuphal jkphl

View GitHub Profile
@jkphl
jkphl / t39_composer_extensions.txt
Created December 13, 2017 09:09
List of TYPO3 v9 system extensions (for composer installations)
# cat typo3/sysext/*/composer.json | egrep -o '"name":\s*"[^/]+/[^"]+",' | sed -n -E "s/^.+\"(.+)\",/\1/p"
typo3/cms-about
typo3/cms-backend
typo3/cms-belog
typo3/cms-beuser
typo3/cms-core
typo3/cms-documentation
typo3/cms-extbase
typo3/cms-extensionmanager
@jkphl
jkphl / Micrometa Bookmarklet
Last active June 20, 2016 17:10
Bookmarklet for submitting the current page to http://micrometa.jkphl.is and analyzing the embedded Microformats2 and schema.org markup. Create a new bookmark in your browser and paste this code as the bookmark target.
javascript:var f=document.createElement("form");f.action="https://micrometa.jkphl.is",f.method="post",f.target="_blank";var u=document.createElement("input");u.type="hidden",u.name="url",u.value=document.location,f.appendChild(u);var s=document.createElement("input");s.type="hidden",s.name="microdata",s.value=1,f.appendChild(s),document.body.appendChild(f),f.submit();
@jkphl
jkphl / SVG-CSS-sprite-example.png
Last active December 12, 2015 12:36
Creating an example SVG icon grid with names for easy referencing
SVG-CSS-sprite-example.png
@jkphl
jkphl / Highlight non-matching anchor links (Bookmarklet)
Last active January 2, 2020 07:26
Use this JavaScript bookmarklet to find invalid anchor references within your HTML documents. The script searches the current document for links referring to named anchors on the same page that don't really exist and highlights them with a red background.