Skip to content

Instantly share code, notes, and snippets.

View MulticolorWorld's full-sized avatar

MulticolorWorld MulticolorWorld

View GitHub Profile
[20200706-17:32:20] [DEBUG] Closed socket 12 (AF_INET6 ::ffff:192.168.11.42 port 3389)
[20200706-17:32:20] [DEBUG] xrdp_mm_module_cleanup
[20200706-17:32:42] [INFO ] Socket 12: AF_INET6 connection received from ::ffff:192.168.11.2 port 57964
[20200706-17:32:42] [DEBUG] Closed socket 12 (AF_INET6 ::ffff:192.168.11.42 port 3389)
[20200706-17:32:42] [DEBUG] Closed socket 11 (AF_INET6 :: port 3389)
[20200706-17:32:42] [INFO ] Using default X.509 certificate: /etc/xrdp/cert.pem
[20200706-17:32:42] [INFO ] Using default X.509 key file: /etc/xrdp/key.pem
[20200706-17:32:42] [DEBUG] TLSv1.3 enabled
[20200706-17:32:42] [DEBUG] TLSv1.2 enabled
[20200706-17:32:42] [DEBUG] Security layer: requested 11, selected 1

この記事は mstdn.maud.io Advent Calendar 2019 19日目の記事です。

自己紹介

MulticolorWorldです。普段は:don:にいます。野球とLoLとFF14メインのオタク。

League of Legendsについて

世界で一番遊ばれているオンラインゲーム。詳しくは省略。みんなもやろうな。
以下は世界大会の話です。前提として、LoLでは大きな世界大会が春と夏の年2回あり、夏のほうが大きな大会です。

世界大会雑感 韓国一強のくずれとEU・中国の隆盛

open class MastodonRequest<T>{
fun execute(): T {
//普通のexecute
}
fun single(): Single<T> {
return Single.create {
try {
it.onSuccess(execute())
Now, Mastodon release don't synchronize this documentation release.
Instance admin or client/library developer can't refer to documentation at one specific version.
One of the soluton I think is to put a link of documentation conforming this version in mastodon release page.

Keybase proof

I hereby claim:

  • I am MulticolorWorld on github.
  • I am multicolorworld (https://keybase.io/multicolorworld) on keybase.
  • I have a public key whose fingerprint is FE12 0078 9931 6AB3 F0D8 4EF5 D8D5 A403 366D 050A

To claim this, I am signing this object:

@MulticolorWorld
MulticolorWorld / LeNetExample.kt
Last active August 12, 2017 20:23
LeNetExample
fun main(args: Array<String>) {
val seed = 12345L
val height = /*image height, all same value*/
val width = /*image width, all same value*/
val channels = 3
val batchSize = 64
val images = /* collection of image file uri. two parent folder(two labels)*/
import javafx.animation.KeyFrame;
import javafx.animation.Timeline;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.geometry.Rectangle2D;
import javafx.stage.Screen;
import javafx.stage.Stage;
import javafx.util.Duration;
public class NotificationWindow {
public void testMethod(){
Task<Object> task = new Task<Object>(){
@Override
protected Object call() throws Exception {
Object object = //ここの取得に時間がかかります
return object;
}
@Override
protected void succeeded(){
//getValue()使っていろいろ
public class HogeController{
static ListView<Label> listview1;
static ListView<Label> listview2;
static void setlistview1(String string){
Label label = new Label(string);
listview1.getItems().add(label);
}
static void setlistview2(String string){
@Controller
@RequestMapping("/hoge")
public class HogeController{
@RequestMapping(method = RequestMethod.GET)
public String hoge(){
return "hoge"; //cssが適用される
}
@RequestMapping(value = "fuga", method = RequestMethod.GET)