Flink数据从Source流入方式

Source

集合

case class SensorReader(id: String, timestamp: Long, temperature: Double)

val dataList = List(
SensorReader("1", now, 36.5),
SensorReader("2", now - 30 * 1000, 39),
SensorReader("3", now - 300 * 1000, 37.1),
SensorReader("4", now, 36.2)
)

val dataStream = env.fromCollection(dataList)

阅读全文

早点睡

sleep_early

早点睡

价值主张

唯有早睡不可辜负

阅读全文

shutdown_platform

The plugin for go-flutter to shutdown platform windowslinuxmac only

Getting Started

Install

Add this to your package’s pubspec.yaml file:

阅读全文

platform_device_id

Get device id from android、ios、windows、linux、mac

Description

    阅读全文

    开发go-flutter插件

    创建

    flutter create --org com.example --template=plugin test_hover

    阅读全文

    设备唯一标识

    最近在写的产品需要识别唯一设备,记录一下

    Windows

    主板 UUID

    wmic csproduct get UUID

    阅读全文

    命令合集

    整理一个用过的命令的地方,方便自己,也方便他人吧

    Docker

    Redis

      阅读全文

      腾讯云cdn刷新

      e.coding.net上用官方提供的demo自动将博客代码推至腾讯COS后,发现涉及云函数刷新CDN的地方计费方式过于恐怖,所以用自己的方式去刷新CDN

      阅读全文

      各种仓库国内镜像

      只是想让它快一点

      Maven

      阿里云仓库

      <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
      http://maven.apache.org/xsd/settings-1.0.0.xsd">
      <localRepository/>
      <interactiveMode/>
      <usePluginRegistry/>
      <offline/>
      <pluginGroups/>
      <servers/>
      <mirrors>
      <mirror>
      <id>aliyunmaven</id>
      <mirrorOf>*</mirrorOf>
      <name>阿里云公共仓库</name>
      <url>https://maven.aliyun.com/repository/public</url>
      </mirror>
      <mirror>
      <id>aliyunmaven</id>
      <mirrorOf>*</mirrorOf>
      <name>阿里云谷歌仓库</name>
      <url>https://maven.aliyun.com/repository/google</url>
      </mirror>
      <mirror>
      <id>aliyunmaven</id>
      <mirrorOf>*</mirrorOf>
      <name>阿里云阿帕奇仓库</name>
      <url>https://maven.aliyun.com/repository/apache-snapshots</url>
      </mirror>
      <mirror>
      <id>aliyunmaven</id>
      <mirrorOf>*</mirrorOf>
      <name>阿里云spring仓库</name>
      <url>https://maven.aliyun.com/repository/spring</url>
      </mirror>
      <mirror>
      <id>aliyunmaven</id>
      <mirrorOf>*</mirrorOf>
      <name>阿里云spring插件仓库</name>
      <url>https://maven.aliyun.com/repository/spring-plugin</url>
      </mirror>
      </mirrors>
      <proxies/>
      <profiles/>
      <activeProfiles/>
      </settings>

      阅读全文

      tensorflow实践:梦幻西游人物弹窗识别(五)

      为什么么说我们的目标是基本完成呢?
      因为它不会进化呀!

      如果我们拥有全量的梦幻西游人物图库,那自然预测的准确率很高
      很可惜,我们没有
      所以只能在日常的跑镖或者打怪中去不断的积累图库,让神经网络不断的训练学习,以将准确率

      阅读全文