Skip to content

Instantly share code, notes, and snippets.

View nishigori's full-sized avatar
🏠
Working from home

Tak Nishigori nishigori

🏠
Working from home
View GitHub Profile
@nishigori
nishigori / noodle.md
Last active April 30, 2023 14:17
好きな麺料理ランキング
  1. カルボナーラ
  2. 坦々麺
  3. ゴルゴンゾーラのスパゲティ
  4. つけ麺
  5. 中華そば
  6. 蕎麦
  7. 福岡うどん
  8. 讃岐うどん
  9. カレーつけ蕎麦
  10. 塩ラーメン
@nishigori
nishigori / fedora-not-requires-gcc10.patch
Created August 6, 2021 06:36
Patch of kernel-5.10.50-44.132.amzn2.src.rpm
--- source/kernel.spec 2021-08-06 05:35:19.202753004 +0000
+++ nishigori/kernel.spec 2021-08-06 06:09:24.573573006 +0000
@@ -707,10 +707,12 @@ AutoReqProv: no\
%if ! 0%{?fedora}\
Requires(pre): %{_bindir}/find\
Requires(post): %{_sbindir}/hardlink\
+Requires: gcc\
+%else\
+Requires: gcc10\
%endif\
@nishigori
nishigori / CI.md
Last active August 29, 2015 14:03
CI Server Introduction

求めるCI Server像

必須:

  • Branch / PR作成時の自動テスト
  • Web hook
  • チャット/IRCへのNotification
  • 複数言語サポート
  • 並列ビルド
  • 高サービス稼働率
%define gitflowver 1.6.1
Name: gitflow
Version: %{gitflowver}
Release: 1%{?dist}
Summary: Extensions providing operations for V. Driessen's branching model
Group: Development/Tools
License: BSD
@nishigori
nishigori / build.xml
Created June 30, 2012 08:42
build.xml for Symfony2.1
<?xml version="1.0" encoding="UTF-8"?>
<project name="symfony" default="main">
<property name="appdir" value="${basedir}/app" />
<available file="${basedir}/php-cs-fixer.phar" property="php-cs-fixer-exist" />
<available file="${basedir}/composer.phar" property="composer-exist" />
<target name="main"
description="Run almost task"
@nishigori
nishigori / vim-build.sh
Last active September 26, 2015 16:47 — forked from tyru/build
Vim's build script.
#!/bin/sh
# Remove previous configure cache
if [ "$1" = "-f" ]; then
make distclean || rm src/auto/config.cache
fi
# configure & make
./configure \
--prefix=/usr/local \