Searching txt.sour.is

Twts matching #reading
Sort by: Newest, Oldest, Most Relevant

Empowering Developers with Docker: Simplifying Compliance and Enhancing Security for SOC 2, ISO 27001, FedRAMP, and More
With a Docker Business subscription, Docker customers have access to granular controls and a full product suite to help them maintain compliance and improve security. ⌘ Read more

⤋ Read More

Building a zero CVE strategy
Member post originally published on the Kubesimplify blog by Kunal Verma With the increase in software complexity and as digital threats evolve (as discussed in our previous blog) in today’s digital age, the organizations are facing a massive increase… ⌘ Read more

⤋ Read More

Linux-Compatible Board Built Around RK3576 with 6TOPS NPU for AIoT Applications
Linux-Compatible Board Built Around RK3576 with 6TOPS NPU for AIoT Applications
The Forlinx Embedded FET3576-C SoM and its carrier board are designed to meet the demands of the AIoT market, emphasizing high performance, substantial computing power, and energy efficiency. Built around the Rockchip RK3576, this hardware platform incorporates dual GbE LAN ports, PCIe support, wireless cap … ⌘ Read more

⤋ Read More

JO : tout est en place, ça va pulser !
À présent, chaque jour qui passe nous rapproche un peu plus et de façon guillerette du début des festivités olympiques qui se dérouleront, pour le plus grand bonheur des Parisiens et de toute une faune touristique triée sur le volet, dans la capitale française à partir du 26 juillet prochain. À moins que… À moins […] ⌘ Read more

⤋ Read More

Kuo: 2026 iPhone to Use New Advanced Camera Sensor From Samsung
Apple’s iPhone will adopt a new 48MP Ultra Wide CMOS image sensor (CIS) made by Samsung as early as 2026, breaking Sony’s years-long monopoly as Apple’s CIS supplier, according to Apple analyst Ming-Chi Kuo.

Image

Writing in a brief report published on X (formerly Twitter), Kuo said Samsung has … ⌘ Read more

⤋ Read More

