2018年01月22日
打开 Alfred Preferences -> Features -> Contacts,取消勾选 Open Contacts in Alfred。 或者系统偏好设置 -> 安全性与隐私 -> 隐私 -> 通讯录,勾上 Alfred.app,允许 Alfred 访问通讯录在使用破解版的时候,每次开机都要提示这个信息,实在是很烦.最终找到解决办法:在终端输入如下命令,完美解决^_^!sudo codesign -f -d -s - /Application
2017年12月14日
本文讲的是把git在最新2.9.2,合并pull两个不同的项目,出现的问题如何去解决fatal: refusing to merge unrelated histories我在Github新建一个仓库,写了License,然后把本地一个写了很久仓库上传。先pull,因为两个仓库不同,发现refusing to merge unrelated histories,无法pull因为他们是两个不同的项目,要把两个不同的项目合并,git需要添加一句代码,在git pull,这句代码是在git 2.9.2
2017年11月07日
1、打开终端2、输入DevToolsSecurity --status 查看状态,如果是Developer mode is currently disabled.那就对了3、输入DevToolsSecurity --enable此时会弹出密码输入框,输入密码后终端信息:Developer mode is now enabled.bingo!搞定了。4、如果要恢复以前每次运行都要输密码(我想大部分人都不会去做吧)输入:DevToolsSecurity --disable然后提示框输入密码,状态修改
2017年10月19日
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58//extern "C"&n
2017年10月18日
JDK9上报错类似Exception in thread "main" java.lang.reflect.InaccessibleObjectException: Unable to make jdk.internal.loader.ClassLoaders$AppClassLoader(jdk.internal.loader.ClassLoaders$PlatformClassLoader,j
2017年10月18日
很多家长提到孩子不会写作文,其实对于孩子来说,一定要掌握一些小技巧,并不断练习,才能让你的作文有滋有味,同一句话,用不同的方式、用词、语气表现出来,其含金量就是不一样。如何将你的作文提高一个档次呢?一、写外貌不用“有”作文如何写外貌?孩子的作文里总会看到类似这样的名子:“XX可漂亮了,她有一头卷卷的黄头发,有一双乌黑的葡萄般的大眼睛,有一个高高的鼻子,还有一张樱桃小嘴。” 如果你试着让他们去掉文中的“有”,把文字重新串联一遍,会发现作文顺了很多。写上段文字的同学经蒋老师指导后修改如下:“XX可漂
2017年10月10日
IntroIn C++, bitmasks are often represented by eitherpreprocessor defines#define Readable 0x4
#define Writeable 0x2
#define Executable 0x1
unsigned permissions = Readable | E
2017年09月27日
@interface NSArray (SubscriptKey)
@end
@implementation NSArray (SubscriptKey)
- (id)valueForUndefinedKey:(NSString *)key {
if ([key isEqualToString:@"size"]) {
&
2017年09月27日
sudo port install 所有差的库,只有openssl 安装了还要提示下面的错误:Please install the openssl library (with development headers)解决方案如下:找到 OpenWrt/include/host-build.mkifeq ($(HOST_OS),Darwin)
HOST_CFLAGS += -I/usr/local/opt/openssl/include
&
2017年08月31日
This chapter describes assembler directives (also known as pseudo operations, or pseudo-ops), which allow control over the actions of the assembler.Directives for Designating the Current SectionThe assembler supports designation of arbitrar