`
文章列表
1.开启SSH连接: sudo service ssh start   2.windows远程桌面连接: 不能直接连上,需要先安装插件: sudo apt-get update sudo apt-get install tightvncserver   sudo apt-get install xrdp  xrdp会出现网路连接不上的情况,先更换数据源: sudo nano /etc/apt/sources.list.d/raspi.list  注释了原来的源,更换为: deb http://mirrordirector.raspbian.org/raspb ...
转自:https://blog.csdn.net/qq_35379989/article/details/79050932   现在越来越多的人在使用树莓派,而拿到手的第一步就是为自己的树莓派安装一个自己想要的系统,现在我将详细的讲述树莓派安装系统的步骤   1.第一部下载你所要的树莓派系统       https://www.raspberrypi.org/downloads/   在这里   你可以选择raspbian这个是官方的树莓派系统 ,如果你的树莓派买来时已经按好系统,那么系统也通常是这个   点进去后是如下界面   推荐第一个也就是我圈住的,因为第 ...
转自:https://blog.csdn.net/liudongdong19/article/details/81276949   pip install turtle --trusted-host mirrors.aliyun.com   下载时声明源 一:树莓派常用软件源列表 中山大学 Raspbian http://mirror.sysu.edu.cn/raspbian/raspbian 中国科学技术大学 Raspbian http://mirrors.ustc.edu.cn/raspbian/raspbian/ 清华大学 Raspbian http://mirror ...
在处理跨schema添加外键的时候,使用语句添加: ALTER TABLE `indoor`.`FAS_CABINET` ADD CONSTRAINT `FAS_CABINET_FK01` FOREIGN KEY (`ASSET_MANAGER_GUID`) REFERENCES `storage`.`COMMON_PERSONS` (`GUID`) ON DELETE NO ACTION ON UPDATE NO ACTION;  报错:Error Code: 1822. Failed to add the foreign key constraint. Mis ...
参考:https://stackoverflow.com/questions/58550408/error-when-foreign-referencing-in-mysql-error-3780   这是由于两个表的table collation不同导致的.   修改表collation: ALTER TABLE `basename`.`tablename`  COLLATE=utf8_bin;   发现仍然不行,这是由于 1.修改数据库的collation,对修改后新建的表才会生效,已存在表不生效 2.修改表的 collation,对修改后新建的字段才会生效,已存在字段不 ...
参考:https://stackoverflow.com/questions/57258281/typeerror-init-takes-2-positional-arguments-but-4-were-given   MyBook(title,author,price) will pass four arguments: (self, title, author, price) 会多了一个self的参数
参考:https://stackoverflow.com/questions/24291941/python-nameerror-global-name-sortlist-is-not-defined-during-recursion   因为LeetCode提交代码是使用类,因此定义的方法不是全局变量需要在前面加self,例如self.foo()这样
新建Category类,拓展UIViewController: 例如想调navigation bar的回退键样式,那么在.m中: @implementation UIViewController (BackNavigationBar) -(void)awakeFromNib{ [super awakeFromNib]; self.navigationItem.leftBarButtonItem = [self backButton]; NSLog(@"test test:%f",self.navigationItem.leftBar ...
参考: https://stackoverflow.com/questions/56435510/presenting-modal-in-ios-13-fullscreen   There are multiple ways to do that, and I think each one could fit for one project but not another, so I thought I'll keep them here maybe someone else will run to a different case. 1- Override present If y ...
直接上代码: if UIDevice().userInterfaceIdiom == .phone { switch UIScreen.main.nativeBounds.height { case 1136: print("iPhone 5 or 5S or 5C") case 1334: print("iPhone 6/6S/7/8") case 1920, 2208: print("iPh ...
转自: https://www.jianshu.com/p/53365df3716b   升级iOS13后发现模态的时候,默认调整为了卡片样式。 原来是iOS 13 多了一个新的枚举类型 UIModalPresentationAutomatic,并且是modalPresentationStyle的默认值,而UIModalPresentationAutomatic实际是表现是在 iOS 13的设备上被映射成UIModalPresentationPageSheet。 那么我们如果还想要原来的模态效果的话,我们就需要添加一行代码: vc.modalPresentationSt ...
转自:https://blog.csdn.net/weixin_36022745/article/details/84637515   public static byte[] fileToByte(String filePath) throws IOException{ byte[] bytes = null; FileInputStream fis = null; try{ File file = new File(filepath); fis = new FileInputStream(file); ...
问题:通过BlueECC生成的密钥格式是PEM形式的,而要跨平台到java可读取,就需要转换为PKCS8   解决: 1. openssl: 先生成PEM: openssl ecparam -name prime256v1 -genkey -noout -out ec256priv.pem   在转PKCS8: openssl pkcs8 -topk8 -inform PEM -outform DER -in filename -out filename -nocrypt  如果cat打印一下会发现PEM格式是可以正常读取的格式,而PKCS8打开则是乱码的形式. 要让jav ...
GitHub: https://github.com/IBM-Swift/BlueECC 可使用Swift Package Manager导入   Guide: https://developer.ibm.com/swift/2019/03/04/blueecc-elliptic-curve-cryptography/   注意: BlueECC生成的PemString,在控制台那里输出会自动带了换行符\n,然后复制到eclipse里面又会再变成\\n,所以复制黏贴的话需要注意一下    
转自:https://www.jianshu.com/p/8659851b5e94   在Xcode 11 创建的工程,运行设备选择 iOS 13.0 以下的设备,运行应用时会出现黑屏现象。 原因: Xcode 11 默认是会创建通过 UIScene 管理多个 UIWindow 的应用,工程中除了 AppDelegate 外会多一个 SceneDelegate AppDelegate和SceneDelegate这是iPadOS带来的新的多窗口支持的结果,并且有效地将应用程序委托的工作分成两部分。 也就是说在我们用多窗口开发iPadOS中,从iOS 13开始,您的应用代表应该: ...
Global site tag (gtag.js) - Google Analytics