Thema: Web Development & Design
-
The Gulp API Documentation
Very useful. Obviously.
-
Interview mit Martin Fowler zum Thema Refactoring
Martin Fowler Interview
-
Professionelle Webentwicklung und Frickelbuden
Als erfahrener Websoftwareentwickler werde ich immer wieder mit mitunter seltsamen Anforderungen und Anfragen konfrontiert. Oft ergibt sich hier bei einem Sondierungsgespräch die Frage, was ich denn mit „Professioneller Webentwicklung“ meine. Hier dazu eine Erklärung:
-
Software Project Anti-Patterns
Here are some of the key things I’ve seen lead to problems in software projects, most of which are not directly related to the core development (design, build, and test) of the project.
-
React JS
Within the last decade React has become the de-facto standard technology for Web UIs, along with the concept of „Virtual DOM“. Now with the patents problem removed and React – just like jQuery – becoming a first-class citizen in WordPress with the release of WordPress 5.0 there is yet another solid reason to become familiar…
-
PHP Static Analysis Tools
https://github.com/exakat/php-static-analysis-tools Seperate mention: Exakat
-
CLI Font Converter for the Web
An article on this. CSS3FontConverter
-
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
Update all global packages: npm update -g Show outdated packages: npm outdated -g –depth=0
-
Matt Mullenweg – State of the Word Speech 2018
https://www.youtube.com/watch?v=aWlfp-1Q19I
-
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
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
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
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
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
The complete guide to Angular Material Themes Angular Material (official)
-
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
-
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
-
PHP Snippet: isValidEmailAddress($email)
-
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