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
B.RegistReminder = { | |
count: function () { | |
if (B.user) { | |
B.cookie.clear('vcount'); | |
} else { | |
var vcount = B.cookie.get('vcount'); | |
vcount = vcount ? ++vcount : 1; | |
B.cookie.set('vcount', vcount , '+10y'); | |
if (vcount % 40 == 0) { |
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
--- | |
BasedOnStyle: 'Google' | |
AccessModifierOffset: -2 | |
AlignEscapedNewlinesLeft: true | |
AlignConsecutiveAssignments: false | |
AlignEscapedNewlinesLeft: true | |
AlignTrailingComments: true, | |
AllowShortBlocksOnASingleLine: true | |
AllowShortCaseLabelsOnASingleLine: false | |
AllowShortFunctionsOnASingleLine: 'Inline' |
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
/* based on https://qiita.com/griffin_stewie/items/95026360fdfca1bd8e33 */ | |
/* https://gist.github.com/griffin-stewie/9755783 */ | |
/* http://griffin-stewie.hatenablog.com/entry/2014/03/28/125029 */ | |
/* https://gist.github.com/andyferra/2554919 */ | |
body { | |
font-family: Helvetica, arial, sans-serif; | |
font-size: 14px; | |
line-height: 1.6; | |
padding-top: 10px; |
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
// C# キーワード定義ファイル | |
// CASE=True | |
#endif | |
#endregion | |
#if | |
#pragma | |
#region | |
abstract | |
as |
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
#ビルド | |
docker build -t "sshd/centos" . | |
#コンテナを起動 | |
docker run -i -t centos /bin/bash | |
#コンテナに名前を付けて起動 | |
docker run -i -t --name cent01 centos /bin/bash | |
#コンテナをバックグランドで起動 |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |