View tree_install
This file contains 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 install tree |
View amazon.rb
This file contains 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
# amazon.rb - amazon affiliate links for jekyll | |
# assumes that you have a configuration variable called 'amazon_associate_id' with your associate id | |
# usage: {{ asin | amazon_product_href }} | |
# returns url of a product | |
# usage: {{ asin | amazon_image_href: 'M' }} | |
# returns image of the product, size argument can be S, M, or L, default M | |
# usage: {{ asin | amazon_product: 'A Product' }} |
View post.yml
This file contains 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
--- | |
published: [true | false] | |
layout: post | |
date: Y-m-d HH:MM | |
title: [text] | |
series: [text] | |
description: [text] | |
categories: [text, text...] | |
tag: | |
- [text] |
View httpd.conf
This file contains 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
ServerTokens ProductOnly | |
SercerRoot "/etc/httpd" | |
Timeout 60 | |
KeepAlive On | |
MaxKeepAliveRequests 100 | |
KeepAliveTimeout 10 | |
Listen 80 | |
#load modules |
View _colors.scss
This file contains 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
$palettes: ( | |
'typo': ( | |
'base': ( | |
'normal': #E6ECF2, | |
'light' : #ffffff, | |
'dark' : #dddddd | |
), | |
'inverse': ( | |
'normal': #444444, |
View add_date_for_csv.sh
This file contains 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
# すべての行の先頭に日付を追加 | |
LC_ALL=C sed -i -e 's/^/2014\/12\/08,/g' 2014-12-08.csv | |
# 先頭行の項目名を日付に修正する | |
LC_ALL=C sed -i -e '1s/^2014\/12\/08/日付/g' 2014-12-08.csv | |
# 月ごとにCSVを結合する | |
cat 2014-12-*.csv > 2014-12.csv | |
# すべてのCSVを結合する |
View tag_order.rb
This file contains 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
module Jekyll | |
module Filters | |
def tag_order(tags, order, orderby='ASC') | |
# order | |
case order | |
when 'count' then | |
order_tags = tags.sort_by { | t, posts | posts.count } | |
end |
View example.html
This file contains 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
<h1>Embed Example</h1> | |
<p>hoge</p> |
View _color_palettes.scss
This file contains 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
// Mixin to return the color code | |
// | |
// $palettes - Array containing the palette. | |
// $palette_name - The name of the palette. | |
// $property_name - The name of the property. | |
// $tone_name - (option) The name of the tone. | |
// $state_name - (option) The name of the state of tone. | |
// | |
@function palette( $palettes, $palette_name, $property_name, $state_name: 'normal', $tone_name: 'base' ){ | |
$error_color : #cc0000; |
View _colors.scss
This file contains 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
// Prism 0.1.0 | |
// http://prism.nukos.kitchen/ | |
// Copyright 2015 nuko's kitchen | |
// MIT License | |
$COLOR-PRIMARY: #fafafa !default; | |
$COLOR-TEXT_BASE: #444444 !default; | |
$COLOR-TEXT_INVERSE: #eeeeee !default; |
OlderNewer