Windows 10 Chrome 使用 GPU 硬件加速
硬件加速是指在计算机中通过把计算量非常大的工作分配给专门的硬件来处理以减轻中央处理器的工作量之技术。尤其是在图像处理中这个技术经常被使用。
Mac Windows 共用显示器
DELL S2721QS
ddcctl [v0]
Karabiner-Elements [14.3.0]
barrier [2.4.0-release-3e0d758b]
如何在线上传文件到 IPFS 网络
星际文件系统( InterPlanetary File System,缩写为 IPFS )是一个旨在创建持久且分布式存储和共享文件的网络传输协议。它是一种内容可寻址的对等超媒体分发协议。在 IPFS 网络中的节点将构成一个分布式文件系统。
curl rsync SSH 使用代理
代理是一种特殊的网络服务,允许一个终端(一般为客户端)通过这个服务与另一个终端(一般为服务器)进行非直接的连接
使用 Tor 浏览器
Tor 浏览器,前身为 Tor Browser Bundle(TBB),是 Tor 项目的旗舰产品。由 Mozilla Firefox ESR 浏览器修改而成,并由 Tor Project 开发人员做了许多安全性和隐私保护的调校,预载 TorButton、TorLauncher、NoScript 和 HTTPS Everywhere 等扩展与 Tor 代理。
OpenVPN 代理流量
Remove Duplicates from Sorted Array
Remove Duplicates from Sorted Array
Given a sorted array nums, remove the duplicates in-place such that each element appear only once and return the new length.
Do not allocate extra space for another array, you must do this by modifying the input array in-place with O(1) extra memory.
Swap Nodes In Pairs
Swap Nodes In Pairs
Given a linked list, swap every two adjacent nodes and return its head.
“You may not modify the values in the list’s nodes, only nodes itself may be changed.l”
Kth Largest Element in an Array
Kth Largest Element in an Array
Find the kth largest element in an unsorted array. Note that it is the kth largest element in the sorted order, not the kth distinct element.