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
/* | |
* Office UI Fabric Advent Calendar 2015用のドロップダウンボックスの | |
* サンプルプログラムで使用しているヘルパスクリプト | |
* | |
* 以下のサンプルプログラム(MIT License)のJSコードをサンプル用に一部 | |
* 修正しています。 | |
* Dropdown | |
* http://dev.office.com/fabric/components/dropdown | |
*/ |
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 | |
VPS_ROOT=/opt/vps | |
if [ $# -ne 2 ]; then | |
echo 'err: too few arguments.' | |
echo ' ./create_virtual_instance.sh <container_name> <addr>' | |
exit 1 | |
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
/* | |
* まんがタイムシリーズのBNFです。 | |
* 以下のURLでBNF→構文図式に変換します。 | |
* http://bottlecaps.de/rr/ui | |
* | |
* マルチバイト文字を含む要素では横幅が正しく計算されないようなので、 | |
* 空白を含めることで対応しています。 | |
* (入力文字と同じ数の空白を入れるとちょうど良さそうです) | |
*/ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 | |
# 作業用ディレクトリ | |
TMP_DIR=/tmp | |
CHECKED_LIST=$TMP_DIR/checked_list.txt | |
LICENSE_LIST=$TMP_DIR/license_list.txt | |
# パッケージの依存関係をdot形式で出力するルーチン | |
# (シェルスクリプト中から再帰的に呼ばれる) | |
pkg_depend() |
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/Installer/Installer.rc b/Installer/Installer.rc | |
index 3d7ad54..80d3490 100644 | |
--- a/Installer/Installer.rc | |
+++ b/Installer/Installer.rc | |
@@ -7,7 +7,7 @@ | |
// | |
// Generated from the TEXTINCLUDE 2 resource. | |
// | |
-#include "afxres.h" | |
+#include "windows.h" |
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
# Seastarのビルド | |
* Seaster・OSv Hands-on#1(http://connpass.com/event/15004) | |
* Fedora21-serverの環境で1CPU,メモリ2028MBでビルドした | |
* seastar(https://github.com/cloudius-systems/seastar)の"Building seastar on Fedora 21"の手順を実施し、ビルドに必要なパッケージをインストールした | |
* Fedora21-serverでは、上記パッケージに加え、libxml2-devel,libasan,libubsanが必要だった。 | |
## ビルド記録 | |
* allocator_testのリンク時にlibxml2のリンクで失敗 |
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
# Linuxカーネルのビルド・テスト用マシンの構築 | |
(あとでQiitaにまとめる内容のメモです) | |
* [Linux-4.0のライブパッチ機能を試してみる会(1)](http://connpass.com/event/14416/ "Linux-4.0のライブパッチ機能を試してみる会(1)")向けのメモです。 | |
## マシン構成 | |
* 内部ネットワーク側でビルド・テストマシンをNFSマウントする |
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
# | |
# Automatically generated file; DO NOT EDIT. | |
# Linux/x86 4.0.0 Kernel Configuration | |
# | |
CONFIG_64BIT=y | |
CONFIG_X86_64=y | |
CONFIG_X86=y | |
CONFIG_INSTRUCTION_DECODER=y | |
CONFIG_PERF_EVENTS_INTEL_UNCORE=y | |
CONFIG_OUTPUT_FORMAT="elf64-x86-64" |
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 | |
# VirtualBoxでVM毎のポートフォワーディング設定を一覧表示するシェルスクリプトです。 | |
# NATのホスト側ポート番号が重複していないかの確認用に利用します。 | |
# | |
# "-t"オプションを付与するとHTMLで結果を出力するので、w3m等で | |
# 見やすく整形できます。 | |
# $ ./list_port_forward_setting.sh -t | w3m -T text/html | |
if [ "$1" = "-t" ]; then |