- したらば掲示板のNGワードリストは64kBまで入力できる
- しかしポンコツなことに正規表現に対応していない
- そのため、NGワード避けをされると対応できない
- このため、NGワードを「展開」するツールを作った(MITライセンスとする)
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
| @Component | |
| //@Scope(BeanDefinition.SCOPE_PROTOTYPE) | |
| public class Controller{ | |
| /** | |
| * Model | |
| */ | |
| @Autowired | |
| Model model; | |
| /** |
- 開発チーム「MICA-team」(=雲母組) が戦略育成シミューレーションゲーム『少女前線』を作成
- 2015年9月、 「Wave-Games」 は『少女前線』の中国および日本における独占ライセンス契約をMICA-teamと締結
- これにより、2016年3月に中国版が、2016年夏以降に日本版がリリースされるはずだった
- しかし、2016年2月中旬頃、少女前線の日本向け公式Twitter(@GirlsFrontline)が更新を停止
- 2016年に3月29日に近況報告が行われたものの、またもや更新を停止
- 2016年5月13日、前記Twitterアカウントにて、以下の告知が行われた
- 2016年5月20日、中国向けのAndroid版公開テストを実施
- 事情によって 元運営(=Wave-Games)とのコラボが解除
- 2018年7月11日、セガ・インタラクティブとC2プレパラート (以下 艦これAC運営) がMorningTec Japan (以下 アビス運営) に対して、「アビス・ホライズン」の日本国内での配信等の差止めを求める仮処分命令申立てを東京地裁に行った
- 理由は「影像に係る表現等」が艦これACの著作権を侵害しており、不正競争防止法違反にも該当することから
- MorningTec Japan側は裁判でアビスの正当性を主張していく構え
- アビス運営が公式Twitterで 「著作権を侵害した事実は一切ない」「サービス終了になることは絶対にない」 と発言
- 少し前にも、艦これAC運営は 「関連性を指摘されているサービスの存在を確認」「本製品と類似するサービスは一切提供しておりません」 と発言している
- https://kancolle-a.sega.jp/players/information/180628_1.html
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
| "build": { | |
| "builder": "@angular-devkit/build-angular:browser", | |
| "options": { | |
| // これを | |
| "outputPath": "dist/my-app", | |
| // このように修正 | |
| "outputPath": "../docs", | |
| "baseHref": ".", |
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 ccc = require("./models/Hoge"); //ファイルパスを拡張子抜きで指定 | |
| import DDD = ccc.AAA; //要するにcccは中間変数(省略不可)。以降は「DDD」という名前でAAAクラスを使用できる | |
| // 使用例 | |
| let val: DDD = new DDD(); |
元ネタ→https://twitter.com/rains013/status/990146879202607104
- このゲームは2人用です。以降、このゲームで行われる戦闘のことを「演習」と呼称します
- プレイヤーは、それぞれ「英国海軍」サイドと「ドイツ海軍」サイドに分かれ、艦隊を指揮することになります
- このゲームの勝利条件は次の通りです
| 演習内容 | 勝利条件 |
|---|
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 com.github.jrper; | |
| import javafx.beans.InvalidationListener; | |
| import javafx.beans.property.Property; | |
| import javafx.beans.property.SimpleObjectProperty; | |
| import javafx.beans.value.ChangeListener; | |
| import javafx.beans.value.ObservableValue; | |
| import java.util.function.BiFunction; | |
| import java.util.function.Consumer; |
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
| // 本家が勧めてくる「高レベル・バインディングAPI」とやら | |
| IntegerProperty num1 = new SimpleIntegerProperty(1); | |
| IntegerProperty num2 = new SimpleIntegerProperty(2); | |
| IntegerProperty num3 = new SimpleIntegerProperty(3); | |
| IntegerProperty num4 = new SimpleIntegerProperty(4); | |
| NumberBinding total = | |
| Bindings.add(num1.multiply(num2),num3.multiply(num4)); | |
| System.out.println(total.getValue()); | |
| // こう書いた方が可読性が高いのでは?? |
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
| >keytool -genkey -v -keystore sample.keystore -keysize 2048 -keyalg RSA -sigalg SHA256withRSA -alias test -validity 50000 | |
| キーストアのパスワードを入力してください: | |
| 新規パスワードを再入力してください: //「キーストアのパスワード」と同じものを再度入力 | |
| 姓名は何ですか。 | |
| [Unknown]: Fubuki DD Fubuki | |
| 組織単位名は何ですか。 | |
| [Unknown]: Maiduru Naval Arsenal | |
| 組織名は何ですか。 | |
| [Unknown]: Imperial Japanese Navy | |
| 都市名または地域名は何ですか。 |
