arkMeta Crypto Network Limited, arkSong Guide to Fine-Tuning Open Source LLM Models on Custom Data Introduction I'm sure most of you would have heard of ChatGPT and tried it out to answer your questions! Ever wondered what happens under the hood? It's powered by a Large Language Model GPT-3 develop... Dec 31, 2023 AI人工智能
arkMeta Crypto Network Limited, arkSong 源码解析:Git的第一个提交是什么样的? 导读:自2005年诞生yi'来,经过开发社区多年不断地迭代,如今Git的功能越来越完善和强大。然而Git的第一个提交源码仅约1000行,当时的Git实现了哪些功能?本文将从源码开始,分析其核心思想,挖掘背后优秀的设计原理。 前言 Git 是目前世界上被最广泛使用的现代软件版本管理系统(Version Control System)。Git 本身亦是一个成熟并处于活跃开发状态的开源项目,今天惊人数量... Nov 28, 2023 Web3区块链技术
arkMeta Crypto Network Limited, arkSong WebAssembly 在工业领域的巨大机遇 WebAssembly 是一种新的编码方式,一种虚拟的指令集,具有紧凑的二进制格式,可以以接近原生的性能运行,并被多种语言诸如 C / C ++,Rust,Go,Kotlin 等作为编译目标。 在工业领域,WebAssembly 已经获得学术界和一些大型企业的强烈兴趣,在过去的 2 年中已经涌现一些相关前沿性研究报告与开源项目。 在 2022 年由美国卡耐基梅隆大学举办的一场名为“WebAssem... Nov 12, 2023 Web3区块链技术
arkMeta Crypto Network Limited, arkSong 探讨 DFINITY 账户结构与去中心化身份机制 本期内容要点: DFINITY 的账户与身份是两个系统,其底层依然是加密原生的公钥 / 私钥 / 地址的账户,但在上层建立了去中心化DID身份系统; 身份与账户并不耦合,账户写在链的底层,而身份是链上运行在 NNS 子网上的智能合约,通过合约与账户建立了联系;账户更像是银行卡,而身份更像是绑定了银行卡的支付宝,能方便地使用 DFINITY 的 dapp; ID身份系统的目的是为了帮助用户更好地管理... Nov 10, 2023 Dfinity互联网计算机
arkMeta Crypto Network Limited, arkSong Chakra UI Chakra UI is a comprehensive library of accessible, reusable, and composable React components that streamlines the development of modern web applications and websites. The library offers a diverse ran... Nov 5, 2023 Dfinity互联网计算机
arkMeta Crypto Network Limited, arkSong IOT Omnia Network architecture Omnia Backend is the core of the Omnia Network and is deployed as a canister on the Internet Computer. It manages the interaction main components of the Omnia Network. Omnia... Nov 5, 2023 Dfinity互联网计算机
arkMeta Crypto Network Limited, arkSong How to model your data with CanDB Modeling your Data 数据建模 How to model your data with CanDB A) The Entity The Entity is the equivalent of the base data record or item that is stored in CanDB. It consists of: 实体相当于存储在 CanDB 中的基本数据记... Nov 5, 2023 Dfinity互联网计算机
arkMeta Crypto Network Limited, arkSong CanDB CanDB is a flexible, performant, and horizontally scalable non-relational multi-canister data store built for the Internet Computer. CanDB 是一种灵活、高性能且可水平扩展的非关系型多容器数据存储,专为互联网计算机而构建。 Actors in CanDB CanD... Nov 5, 2023 Dfinity互联网计算机
arkMeta Crypto Network Limited, arkSong Web3新技术论坛 ~上海 主办:同济大学元宇宙Web3实验室 时间:2023年10月29日下午 地点:上海市中山公园来福士T2写字楼26楼演播厅 来自上海附近Web3爱好者的参会者人数约50人左右,大家围绕Web3最新技术进行研讨,演讲+ 圆桌会议、深入自由交流。每个人都在技术与人脉方面收获满满的。... Nov 3, 2023 新闻
arkMeta Crypto Network Limited, arkSong Concise overview of Motoko 此处记录的 Motoko 版本(当前为 0.9.3)可能比 dfx 附带的 Motoko 编译器早几个版本。 This is terse, slide-like introduction to Motoko and its features. 这是对 Motoko 及其功能的简洁、幻灯片式的介绍。 Motivation and Goals 设计Motoko语言动机与目标 A simple, u... Oct 31, 2023 Motoko语言
arkMeta Crypto Network Limited, arkSong Array, Optional and Generic type, and Higher order functions. Array 数组 数组🚚 任何编程语言中的数据结构都是必不可少的,几乎每个程序都需要将数据存储和访问数据结构。 数据结构有很多不同的形式,每种形式都有自己的优点和缺点,没有完美的数据结构(即使有些数据结构比其他数据结构更常用),给定任务的最佳数据结构取决于具体情况和您的优先级 。 We have already played with Array , but today we'll see exa... Oct 31, 2023 Motoko语言
arkMeta Crypto Network Limited, arkSong Custom type and Linked list Custom type 自定义类型 以前程序操作了不同的类型(Nat、Text、Bool、Array); 现在可创造自己定义的类型: module { } 这是一个模块声明,与之前所有作为actor声明的 .mo 文件相反。 模块(就像以前一直使用的基础库模块一样)是程序可以导入和重用的一段代码。 这就是创建自定义类型的方法。 如果程序希望可以从模块外部访问程序里的类型,则需要将其公开。 publ... Oct 31, 2023 Motoko语言