Skip to content

Instantly share code, notes, and snippets.

View xoddong's full-sized avatar

TaeHoon Yoon xoddong

  • San Francisco, CA
View GitHub Profile
@xoddong
xoddong / slack-dark-theme.css
Created February 26, 2019 02:32 — forked from gkostov/slack-dark-theme.css
Dark theme for slack
.c-mrkdwn__broadcast--mention {
color: #555;
}
.channel_header, #col_messages,
#client_body:not(.onboarding):not(.feature_global_nav_layout):before,
#footer {
box-shadow: inset 1px 0 0 0 #555 !important;
}
@xoddong
xoddong / gist:48efe0bda921fee06fff
Created July 9, 2015 18:22
Multiply Function
var multiply = function() {
var _args = [].slice.call(arguments);
var length = _args.length;
if (Array.isArray(this)) {
this.push(_args.pop());
if (this.length === 3) {
return (this[0] * this[1] * this[2]);
}