This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <body> | |
| <h1>탭 테스트</h1> | |
| <input type="button" name="1" value="1" tabindex="1"> | |
| <input type="button" name="2" value="2" tabindex="2"> | |
| <input type="button" name="3" value="3" tabindex="3"> | |
| <button tabindex="-1">이건 열외</button> | |
| </body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script src="http://code.jquery.com/jquery-latest.js"></script> | |
| <meta charset=utf-8 /> | |
| <title>Auto Resize Textarea</title> | |
| <style> | |
| .wrap { | |
| width: 500px; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var idx = 0; | |
| function ToggleStatus(count) { | |
| idx++; | |
| if (idx < count) { | |
| var toggleTimer = $timeout(function () { | |
| $scope.heroStatType = !$scope.heroStatType; | |
| ToggleStatus(count); | |
| }, 1500 * idx + 1000); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " Make Vim more useful | |
| set nocompatible | |
| " Use the OS clipboard by default (on versions compiled with `+clipboard`) | |
| " Set color scheme! | |
| colorscheme koehler | |
| set clipboard=unnamed | |
| " Enhance command-line completion | |
| set wildmenu | |
| " Allow cursor keys in insert mode | |
| set esckeys |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| if [ -z $1 ] ; then | |
| echo "Usage: $0 [start|stop|restart] " | |
| exit 1 | |
| fi | |
| # Source the common setup functions for startup scripts | |
| test -r /etc/rc.common || exit 1 | |
| . /etc/rc.common |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| if [ -z $1 ] ; then | |
| echo "Usage: $0 [start|stop|restart] " | |
| exit 1 | |
| fi | |
| # Source the common setup functions for startup scripts | |
| test -r /etc/rc.common || exit 1 | |
| . /etc/rc.common |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 키보드 오래 누르고 있을 때 | |
| defaults write -g ApplePressAndHoldEnabled -bool false | |
| # 아이튠즈 한글 환경 강제 | |
| defaults write -app iTunes AppleLanguages "(ko)" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ## Please update your redis.conf demonize mode to yes `daemonize yes` | |
| if [ -z $1 ] ; then | |
| echo "Usage: $0 [start|stop|restart] " | |
| exit 1 | |
| fi | |
| # Source the common setup functions for startup scripts |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| find / -size +102400k -print|xargs ls -hl |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| export GOPATH=$(pwd) | |
| kill $(pgrep revel) | |
| daemon bin/revel run pebbler prod |