校内カースト最底辺のギークが協力者を得て知恵を絞り、ジョックを倒してクインビーを獲得するサクセスストーリー。 ペットの青いたぬきがマスコットとして人気を博した。
藤子F不二雄
| % AWS_DEFAULT_PROFILE=dev-shared-provisioning-script-deployer ./create_ami.sh | |
| amazon-ebs output will be in this color. | |
| ==> amazon-ebs: Force Deregister flag found, skipping prevalidating AMI Name | |
| ==> amazon-ebs: No AMI was found matching filters: { | |
| ==> amazon-ebs: Filters: [ | |
| ==> amazon-ebs: { | |
| ==> amazon-ebs: Name: "root-device-type", | |
| ==> amazon-ebs: Values: ["ebs"] | |
| ==> amazon-ebs: }, |
| #!/usr/bin/env bash | |
| set -ex | |
| ip_list=() | |
| ip_list+=("192.168.1.1") | |
| ip_list+=("192.168.1.2") | |
| ip_list+=("192.168.1.3") | |
| ip_list+=("192.168.1.4") |
| [error] RemoteTransportException: : [node03][inet[/192.168.1.3:9300]][indices:data/read/search] (TransportSearchTypeAction.java:233) | |
| [error] org.elasticsearch.action.search.type.TransportSearchTypeAction$BaseAsyncAction.onFirstPhaseResult(TransportSearchTypeAction.java:233) | |
| [error] org.elasticsearch.action.search.type.TransportSearchTypeAction$BaseAsyncAction$1.onFailure(TransportSearchTypeAction.java:179) | |
| [error] org.elasticsearch.search.action.SearchServiceTransportAction$6.handleException(SearchServiceTransportAction.java:249) | |
| [error] org.elasticsearch.transport.netty.MessageChannelHandler.handleException(MessageChannelHandler.java:185) | |
| [error] org.elasticsearch.transport.netty.MessageChannelHandler.handlerResponseError(MessageChannelHandler.java:175) | |
| [error] org.elasticsearch.transport.netty.MessageChannelHandler.messageReceived(MessageChannelHandler.java:125) | |
| [error] org.elasticsearch.common.netty.channel.SimpleChannelUpstreamHandler.handleUpstream(SimpleChannelUpstreamHandler.java:70) | |
| [error] org.el |
| // ==UserScript== | |
| // @name Github milestone enhanced issue list | |
| // @namespace https://github.com/bigwheel | |
| // @version 1.0 | |
| // @description this is description | |
| // @author bigwheel | |
| // @match http://github.o-in.dwango.co.jp/* | |
| // @grant GM_xmlhttpRequest | |
| // @require http://crypto-js.googlecode.com/svn/tags/3.1.2/build/rollups/md5.js | |
| // ==/UserScript== |
| import com.sksamuel.elastic4s.ElasticClient | |
| import com.sksamuel.elastic4s.ElasticDsl._ | |
| import com.sksamuel.elastic4s.ElasticsearchClientUri | |
| import org.elasticsearch.common.settings.ImmutableSettings | |
| import org.elasticsearch.node.NodeBuilder._ | |
| import scala.collection.JavaConverters._ | |
| object Main { | |
| private def transportClient = { | |
| val settings = ImmutableSettings.settingsBuilder. |
| package utils.specs2 | |
| import org.specs2.main.SmartDiffs | |
| import play.api.libs.json._ | |
| import scala.util.Success | |
| import scala.util.Try | |
| object JsonProcessableDiffs extends SmartDiffs { | |
| private[this] def toJsObectOption(map: Map[String, JsValue]) = if (map.isEmpty) |
| // ==UserScript== | |
| // @name 適当な名前 | |
| // @namespace https://github.com/bigwheel とか | |
| // @version 1.0 | |
| // @description this is description | |
| // @author 著者 | |
| // @match https://github.com/* 適応したいURLをワイルドカードで | |
| // @grant GM_xmlhttpRequest SCPやらajaxのクロスドメイン問題を避けるためにこれを使おう | |
| // ==/UserScript== |
| val scoobiRun = taskKey[Int]("A sample int task.") | |
| scoobiRun := { | |
| (compile in Compile).value | |
| println(1) | |
| 1 | |
| } |