Go 語言定時任務 time-Sleep 和 time-Tick 的優劣對比分析
golang 寫循環執行的定時任務,常見的有以下三種實現方式 1、time.Sleep 方法:for {   time.Sleep(time.Second)   fmt.Println(“我在定時執行任務”)}2、time.Tick 函數:t1:=time.Tick(3time.Second)for {   select {   case <-t1:      fmt.Println(“t1定時 ⌘ Read more

⤋ Read More

Docker Security Advisory: AuthZ Plugin Bypass Regression in Docker Engine
Certain versions of Docker Engine have a security vulnerability that could allow an attacker to bypass authorization plugins (AuthZ) under specific circumstances. The base likelihood of this being exploited is low. This advisory outlines the issue, identifies the affected versions, and provides remediation steps for impacted users. ⌘ Read more

⤋ Read More

iOS 18 Beta 4 & iPadOS 18 Beta 4 Available to Download
Apple has released iOS 18 beta 4 and iPadOS 18 beta 4 for iPhone and iPad users enrolled in the developer beta testing program. Typically a public beta version matching the same build is released soon after. While the developer beta program is intended for advanced users and developers, anyone can install iOS 18 beta … Read MoreRead more

⤋ Read More

MacOS Sequoia 15 Beta 4 Available to Download
Apple has released the fourth beta version of MacOS Sequoia 15 to those who are actively running macOS Seqouia developer beta in the testing program. A matching build for public beta testers typically arrives soon after, which would be versioned macOS Sequoia public beta 2. MacOS Sequoia 15 features some intriguing new features for the … Read MoreRead more

⤋ Read More

Release Candidate for iOS 17.6, macOS Sonoma 14.6, iPadOS 17.6 Available for Testing
Apple has issued the Release Candidate builds for iOS 17.6 for iPhone, ipadOS 17.6 for iPad, and macOS Sonoma 14.6 for Mac. Release Candidate builds are typically the last finalized beta build, which, assuming there are no significant bugs or security issues found, often matches the final version of that software to be released to … [Read More](https://osxdaily.com/20 … ⌘ Read more

⤋ Read More

How we improved availability through iterative simplification
Solving and staying ahead of problems when scaling up a system of GitHub’s size is a delicate process. Here’s a look at some of the tools in GitHub’s toolbox, and how we’ve used them to solve problems.

The post [How we improved availability through iterative simplification](https://github.blog/engineering/engineering-principles/how-we-improved-availability-through-iterative-simplification/ … ⌘ Read more

⤋ Read More

How to review code effectively: A GitHub staff engineer’s philosophy
GitHub Staff Engineer Sarah Vessels discusses her philosophy of code review, what separates good code review from bad, her strategy for finding and reviewing code, and how to get the most from reviews of her own code.

The post [How to review code effectively: A GitHub staff engineer’s philosophy](https://github.blog/developer-skills/github/how-to-review-code-effectively-a-github-staff-eng … ⌘ Read more

⤋ Read More

Welcome Bob Killen, CNCF’s new Senior Technical Program Manager!
We’d like to take a moment to welcome and introduce (or reintroduce) Bob Killen, CNCF’s new Senior Technical Program Manager! Bob has been a member of the cloud native community for some time now and is probably familiar… ⌘ Read more

⤋ Read More

Authentication vs authorization: understanding the difference
Member post originally published on the Cerbos blog by Omu Inetimi Authentication vs Authorization: Understanding the Difference In recent times, security in modern applications cannot be overemphasized. It is extremely important to ensure our applications have proper security… ⌘ Read more

⤋ Read More

Radxa Teases Upgraded ROCK 5B+ SBC with LPDDR5 RAM and Onboard Wi-Fi 6
Radxa Teases Upgraded ROCK 5B+ SBC with LPDDR5 RAM and Onboard Wi-Fi 6
Radxa has introduced an upgraded version of their Radxa ROCK 5B, originally launched in 2022. This latest iteration of the single-board computer retains the Rockchip RK3588 SoC from its predecessors, now enhanced with significant upgrades including LPDDR5 RAM, dual M.2 M Key connectors, onboard Wi-Fi 6, among other features. ⌘ Read more

⤋ Read More

AAEON Unveils All-in-One Panel PCs Powered by Intel & Rockchip Processors
AAEON Unveils All-in-One Panel PCs Powered by Intel & Rockchip Processors
AAEON has expanded its product range with the launch of two innovative All-in-One Panel PCs: the ACP-1075 and ACP-1078. These new models highlight AAEON’s commitment to integrating cutting-edge technology tailored to meet both industrial and retail needs. ⌘ Read more

⤋ Read More

Golang - range 迭代器揭祕
簡介我們正在使用 Go 語言編寫 Dolt[1] ,這是世界上第一個版本控制的 SQL 數據庫。像大多數大型 Go 代碼庫一樣,我們有很多需要迭代的集合類型。 Go 1.23 的新特性 [2] 中,你現在可以使用 range 關鍵字來迭代自定義集合類型。這是如何工作的? 這是個好主意嗎? 讓我們深入探討一下。如果你想運行本教程中的任何代碼,你需要 安裝 Go 1.23 發佈候選版 [3] ,或者在 ⌘ Read more

⤋ Read More

ASRock DSF-A6000: Featuring AMD Ryzen Embedded R2314 Processor and Triple RJ-45 Ports
ASRock DSF-A6000: Featuring AMD Ryzen Embedded R2314 Processor and Triple RJ-45 Ports
ASRock Industrial has introduced the DSF-A6000 Embedded Box PC, tailored for diverse business environments. This unit leverages the AMD Ryzen Embedded R2314 processor, providing stable and robust processing and graphics performance. It is ideally suited for 4K quad display setups used in di … ⌘ Read more

⤋ Read More

使用 Go 語言創建你的第一個 2D 遊戲
Pixel 是一個用 Go 語言編寫的 2D 遊戲開發庫, 它爲開發者提供了一套簡潔而強大的工具, 讓創建像素風格的遊戲變得輕而易舉。本文將深入探討 Pixel 庫的核心特性, 並通過豐富的示例來展示如何使用它來構建引人入勝的 2D 遊戲。Pixel 的誕生與理念————Pixel 誕生於開發者對簡單而高效的 2D 遊戲開發工具的渴望。它的設計理念是 “手工打造”, 這意味着庫的每 ⌘ Read more

⤋ Read More

Genkit:新一代基於 Go 的 AI 應用開發框架
Google 推出了 Genkit for Go,這是一個開源框架,用來以 Go 語言原生構建 AI 應用與雲服務。該項目是 Google Firebase 和 Go 團隊聯手合作的最新成果。Genkit for Go 於 7 月 17 日正式推出,目前版本處於 alpha 階段。Gophers 能夠通過它將 Go 的性能和併發優勢與 Genkit 的庫和工具相結合,從而來構建生成式 AI 應用程 ⌘ Read more

⤋ Read More

Golang 面試題:原子操作和鎖
1、問題描述原子操作和鎖的區別是什麼?2、問題解答原子操作和鎖是併發編程中常用的兩種同步機制,它們的區別如下:1、作用範圍:原子操作(Atomic Operations):原子操作是一種基本的操作,可以在單個指令級別上執行,保證操作的原子性。原子操作通常用於對共享變量進行讀取、寫入或修改等操作,以確保操作的完整性。 鎖(Lock):鎖是一種更高級別的同步機制,用於保護臨界區(Critical ⌘ Read more

⤋ Read More

How to Install iPadOS 18 Public Beta
With the public beta for iPadOS 18 available, any curious iPad user is now able to install the iPadOS 18 public beta onto an eligible device. Running iPadOS 18 public beta provides an opportunity to test out features and the new operating system before the system software is finalized, giving early access to features like … Read MoreRead more

⤋ Read More

Post-vacation bike tour
Today was my first workday after summer vacation, and with the weather being pleasant – not too hot, and no rain – I decided to finish work a bit early and go for a 39-kilometer bike tour through the surrounding area. ⌘ Read more

⤋ Read More

Pour redresser les finances, les autorités ont une idée finaude : augmenter les impôts
La gauche au pouvoir, c’est une éclosion permanente d’idées économiques surprenantes. Prenez l’Allemagne : son actuel déficit démographique devrait la pousser à faire un peu attention à ses finances d’un côté, à pousser la robotisation massive de tous ses domaines (comme le font Japon et Corée actuellement), et à cajeoler sa population de l’autre pour – […] ⌘ Read more

⤋ Read More

iPhone 17 Lineup Specs Detail Display Upgrade and New High-End Model
Key details about the specifications of the iPhone 17 lineup have today been shared by the leaker known as “Ice Universe.”

Image

Reports in recent months have converged in agreement that Apple will discontinue the “Plus” iPhone model in 2025 while introducing … ⌘ Read more

⤋ Read More

Radxa ROCK 2F: An Upcoming Compact 4K Computer with Rockchip RK3528A and Wi-Fi 6
Radxa ROCK 2F: An Upcoming Compact 4K Computer with Rockchip RK3528A and Wi-Fi 6
The Radxa ROCK 2F is a small computing device designed for a wide range of uses, from development projects to multimedia setups. It’s packed with features, including multiple GPIOs and an HDMI port that supports 4K video at 60 fps, making it versatile for technology enthusiasts. ⌘ Read more

⤋ Read More

Raspberry-like SBC Powered by RK3528A SoC and PCIe 2.0 Support
Raspberry-like SBC Powered by RK3528A SoC and PCIe 2.0 Support
The Radxa ROCK 2A is a credit card-sized single-board computer with a form factor similar to the Raspberry Pi. Key features include a Gigabit Ethernet LAN port, Wi-Fi 6 support, and an FPC connector for further expansion. ⌘ Read more

⤋ Read More

Tenstorrent Unveils Next Generation Wormhole-based Developer Kits and Workstations
Tenstorrent Unveils Next Generation Wormhole-based Developer Kits and Workstations
Tenstorrent has announced the launch of its next-generation Wormhole chip, now featured in PCIe cards and workstations designed for scalable multi-chip development. ⌘ Read more

⤋ Read More

Top Stories: iOS 18 Public Beta, HomePod Mini in New Midnight Color, and More
The public betas of iOS 18 and other upcoming major operating system updates are finally here! Apple has spent the past month refining the betas through developer testing, and it’s now time to open them up for broader access ahead of a full public launch several months from now.

Image

We also got a surprise hardware update this week, but it was one … ⌘ Read more

⤋ Read More

Lessons from CrowdStrike’s Buggy Update: The Critical Importance of Robust Release Processes
Community post by Andrés Vega, CNCF TAG Security Recent events involving CrowdStrike’s Falcon security software have underscored a critical lesson across the industry : the importance of having a robust, secure release process. This incident serves as a… ⌘ Read more

⤋ Read More

How to Install watchOS 11 Public Beta on Apple Watch
If you’re an advanced Apple Watch user, you might be intrigued by the idea of running the watchOS 11 public beta on your Apple Watch, to accompany your paired iPhone running iOS 18 public beta. Sure, beta system software is buggier than final versions and may have issues with performance and battery life, but running … Read MoreRead more

⤋ Read More

Apple Prepares for 2024 Summer Olympics With Updates to Maps, TV Coverage, Featured Apps and More
Apple this week updated the Apple Maps app in Paris in preparation for the 2024 Summer Olympics, which are set to begin on Friday, July 26. All permanent venues, such as the Parc de Princes and Centre Aquatique Olympique, are displayed as custom, hand-built 3D landmarks.

![](https://images.macrumors.com/article-new/2024/07/2024-summer-olympics-maps-upda … ⌘ Read more

⤋ Read More

艾尔登法环DLC剧情解析:你不知道的黄金树之影(上)
中篇已更新: 艾尔登法环DLC剧情解析:你不知道的黄金树之影(中)

本文也会秉承着我两年前写本体三篇解析的精神,尽量在有原文文本支撑的情况下做出一定的分析和推演,至于完全虚无缥缈的内容,比如梅瑟莫到底是谁和谁生的这种找不到根据的则不予分析。

前言:褪色者以及一众被魅惑的战士们去幽影之地做什么

我相信很多褪色者打完整个dlc都还在云里雾里,不知道去幽影之地做什么,就感觉杀杀杀,最后砍了拉塔恩旅游了一圈,那么米凯拉魅惑众人前往幽影之地是为了什么呢?难道是为了让褪色者来砍他?(诶,从游戏角度来说还真是)

先说答案,是为了: 运尸体。

我们应该都知道,米凯拉前往幽影之地是为了从神之门获取力量,成为真正的神祇。

那么,成为神祇需要什么条件呢?

![](https://pic1.zhimg.com/v2-7396e171def76ebcfe552b9228e87 … ⌘ Read more

⤋ Read More

Microsoft Outage Hits Users Worldwide, Leading To Canceled Flights
Microsoft grappled with a major service outage, leaving users across the world unable to access its cloud computing platforms and causing airlines to cancel flights. From a report: Thousands of users across the world reported problems with Microsoft 365 apps and services to Downdetector.com, a website that tracks service disruptions. “We’re inve … ⌘ Read more

⤋ Read More

游戏 UI 谈话会
很久没有更新知乎,这次决定将之前在公众号上整理的三篇 UI 设计访谈录汇为一篇,在此分享。文章形式为 “采访者观点”+“个人理解与补充”

我最近和 十位游戏开发者,分别就游戏 UI 进行了探讨。十位开发者来自于游戏业界的不同公司/组织,从事不同方向的游戏开发。他们拥有很多共同点: 具备出色的技能;对游戏充满了热情;从事非 UI 领域开发。我试图通过这样一个谈话,重新审视 UI 在游戏开发中扮演的角色。我相信这样的交流能产生认知的碰撞。而事实证明,我在此过程中获取的信息量,远远超过我的预估。

01

什么是 UI?

尽管我们可以通过资料查阅,找到 UI 的定义:

用户界面( User Interface ) 是系统和用户之间进行交互和信息交换的媒介,它实现信息的内部形式与人类可以接受形式之间的转换。

然而概念是“静止”的。游戏开发者在工作生产中所形成的理解,更能体现 UI 对于当下的意义。我大致把大家关于此问题的回答分为两类: **广义 UI 和狭义 … ⌘ Read more

⤋ Read More

De la banalisation des couteaux, des fous et du RN
Dans au moins un domaine, les récentes élections ont enfin pu apporter un peu de clarté. Bien sûr, il ne s’agit pas du domaine politique tant l’explosion en vol du NFP, prévue et actée, donne à tant de politiciens l’occasion d’exprimer leurs talents de clown. Non, si les choses sont plus claires, c’est clairement pour […] ⌘ Read more

⤋ Read More

OrangePi 5 Max SBC with M.2 Key Slot and 2.5GbE LAN Port
Orange Pi recently showcased their latest single-board computer, the OrangePi 5 Max, on their Twitter account. This device is powered by the octa-core Rockchip RK3588 and includes key interfaces such as a 2.5GbE LAN port and an M.2 M-Key slot for expansion. The OrangePi 5 Max features the RK3588 SoC, an 8nm LP process chip […] ⌘ Read more

⤋ Read More

(Updated) Orange Pi Teases Upgraded Orange Pi 5 Pro SBC with LPDDR5 and M.2 Key Slot
Orange Pi has recently provided additional specifications about their latest Orange Pi 5 Pro Single Board Computer built around the new-gen Rockchip RK3588S System-on-Chip. Key features of this board are its GbE port with PoE+ support, M.2 Key slot for expansion and Wi-Fi5/BT5.0 connectivity. Similarly as the Radxa ROCK 5C Lite SBC and the Toybrick […] ⌘ Read more

⤋ Read More

構建並運行 eBPF 應用 - Part 2
在上一篇文章中,我們用 C 語言創建了一個 eBPF 程序,以瞭解某個進程使用 CPU 的時間。這些數據隨後被存儲在 BPF HashMap 中。但這是一個不斷更新的短期存儲位置,數據的壽命很短…… 我們該如何利用這些數據呢?這就是用戶空間程序的用武之地。用戶空間程序不在內核空間運行,但可以附加到 eBPF 程序並訪問 BPF HashMap。現在讓我們來看看如何用 Golang 編寫用戶 ⌘ Read more

⤋ Read More

Crowdstrike Says Global IT Outage Limited to Windows PCs, But Mac and Linux Hosts Not Affected
A widespread system failure is currently affecting numerous Windows devices globally, causing critical boot failures across various industries, including banks, rail networks, airlines, retail, broadcasters, and many more businesses. The issue, manifesting as a Blue Screen of Death (BSOD), is preventing computers from starting up properly and forcing them into continuous recovery cycles.

![](http … ⌘ Read more

⤋ Read More

How to Install iOS 18 Public Beta on iPhone
Now that iOS 18 is in public beta, intrepid iPhone users who are not developers may be interested in testing out the new operating system on their own devices. The iOS 18 public beta offers early access to intriguing new features, including dark mode icons and widgets, Passwords app, a redesigned Photos app, iPhone Mirroring … Read MoreRead more

⤋ Read More

Cloud Native Glossary — the Turkish version is live! (blog in English + Turkish)
The Cloud Native Glossary is a project led by the CNCF Business Value Subcommittee. Its goal is to explain cloud native concepts in clear and simple language without requiring any previous technical knowledge. We are in the process… ⌘ Read more

⤋ Read More

Go 語言的 Lodash 風格庫
在 JavaScript 的世界裏,Lodash 是一個家喻戶曉的工具庫,它提供了豐富的函數,方便開發者操作數組、對象、字符串等等。Lodash 極大地提高了 JavaScript 開發者的效率,也讓代碼更加簡潔易讀。在 Go 語言 1.18 版本之前,由於缺乏泛型,我們很難實現像 Lodash 這樣功能強大且類型安全的工具庫。然而,隨着 Go 1.18 泛型的引入,這一切都發生了改變。sambe ⌘ Read more

⤋ Read More

4th Beta of iOS 17.6, macOS Sonoma 14.6, & iPadOS 17.6 Available for Testing
Apple has issued the fourth beta version of iOS 17.6, iPadOS 17.6, and MacOS Sonoma 14.6. These new beta builds are separate from the concurrent beta tracks of upcoming system software, which most beta testers have likely installed instead, with iOS 18 beta, iPadOS 18 beta, and MacOS Sequoia 15 beta. If you are running … [Read More](https://osxdaily.com/2024/07/17/4th-beta-of-ios … ⌘ Read more

⤋ Read More

Apple Intelligence Not Trained on YouTube Content, Says Apple
Apple on Thursday addressed concerns about its use of AI training data, following an investigation that revealed Apple, along with other major tech companies, had used YouTube subtitles to train their artificial intelligence models.

Image

The investigation by _[Wired](https://www.wired.com/story/youtube-training-data-apple-nvidia-anthropic/ … ⌘ Read more

⤋ Read More

Docker Desktop 4.32: Beta Releases of Compose File Viewer, Terminal Shell Integration, and Volume Backups to Cloud Providers
Discover the powerful new features in Docker Desktop 4.32, including the Compose File Viewer, terminal integration, and enterprise-grade volume backups, designed to enhance developer productivity and streamline workflows. ⌘ Read more

⤋ Read More