-
毎週・隔週(2週間に1度など)・月ごとの隔週(毎月第2・第4など)
-
指定の週につき1回~N回
-
自治体ごとに分別科目が異なる(燃えるごみ・プラスチック・燃えないごみ・危険物・粗大ごみなど)
-
いつ出せるかを知りたい 指定した地域の今月のごみ出し日を知りたい 指定した地域の指定した月のごみ出し日を知りたい
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 controller; | |
import static org.springframework.web.bind.annotation.RequestMethod.GET; | |
import org.springframework.stereotype.Controller; | |
import org.springframework.web.bind.annotation.RequestMapping; | |
// (1) | |
@Controller | |
public class HelloWorldController { |
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
Dim lastRow As Long | |
Dim varData As Variant | |
' なんらかの方法でlastRowを取得 | |
varData = Worksheets("address").Range("B2:B" & lastRow).Value | |
If Not IsArray(varData) Then | |
varData = Array(varData) | |
End If |
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
Dim lastRow As Long | |
Dim varData As Variant | |
lastRow = Range("A" & Rows.Count).End(xlUp).Row | |
varData = Range("A1:A" & lastRow).value |
Testing is an integral part of enterprise software development.
テスティングはエンタープライズ向けソフトウェア開発における不可欠な部分の1つである。
This chapter focuses on the value-add of the IoC principle to unit testing and on the benefits of the Spring Framework's support for integration testing.
この章では、ユニットテストのための制御の反転原則の付加価値と、統合テストのためのSpring Frameworkサポートの恩恵にフォーカスする。
(A thorough treatment of testing in the enterprise is beyond the scope of this reference manual.)
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
class HelloWorld { | |
private String name | |
void setName(String name) { | |
this.name = name | |
} | |
String getName() { | |
return name | |
} |
同じ職場の同期が「アジャイルソフトウェア開発の奥義」をゆるっとふわっと読む会を始めるというので、 混ぜてもらうことにしました。
詳細は以下の通り。
NewerOlder