- 開催日時12/15 20:00 [@SEプラス 東銀座]:https://goo.gl/maps/teq7dGWKMnK2
- 締め切り前日にメール:キャンセルがあれば早めに
- コンテンツのFix
- 現在
- アイスブレイク??
- 須藤さんより趣旨と立ち上げに関するアイデア紹介
- グループでディスカッション
👏 👏 👏 👏 👏👏 👏 👏 👏 👏
(10周年イベント、日程がすべてNGでした。。参加できなくて本当にスイマセン 🙇🙇 )
(これをもって、せめて感謝の意を)
@sezemiadmin
- 株式会社SEプラス 取締役 // SEプラスは翔泳社のグループ
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
EXEC SQL OPEN X; | |
EXEC SQL FETCH X INTO :NAME, :DEPT, :SALARY; | |
EXEC SQL UPDATE 従業員 | |
SET 給与 = 給与 * 1.1 | |
WHERE CURRENT OF X; | |
EXEC SQL CLOSE X; |
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 servlet; | |
import java.io.IOException; | |
import javax.servlet.ServletException; | |
import javax.servlet.annotation.WebServlet; | |
import javax.servlet.http.HttpServlet; | |
import javax.servlet.http.HttpServletRequest; | |
import javax.servlet.http.HttpServletResponse; |
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
$("#lesson7 a").click(function(){ | |
$("#lesson7 a").css("color", "#0000FF"); // "#lesson7" は this という変数にしてよい | |
return false // aタグは本来リンクなので、これを入れないとページが遷移する | |
}); |
mysql> desc FIRST_TEST;
+------------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+------------+-------------+------+-----+---------+-------+
| ID | int(11) | YES | | NULL | |
| NAME | varchar(32) | YES | | NULL | |
| CREATED_AT | datetime | YES | | NULL | |
+------------+-------------+------+-----+---------+-------+
3 rows in set (0.00 sec)
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
import java.util.List; | |
import java.util.ArrayList; | |
// 抽象的な工場(食事のセット)の定義 | |
abstract class MealFactory { | |
// 主食と汁物のセットを生成する | |
public abstract StapleFood createStapleFood(); | |
public abstract Soup createSoup(); | |
} |
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 HelloWorld { | |
public static void main(String[] args) { | |
System.out.println("hello, world"); | |
} | |
} |
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 composing_methods.extract_method.after; | |
import java.util.Arrays; | |
public class Example { | |
public static void main(String[] args) { | |
int[] sampleData = {9, 2, 7, 3, 6, 1, 5, 4, 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
package composing_methods.replace_temp_with_query.after; | |
public class Example { | |
private int quantity; | |
private int itemPrice; | |
public double getPrice() { | |
return basePrice() * discountFactor(); |
OlderNewer