Skip to content
View mikem33's full-sized avatar
Block or Report

Block or report mikem33

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. pandora-boilerplate pandora-boilerplate Public

    A HTML5 Boilerplate to start a project.

    Stylus 6

  2. pandora-wordpress-theme pandora-wordpress-theme Public

    A Wordpress Starter theme.

    PHP

  3. miguelmorera.com miguelmorera.com Public

    PHP

  4. characters-replacer characters-replacer Public

    A simple tool to replace characters in a string.

    Stylus

  5. Slugify PHP Function Slugify PHP Function
    1
    function slugify($str) {
    2
        // Convert to lowercase and remove whitespace
    3
        $str = strtolower(trim($str));
    4
    
                  
    5
        // Replace high ascii characters
  6. Media Queries Sass Mixins Media Queries Sass Mixins
    1
    // $Media $Queries
    2
    @mixin above($value, $width: true) {
    3
        @if $width {
    4
            @media (min-width: em($value)) {
    5
                @content;