
MacOs
Lan.W
19年测试转码农,做android app, 自学python, 工站测试Atlas语言开发,对机器人控制有点兴趣。目前在研究学习Vue web开发技术,挺好。
空闲多看一些1.网络通信基础,2.大数据Three.js,ECharts,D3.js(Vue-ECharts、vue-threejs、vue-d3js) 3.open AI 这一块,对做前端深入有好处
展开
-
macOS pyinstaller 打包之后运行报 Error loading Python lib
exit;原创 2022-08-15 17:44:36 · 4421 阅读 · 0 评论 -
MacOS swift 首页导航栏 不显示标题问题
如下图,在首页已经配置Navigation Controlller,想显示标题栏,但是运行时没有显示。解决:将蓝色这个箭头线:Storyboard Entry Point拖到Navigation Controller。原创 2022-05-10 15:59:16 · 789 阅读 · 0 评论 -
MacOS Swift - Failed to instantiate the default view controller for UIMainStoryboardFile ‘Main‘
报错:Failed to instantiate the default view controller for UIMainStoryboardFile 'Main' - perhaps the designated entry point is not set?解决: 原来只有一个ViewController,添加了第二个之后,第一启动界面未设置。在Storyboard中,选择TableViewController作为story board的第一启动界面,选中页面在属性面板的is Initi原创 2022-04-29 11:20:54 · 1602 阅读 · 0 评论 -
iOS swift scrollview 缩放报错
scrollview运行时,手势放大报错:2022-04-22 14:27:53.721664+0800 ScrollDemo2[4556:369749] [framework] CUIThemeStore: No theme registered with id=0 2022-04-22 14:27:55.405513+0800 ScrollDemo2[4556:369749] *** Terminating app due to uncaught exception 'NSGenericExc.原创 2022-04-22 14:31:11 · 1650 阅读 · 0 评论 -
python gui Gooey 报错 error: argument command: invalid choice:
运行程序时报错:usage: main_gui_batcmm.py [-h] {Run Reset} ...main_gui_batcmm.py: error: argument command: invalid choice: 'Run' (choose from 'Run Reset')from gooey import Gooey, GooeyParser@Gooey(program_name="BattCommunicate_GUI")def gui_main():.原创 2022-03-28 10:43:17 · 3720 阅读 · 0 评论 -
MacOS ssh免密登录远端mac时无需输入yes设置
在登录的时候总是需要输入yes,如果用python实现登录,不处理输入yes。 需要配置默认输入yesAre you sure you want to continue connecting (yes/no/[fingerprint])? yes解决方法:修改/etc/ssh/ssh_config将其中的# StrictHostKeyChecking ask 改成 StrictHostKeyChecking nosudo vim /etc/ssh/ssh_config,修改之后保存即可原创 2022-03-08 11:34:27 · 600 阅读 · 0 评论 -
MacOS telnet 通信,客户端用python实现解决方法
tcprelay --portoffset 10000 22 23 873 启动一个直连到MacOS的外设服务端Connecting to USB device...XXXXX Feb 28 15:30:36 tcprelay[75549] <Info>: Created thread to connect [::1]:10023->[::1]:50602<12> to unix:0<15>以下是python 使用telnetlib...原创 2022-03-01 17:28:55 · 667 阅读 · 0 评论 -
MacOS Netcat通信解决方案- python
客户做一个用Netcat实现的通信的服务端。需要我们这边实现向这个服务端发数据。用python 的tcp socket方式发现回复一次之后就终止了。这个socket库不太够用。今天在研究MacOS telnet通信的时候发现用telnet能实现跟Netcat 服务端通信。# -*- coding: utf-8 -*-import telnetlib'''Telnet远程登录:Windows客户端连接Linux服务器 ,实现与MacOS b-l v4.0进行简单通信'''# 配置选项原创 2022-03-01 17:19:21 · 908 阅读 · 0 评论 -
MacOS telnet: connect to address 127.0.0.1: Connection refused的错误信息问题
检查是否安装:telnet解决:telnet的服务端没有启动。原创 2022-03-01 16:46:06 · 1959 阅读 · 1 评论 -
Netcat 了解
工作项目中遇到有用Netcat来实现Windows -> Macos通信,传输文件与数据的。所以想了解一下。Netcat 是一款简单的Unix工具,使用UDP和TCP协议。 它是一个可靠的容易被其他程序所启用的后台操作工具,同时它也被用作网络的测试工具或黑客工具。 使用它你可以轻易的建立任何连接。内建有很多实用的工具。查看帮助:$ ncusage: nc [-46AacCDdEFhklMnOortUuvz] [-K tc] [-b boundif] [-i interval] [-p原创 2022-02-28 14:21:29 · 786 阅读 · 0 评论 -
Macos root 登录之后还是Could not determine audit condition
root Could not determine audit condition????原创 2022-02-25 17:02:24 · 995 阅读 · 0 评论 -
Macos 如何能不自动锁屏 保活程序(亲测有效)
设置不熄屏,不锁屏,主要目地是希望我的一个python定时任务服务端程序能一直运行,以下是我的设置。设置—节能器—屏幕睡眠时间,设置了永久,但是过了一段时间还是自动息屏锁屏。在【系统偏好设置-节能-电源适配器】,把「此时间段后关闭显示器:」滑到「永不」。如果不想让显示器一直开启,但是又不会休眠,可以勾选「当显示器关闭时,防止电脑自动进入休眠」点击安全隐私-》「隐私」,点击左下角「点按锁按钮以进行更改」输入密码解锁(截图中是以解锁状态);1、选择「高级」;2、取消勾选「在原创 2022-02-19 16:00:50 · 13014 阅读 · 0 评论