View architecture-testing.md
- ArchUnit で Java アプリケーションのアーキテクチャを CI する / JJUG CCC 2019 Spring
- ドメイン駆動設計を支えるアーキテクチャテスト / Object-Oriented Conference 2020
- マイクロサービスアーキテクチャをあきらめないための、モノリスで始めるアーキテクチャテスト / JJUG CCC 2020 Fall
- アーキテクチャテスト Advent Calendar 2020
View softtab.user.js
This file contains 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
// ==UserScript== | |
// @name softtab.user.js | |
// @namespace https://gist.github.com/kawanamiyuu/ | |
// @updateURL https://gist.github.com/kawanamiyuu/db042e2910ab05c105faf5b3ead211ae | |
// @version 1.3 | |
// @description UserScript to input Soft tab instead of Hard tab. | |
// @include * | |
// @exclude https://github.com/*/*/projects* | |
// @require https://code.jquery.com/jquery-3.3.1.min.js | |
// ==/UserScript== |
View php.ini
This file contains 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
date.timezone = UTC | |
display_errors = 0 | |
log_errors = 1 | |
error_log = php://stderr | |
session.use_strict_mode = 1 | |
session.use_cookies = 1 | |
session.use_only_cookies = 1 | |
session.cookie_secure = 1 | |
session.cookie_httponly = 1 | |
;session.cookie_lifetime = 0 |
View shuffleLTSpeakers.php
This file contains 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
#!/usr/bin/env php | |
<?php | |
$speakers = array_slice($argv, 1); | |
if (!$speakers) { | |
echo "ERROR!\n"; | |
exit(1); | |
} |
View gist:0f35e755aeaf7cab0470
『Rakus Osaka もくもく勉強会』を開催します!!
概要
自分で課題や作業を持ってきて、それらを各自(または数人)で勝手に勉強する会です。
- もくもく(勉強)会 とは
View gist:6367312
This file contains 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
var $iframe = $('#some_iframe'); | |
// iframe内のコンテンツのdocumentオブジェクト | |
var ifrmDoc = $iframe[0].contentWindow.document; | |
// あとはいつも通りでおk | |
var $body = $('body', ifrmDoc); | |
var $ele = $('#some_element', ifrmDoc); |