Hugo Theme - Niello

   |   1 minute read
Diello is a new dark mode theme for Hugo. 尝试为Hugo开发一个黑色的主题,也算为开源事业做点贡献哈哈。 主题雏形已完成并可以使用,目前只开发了Homepage主页和
更多 >>

Macos Review Issues

   |   1 minute read
Binary Rejected Guideline 2.1 - Performance We discovered one or more bugs in your app when reviewed on Mac running macOS 10.14.2. Specifically, the user receives an error occurs when attempting to push a notification. 根据StackOverflow搜索到的解决方案如下: The Problem is that after the Application is minimized by pressing the x button, there is no way for the user to open it again from the dock. One way to fix this is to just terminate the Application when the x button is clicked.
更多 >>

Let's Encrypt泛域名证书申请

   |   2 minute read
acme.sh实现了acme协议,可以从let’s encrypt方便的生成免费https证书,最主要因为let’s e
更多 >>

MacOS Dmg安装文件制作

   |   1 minute read
生成.app文件 在工程目录结构中展开product即可看见APP名称.app,右键点击并选择show in finder 准备需要的资源 1、在桌面新建文件夹d
更多 >>

iOS远程推送服务端证书制作

   |   1 minute read
获取所需文件 1、推送证书p12格式,假设为apns.p12 2、推送证书对应的私钥,假设为apns-key.p12 将上面两个文件转换为pem格
更多 >>

数据结构与算法笔记 - 数组

   |   1 minute read
数组定义 数组是一种【线性表】数据结构。它用一组【连续的内存空间】,来存储一组具有【相同类型的数据】 数组支持【随机访问】,根据下标随机访问的时
更多 >>

TCP连接关闭过程

   |   2 minute read
因为TCP连接是双向的,所以在关闭连接的时候两个方向各自都需要关闭。先发起关闭连接的一方我们称为主动方,与之对应的被动关闭连接的一方我们称为
更多 >>

高并发Web应用

   |   2 minute read
不知大家有没有想过要达到什么样的请求量级或者说能支持多少用户才算是一个支持高并发的Web应用。一天能支撑几百、几千的PV肯定算不上高并发系统
更多 >>

并发编程&并行编程

   |   1 minute read
参考Erlang之父用一幅5岁小孩都能看懂的图来解释并发与并行: 从它们的对立面来理解可能更有帮助: 并发的反义词是顺序,concurrency
更多 >>

Nginx实现简单负载均衡

   |   2 minute read
这里主要用到upstream这个指令,该指令需要ngx_http_upstream_module模块的支持,这个模块主要用于定义一组供pro
更多 >>
<< 上一页  |  Page 4 of 5  |  下一页 >>