This is going to be a short post about how to change your Macintosh boot logo/start logo without using software like BootXChanger. Since this software ...
分类:
系统相关 时间:
2020-06-24 16:13:33
阅读次数:
109
在使用Windows上使用较老版本的nodejs,比如使用v8.9,npm自带的npx版本是9.7,在windows上使用会存在 “Path must be a string. Received undefined”的错误。在最新版本的npx总问题已经解决,可以通过npm手动升级到最新版本; npm ...
Linux git管理项目遇到的问题 ImportError: Failed to initialize: Bad git executable. The git executable must be specified in one of the following ways: - be incl ...
分类:
系统相关 时间:
2020-06-24 15:41:37
阅读次数:
129
For Flink applications to run reliably at large scale, two conditions must be fulfilled: The application needs to be able to take checkpoints reliably ...
分类:
其他好文 时间:
2020-06-24 14:07:13
阅读次数:
47
package LeetCode_934 import java.util.* /** * 934. Shortest Bridge * https://leetcode.com/problems/shortest-bridge/description/ * * In a given 2D bina ...
分类:
其他好文 时间:
2020-06-21 13:53:20
阅读次数:
56
1.静态断言 template <typename t, typename us int bit_copy(t& a,u& b){static_assert(sizeof(b)==sizeof(a),"the parameters of bit_copy must have same width." ...
分类:
编程语言 时间:
2020-06-20 22:22:32
阅读次数:
73
解决办法 前段时间公司新采购了一台ibm的服务器,装的是 windows server 2012R2, 在做完项目迁移后,发现项目访问数据库缓慢,于是逐项查找原因,最后终于找到解决办法: 以Administrator权限执行命令行(开始菜单中右键点击命令行程序,右键菜单中有以管理员身份执行的选型), ...
分类:
数据库 时间:
2020-06-20 19:33:47
阅读次数:
171
xtype: 'form', layout: 'column', defaults: { style: 'float:left;margin:4px;', columnWidth: 0.49, msgTarget: 'side' }, defaultType: 'textfield', fieldD ...
分类:
其他好文 时间:
2020-06-20 14:02:28
阅读次数:
47
Constructs a cookie with a specified name and value.The name must conform to RFC 2109. That means it can contain only ASCII alphanumeric characters an ...
分类:
其他好文 时间:
2020-06-19 19:15:22
阅读次数:
75
对于私有属性常常会添加set以及get方法,此时可以使用Python内置的@property装饰器,将set以及get方法简化为如同属性一样调用 示例: 普通情况: class book: _score = 0 def __init__(self): self._score = 100 def ge ...
分类:
编程语言 时间:
2020-06-19 16:30:50
阅读次数:
74