Skip to content

Instantly share code, notes, and snippets.

View nico-martin's full-sized avatar
🤷‍♂️
I have no idea what I'm doing.. 90% of the time..

Nico Martin nico-martin

🤷‍♂️
I have no idea what I'm doing.. 90% of the time..
View GitHub Profile
@nico-martin
nico-martin / class-color-adjustments.php
Last active June 30, 2017 07:19
A PHP Class to adjust a hex value (basicly mixing with another color)
<?php
namespace SayHello\nm;
/**
* This Class provides some color adjustments
*
* @author Nico Martin <[email protected]>
*/
@nico-martin
nico-martin / WP - Google Analytics
Last active April 21, 2019 22:22
This is a little PHP Class that add google analytics to WordPress without lowering the Pagespeed Index. It saves analytics.js on the server and updates it daily via wp-cron.
<?php
namespace sayhello\Theme;
/**
* Get Google Analytics.js and saves it locally, inserts tracking code into wp_footer
* Advantage: No 2h googleanalytics.js cache
* +1 Google Page Speed Point
*
* @since 0.0.1
@nico-martin
nico-martin / hello-grid.scss
Last active March 24, 2017 14:48
A little Grid Snippet we use at sayhello.ch
/**
* Settings
*/
$grid-space-x : 2rem;
$grid-padding : ($grid-space-x/2);
$grid-columns : 12;
$grid-size : 1200px;