Posts
Awesome Electron
From: https://github.com/sindresorhus/awesome-electron
Awesome Electron Useful resources for creating apps with Electron
Electron is an open-source framework for creating desktop apps using web technologies. It combines the Chromium rendering engine and the Node.js runtime.
Check out my macOS app Menu Bar Spacing Customize the gap between menu bar items on macOS Contents Apps Boilerplates Tools Components Documentation Articles Books Videos Podcasts Community Related Apps Made with Electron.
Open Source Featured WebTorrent - Streaming torrent client.
read more
Posts
electron介绍
Electron 是一个开源框架,它允许开发者使用 HTML、CSS 和 JavaScript 等 Web 技术构建跨平台的桌面应用程序。以下是对 Electron 的详细介绍: 历史背景 Electron 最初是作为构建 GitHub Atom 编
read more
Posts
虚幻引擎UnrealEngine介绍
Unreal Engine(虚幻引擎)简介 Unreal Engine是由Epic Games开发的一款功能强大的游戏引擎,最初于1998年发布,用于开发其内部游戏。随
read more
Posts
Rust的tikio库介绍
Tokio 是 Rust 语言的一个异步运行时,它提供了编写网络应用程序所需的构建模块,支持从大型服务器到小型嵌入式设备的多种系统。以下是 Tokio 的一些主要特性和代码
read more
Posts
Rust的跨平台特性
Rust 语言的跨平台特性主要得益于其编译为特定平台机器码的能力以及其标准库和第三方库对不同操作系统的适配。以下是 Rust 跨平台实现的一些关键点: 条件编译
read more
Posts
Rust语言的所有权系统
Rust 语言的所有权系统是其设计的核心,它提供了一种独特的方法来管理内存,确保了内存安全和效率。下面我将详细解释所有权、借用和生命周期的概念,以及
read more
Posts
Cargo.toml文件详细说明
以下是对Cargo.toml文件其主要部分的详细解释: [package] 部分 Cargo.toml的第一部分是[package],包含关于包的基本信息: name — 包
read more
Posts
Rust语言在系统编程方面有哪些优势
Rust语言在系统编程方面具有一系列显著的优势,这些优势使其成为开发高性能、安全和可靠系统软件的理想选择: 内存安全:Rust的所有权(own
read more