Website Settings

Dondere modus
Hoog contrast
Font grootte
Lees pagina-inhoud
Afdrukken
  • Het is 25-02-2026 en week 09 in de Winter .

Account Settings

Winkelwagen

De winkelwagen is nog leeg

Essentiële onderdelen voor je digitale motor.

“Een roadtrip is pas geslaagd als elk onderdeel van de machine perfect samenwerkt. Mijn ‘Particles’ zijn de componenten die jouw applicaties, apps en websites laten draaien. Van Laravel-packages die complexe logica versimpelen tot specifieke WordPress-plugins die precies doen wat ze beloven. Ik ben deze deeltjes al sinds 2006 aan het verzamelen en verfijnen. Duik in mijn collectie bouwstenen en vind precies dat ene deeltje dat jouw project nog miste om op topsnelheid te komen.”

Nieuwste Particles

PHP Warning: “continue” targeting switch is equivalent to “break”. Did you mean to use “continue 2”?

Server warnings uitzetten – wordpress

ini_set(‘display_errors’,’Off’); ini_set(‘error_reporting’, E_ALL );

Set PHP in htaccess

# Change to PHP version 5.6 AddHandler application/x-httpd-php56 .php .php7 .php5 .php4 .php3 SetHandler application/x-lsphp56 # EOF

Git-flow fails with “fatal: no tag message? / Tagging failed. Please run finish again to retry”

before finish your release/hotfix branch add the tag manually git tag -a v0.1.2 -m “release_added”

Filter op lijst in WordPress > woocomerce > verzend methoden

add_filter(‘get_terms’, function($terms, $tax, $query_vars, $query){ if(is_admin() && get_post_type() == ‘product’ && in_array(‘product_shipping_class’, $tax) && count($tax) == 1){ usort($terms, ‘sort_by_name’); } return $terms; }, 10, 4); function sort_by_name($a, $b) { return strcmp($a->name, $b->name); }

Warning: Parameter 2 to ) expected to be a reference, value given in

Home