Skip to content

Instantly share code, notes, and snippets.

View hadongsoo's full-sized avatar
:octocat:
keep stuying

hadongsoo

:octocat:
keep stuying
View GitHub Profile
@hadongsoo
hadongsoo / sass-mixin.scss
Created January 20, 2017 12:39
sass mixin collection
@mixin css3($property, $value) {
@each $prefix in -webkit-, -moz-, -ms-, -o-, '' {
#{$prefix}#{$property}: $value;
}
}
.border_radius {
@include css3(transition, 0.5s);
}
@hadongsoo
hadongsoo / emacs-loader
Created October 16, 2016 04:33
emacs for daemon
tell application "Terminal"
try
-- we look for <= 2 because Emacs --daemon seems to always have an entry in visibile-frame-list even if there isn't
set frameVisible to do shell script "/Applications/Emacs.app/Contents/MacOS/bin/emacsclient -e '(<= 2 (length (visible-frame-list)))'"
if frameVisible is not "t" then
-- there is a not a visible frame, launch one
do shell script "/Applications/Emacs.app/Contents/MacOS/bin/emacsclient -c -n"
end if
on error
-- daemon is not running, start the daemon and open a frame
@hadongsoo
hadongsoo / favorites4each_beta.user.js
Last active March 12, 2020 04:37
eachWebsite has favorites
// ==UserScript==
// @name inging) favorites4eachVal
// @namespace Violentmonkey Scripts
// @grant none
// @version 1.0
// @author -
// @include /^https?://manamoa[0-9].*\/*/
// @include *://tgd.kr/clips*
// @include *://bbs.ruliweb.com/*
// @run-at document-end
@hadongsoo
hadongsoo / allset.user.js
Created March 6, 2020 13:16
allset for violentmonkey
// ==UserScript==
// @name allset
// @namespace Violentmonkey Scripts
// @exclude *://*/*
// @grant none
// @version 1.0
// @author dongsoo
// @grant GM_addStyle
// @grant GM_info
// @grant GM_setValue
// ==UserScript==
// @name youtube_menu_fliter
// @namespace Violentmonkey Scripts
// @match https://www.youtube.com/*
// @grant none
// @version 1.0
// @author -
// @run-at document-end
// @description 2020. 3. 6. 오후 4:23:04
// ==/UserScript==
@hadongsoo
hadongsoo / manamoa_fullscreen_shortcut.user.js
Last active February 28, 2020 13:40
manamoa fullscreen shortcut
// ==UserScript==
// @name manamoa-full-screen
// @version 1.0
// @description F key for fullscreen
// @author dongsoo
// @include /^https?://manamoa[0-9]{0,2}\.net\/bbs\/board\.php\?bo_table=manga\&wr_id/
// @grant none
// ==/UserScript==
wait = (ms) => {
@hadongsoo
hadongsoo / youtube_recommend_filter.user.js
Last active February 26, 2020 14:25
youtube_recommend_filter.user.js
// ==UserScript==
// @name ytb_recommended_filter
// @namespace Violentmonkey Scripts
// @match https://www.youtube.com/
// @grant none
// @version 1.0
// @author -
// @run-at document-start
// ==/UserScript==
@hadongsoo
hadongsoo / twitch_clips_download_button.js
Last active February 24, 2020 11:09
twitch_clips_download_button
// ==UserScript==
// @name twitch_clips_longclickdown
// @version 1
// @grant none
// @match *://www.twitch.tv/*/clip/*
// @match *://clips.twitch.tv/*
// @run-at document-end
// @grant GM_addStyle
// ==/UserScript==
@hadongsoo
hadongsoo / tgd_hotclip_block.user.js
Last active February 24, 2020 10:59
tgd hotclip keyword block
// ==UserScript==
// @name tgd_hotclick_block
// @version 1
// @grant none
// @include *://tgd.kr/clips*
// @run-at document-end
// @grant GM_addStyle
// ==/UserScript==
GM_addStyle(`
@hadongsoo
hadongsoo / tgd_clip_page.user.js
Last active February 24, 2020 10:56
tgd.kr sometimes show blank streamer name fix manually
// ==UserScript==
// @name tgd_clip_page
// @namespace Violentmonkey Scripts
// @match https://tgd.kr/clips/*
// @exclude https://tgd.kr/clips/lists/*
// @grant none
// @version 1.0
// @author -
// @description 2020. 2. 9. 오전 2:03:15
// ==/UserScript==