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
$ rake | |
rake test | |
GIT https://github.com/picoruby/mruby-compiler2.git -> build/repos/host/mruby-compiler2 | |
Cloning into '/Users/kouji/work/picoruby/R2P2/lib/picoruby/build/repos/host/mruby-compiler2'... | |
remote: Enumerating objects: 115, done. | |
remote: Counting objects: 100% (115/115), done. | |
remote: Compressing objects: 100% (96/96), done. | |
remote: Total 115 (delta 1), reused 89 (delta 1), pack-reused 0 (from 0) | |
Receiving objects: 100% (115/115), 73.14 KiB | 2.03 MiB/s, done. | |
Resolving deltas: 100% (1/1), done. |
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
@setlocal | |
call %~dp0ruby_2.4.2-2-x86\bin\ridk.cmd enable | |
@if not exist "%HOME%" @set HOME=%HOMEDRIVE%%HOMEPATH% | |
@if not exist "%HOME%" @set HOME=%USERPROFILE% | |
@cd /d %~dp0 | |
@start %COMSPEC% |
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
cask_args appdir: '/Applications' | |
tap 'caskroom/cask' | |
tap 'caskroom/fonts' | |
tap 'homebrew/bundle' | |
tap 'homebrew/dupes' | |
tap 'homebrew/services' | |
tap 'homebrew/versions' |
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 ruby | |
BREWFILE_DIR = '~/local/etc' | |
module StringAsk | |
refine String do | |
def ask? | |
print("#{self}? [y/N] ") | |
if /y|yes|t|true/i =~ gets.chomp | |
return true |
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
;; -*- mode: emacs-lisp -*- | |
;; This file is loaded by Spacemacs at startup. | |
;; It must be stored in your home directory. | |
(defun dotspacemacs/layers () | |
"Configuration Layers declaration. | |
You should not put any user code in this function besides modifying the variable | |
values." | |
(setq-default | |
;; Base distribution to use. This is a layer contained in the directory |
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
要望=(U)不明/(I)インストール/(R)削除/(P)完全削除/(H)保持 | |
| 状態=(N)無/(I)インストール済/(C)設定/(U)展開/(F)設定失敗/(H)半インストール/(W)トリガ待ち/(T)トリガ保留 | |
|/ エラー?=(空欄)無/(R)要再インストール (状態,エラーの大文字=異常) | |
||/ 名前 バージョン アーキテクチャ 説明 | |
+++-=====================================================================-=======================================-=======================================-=============================================================================================================================================== | |
ii adduser 3.113+nmu3 all add and remove users and groups | |
ii alsa-base 1.0.25+3~deb7u1 all ALSA driver configuration files | |
ii alsa-utils |
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
gem install smalruby smalruby-editor | |
rbenv rehash |
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 | |
# repository | |
EPEL=epel-release-6-8.noarch | |
rpm -q $EPEL | |
if [ $? -eq 1 ]; then | |
cd /tmp | |
wget http://dl.fedoraproject.org/pub/epel/6/x86_64/$EPEL.rpm | |
rpm -Uvh $EPEL.rpm | |
fi |
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 | |
# system update | |
yum -y update | |
yum -y install SDL-devel SDL_image-devel SDL_mixer-devel SDL_ttf-devel ipa-gothic-fonts.noarch ipa-mincho-fonts.noarch ipa-pgothic-fonts.noarch ipa-pmincho-fonts.noarch | |
# SGE | |
if [ ! -e /usr/lib/libSGE.so ]; then | |
cd /usr/local/src | |
if [ ! -e sge030809 ]; 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
#!/usr/bin/env bash | |
# repository | |
EPEL=epel-release-6-8.noarch | |
rpm -q $EPEL | |
if [ $? -eq 1 ]; then | |
cd /tmp | |
wget http://dl.fedoraproject.org/pub/epel/6/x86_64/$EPEL.rpm | |
rpm -Uvh $EPEL.rpm | |
fi |
NewerOlder