Skip to content

Instantly share code, notes, and snippets.

View dextermb's full-sized avatar
💭
Thinking of the next big thing

Dexter Marks-Barber dextermb

💭
Thinking of the next big thing
View GitHub Profile
@dextermb
dextermb / gist:3722586dec9f8431374618a438f391cc
Created January 27, 2020 11:03 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@dextermb
dextermb / Margin Loop for LESS
Last active December 2, 2017 16:22 — forked from pjschreifels/Margin Loop for LESS
#layout #less - Create top, right, bottom and left margin classes from 0px to 50px in 5px increments. Use as .mt_x, mb_x, mr_x, ml_x (top, bottom, right left margin, respectively), where x is a number from 0 to 50.
// Margin classes
// -------------------------
@from : 0;
@to : 50;
.loop(@index) when(@index =< @to) {
.m-t-@{index} {
margin-top: unit(@index, px);
}
@dextermb
dextermb / in_arrayi.php
Created October 11, 2016 11:21 — forked from sepehr/in_arrayi.php
PHP: Case-insensitive in_array()
<?php
/**
* Case-insensitive in_array() wrapper.
*
* @param mixed $needle Value to seek.
* @param array $haystack Array to seek in.
*
* @return bool
*/