Autor: Phillip Richdale

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

  • Aktuelle Heiseshow zum Thema DSGVO

    Aktuelle Heiseshow zum Thema DSGVO

    https://www.youtube.com/watch?v=KmrkP2yyrms&t=4m55s

  • 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)

  • EU Datenschutz­grundverordnung DSGVO

    EU Datenschutz­grundverordnung DSGVO

    Die DSGVO rückt näher. Mit dieser EU-weit vereinheitlichten Gesetzeslage wird der Datenschutz noch mal ein Stück ernster genommen. Wer dieses Thema schleifen lässt, den erwarten unangenehme Überraschungen. Es steht zu erwarten, das die Behörden zum Thema Datenschutz deutlich humorloser und strenger werden. Hier ein paar Links zum Thema:

  • 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.

  • Search & Replace with / Suchen & Ersetzen mit grep & sed

    Search & Replace with / Suchen & Ersetzen mit grep & sed

    grep -rl „[SUCHBEGRIFF]“ | xargs sed -i ’s,[SUCHBEGRIFF],[ERSATZ],g‘

  • HNPWA

    HNPWA

    A nice way to compare frameworks: HNPWA.

  • Rust Language Overview

    Rust Language Overview

    Briefly on Rust (German) Rust The Rust Book Rust by Example Rust Extension for VS Code

  • PHP Standard Recommendations

    PHP Standard Recommendations

    PSR-1 PSR-2 PSR-3 PSR-4 PSR-6 PSR-7 PSR-11 PSR-13 PSR-15 PSR_16

  • Sort the output of ‚ls‘

    Sort the output of ‚ls‘

    Sort ls output – Directories, then files, then links: ls -la | grep „^d“ && ls -la | grep „^-“ && ls -la | grep „^l“

  • 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

  • How to do Scrum without killing yourself (Update 2020)

    How to do Scrum without killing yourself (Update 2020)

    How to do Scrum without killing yourself (Presentation Slides) Once again it was a pleasure hanging out with the Web Engineering Group Düsseldorf (Meetup, Twitter). This time as a speaker. Great audience, good questions, good feedback. Nice. Largest attending audience yet for WebEngDus, btw. 👍

  • UTF 8 Icons

    UTF 8 Icons

    UTF 8 Icons W3Schools

  • PHP: URL path to file in same directory

    PHP: URL path to file in same directory

    <?php $urlPathToFileInSameDirectory = (isset($_SERVER[‚HTTPS‘])) ? „https“ : „http“ . str_replace(‚/index.php‘,““,str_replace(basename(__FILE__),““,“://$_SERVER[HTTP_HOST]$_SERVER[PHP_SELF]“)).’/MyFileName.txt‘; ?>  

  • 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

  • Bash CLI Farben/Colors

    Bash CLI Farben/Colors

    reg bld und tput-command-colors Text Text Text $(tput setaf 1) Text Text Text $(tput setaf 2) Text Text Text $(tput setaf 3) Text Text Text $(tput setaf 4) Text Text Text $(tput setaf 5) Text Text Text $(tput setaf 6) Text Text Text $(tput setaf 7) Bold $(tput bold) Underline $(tput sgr 0 1) Reset…

  • 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.

  • Cookiehinweis und „Gut is‘.“? … Nein, ganz bestimmt nicht.

    Cookiehinweis und „Gut is‘.“? … Nein, ganz bestimmt nicht.

    Die EU DSGVO kommt und sie kommt mit Karacho. Wer meint, er hätte seine Schuldigkeit mit einem generischen, oftmals nervigen und weitgehend sinnfreien Cookiehinweis auf seiner Website getan, täuscht sich gewaltig. Dokumentationspflicht, Privacy by Design, Privacy by Default, Kopplungsverbot und weitere Grundkonzepte, die tief in der EU DSGVO verankert sind, sind mit Cookiepopups und dem…