Skip to content

Instantly share code, notes, and snippets.

View dsk52's full-sized avatar

Daisuke Konishi dsk52

View GitHub Profile
@dsk52
dsk52 / joke.coffee
Last active August 29, 2015 14:26 — forked from vexus2/joke.coffee
"ぬるぽ"に反応してガッしてくれるHubotスクリプト Slack内での表示に最適化済
# Description:
# Joke commands.
#
# Commands:
# ぬるぽ - You reply with, "ガッ" When you post a "ぬるぽ" word.
#
# Notes:
# ネタ/ジョーク系のbot全般
module.exports = (robot) ->
@dsk52
dsk52 / jsontest.js
Created December 15, 2015 08:20 — forked from shoota/jsontest.js
node.jsでstringとObjectの相互置換の書き方 # 「オブジェクト -> 文字列」では、関数オブジェクトが表示されない。 # 「文字列 -> オブジェクト」では、外側のブレース括弧も必要で、stringの書き方に注意する。 要するにJSONの仕様に厳密な表現しか受け付けない(っぽい)。そもそもデータコンテナフォーマットですし。
// execute at node.js v.0.10.19
/*---------------------------------------------------------------*/
var toStrObj={};
toStrObj.name = "shoota";
toStrObj.age = 29;
toStrObj.body = {locale:'Japan',sex:'m',hasChildren:true};
toStrObj.talk = function(){console.log('hello');};
var toStr = JSON.stringify(toStrObj);
@dsk52
dsk52 / memo-git-conflict.md
Last active April 18, 2016 01:11
Pull Request 時にコンフリクトが発生してしまった際の対処法

主な原因

自分の作業ブランチを作成してからPull Request する間に同じファイルを別ブランチで編集されてしまったとか。

対処方法

  1. master ブランチを最新版にする
  • $ ~ git:(master) git fetch origin
  • $ ~ git:(master) git pull origin master
  1. 自分の作業ブランチに戻る
  • $ ~ git:(master) git checkout -
  1. 作業ブランチにたいしてmasterブランチをrebaseする
@dsk52
dsk52 / easing-equations.scss
Created November 11, 2016 06:07 — forked from cbaigorri/easing-equations.scss
Easing equations for css transitions.
$ease-in-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
$ease-out-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
$ease-in-out-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
$ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
$ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
$ease-in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
$ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
$ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
$ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
$ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
#!/bin/sh
DBNAME="" #データベース名
DBUSER="" #データベースユーザ名
DBPASS="" #データベースパス
DBHOST="" #データベースホスト
DBPREFIX="" #テーブルのプレフィックス ex. wp_
# ############