新页面

新页面
隐藏注册用户 | 隐藏机器人 | 显示重定向
  • 2024年10月13日 (日) 14:38Yjs state vector历史 | 编辑) ‎[1,213字节]Riguz留言 | 贡献 (创建页面,内容为“Yjs has the ability to exchange only the differences when syncing two clients. We use lamport timestamps to identify structs and to track in which order a client created them. Each struct has an <syntaxhighlight lang="java" inline>struct.id = { client: number, clock: number}</syntaxhighlight> that uniquely identifies a struct. We define the next expected clock by each client as the state vector. This data structure is similar to the version vectors data structu…”)
  • 2024年10月13日 (日) 13:39Yjs varint encoding历史 | 编辑) ‎[1,247字节]Riguz留言 | 贡献 (创建页面,内容为“<ref>https://github.com/yjs/y-protocols/blob/master/PROTOCOL.md</ref> Category:Yjs Category:CRDT”) 标签可视化编辑:已切换
  • 2024年10月12日 (六) 03:28Nginx reverse proxy历史 | 编辑) ‎[96字节]Riguz留言 | 贡献 (创建页面,内容为“<syntaxhighlight lang="bash"> sudo apt install nginx </syntaxhighlight> Category:Linux/Unix”)
  • 2024年10月10日 (四) 08:12Non-Deliverable Swap历史 | 编辑) ‎[1,593字节]Riguz留言 | 贡献 (创建页面,内容为“A non-deliverable swap (NDS、不可交割掉期 ) is an exchange of different currencies, between a major currency and a minor currency, which is restricted.<ref>https://corporatefinanceinstitute.com/resources/derivatives/non-deliverable-swap-nds/</ref> With most swaps, currency flows physically change. With an NDS, it is not the case because the currencies are not convertible. The two currencies that are involved in the swap can’t be delivered; hence it is…”)
  • 2024年10月9日 (三) 02:45Netting历史 | 编辑) ‎[1,903字节]Riguz留言 | 贡献 (创建页面,内容为“净额清算(netting)是跨国公司现金管理的一种常用方式,是指在一定时间内,跨国公司母公司与子公司以及各子公司之间不按照交易的发生额而是按照收支轧差后的净额来进行支付的一种行为。<ref>http://haikou.pbc.gov.cn/haikou/2927302/132974/2229022/index.html</ref> 证券交易中的净额清算又称差额清算,指在一个清算期中,对每个结算参与人价款的清算只计其各笔应…”)
  • 2024年10月9日 (三) 02:38Bilateral netting历史 | 编辑) ‎[450字节]Riguz留言 | 贡献 (创建页面,内容为“'''Bilateral netting(双边净额结算/双边轧差)''' is an arrangement that allows amounts owing between two counterparties to be combined into a single net figure payable from one to the other. Of greatest interest to supervisors is the potential offered by bilateral netting to reduce credit risk arising from banks' derivative transactions.<ref>https://www.rba.gov.au/publications/rdp/1994/9409/introduction.html</ref> Category:Finance”)
  • 2024年9月19日 (四) 01:36Java sealed classes历史 | 编辑) ‎[1,510字节]Riguz留言 | 贡献 (创建页面,内容为“Goals of sealed classes: * Allow the author of a class or interface to control which code is responsible for implementing it. * Provide a more declarative way than access modifiers to restrict the use of a superclass. * Support future directions in pattern matching by providing a foundation for the exhaustive analysis of patterns. = Syntax = Option1: define inner classes: <syntaxhighlight lang="java"> public abstract sealed class Chinese { final class Sim…”)
  • 2024年9月17日 (二) 12:43An introduction to state-based CRDTs历史 | 编辑) ‎[25,181字节]Riguz留言 | 贡献 (创建页面,内容为“原文链接:https://www.bartoszsypytkowski.com/the-state-of-a-state-based-crdts/ Category:CRDT”)
  • 2024年8月14日 (三) 09:54Write NTFS on Mac历史 | 编辑) ‎[1,906字节]Riguz留言 | 贡献 (创建页面,内容为“<syntaxhighlight lang="bash"> git clone https://github.com/tuxera/ntfs-3g.git brew install macfuse@dev cd ntfs-3g ./configure && make </syntaxhighlight> Check ntfs disk: <syntaxhighlight lang="bash"> diskutil list /dev/disk0 (internal, physical): #: TYPE NAME SIZE IDENTIFIER 0: GUID_partition_scheme *500.3 GB disk0 1: Apple_APFS_ISC Container disk2 524.…”)
  • 2024年8月12日 (一) 10:26YATA algorithm历史 | 编辑) ‎[4,205字节]Riguz留言 | 贡献 (创建页面,内容为“= Notes on YATA paper = == Rules == === Rule1: No line crossing === 600px Category:Distributed Category:CRDT”)
  • 2024年7月26日 (五) 06:53Workflow design历史 | 编辑) ‎[37,276字节]Riguz留言 | 贡献 (创建页面,内容为“随着2023年大模型在国内的发展成熟,现在大家逐步开始真正关注到大模型应用的开发上。有人说,2024年是大模型应用的落地元年。的确,看似无所不能的大模型,也并不是直接丢到一个系统就能用的,如何开发大模型应用,实际上还处于一个刚起步的阶段。一些成熟的技术,经历过许多人摸索后,总能给出一个”best practice“;对于大模型应用开发来…”)
  • 2024年7月23日 (二) 03:12Caching patterns历史 | 编辑) ‎[1,289字节]Riguz留言 | 贡献 (创建页面,内容为“When you are caching data from your database, there are caching patterns for Redis and Memcached that you can implement, including proactive and reactive approaches. The patterns you choose to implement should be directly related to your caching and application objectives. Two common approaches are cache-aside or lazy loading (a reactive approach) and write-through (a proactive approach). A cache-aside cache is updated after the data is requested. A write-thro…”)
  • 2024年7月23日 (二) 02:58Saga历史 | 编辑) ‎[368字节]Riguz留言 | 贡献 (创建页面,内容为“<ref>https://microservices.io/patterns/data/saga.html</ref> Category:Distributed”)
  • 2024年7月19日 (五) 01:44Llama.cpp历史 | 编辑) ‎[843字节]Riguz留言 | 贡献 (创建页面,内容为“ Category:Deep Learning”)