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
$ brew doctor | |
Warning: You have leftover files from an older version of Xcode. | |
You should delete them using: | |
/Developer/Library/uninstall-developer-folder | |
Warning: Unbrewed dylibs were found in /usr/local/lib. | |
If you didn't put them there on purpose they could cause problems when | |
building Homebrew formulae, and may need to be deleted. | |
Unexpected dylibs: |
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
diff --git a/plugins/include_array.rb b/plugins/include_array.rb | |
index 000040f..0758e53 100644 | |
--- a/plugins/include_array.rb | |
+++ b/plugins/include_array.rb | |
@@ -31,6 +31,11 @@ module Jekyll | |
end | |
- | |
rtn = '' | |
+ n_files = context.environments.first['site'][@array_name].size ? \ | |
+ context.environments.first['site'][@array_name].size : 0 |
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
if [[ "$OSTYPE" =~ "cygwin" ]];then | |
function ln { | |
opt="/H" | |
if [ "$1" = "-s" ];then | |
opt="" | |
shift | |
fi | |
target="$1" | |
if [ -d "$target" ];then | |
opt="/D $opt" |
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
# cp wraper for BSD cp (make it like GNU cp){{{ | |
# Remove the end "/" and change -r to -R | |
if ! cp --version 2>/dev/null |grep -q GNU;then | |
function cp { | |
local opt="" | |
local source="" | |
local dest="" | |
while [ $# -gt 0 ];do | |
if [[ "$1" == -* ]];then | |
if [ "$1" == "-r" ];then |
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
if has("gui_running") && ( has("win32unix") || has ("win64unix") || has("win32") || has ("win64") ) | |
set viminfo+=n~/.vim/gviminfo | |
else | |
set viminfo+=n~/.vim/viminfo | |
endif |
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
; Auto execute section is the region before any return/hotkey | |
; For Terminal/Vim | |
GroupAdd Terminal, ahk_class PuTTY | |
GroupAdd Terminal, ahk_class mintty ; cygwin | |
GroupAdd TerminalVim, ahk_group Terminal | |
GroupAdd TerminalVim, ahk_class Vim | |
; Include IME.hak | |
; http://www6.atwiki.jp/eamat/pages/17.html |
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
Index: apt-cyg | |
=================================================================== | |
--- apt-cyg (revision 18) | |
+++ apt-cyg (working copy) | |
@@ -75,6 +75,11 @@ | |
tmp="`head -1 /etc/setup/last-cache`" | |
cache="`cygpath -au "$tmp"`" | |
fi | |
+ | |
+ if test -e /etc/setup/last-arch |
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/sh | |
# Variables | |
package="" | |
stowdir="." | |
targetdir=".." | |
simulation=0 | |
curdir=`pwd` | |
# Help |
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
diff --git a/article.html b/article.html | |
index 85fbd92..1d504b1 100644 | |
--- a/article.html | |
+++ b/article.html | |
@@ -3,7 +3,13 @@ | |
{% if index %} | |
<h1 class="entry-title"><a href="{{ root_url }}{{ post.url }}">{% if site.titlecase %}{{ post.title | titlecase }}{% else %}{{ post.title }}{% endif %}</a></h1> | |
{% else %} | |
+ {% if site.zenback_show == true and page.comments == true %} | |
+ <!-- zenback_title_begin --> |
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
" lightline.vim {{{ | |
if ! empty(neobundle#get("lightline.vim")) | |
let g:lightline = { | |
\"colorscheme": "jellybeans", | |
\"active": { | |
\"left": [["mode", "filename"], ["fugitive"]], | |
\"right": [["lineinfo"], ["fileinfo"]]}, | |
\"component_visible_condition": { | |
\"fugitive": '(exists("*fugitive#head") && ""!=fugitive#head())'}, | |
\'component_function': { |