请注意,逸凡并不支持低于IE8的浏览器,为了获得最佳效果,请下载最新的浏览器,推荐下载 Chrome浏览器

常用的四种免费证书申请方式

5-01 568 views

https://blog.csdn.net/weixin_45444133/article/details/120900424 免费申请证书的四种常用方式 Let's Encrypt 申请教程 2.Cloudflare 申请教程 3.FreeSSL...
阅读全文 0

remove file from git history

4-29 599 views

git filter-branch --index-filter 'git rm -rf --cached --ignore-unmatch path/file' HEAD
阅读全文 0

Undefined symbols for architecture x86_64

12-14 679 views

添加 -framework Cocoa 就行了 Undefined symbols for architecture x86_64: "_CGContextFillRect", referenced from:
阅读全文 0

ffmpeg 常用命令

10-16 657 views

crop ffmpeg -i input.mov -vf crop=iw:iw:0:ih-iw output.mp4 ffmpeg -i input.mov -vf crop=iw:iw:0:0 output.mp4 to gif -s size ffmpeg -i output...
阅读全文 0

macos 暗黑3按键精灵

10-10 737 views

// gcc -Wall -o globalkeypress globalkeypress.c -framework ApplicationServices && ./globalkeypress include include </pthread.h> vo...
阅读全文 0

Go 语言编译器的 “//go:” 详解

9-27 1,352 views

前言 C 语言的 #include 一上来不太好说明白 Go 语言里 //go: 是什么,我们先来看下非常简单,也是几乎每个写代码的人都知道的东西:C 语言的 #include。 我...
阅读全文 0

Objective-C属性(property)的特性(attribute)

9-22 870 views

https://www.jianshu.com/p/035977d1ba89 先以一图总结: Atttributes 以下:「attribute(s)」,「特性」是指同一事物(都指@property后面括号内的单词)。 ...
阅读全文 0

git Removing files from a repository’s history

9-21 1,403 views

https://docs.github.com/en/github/managing-large-files/removing-files-from-a-repositorys-history Open Terminal. Change the current working directo...
阅读全文 0

go generate

9-19 1,116 views

https://blog.golang.org/generate https://stackoverflow.com/questions/19155038/name-of-a-constant-given-its-value https://godoc.org/golang.org/x/to...
阅读全文 0

Cocoa Tiny

9-16 945 views

// clang -framework Cocoa hello.m -o app && ./app #import "Cocoa/Cocoa.h" int main(int argc, const char * argv[]) { NSAutoreleasePool...
阅读全文 0