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
### /etc/make.conf | |
# For GentooLinux on X201s | |
CFLAGS="-march=core2 -O2 -fomit-frame-pointer -pipe" | |
CXXFLAGS="${CFLAGS}" | |
CHOST="x86_64-pc-linux-gnu" | |
MAKEOPTS="-j -l4" | |
FEATURES="ccache parallel-fetch metadata-transfer" | |
CCACHE_DIR="/var/tmp/ccache" | |
CCACHE_SIZE="4G" |
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
# For Gentoo/Linux on Sakura VPS(v3) 2G | |
CFLAGS="-march=native -O2 -pipe -fomit-frame-pointer" | |
CXXFLAGS="${CFLAGS}" | |
FFLAGS="${CFLAGS}" | |
FCFLAGS="${CFLAGS}" | |
CHOST="x86_64-pc-linux-gnu" | |
MAKEOPTS="-j4" | |
PORTDIR="/usr/portage" | |
DISTDIR="${PORTDIR}/distfiles" |
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
# virt-install --connect qemu:///system --hvm --os-type=Linux \ | |
--name nrt \ | |
--ram=4096 --disk=/var/lib/libvirt/images/nrt.img \ | |
--cdrom=/var/lib/libvirt/images/install-amd64-minimal-20120223.iso \ | |
--network bridge=br0 \ | |
--vnc --vncport 5900 \ | |
--extra-args='console=tty0 console=tty0,11520n8' |
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
$ emerge -avD @okkake | |
WARNING: One or more repositories have missing repo_name entries: | |
/home/rkmathi/rep/gh/rkmathi-overlay/profiles/repo_name | |
NOTE: Each repo_name entry should be a plain text file containing a | |
unique name for the repository on the first line. | |
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
# | |
# Automatically generated file; DO NOT EDIT. | |
# Linux/x86 3.12.2-gentoo Kernel Configuration | |
# | |
# | |
# Gentoo Linux | |
# | |
CONFIG_GENTOO_LINUX=y | |
CONFIG_GENTOO_LINUX_UDEV=y |
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 "InputClass" | |
Identifier "Trackpoint Wheel Emulation" | |
MatchProduct "TrackPoint" | |
MatchDevicePath "/dev/input/event*" | |
Driver "evdev" | |
Option "EmulateWheel" "true" | |
Option "EmulateWheelButton" "2" | |
Option "Emulate3Buttons" "false" | |
Option "XAxisMapping" "6 7" | |
Option "YAxisMapping" "4 5" |
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
require "capistrano_colors" | |
require "bundler/capistrano" | |
# RVM settings | |
# $:.unshift(File.expand_path("./lib", ENV["rvm_path"])) | |
require "rvm/capistrano" | |
set :rvm_type, :user | |
set :rvm_ruby_string, "1.9.3" | |
# Repository settings |
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
user {ユーザ名}; | |
worker_processes 4; | |
pid /var/run/nginx.pid; | |
events { | |
worker_connections 768; | |
} | |
http { |
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
# Copyright 1999-2013 Gentoo Foundation | |
# Distributed under the terms of the GNU General Public License v2 | |
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bsearch/bsearch-1.5.0.ebuild,v 1.1 2012/12/10 19:02:05 graaff Exp $ | |
EAPI=5 | |
USE_RUBY="ruby19" | |
RUBY_FAKEGEM_TASK_DOC="" | |
RUBY_FAKEGEM_EXTRADOC="Documentation/*" |
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
WIN_SIZE = [320, 320] | |
CTK_IMG = "ctk.png" | |
CTK_SIZE = [80, 80] | |
CTK_MOVE = 10 | |
ITF_IMG = "itf.png" | |
ITF_SIZE = [90, 60] | |
ITF_MOVE = 10 | |
enchant() |
OlderNewer