渊澄

川流不息,渊澄取映

刚刚收到了Wordpress推送的5.0版本更新。

不出意外,这次WordPress强推了全新的古腾堡编辑器,经过几次版本更新,现在的古腾堡编辑器已经可以让使用者愉快的编辑文字了。

而且无须插件可以较为方便的插入代码。

目前编辑器的汉化工作还不是很完善,可以说是基本上没有汉化,英文不是很好的朋友上收起来还是有点困难的,好像现在Wordpress官方的汉化工作也迟迟没有推进,除了古腾堡编辑器,WordPress主程序也有好几处没有汉化到位。

####12月11日更新####

就在刚刚收到了5.0的中文汉化更新,之前WordPress主程序未汉化的部分也得到了汉化,赞一个。

TIM截图20181211173924.jpg

想退回使用原来的编辑器怎么办?后台搜索插件classic-editor安装应用,就可以回到原先的经典编辑器了,据官方介绍说该经典编辑器仅支持到2021年。

近日,苹果升级了智能音箱HomePod的固件,使其终于能够支持中文了,同步支持的语言还包括广东话。

而苹果中国官网也随即挂出了国行HomePod的页面,有白色和深空灰两种配色,售价均为2799元人民币,预计会在2019年初开放购买。

TIM截图20181206135234.jpg

HomePod是苹果公司发布的一款互联网智能音箱,内置自家的Siri语音助手,配合iPhone手机及Apple Music账户可以实现信息查询、播放音乐、接打电话、AirPlay等功能,配合家庭APP及HomeKit配件,可以实现智能家庭的语音控制。

HomePod同时也支持多台HomePod串联,组成多声道音响系统,也支持多个HomePod播放不同的内容,组成家庭背景音乐系统。

目前国内的各品牌智能音箱,无论从外观、功能及音质方面,都无法和HomePod直接竞争,当然也包括价格,而随着HomePod国行版的正式发售,苹果在国内的智能音箱及智能家居领域,必会有所斩获,毕竟苹果的用户体验是有目共睹的。

在最新的HomeAssistant0.83版本中,对小米无线开关、Aqara墙壁无线开关及魔方的自动化触发语句做了修改,大家可以按照下面的示例来进行相应的修改。

小米无线开关

- alias: Toggle dining light on single press
  trigger:
    platform: event
    event_type: xiaomi_aqara.click
    event_data:
      entity_id: binary_sensor.switch_158d000xxxxxc2
      click_type: single
  action:
    service: switch.toggle
    entity_id: switch.wall_switch_left_158d000xxxxx01
- alias: Toggle couch light on double click
  trigger:
    platform: event
    event_type: xiaomi_aqara.click
    event_data:
      entity_id: binary_sensor.switch_158d000xxxxxc2
      click_type: double
  action:
    service: switch.toggle
    entity_id: switch.wall_switch_right_158d000xxxxx01
- alias: Let a dog bark on long press
  trigger:
    platform: event
    event_type: xiaomi_aqara.click
    event_data:
      entity_id: binary_sensor.switch_158d000xxxxxc2
      click_type: long_click_press
  action:
    service: xiaomi_aqara.play_ringtone
    data:
      gw_mac: xxxxxxxxxxxx
      ringtone_id: 8
      ringtone_vol: 8

Aqara墙壁无线开关

- alias: Decrease brightness of the gateway light
  trigger:
    platform: event
    event_type: xiaomi_aqara.click
    event_data:
      entity_id: binary_sensor.wall_switch_left_158xxxxxxxxx12
      click_type: single
  action:
    service: light.turn_on
    entity_id: light.gateway_light_34xxxxxxxx13
    data_template:
      brightness: >-
        {% if states.light.gateway_light_34xxxxxxxx13.attributes.brightness %}
              {% if states.light.gateway_light_34xxxxxxxx13.attributes.brightness - 60 >= 10 %}
                {{states.light.gateway_light_34xxxxxxxx13.attributes.brightness - 60}}
              {% else %}
                {{states.light.gateway_light_34xxxxxxxx13.attributes.brightness}}
              {% endif %}
        {% else %}
          10
        {% endif %}

- alias: Increase brightness of the gateway light
  trigger:
    platform: event
    event_type: xiaomi_aqara.click
    event_data:
      entity_id: binary_sensor.wall_switch_right_158xxxxxxxxx12
      click_type: single
  action:
    service: light.turn_on
    entity_id: light.gateway_light_34xxxxxxxx13
    data_template:
      brightness: >-
        {% if states.light.gateway_light_34xxxxxxxx13.attributes.brightness %}
              {% if states.light.gateway_light_34xxxxxxxx13.attributes.brightness + 60 <= 255 %}
                {{states.light.gateway_light_34xxxxxxxx13.attributes.brightness + 60}}
              {% else %}
                {{states.light.gateway_light_34xxxxxxxx13.attributes.brightness}}
              {% endif %}
        {% else %}
          10
        {% endif %}

