Thema: Web Development & Design

  • 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,…

  • Laravel Content Management Systems

    Laravel Content Management Systems

    October, Asgard, Lavalite, Coaster, Photon, Pyro

  • CSS BEM & OOCSS

    CSS BEM & OOCSS

    BEM OOCSS

  • Rasmus Lerdorf, creator of PHP on PHP in 2018

    Rasmus Lerdorf, creator of PHP on PHP in 2018

    „PHP runs crappy code really, really well.“ – Rasmus Lerdorf Rasmus Lerdof PHP Talk on PHP https://www.youtube.com/watch?v=rKXFgWP-2xQ

  • The Dynamic Web

    The Dynamic Web

    „A lot of stuff on the Web is dynamic for no good reason.“

  • OWASP – Open Web Application Security Project

    OWASP – Open Web Application Security Project

    OWASP

  • HTML & CSS Web Security

    HTML & CSS Web Security

    Mächtiges CSS und mächtiges HTML eröffnen neue Möglichkeiten – auch für Angreifer. Hier eine Liste an Sicherheitstchecklisten und HTML Security Ratgebern: The HTML & CSS Security Checklist HTML5Sec CSS ID Security Flaw Disallow IDs in selectors (csslint Feature)

  • WordPress + Laravel

    WordPress + Laravel

    WordPress & Laravel Laravel WP Backend Corcel

  • Use Cases und warum sie wichtig sind

    Use Cases und warum sie wichtig sind

    Bei der Entwicklung von Softwareprojekten und komplexeren Websites kommen im professionellen Umfeld so genannte Use Cases zum Einsatz. Use Cases sollen es allen Projektbeteiligten ermöglichen, sich die Vorgänge und Eigenschaften, die ein System hat, welches von Endnutzern verwendet wird (z.B. ein Intranetportal), bildhaft vorzustellen. Dies sind kleine Geschichten, die den Umgang verschiedener Nutzertypen und Akteure…

  • Laravel (2018)

    Laravel (2018)

    The all-out hipster among the PHP frameworks. Laravel LaraAdmin (Admin UI Toolkit) LaraCom (Laravel based E-Commerce) Lumen (Laravel MicroFW) Spark (Laravel Scaffolding) Statamic (Laravel Commercial CMS)

  • Into the Abyss

    Into the Abyss

    The mess that is WordPress and how to make the best of it (Presentation Slides) We had a neat Web Engineering Group Düsseldorf Meetup at the old Trivago location (they’re currently moving). Once again an awesome event with a very nice lineup of speakers. Enjoyed it a lot.

  • HNPWA

    HNPWA

    A nice way to compare frameworks: HNPWA.

  • HyperHTML

    HyperHTML

    HyperHTML is the newest … errm … Hype. Duh. 😎 HyperHTML – A Virtual DOM Alternative Hyperhtml Documentation Hyperhtml Github Repo Hyperhtml Website What’s new in V1? HyperHTML Styleguide JavaScript Template Literals The DOM is not slow, your abstraction is

  • The 8-Point Grid

    The 8-Point Grid

    Intro to The 8-Point Grid System Spec.fm on The 8-Point Grid

  • 35 Free Fonts

    35 Free Fonts

    35 Free Fonts

  • UTF 8 Icons

    UTF 8 Icons

    UTF 8 Icons W3Schools

  • Remote WordPress File Dump with wget & ftp (excluding uploads dir)

    Remote WordPress File Dump with wget & ftp (excluding uploads dir)

    Put this in a bash script and execute it: #!/bin/bash wget -X /PATH/TO/WP_ROOT/wp-content/uploads -r -nH -nc ftp://FTP_USER:FT_PPW@FTP_HOST//WP_ROOT

  • Browsersync with Proxy example

    Browsersync with Proxy example

    Very handy: browser-sync start –proxy „http://mytest.local/adminui.php?view=myview“ –files „/usr/share/webapps/myapp/myview“ –browser „firefox-developer“ proxy param gets URL to refresh, files param gets dir to observere, browser is the browser binary you want to launch and use. Browsersync has many other options. Find more information on the Browsersync website.

  • Prevent perpetual WordPress login redirects in local and test installations

    Prevent perpetual WordPress login redirects in local and test installations

    To prevent perpetual login redircet loops in local/development WordPress installations add this function to your wp-config.php (have it return the users ID you want to authenticate): function wp_validate_auth_cookie($cookie=“,$scheme=“) {         return 1; // admin user id }