Skip to content

Instantly share code, notes, and snippets.

View blueberrystream's full-sized avatar
🐈
にゃーん

Fumihito Hachinohe blueberrystream

🐈
にゃーん
View GitHub Profile
#!/bin/bash
hoge="#"
if [ $hoge!="#" ]; then
echo "hoge is not # (1st)"
fi
if [ "$hoge " != "# " ]; then
echo "hoge is not # (2nd)"
fi
@blueberrystream
blueberrystream / MultidimensionalArrayTest.java
Created December 18, 2012 07:40
Javaの多次元配列の要素数について 配列の中に入る配列の要素数がバラバラになるようにしてみたらほんとにバラバラになって入った。気持ち悪い。
import java.io.UnsupportedEncodingException;
import java.util.ArrayList;
import java.util.List;
/**
* @author KID / @blueberrystream
*/
public class MultidimensionalArrayTest {
/**
* @param args
@blueberrystream
blueberrystream / 桁落ち.java
Created February 21, 2013 09:50
桁落ちのなにが悪いんだ?
/**
* @author KID / @blueberrystream
*/
public class 桁落ち {
/**
* @param args
*/
public static void main(final String[] args) {
final Long l1 = System.currentTimeMillis();
final Long l2 = System.currentTimeMillis() + 5;
@blueberrystream
blueberrystream / Chromeの起動スイッチうんぬんするやつメモ
Last active December 16, 2015 06:49
Chromeの起動スイッチいっぱいありすぎるし、なんかグラフィカルに起動スイッチ選んでいい感じにするもの作りたいけど…うんってやつ。
・chrome.exeの起動スイッチを設定できるGUI
起動オプション - Google Chrome まとめWiki http://chrome.half-moon.org/43.html
Chrome 26で新しくなった右クリックメニューを昔の見た目に戻す方法 : ライフハッカー[日本版] http://www.lifehacker.jp/2013/04/140413chrome_new_rightclick.html
公式ヘルプに起動オプションがまとまってたり、ということはなさそう
全オプション出すなら、最悪ソースコード見る必要があるかもしれない
・chrome.exeを適当にchrome.org.exeとかにリネームする
・GUIで設定した起動スイッチを指定してchrome.org.exeを叩くchrome.batを生成する
・chrome.batを実行するだけのchrome.exeを同梱しとく ←激しくダサい
あとchromeのアップデート走るたびに生成したchrome.exeは上書きされるので、アップデート後、生成やりなおす必要がある。
import java.util.Arrays;
import java.util.List;
/**
* @author KID / @blueberrystream
*
*/
public class ListFill {
/**
* @param args
@blueberrystream
blueberrystream / web.xml
Created May 13, 2013 07:32
memvache組み込んだときのweb.xml QuotaDetail画像 // Master/Slave datastoreの警告出てるぞっていう野暮なツッコミは受け付けておりません before: http://img.ly/images/7326644/full after: http://img.ly/images/7326646/full
<?xml version="1.0" encoding="utf-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee" version="2.5">
<context-param>
<param-name>slim3.rootPackage</param-name>
<param-value>com.appspot.haratter</param-value>
</context-param>
<context-param>
<param-name>javax.servlet.jsp.jstl.fmt.localizationContext</param-name>
<param-value>application</param-value>
@blueberrystream
blueberrystream / mysql_multi_secure_installation
Created February 4, 2015 05:37
mysql_secure_installationするときに/tmp/mysql.sockにシンボリックリンクを張って、終わったら消すやつ
#!/bin/bash
set -eux
# check simply argument
: $1
ln -s /tmp/mysql/socket/$1.sock /tmp/mysql.sock
mysql_secure_installation
rm /tmp/mysql.sock
@blueberrystream
blueberrystream / solarized-dark_putty.ini
Created February 10, 2015 05:47
putty.iniに書くSolarized Dark色設定
Colour0="131,148,150"
Colour1="147,161,161"
Colour2="0,43,54"
Colour3="7,54,66"
Colour4="0,43,54"
Colour5="238,232,213"
Colour6="7,54,66"
Colour7="0,43,56"
Colour8="220,50,47"
Colour9="203,75,22"
// ==UserScript==
// @name [x-arthur.gree-pf.net] play back ground music
// @namespace http://kid0725.usamimi.info
// @version 1.0
// @author KID the Euforia a.k.a. blueberrystream
// @description play kakusan-sei million arthur's bgm
// @homepage https://github.com/blueberrystream/userscripts/
// @match http://x-arthur.gree-pf.net/*
// @grant none
// @require http://code.jquery.com/jquery-2.1.3.min.js
@blueberrystream
blueberrystream / apm-stars.json
Last active August 29, 2015 14:18
my stared atom packages / show only names: jq -r .[].name apm-stars.json
[{
"name": "SFTP-deployment",
"description": "A package which allow you to upload and download files with FTP/SFTP protocol",
"version": "1.0.0",
"author": {
"name": "Ellipsis Team",
"email": "[email protected]"
},
"repository": "https://github.com/amoussard/sftp-deployment",
"bugs": {