- alias: Turn off the gateway light
  trigger:
    platform: event
    event_type: xiaomi_aqara.click
    event_data:
      entity_id: binary_sensor.wall_switch_both_158xxxxxxxxx12
      click_type: both
  action:
    service: light.turn_off
    entity_id: light.gateway_light_34xxxxxxxx13

小米魔方

- alias: Cube event flip90
  trigger:
    platform: event
    event_type: xiaomi_aqara.cube_action
    event_data:
      entity_id: binary_sensor.cube_15xxxxxxxxxxxx
      action_type: flip90
  action:
    - service: light.turn_on
      entity_id: light.gateway_light_28xxxxxxxxxx
      data:
        color_name: "springgreen"
- alias: Cube event flip180
  trigger:
    platform: event
    event_type: xiaomi_aqara.cube_action
    event_data:
      entity_id: binary_sensor.cube_15xxxxxxxxxxxx
      action_type: flip180
  action:
    - service: light.turn_on
      entity_id: light.gateway_light_28xxxxxxxxxx
      data:
        color_name: "darkviolet"
- alias: Cube event move
  trigger:
    platform: event
    event_type: xiaomi_aqara.cube_action
    event_data:
      entity_id: binary_sensor.cube_15xxxxxxxxxxxx
      action_type: move
  action:
    - service: light.turn_on
      entity_id: light.gateway_light_28xxxxxxxxxx
      data:
        color_name: "gold"
- alias: Cube event tap_twice
  trigger:
    platform: event
    event_type: xiaomi_aqara.cube_action
    event_data:
      entity_id: binary_sensor.cube_15xxxxxxxxxxxx
      action_type: tap_twice
  action:
    - service: light.turn_on
      entity_id: light.gateway_light_28xxxxxxxxxx
      data:
        color_name: "deepskyblue"
- alias: Cube event shake_air
  trigger:
    platform: event
    event_type: xiaomi_aqara.cube_action
    event_data:
      entity_id: binary_sensor.cube_15xxxxxxxxxxxx
      action_type: shake_air
  action:
    - service: light.turn_on
      entity_id: light.gateway_light_28xxxxxxxxxx
      data:
        color_name: "blue"

Aqara震动传感器

- alias: Turn on Living Room Lamp on vibration
  trigger:
    platform: event
    event_type: xiaomi_aqara.movement
    event_data:
      entity_id: binary_sensor.vibration_xxxx000000
      movement_type: vibrate
  action:
    service: light.toggle
    data:
      entity_id: light.living_room_lamp
- alias: Turn on Living Room Lamp on tilt
  trigger:
    platform: event
    event_type: xiaomi_aqara.movement
    event_data:
      entity_id: binary_sensor.vibration_xxxx000000
      movement_type: tilt
  action:
    service: light.toggle
    data:
      entity_id: light.living_room_lamp

 

OneDrive是微软推出得一款免费云盘服务,之前叫做Skydrive。不同于Google Drive以及百度云盘,OneDrive可以和最新得Windows10操作系统深度集成,只需在Windows10系统中登陆你得微软账户,即可实时同步,非常适合Windows用户来同步和备份一些重要的数据,而且OneDrive的各项功能目前在国内可以正常使用。

微软提供为OneDrive免费账户提供15GB得存储空间,如果你觉得空间不够用微软也推出了收费扩容服务,价格如下:

TIM截图20181204140905.jpg

除了与office打包,单独购买50GB的空间每月需要15块钱。

如果你和我一样,舍不得花钱,但又觉得15GB不够用,那你可以邀请好友来注册激活OneDrive服务,成功邀请一位好友,你和你的好友都可获得0.5GB的扩容,最多可获得10GB的扩容空间,也就是说,你成功邀请了20位好友注册激活OneDrive,你的存储空间就会升级到25GB。
TIM截图20181204141234.jpg

下面是我的邀请链接,还没有注册OneDrive的的朋友点击一下链接,你和我都会另外获得0.5GB的扩容哦!

https://onedrive.live.com?invref=2201fc6079f823f2&invscr=90

TIM截图20181119140137.jpg

是的,全新的SS之家上线了,助力您畅游互联网,无痛点访问谷歌、YouTube、Facebook、Instagram,YouTube实测1080无压力。

支持Android、iOS手机,Windows、Mac电脑,LEDE、梅林、Padavan路由器。

免费套餐也同时上线,每月赠送1GB流量,每日签到另外可得最多50MB流量,可连接普通节点,不限终端数量。

其他包月、包年套餐可以移步网站查看。

即日起至11月30日为内测期,期间所有套餐均可享受5折优惠。

TIM截图20181119140202.jpg

具体套餐详情及购买方式请Q312780013。

SS之家网址 HTTPS://SSHOME.WIN