跳至主要内容

博文

目前显示的是 五月, 2020的博文

娱乐 之 看电视频道(potplayer\kodi + iptv 源)

https://github.com/iptv-org/iptv 下载.m3u文件,然后用potplayer打开此文件 kodi https://catch-up-tv-and-more.github.io/live_tv_installation/ 安卓手机QQ接收到的文件存放路径在哪? 以前是:内部存储/tencent/QQfile_recv 现在是:内部存储/Android/data/com.tencent.mobileqq/Tencent/QQfile_recv 电视推荐 大时代\我的团长我的团

python 之 socket

import   socket   # working with a socket as a context manager with   socket . socket ( )   as  client_socket:     hostname  =   '127.0.0.1'     port  =   9090     address  =   ( hostname ,  port )       client_socket. connect ( address )       data  =   'Wake up, Neo'     data  =  data. encode ( )       client_socket. send ( data )       response  =  client_socket. recv ( 1024 )       response  =  response. decode ( )      print ( response )

Monitoror 统一监控墙板

Monitoror是一个用Go编写的单文件应用程序 资料 https://monitoror.com/documentation/ https://demo.monitoror.com/?configUrl=https://monitoror.com/assets/demo.monitoror.com-config.json https://monitoror.com/assets/demo.monitoror.com-config.json 下载monitoror-windows-amd64-3.1.0.exe,然后双击运行,打开浏览器加载配置文件 有两种加载配置文件的方式: 通过URL: http://localhost:8080? configUrl =https://example.com/config.json 按路径: http://localhost:8080? configPath =./config.json http://localhost:8080/?configPath=./config.json&theme=dark { "version": "1.0", "columns": 3, "tiles": [ { "type": "HTTP-STATUS", "label": "公司网站", "params": { "url": "http://sh.aisino.com/", "status": "SUCCESS" } }, { "type": "PING", "label": "Ping 开票服务器", "params": { "hostname": "192.168.100.41", "status": "SUCCESS" } }, { "type...