Thema: Tech
-
HNPWA
A nice way to compare frameworks: HNPWA.
-
Rust Language Overview
Briefly on Rust (German) Rust The Rust Book Rust by Example Rust Extension for VS Code
-
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 ls output – Directories, then files, then links: ls -la | grep „^d“ && ls -la | grep „^-“ && ls -la | grep „^l“
-
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
Intro to The 8-Point Grid System Spec.fm on The 8-Point Grid
-
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)
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
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…
-
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 }
-
PhpMyAdmin SQL Dump – split into smaller files / in kleinere Dateien aufteilen
csplit MEINE_SQL_DATEI.sql ‚/– ——————————————————–/‘ {9999} && rename ’s/(xx.*)/$1.sql/‘ * xx – Je nach Anzahl der Fragmentdateien stehen im Prefix mehr oder weniger Xe.
-
PHP Frameworks & Toolkits
Symfony Phalcon CakePHP ZendFW 2ndLayer FuelPHP Yii Laravel PHPixie
-
Online IDEs
Codiad Ace Editor Atom in Orbit IceCoder Cloud 9 CodeEnvy Codingground Codeanywhere Koding ShiftEdit Orion Eclipse Che Eclipse Dirigible (Runtime Environment) Jdoodle (Online Compiler) Zed
-
JavaScript & TypeScript Coding Standards
JS Standard Style Excel Micro TypeScript Style Guide Angular Styleguide
-
Masonry Layout Solutions
MasonryJS CSS Masonry CementJS Gridster Savvior Salvattore Isotope
-
JS, NodeJS, Microservices & Contemporary Software Development
JavaScript Masterclass Use NodeJS for everything The Hitchhiker’s Guide to All Things Memory in Javascript The myth of the “Real JavaScript Developer” Mastering Chaos – A Netflix Guide to Microservices An Overview of Designing Microservices SOLID Principles of Object Oriented and Agile Design The JavaScript Semicolon JavaScript Promises NodeJS at Netflix Why Netflix whent with…
-
Toolkits for NodeJS Development
Article on the NodeTrine ORM SocketIO – Real Time Socket Communication SailJS Web Development Framework TotalJS Web Development Framework Waterline – NodeJS ORM
-
Remove „Private:“ from the titles of private WordPress pages
# add to functions.php of your theme function the_title_trim($title) { $title = attribute_escape($title); $findthese = array( ‚#Protected:#‘, ‚#Private:#‘ ); $replacewith = array( “, // What to replace „Protected:“ with “ //What to replace „Private:“ with ); $title = preg_replace($findthese, $replacewith, $title); return $title; } add_filter(‚the_title‘, ‚the_title_trim‘);
-
JavaScript Knowlege Links
Master the JavaScript Interview: What is Functional Programming? Master the JavaScript Interview: Soft Skills Top JavaScript Frameworks & Topics to Learn in 2017 Master the JavaScript Interview: What is a Closure? Eloquent JavaScript Common Misconceptions about JavaScript Advice on OOP in JavaScript
-
TabrisJS
https://tabrisjs.com/
-
WordPress RTE Keyboard Shortcuts