用意するテーマ
@Stable
data class MyColors(
val actionBar: Color,
val primary: Color,
val secondary: Color,
val background: Color,
val surface: Color,用意するテーマ
@Stable
data class MyColors(
val actionBar: Color,
val primary: Color,
val secondary: Color,
val background: Color,
val surface: Color,| class TemplateFragment : Fragment(R.layout.template_fragment) { | |
| companion object { | |
| fun newInstance() = TemplateFragment() | |
| } | |
| private lateinit var viewModel: TemplateViewModel | |
| override fun onViewCreated(view: View, savedInstanceState: Bundle?) { | |
| super.onViewCreated(view, savedInstanceState) |
| internal class HogeTest { | |
| @TestFactory | |
| fun test_hoge(): Collection<DynamicTest> { | |
| data class TestCase( | |
| val testName: String, | |
| val params: Param // TODO テストで必要なパラメータ | |
| ) | |
| fun execute(testCase: TestCase) { | |
| // TODO テストの動作 |
| adb logcat -v time | awk '/^.* V\/.*$/ { print "\033[0m" $0 }; /^.* D\/.*$/ { print "\033[0;34m" $0 "\033[0m" }; /^.* I\/.*$/ { print "\033[0;32m" $0 "\033[0m" }; /^.* W\/.*$/ { print "\033[0;31m" $0 "\033[0m" }; /^.* E\/.*$/ { print "\033[1;31m" $0 "\033[0m" }' |
急病で困ったときに、看護師からアドバイスを受けることができる
こちらてあたらしく更新してます
2019年4月19日 03:42 に第一子の男の子が誕生しました。 現在、妻と子供は産後の入院中です。 出産や入院中のKPTだったり、雑感をまとめておこうかと。
まずは出産に関してです。
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # All Vagrant configuration is done below. The "2" in Vagrant.configure | |
| # configures the configuration version (we support older styles for | |
| # backwards compatibility). Please don't change it unless you know what | |
| # you're doing. | |
| Vagrant.configure(2) do |config| | |
| # The most common configuration options are documented and commented below. | |
| # For a complete reference, please see the online documentation at |