Skip to content

Instantly share code, notes, and snippets.

View c0untd0wn's full-sized avatar

Beomki Lee c0untd0wn

View GitHub Profile
@c0untd0wn
c0untd0wn / snulife-oldtheme.user.js
Last active December 22, 2015 02:29
Change SNULife to its old design
// ==UserScript==
// @name snulife-oldtheme
// @version 0.8
// @description Change SNULife to its old design
// @include http://*.snulife.com/*
// @include http://snulife.com/*
// @updateURL https://raw.github.com/gist/6403669/snulife-oldtheme.user.js
// @copyright 2013+, c0untd0wn
// ==/UserScript==
@c0untd0wn
c0untd0wn / hangul.css
Created October 30, 2013 14:30
Use "Apple SD Gothic Neo" instead of ugly fonts such as "굴림", "돋움", etc.
@font-face {
font-family: AppleGothic;
src: local("Apple SD Gothic Neo");
}
@font-face {
font-family: Times;
src: local("Apple SD Gothic Neo");
}
@font-face {
PROMPT='%{$fg[magenta]%}%n%{$reset_color%} at %{$fg[yellow]%}%m%{$reset_color%} in %{$fg[green]%}%~%{$reset_color%}\
$(git_prompt_info) \
%{$fg[red]%}%(!.#.»)%{$reset_color%} '
PROMPT2='%{$fg[red]%}\ %{$reset_color%}'
RPS1='${return_code}'
ZSH_THEME_GIT_PROMPT_PREFIX="%{$reset_color%} on %{$fg[yellow]%}"
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_CLEAN=""
# Path to your oh-my-zsh configuration.
ZSH=$HOME/.oh-my-zsh
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
ZSH_THEME="c0untd0wn-solarized"
# Example aliases
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Ansi 0 Color</key>
<dict>
<key>Blue Component</key>
<real>0.0</real>
<key>Green Component</key>
<real>0.0</real>
@font-face {
font-family: AppleGothic;
font-weight: normal;
src: local("Apple SD Gothic Neo"),
local("Nanum Gothic");
}
@font-face {
font-family: AppleGothic;
font-weight: bold;
src: local("Apple SD Gothic Neo"),
'use strict';
// Add ECMA262-5 method binding if not supported natively
//
if (!('bind' in Function.prototype)) {
Function.prototype.bind= function(owner) {
var that= this;
if (arguments.length<=1) {
return function() {
return that.apply(owner, arguments);