摘要: 依赖Asp.net Core的类库 用Visual Studio创建的类库想依赖Asp.net Core的某些组件,比如Microsoft.AspNetCore.Mvc.Core,在.netcore 3.1之后不再单独提供nuget包,应该怎么办呢?直接在.csproj文件里面添加Framework 阅读全文
posted @ 2023-11-11 21:57 tubo 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 找一款可以插入数学公式的思维导图软件: https://docs.freeplane.org/getting-started/getting-started.html #freeplane 下载安装后在节点上输入\latex开头,这个节点就变成支持latex输入数学公式的节点了: \latex x^ 阅读全文
posted @ 2023-10-01 17:24 tubo 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 启用Docker 利用联想个人云的远程协助功能开启SSH并提升普通用户权限后,可安装(开启Docker) 新版的固件docker已经安装了,不知道出于什么原因没有启动: [~]# docker image ls Cannot connect to the Docker daemon at unix: 阅读全文
posted @ 2023-10-01 16:26 tubo 阅读(1913) 评论(1) 推荐(0) 编辑
摘要: 联想个人云自带SSH服务,只是平时并未开启,通过手机客户端可以临时开启, 查看联想个人云IP地址 联想个人云设置里面不能设置静态IP,如果要知道当前的IP,可在手机客户端我的页面,点击设备信息查看: 记录下IP地址,复制UID,并且复制MAC地址,然后在路由器的DHCP服务里面可以绑定MAC-IP, 阅读全文
posted @ 2023-10-01 15:47 tubo 阅读(820) 评论(0) 推荐(0) 编辑
摘要: 周末回家忘了带笔记本电源,电源耗尽,只能在家里的Windows Server 2019上继续工作,而当我在Windows Server 2019中用Docker Build我的Docker镜像的时候,出现如下错误: 我才意识到Windows Server 2019上安装的Docker是Windows 阅读全文
posted @ 2020-01-11 16:11 tubo 阅读(2761) 评论(0) 推荐(0) 编辑
摘要: 使用ssh添加用户 ssh name@localhost -p 29418 gerrit create-account username --email username@email --full-name userfullname --http-password httppassword 在ger 阅读全文
posted @ 2017-04-12 14:25 tubo 阅读(1865) 评论(0) 推荐(0) 编辑
摘要: 按ctrl-f3进入审核模式 https://msdn.microsoft.com/zh-cn/windows/hardware/commercialize/manufacture/desktop/boot-windows-to-audit-mode-or-oobe 阅读全文
posted @ 2017-03-09 10:39 tubo 阅读(2179) 评论(0) 推荐(0) 编辑
摘要: 在网上找到解决方案:SolutionEnable RDP security layer in Group Policy on the machine:Verify that the firewall allows remote desktop connections with RDP (Port 3... 阅读全文
posted @ 2014-06-09 19:14 tubo 阅读(6500) 评论(0) 推荐(0) 编辑
摘要: 最近开始做iOS开发,遇到一些小问题和解决方法,记录下。 今天是iPhone屏幕适配 iPhone5出来之后屏幕就有iPhone就有了2种尺寸:3.5寸和4寸,xcode 5 的IB设计器里面界面是4寸的,把按钮放到底部,模拟器选成3.5寸的按钮就看不到了,找到了解决方法: http://stackoverflow.com/questions/18248789/xcode-autosi... 阅读全文
posted @ 2014-05-08 13:00 tubo 阅读(8252) 评论(0) 推荐(0) 编辑
摘要: 最近做winform程序,其中有个需求:有两个PictureBox完全重叠,上面一个需要透明,不能遮挡下面的,以为设置上面的BackColor为透明色就可以了,结果不行,上网搜了一下,发现对于我这种需求只需要把上面的PictureBox的Parent设置成下面的PictureBox,同时设置BackColor为透明色就可以了。 阅读全文
posted @ 2014-02-21 10:42 tubo 阅读(14694) 评论(1) 推荐(3) 编辑