第四十条 標準報酬月額は、被保険者の報酬月額に基づき、次の等
級区分(次項の規定により等級区分の改定が行われたときは、改
定後の等級区分)によって定める。
(略)
- 第四七級 一、二一〇、〇〇〇円 一、一七五、〇〇〇円以上
+ 第四七級 一、二一〇、〇〇〇円 一、一七五、〇〇〇円以上 一、二三五、〇〇〇円未満
+ 第四八級 一、二七〇、〇〇〇円 一、二三五、〇〇〇円以上 一、二九五、〇〇〇円未満
+ 第四九級 一、三三〇、〇〇〇円 一、二九五、〇〇〇円以上 一、三五五、〇〇〇円未満
+ 第五〇級 一、三九〇、〇〇〇円 一、三五五、〇〇〇円以上
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
#!/usr/bin/env ruby | |
# :up: :up: when improving the format/structure of the code | |
# :hammer: :hammer: when refactoring the code | |
# :chart_with_upwards_trend: :chart_with_upwards_trend: when improving performance | |
# :memo: :memo: when writing docs | |
# :bug: :bug: when fixing a bug | |
# :fire: :fire: when removing code or files | |
# :green_heart: :green_heart: when fixing the CI build | |
# :white_check_mark: :white_check_mark: when adding tests |
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
public class AwesomeView extends ViewGroup { | |
public static class FabBehavior extends FloatingActionButton.Behavior { | |
private AwesomeView mAwesomeView; | |
public FabBehavior() { | |
} | |
public FabBehavior(Context context, AttributeSet attrs) { | |
} |
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
package shape; | |
// Subsystem | |
public Line extends Shape { | |
public void draw(Point from, Point to) { ... } | |
} | |
// Subsystem | |
public Circle extends Shape { | |
public void draw(Point point) { ... } |
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
[root: ApplicationModule] >[injects: Application.java] | |
└──<[includes: AwesomeModule] | |
└──>[injects: LoginActivity.java] | |
└──>[injects: ListActivity.java] | |
└──>[injects: DetailActivity.java] |
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
package mortar; | |
import android.os.Bundle; | |
import java.lang.reflect.Field; | |
import timber.log.Timber; | |
// Mortar がバグ修正を行わずにメジャーバージョンを上げたためパッチで回避 | |
// @see https://github.com/square/mortar/pull/107 |
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
java.lang.ClassCastException: mortar.MortarContextWrapper cannot be cast to | |
android.app.Activity |
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
public class ShadowablePagerSlidingTabStrip extends PagerSlidingTabStrip { | |
public ShadowablePagerSlidingTabStrip(Context context) { | |
super(context); | |
} | |
public ShadowablePagerSlidingTabStrip(Context context, AttributeSet attrs) { | |
super(context, attrs); | |
} |
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
tasks.withType(Test) { | |
project.tasks | |
.findAll { task -> (task.name ==~ /compileTest.*Java/) } | |
.each { task -> | |
task.doFirst { | |
def buildPath = "$project.buildDir/retrolambda" | |
def jarPath = "$buildPath/$project.android.compileSdkVersion" | |
def javac = "${project.retrolambda.tryGetJdk()}/bin/javac" | |
sourceCompatibility = JavaVersion.VERSION_1_8 |
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
$ rdb -c memory dump.rdb > redis_memory.csv | |
# バイトサイズとキーの個数と単位バイトサイズを出す | |
$ cat redis_memory.csv | sed -E "1d" | sed -E 's/:[0-9]+(:|")/:{id}\1/g' | cut -d ',' -f 3,4 | awk -F ',' '{ sum[$1] += $2; count[$1] += 1 } END { for (key in sum) print key, sum[key], count[key], sum[key] /count[key] }' > redis_memory_status.csv |