• Remove a line with sed

    Remove a line with sed

    Remove a line – in this case 6118 – from a file using sed: sed -i ‚6118d‘ myfile.sql

  • CLI Font Converter for the Web

    CLI Font Converter for the Web

    An article on this. CSS3FontConverter

  • WordPress Gutenberg & Blocks – Links, Tools & Information

    WordPress Gutenberg & Blocks – Links, Tools & Information

    Learning Gutenberg (css-tricks.com) Lazy Blocks WordPress Plugin Block Lab Tool Guten Block Toolkit Gutenberg Cloud Block Library Editor Blocks Collection

  • Practical npm commands

    Practical npm commands

    Update all global packages: npm update -g Show outdated packages: npm outdated -g –depth=0

  • Matt Mullenweg – State of the Word Speech 2018

    Matt Mullenweg – State of the Word Speech 2018

    https://www.youtube.com/watch?v=aWlfp-1Q19I

  • D3JS, Three.js & animeJS

    D3JS, Three.js & animeJS

    3D JavaScript Toolkits worth looking at once again: d3js three.js … and something new in the mix, just as worthy of your attention: animeJS.

  • PHP Snippet: Slugify a string

    PHP Snippet: Slugify a string

    This one has some extra stuff for German characters in it. Probably not needed because it’s covered by iconv, but whatever: function slugify($str) { $returnMe = strtotime(trim(@iconv(‚UTF-8‘, ‚ASCII//TRANSLIT‘, $str))); foreach ([ “ “ => „_“, „/“ => „-„, „“ => „“, „.“ => „-„, „ü“ => „ue“, „ö“ => „oe“, „ä“ => „ae“, „ß“ =>…

  • HyperHTML Talk

    HyperHTML Talk

    Yesterday I gave a short talk on HyperHTML at the Web Worker NRW Meetup, this time at sipgate. Nice talks, lot’s of nice people, had a great time. Here are the slides.

  • PHP Snippet: Check if code is running on a production environment

    PHP Snippet: Check if code is running on a production environment

    function isLive($liveTld = „.de“) { $homeUrl = (isset($_SERVER[‚HTTPS‘]) && $_SERVER[‚HTTPS‘] === ‚on‘ ? „https“ : „http“).“://$_SERVER[HTTP_HOST]“; $returnMe = false; if ( (!(strpos($homeUrl, „.local“) !== false)) && (!(strpos($homeUrl, „.intra“) !== false)) && (!(strpos($homeUrl, „stage“) !== false)) && (!(strpos($homeUrl, „staging“) !== false)) && (strpos($homeUrl, $liveTld) !== false) ) { $returnMe = true; } return $returnMe; }

  • PWA – Progressive Web Application

    PWA – Progressive Web Application

    A blurb and linkselection on PWAs is at least 2 years overdue, but better late than never. So here’s an overview, by no means covering every aspect: PWAs – Welcome to the mobile revolution PWA – Das App Model der Zukunft How to build a PWA (CreativeBloq) Wikipedia Artikel (deutsch) PWA Google Talk PWA Rocks

  • Material Design Theming for Angular

    Material Design Theming for Angular

    The complete guide to Angular Material Themes Angular Material (official)

  • The WordPress Gutenberg Editor

    The WordPress Gutenberg Editor

    The new Gutenberg Editor, due for the WordPress release 5.0, will hugely up the game for content editing and control over content layout, visuals and constrolled visual design options. Look forward to it. Here are some links: WPBlocks – A Blog on the Gutenberg Editor (Yepp, there is such a thing.) The official Gutenberg Documentation…

  • WordPress Gear

    WordPress Gear

    WordPress Gear

  • List all usergroups on a Linux system

    List all usergroups on a Linux system

    All groups configured on the local system (usually is all you need to know): cut -d: -f1 /etc/group | sort Really all groups including LDAP and other potential remotely controlled group assignments: getent group | cut -d: -f1 | sort

  • Minimalist CSS Toolkits

    Minimalist CSS Toolkits

    Pavilion MiniCSS VitalCSS Furtive Bijou Milligram PureCSS Spark TypeBase Hoisin CuteGrids Schema CSS Emerald Siimple CoreCSS Bulma OutboxCraft PowerToCss Vanilla Framework InviCSS Look CSS Muffin CSS Materialize

  • Es mangelt nicht an Fachkräften

    Es mangelt nicht an Fachkräften

    Es mangelt nicht an Fachkräften. Zumindest ist das nicht das zentrale Problem in der IT und der Digitalisierung. Es mangelt aber an elementarer strategischer Kompetenz im Umgang mit IT- und Digitalprojekten. Wenn jemand beruflich Internet- und Webprojekte betreut, und den Unterschied zwischen einem Client und einem Server nicht kennt, dann ist das wirklich ein grundsätzliches…

  • PHP Snippet: isValidEmail­Address($email)

    PHP Snippet: isValidEmail­Address($email)

  • Material Design & Material Design Lite

    Material Design & Material Design Lite

    Material.io MD Icons Official Guide MD Icons (filled) MD Icons Overview MD Icons on GitHub GetMDL Introduction to MDL Official MDL Website Material Design Introduction and Explaination (official) MDL Repo Material Design Icons Guide Material Design Icons Übersicht Material Design Palette Material Design Guide on Color

  • Practical HTML UTF8 Characters

    Practical HTML UTF8 Characters

    Zero width space: ​ Bullet: ● ● Fisheye Bullet: ◉ ◉ Hollow arrow right: ⇒ ⇒

  • Yii Framework

    Yii Framework

    Yii is one of the lesser known PHP Frameworks, but it has been around for quite some time and is notably popular with professional developers who hate faffing about when building web applications. It’s a sort-of secret tip and go-to toolkit for those who hate the shoddy and sub-par data- and application models of WordPress,…