Skip to content

Instantly share code, notes, and snippets.

View ckoulatsi's full-sized avatar

Carlos Koulatsi ckoulatsi

  • iWorx - Web & Interactive Services
  • Heraklion Crete - Greece
View GitHub Profile
@ckoulatsi
ckoulatsi / php-array_filter.md
Last active January 2, 2023 12:35
[PHP] Useful snippets #functions #classes

array_filter (with a custom filter example)

<?php 
    $items = [
        [
            'author' => 'Stephen King',
            'title' => 'The Thing',
            'year' => 1979
        ],
@ckoulatsi
ckoulatsi / Device Specific CSS Media Queries Collection.md
Last active May 25, 2021 20:00
[Media Queries] Device Specific Collection #smartphone #mediaQueries #css
@ckoulatsi
ckoulatsi / .gitignore
Last active April 20, 2020 20:48
[.gitignore for WP] #git #wp
# ignore everything in the root except the "wp-content" directory.
!wp-content/
# ignore everything in the "wp-content" directory, except:
# "mu-plugins", "plugins", "themes" directory
wp-content/*
!wp-content/mu-plugins/
!wp-content/plugins/
!wp-content/themes/