Skip to content

Instantly share code, notes, and snippets.

View mrmusa's full-sized avatar

Musa Siddeeq mrmusa

  • Tier One Solutions, LLC
  • Atlanta, Georgia
View GitHub Profile
@mrmusa
mrmusa / Native Select Menu for List
Created December 16, 2013 18:52
simple native select menu hack for developers using ionic framework
<label class="item item-icon-right">
<select style="opacity:0; width:100%; position:absolute; z-index=100" ng-options="option for option in question.options">
<option value="">Select...</option>
</select>
<span class="input-label">Input Label:</span>
<span class="item-note">Your answer was {{ question.responses[0] }}</span>
<i class="icon ion-ios7-arrow-down"></i>
</label>

What I Wish I'd Known About Equity Before Joining A Unicorn

Disclaimer: This piece is written anonymously. The names of a few particular companies are mentioned, but as common examples only.

This is a short write-up on things that I wish I'd known and considered before joining a private company (aka startup, aka unicorn in some cases). I'm not trying to make the case that you should never join a private company, but the power imbalance between founder and employee is extreme, and that potential candidates would

@mrmusa
mrmusa / input.scss
Created June 27, 2022 20:43
Generated by SassMeister.com.
$hoursIntlBroadcast: (0: 6, 1: 7, 2: 8, 3: 9, 4: 10, 5: 11, 6: 12, 7: 13, 8: 14, 9: 15, 10: 16, 11: 17, 12: 18, 13: 19, 14: 20, 15: 21, 16: 22, 17: 23, 18: 0, 19: 1, 20: 2, 21: 3, 22: 4, 23: 5);
$minutesResolution: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59;
$fiveMinutesResolution: 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55;
@function formatEvent($prefix, $hour, $minute, $postfix) {
@if $hour < 10 {
$hour: '0' + $hour;
}
@if $minute < 10 {
$minute: '0' + $minute;