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
#!/bin/sh | |
### BEGIN INIT INFO | |
# Provides: unicorn | |
# Required-Start: $remote_fs $syslog | |
# Required-Stop: $remote_fs $syslog | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Manage unicorn server | |
# Description: Start, stop, restart unicorn server for a specific application. | |
### END INIT INFO |
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
root = "/vagrant/current" | |
working_directory root | |
pid "#{root}/tmp/pids/unicorn.pid" | |
stderr_path "#{root}/log/unicorn.log" | |
stdout_path "#{root}/log/unicorn.log" | |
listen "/tmp/unicorn.projectname.sock" | |
worker_processes 2 | |
timeout 30 |
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
" My default vimrc inspaired by KHZ ( https : //github.com/emoosx/dotvim ) && by Frew (http : //stackoverflow.com/users/12448/frew) via http : //stackoverflow.com/q/164847/216055 | |
set encoding=utf-8 | |
let &t_Co=256 | |
" And Thanks to @ChrisHunt for his awesome tal | |
" Configuration file for vim | |
" Pathogen | |
execute pathogen#infect() | |
" Vundle |
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
body { | |
margin: 0; | |
padding: 0; | |
font-size: 100%; | |
font-weight: normal; | |
font-family: Padauk, Tharlon, Myanmar Mn; } | |
body header { | |
display: block; | |
padding: 0px; | |
margin: auto; } |
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
$colorWhite : #f0f0f0; | |
$colorBlack : #090909; | |
$mmFont : Padauk , Tharlon , Myanmar Mn; | |
$padShort : 10px; | |
body { | |
header { | |
display: block; | |
padding: 0px; | |
margin:auto; |
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
Last login: Thu Jul 4 07:20:58 on ttys001 | |
Tin-Aung-Linn:~ tal$ cd ~/tinaunglinn.com/octopress | |
============================================================================== | |
= NOTICE = | |
============================================================================== | |
= RVM has encountered a new or modified .rvmrc file in the current directory = | |
= This is a shell script and therefore may contain any shell commands. = | |
= = | |
= Examine the contents of this file carefully to be sure the contents are = | |
= safe before trusting it! ( Choose v[iew] below to view the contents ) = |
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
<section id="header" contextmenu="mymenu"> | |
<header> | |
<h1>HTML5</h1> | |
<menu type="context" id="mymenu"> | |
<menuitem label="Refresh Post" onclick="window.location.reload();" > | |
</menuitem> | |
<menu label="Share on..."> | |
<menuitem label="Twitter" onclick="goShare('http://twitter.com/intent/tweet?text=' + document.title + ': ' + window.location.href);"> | |
</menuitem> | |
<menuitem label="Facebook" onclick="goShare('http://facebook.com/sharer/sharer.php?u=' + window.location.href);"> |
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
div.element{ | |
width:150px; | |
height:150px; | |
background:#dddddd; | |
position:relative; | |
padding:20px; | |
} |