Skip to content

Instantly share code, notes, and snippets.

View erickjones's full-sized avatar
👾
Giving 110%

Erick Jones erickjones

👾
Giving 110%
View GitHub Profile
@tovbinm
tovbinm / gist:2975609
Created June 22, 2012 22:47
Remove the “Last login” message from the Mac OS X Terminal
Remove:
touch .hushlogin
Get it back:
rm .hushlogin
@colinmeinke
colinmeinke / _unit.scss
Last active October 22, 2021 21:36
Sass remify/emify mixins
// Defaults
$base_font_size: 16px;
$rem_fallback: true;
// Usage: rem(16px);
@function rem(
$size,
$base_font_size: $base_font_size
) {
@return #{$size / $base_font_size}rem;
@joyrexus
joyrexus / README.md
Last active June 19, 2024 09:35 — forked from liamcurry/gist:2597326
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})
@natelandau
natelandau / .bash_profile
Last active June 13, 2024 18:01
Mac OSX Bash Profile
# ---------------------------------------------------------------------------
#
# Description: This file holds all my BASH configurations and aliases
#
# Sections:
# 1. Environment Configuration
# 2. Make Terminal Better (remapping defaults and adding functionality)
# 3. File and Folder Management
# 4. Searching
# 5. Process Management
@Benjaminsson
Benjaminsson / remify.scss
Last active July 30, 2020 08:45
SASS REMify
@mixin remify($property, $sizes) {
$pixelSizes: ();
$remSizes: ();
@each $s in $sizes {
$pixelSizes: append($pixelSizes, $s * 1px);
$remSizes: append($remSizes, rem($s));
}
#{$property}: $pixelSizes;