NixOS 24.05 released ⌘ Read more
實現微服務註冊的高效利器:gRPC 與 Nacos 集成教程
一、golang gRPC 註冊 nacosgithub 地址 nacos-sdk-go(opens new window) nacos 官網 1、目錄結構 2、pb/person.protosyntax = “proto3”;option gopackage = “./person”;package pb;message Person { string name = 1; in ⌘ Read more
全面掌握 GORM 中的遷移系統,實現自動遷移與手動遷移
在 Golang 生態系統中,GORM 作爲一個廣泛使用的 ORM 框架,不僅在數據庫操作方面提供了友好的 API 支持,其遷移系統(Migration System)同樣功能強大且易於使用。在本文中,我們將詳細解析 GORM 中的遷移機制,包括自動遷移和手動遷移,同時提供詳盡的代碼示例,幫助開發者全面掌握這一技術。什麼是數據庫遷移?———在數據庫系統中,遷移是指對數據庫架構進行變更的 ⌘ Read more
使用 Go Channel 構建可擴展的併發 worker pool
在本篇博文中,我們將深入探討如何在 Go 中構建一個可擴展的 Worker pool。該實現可有效地管理 Worker pool,以處理大量請求,同時根據負載動態調整 Worker 的數量。我們還會討論可能出現的問題以及如何避免它們。概覽要實現的 worker pool 應該具有以下功能:根據負載情況動態調整 worker 數量; 具備超時和重試機制處理接收到的請求; 能夠 Grace ⌘ Read more
M5Stack CoreS3 SE with 2.0″ Capacitive Touch Display and 16-bit I2S Amplifier
M5Stack CoreS3 SE with 2.0” Capacitive Touch Display and 16-bit I2S Amplifier
The M5Stack CoreS3 SE, a streamlined version of the third-generation CoreS3 unit from the M5Stack series, is engineered for IoT applications, smart home systems, and industrial automation. This device supports key programming platforms such as Arduino and UIFlow, enhancing its adaptability for diverse project requ … ⌘ Read more
L’impossible recyclage du plastique
Très régulièrement, à la faveur d’une campagne de propag… pardon de conscientisation par l’une ou l’autre organisation de lobbying non gouvernemental, on découvre que l’Humanité rejette une quantité ahurissante de plastique dans la nature, que c’est une catastrophe et que nous allons tous mourir, ce qui explique au passage les lois de plus en plus […] ⌘ Read more
Apple Vision Pro International Launch Likely Scheduled for July
The international launch of Apple’s Vision Pro headset could finally occur in July, just over six months after the device was released in the United States.
A source familiar with the matter told MacRumors that the Apple Vision Pro is now scheduled to launch internationally in Jul … ⌘ Read more
快速生成 Go 語言數據庫模型:探索 GORM gen 的便捷神器
官方文檔:https://gorm.io/zhCN/gen/create.html 一、安裝 mysql 1、安裝 mysql拉取 MySQL 鏡像docker pull mysql運行 MySQL 容器docker run –name mysql-server -p 3306:3306 -e MYSQLROOTPASSWORD=123456 -d mysql安裝mysql客戶端brew ⌘ Read more
Go 實現的一個 bitset,設計思想非常棒,值得參考收藏!
這兩日讀了一個實現二維碼生成的庫。其中的 bitset 設計得非常好,就摘抄記錄下來,與大家一起分享。bitset 實現一個可擴展的 bit 集合,可以添加 bit 和查看 bit。它在二維碼生成中,用來將編碼後的內容協助生成位圖,然後通過位圖進行繪製二維碼。二維碼的黑白格子正好用二進制 0 和 1 來表示。 下面開始詳細講解這個功能設計: 一、我們使用一個結構體來存儲 bit 序列。Bits ⌘ Read more
Go 語言學習筆記:深入理解匿名函數與閉包
一、引言—-在 Go 語言中,匿名函數與閉包是兩個重要的概念,它們增強了 Go 語言的表達力和功能性,使得代碼更加簡潔和強大。 本文將深入探討 Go 語言中的匿名函數與閉包,幫助讀者更好地理解和應用這兩個概念。匿名函數在 Go 語言中提供了一種靈活的方式來定義即用即拋的函數邏輯,減少了命名負擔並且可以直接在代碼中嵌入。閉包則允許匿名函數捕獲並持有其定義時作用域中的變量,使得函數具有狀態,這對於 ⌘ Read more
Go 線程同步
線程同步—-通常在 Go 語言中有兩種方法可以用來做線程同步sync.Cond channel channel 的很好理解,當我們從一個 channel 中接收數據的時候,如果裏面沒有數據,那我們直接就阻塞在那裏了;在這篇文章中就來看看怎麼使用 sync.Cond 完成同步sync.Cond———「定義結構體和方法」type BlueberryInt struct { ⌘ Read more
Golang 中 JSON 操作的 5 個常見陷阱(建議收藏!)
JSON 是許多開發人員在工作中經常使用的一種數據格式。它一般用於配置文件或網絡數據傳輸等場景。由於其簡單、易懂、可讀性好,JSON 已成爲整個 IT 界最常用的格式之一。對於這種情況,Golang 和許多其他語言一樣,也提供了標準庫級別的支持, encoding/json[1]。就像 JSON 本身很容易理解一樣,用於操作 JSON 的編碼 / JSON 庫也非常容易使用。但我相信,很多開發者可 ⌘ Read more
使用 Go 語言的 bytes 包高效地操作字符串
在編程語言 Go 中,bytes包提供了一系列用於操作[]byte類型的函數,這非常有用,特別是當你需要處理大量的字符串和切片時。通過使用bytes.Buffer,你可以高效地構建和修改字符串,而不必擔心頻繁的內存分配和字符串拼接導致的性能問題。下面,我們將深入瞭解如何使用bytes.Buffer,並通過豐富的示例演示它的強大功能。Buffer 的基本用法————bytes.Buf ⌘ Read more
Golang 實現搜索引擎
概述–主要包括三個部分:網絡爬蟲: 爬取儘可能多的網頁; 網頁分詞: 利用jieba庫對網頁內容進行分詞, 並存儲分詞結果(格式爲: 文檔 id, 文檔長度, 詞頻, 分詞偏移 - 文檔 id, 文檔長度, 詞頻, 分詞偏移); 搜索頁面: 提供一個前端頁面, 用戶輸入搜索詞, 基於分詞相關性, 返回結果; 不要害怕,整個邏輯很簡單,邏輯拆分的很獨立,便於理解。項目地址: ht ⌘ Read more
Someone New to Loathe ⌘ Read more
Untitled ⌘ Read more
Modes of Transportation
⌘ Read more
Why Objects of Different Mass Fall at The Same Rate ⌘ Read more
[47°09′19″S, 126°43′06″W] Reading: 1.64000 PPM
Highlights from Microsoft Build: Docker’s Innovations with AI and Windows on Arm
Windows is back! Docker CTO Justin Cormack talks about this and other takeaways from Microsoft Build 2024, including recently announced (and long-awaited) Docker Desktop support for Windows on Arm. ⌘ Read more
[47°09′53″S, 126°43′27″W] Raw reading: 0x6658A281, offset +/-3
17 Numbers Keyboard Shortcuts for iPad
The Numbers spreadsheet application for iPad includes quite a few useful keyboard shortcuts for when the iPad is connected to an external keyboard. If you use Numbers for iPad regularly, you’ll almost certainly benefit from knowing these keystroke combinations to perform various actions within the Numbers app. So grab your iPad keyboard and launch the … Read More ⌘ Read more
Xline command Deduplication Mechanism (II) — RIFL implementation
Member post by DatenLord In the previous article, we started from why we need command deduplication mechanism, introduced the necessity of deduplication and some problems of the current deduplication mechanism of Xline, and explained the working principle of… ⌘ Read more
Spatial Puzzle Game ‘Where Cards Fall’ Now Available on Apple Vision Pro
Apple is continuing to add to its lineup of Apple Arcade games on the Vision Pro, today adding puzzle game Where Cards Fall.
Where Cards Fall has previously been available on [iPhone](https://www.macrumors.com/guide/ … ⌘ Read more
Erlang Solutions: 7 Key Blockchain Principles for Business
Welcome to the final instalment of our Blockchain series. Here, we are taking a look at the seven fundamental principles that make blockchain: Immutability, decentralisation
‘workable’ consensus, distribution and resilience, transactional automation (including ‘smart contracts’), transparency and trust, and links to the external world.
For business leaders, understanding these core principles is crucial in harnessing the potenti … ⌘ Read more
Erlang Solutions: Blockchain Tech Deep Dive 2/4 | Myths vs. Realities
This is the second part of our ‘Making Sense of Blockchain’ blog post series – you can read part 1 on ‘6 Blockchain Principles’ here. This article is based on the original post by Dominic Perini here.
Join our FinTech mailing list for more gre … ⌘ Read more
More Details About iOS 18’s AI Features Revealed
Apple is planning to introduce new AI features including Smart Replies for messages and a generative retouch tool for photos in iOS 18, a new report claims.
A new article from _[AppleInsider](https://appleinsider.com/articles/24/05/30/ios-18-project-greymatter-will-use-ai-to-summarize-notif … ⌘ Read more
Golang 狀態機設計模式
本文介紹了 Golang 狀態機模式的一個實現示例,通過該模式,可以解耦調用鏈,有助於實現測試友好的代碼,提高代碼質量。原文: Go State Machine Patterns[1]導言在我們開發的許多項目中,都需要依賴某種運行狀態從而實現連續操作。這方面的例子包括:解析配置語言、編程語言等 在系統、路由器、集羣上執行操作… ETL(Extract Transform Loa ⌘ Read more
如何理解质价比消费,为什么质价比成为消费新趋势?
质价比消费是一种更加理性的消费,从某种程度上来说也是消费心态成熟的表现。
追求质价比实际上是在规避两种消费陷阱:一种是没有品质的低价。在相当长一段时间里,大家对价格都非常敏感,有些厂商正是利用消费者的这种心态,故意阉割掉产品的一些关键部分,从而控制成本,凑出一个便宜的价格。用户看似买到了便宜,但可能体验打折,甚至品质没有保障。从长远来看,产品的更换周期变得更短,甚至需要频繁维修,从而付出更多的成本和代价。
另一个陷阱就是只追求大牌而忽视产品本身。品牌是企业长期积累的结果,在企业经营中发挥着不可或缺的作用,但如果只看品牌而忽视产品本身的参数、质量等等,就会陷入另一个极端。近几年越来越多人对过度溢价的大牌祛魅,更多选择质优价好的“平替”,就是追求质价比的表现。
质价比成为消费新趋势并不是一种偶然,在经历了浮躁的消费主义之后,用户开始更注重自我需求,摒弃掉眼花缭乱的营销套路,选择真正有价值、有惊喜的高品质产品。
质价比的兴起也离 … ⌘ Read more
Privacy watchdog facing questions over aborted TikTok probe
Australia’s privacy commissioner says her office did not conduct rigorous testing of the TikTok app before deciding to close its inquiry into the company. ⌘ Read more
What Is “Complimentary Medicine”? href=”https://txt.sour.is/search?q=%23neildegrassetyson”>#neildegrassetyson** ⌘ Read more
ZOTAC ZBOX PRO Series: External GPU Boxes Featuring NVIDIA RTX Ada Generation Professional-Grade GPUs
ZOTAC ZBOX PRO Series: External GPU Boxes Featuring NVIDIA RTX Ada Generation Professional-Grade GPUs
ZOTAC has recently launched the ZBOX PRO External Graphics Box series, engineered to enhance the graphics and computing performance of Mini PCs and notebooks. The series includes three models, with the EGB AD5000 featuring up to 9728 CUDA core … ⌘ Read more
Japanese ‘My Number Card’ Digital IDs Coming to Apple’s Wallet App
Apple today announced that support for national My Number Card IDs in Japan will be coming to Apple’s Wallet app “late next spring,” marking the first expansion of digital IDs in Apple Wallet beyond the United States [ [Google translation](https://www-apple-com.translate.goog/jp/newsroom/2024/05/apple-announc … ⌘ Read more
I Failed to Make Tomatoes Explosive… ⌘ Read more
Untitled ⌘ Read more
How to Find a Misplaced Apple Watch with iPhone’s Ping My Watch
If you’re an Apple Watch user, you should know about a convenient feature for iPhone that helps you to easily find a misplaced Apple Watch. Much like how you can ping an iPhone with Apple Watch to find an iPhone, you can now go the other direction too, by pinging your Apple Watch from your … Read More ⌘ Read more
GitHub and JFrog partner to unify code and binaries for DevSecOps
This partnership between GitHub and JFrog enables developers to manage code and binaries more efficiently on two of the most widely used developer platforms in the world.
The post GitHub and JFrog partner to unify code and binaries for DevSecOps appeared first on The GitHub Blog. ⌘ Read more
Apple TV App Likely Coming to Android Smartphones, Job Listing Shows
Apple’s TV app could be available on Android smartphones and tablets in the future, according to a job listing spotted by Bloomberg’s Mark Gurman.
 ⌘ Read more
Apple to Open First Retail Store in Malaysia on June 22
Apple is set to open its first retail store in Malaysia on June 22, marking a significant expansion of its physical retail presence in south-east Asia. The new store will be located in Kuala Lumpur at The Exchange TRX mall.
The store features a unique, tiered white pyramid architectural design. This will be the … ⌘ Read more
Go 語言中,HTTP 請求流式是如何寫入 body 的?
最近在開發一個功能時,需要通過 http 協議上報大量的日誌內容,但是在 Go 標準庫裏的 http client 的 API 是這樣的: http.NewRequest(method, url string, body io.Reader)body 是通過 io.Reader 接口來傳遞,並沒有暴露一個 io.Writer 接口來提供寫入的辦法,先來看看正常情況下怎麼寫入一個 body ,示例 ⌘ Read more
Spicy Water ⌘ Read more
Australians may be caught up in suspected Ticketmaster hack
Notorious hacker group ShinyHunters claims to have stolen the personal details and credit card information of millions of customers around the world. ⌘ Read more
Complexity Analysis
⌘ Read more
This Is Your Sign To Get Up And Move! ⌘ Read more
PSA: Updating to MacOS Sonoma or iOS 17 May Enable iCloud Keychain
Mac users, iPhone users, and iPad users, should all be aware that updating to macOS Sonoma 14, iOS 17, or iPadOS 17, may silently enable iCloud Keychain on their devices. Essentially this means that by updating to the latest iOS, iPadOS, or MacOS, you may be unintentionally enabling the feature and thereby uploading your saved … [Read More](https://osxdaily.com/2024/05/28/psa-updating-to-macos-sonoma-o … ⌘ Read more
Is testing in production even possible?
Community post by Antonio Berben, Principal Solutions Architect at Solo.io (Linkedin | GitHub) In a Testing In Production (TIP) scenario, a critical aspect is routing traffic based on runtime contextual data. This data, often referred to as routing… ⌘ Read more
Experimental Windows Containers Support for BuildKit Released in v0.13.0
We are introducing experimental support for Windows Containers in BuildKit, with the aim of making this available soon in your standard Docker Build. ⌘ Read more
Apple Design Award Finalists Announced Ahead of WWDC 2024
As we prepare for the 2024 Worldwide Developers Conference, Apple today announced its finalists for the Apple Design Awards. Apple chooses the best apps and games annually, announcing the winners at WWDC.
The Apple Design Awards are meant to highlight apps with outstanding design, innovation, ingenuity, and tech … ⌘ Read more
Reflecting on the success of Kubernetes Community Days Islamabad 2024
KCD post by Saim Safdar, CNCF Ambassador In August 2020, I embarked on a journey to establish Cloud Native Islamabad with a vision to cultivate local communities, foster knowledge sharing, and bridge the gap between international and local communities… ⌘ Read more
Go 項目文件命名規範是什麼?
計算機科學中只有兩件難事:緩存失效和命名。—— 菲爾 · 卡爾頓(Phil Karlton)。在編程世界中,選擇正確的命名約定是打開可讀和可維護代碼大門的重要途徑。在使用 Go 語言開發大型項目時,文件命名是構建清晰項目結構的關鍵一環,一個合理的文件命名規範不僅能提高開發效率,還能降低團隊協作中的溝通成本。在這篇博文中,我們將深入探討 Go 中命名的最佳實踐。在探討 Go 文件命名規範之前,我 ⌘ Read more
Google 官方發佈 Go 語言編碼規範
在現代軟件開發中,代碼的可讀性和一致性是至關重要的。尤其是當團隊規模擴大時,遵循一致的編碼規範可以顯著提高代碼的可維護性和團隊協作效率。本文將深入探討 Go 語言的 Google 編碼規範,並結合具體示例,幫助你在實際開發中應用這些規範。爲什麼需要編碼規範?———-編碼規範不僅僅是 “如何寫代碼” 的指導方針,它更是團隊協作的基石。遵守編碼規範可以:提高代碼的可讀性:一致的代碼風格使得 ⌘ Read more
网络迷踪挑战赛:狗狗在哪里嬉戏?
重庆市轨道交通9号线 刘家台地铁站2号口
思路:蓝白栏杆+黄色出租车判断出重庆,左下角像地铁站,右上角有“药 24小时”,阴影方位判断这条路大致是东西走向。
搜索重庆24小时药店,发现泉源堂的招牌很像,然后就找紧挨地铁站的泉源堂,不一会儿就找到了。
来源:知乎 www.zhihu.com
作者: [知乎用户(登录查看详情)](http://www.zhihu.com/question/657268769/answer/3511584186?utm_campaign=rss&u … ⌘ Read more
iPhone Sales Recover in China Amid Surge in Smartphone Demand
Apple’s iPhone sales in China surged by 52% in April, reflecting a significant rebound driven by aggressive price cuts and renewed consumer demand, Bloomberg reports.
The surge in shipments from 2.3 … ⌘ Read more
The XMPP Standards Foundation: Scaling up with MongooseIM 6.2.1
MongooseIM is a scalable, extensible and efficient real-time messaging server that allows organisations to build cost-effective communication solutions. Built on the XMPP server, MongooseIM is specifically designed for businesses facing the challenge of large deployments, where real-time communication and user experience are critical. The main feature of the recently released [MongooseI … ⌘ Read more
Olimex’s Open Source iMX8MPlus SOM & EVB for Industrial, ML, and Vision Applications with 2.3 TOPS NPU
Olimex’s Open Source iMX8MPlus SOM & EVB for Industrial, ML, and Vision Applications with 2.3 TOPS NPU ⌘ Read more
Armbian 24.5.1: Emphasizing Stability & User Experience For Diverse Hardware Platforms
Armbian 24.5.1: Emphasizing Stability & User Experience For Diverse Hardware Platforms
The release of Armbian 24.5.1 Havier marks a significant update focusing on stability enhancements and user experience improvements for a variety of supported hardware platforms. This latest version introduces substantial modifications and updates as detailed in an extensive changelog. ⌘ Read more
How to Install VMWare Tools in Windows on VMWare Fusion for Mac
VMWare Tools is an optional toolkit to install into a Windows virtual machine in VMWare that allows you to have easier sharing of files between the host Mac operating system and the Windows virtual machine, as well as some other useful features like time syncing between host and client, being able to pass data back … Read More ⌘ Read more
What is Git? Our beginner’s guide to version control
Let’s get you started on your Git journey with basic concepts to know, plus a step-by-step on how to install and configure the most widely used version control system in the world.
The post What is Git? Our beginner’s guide to version control appeared first on The GitHub Blog. ⌘ Read more
New underwater drones helping map shipwrecks off WA coast
New underwater drones are helping map shipwrecks off the WA coast. ⌘ Read more
为什么半固态电池、固态电池、钠离子电池被业内认为是新一代动力电池?有何优势?
首先,我不认为半固态电池是新一代动力电池。事实上半固态电池由于其能量密度没有本质性的提升,依然没有摆脱锂离子电池固有特性,其存在仅仅是因为全固态的技术并不成熟而出现的中间技术。所以我认为半固态电池充其量只是改良。
钠离子电池是锂离子电池的一种补充。它的首要优点是安全性。钠离子由于构成电池的钠化合物本征稳定性更好,在热失控过程中很容易发生钝化失活的现象,因此很难引发严重的热失控事件。此外,钠离子电池可以耐受很大的过冲和过放的特性,这些特性同样来自于钠离子电池化学体系的稳定性。这就对钠离子电池的控制安全敏感性带来非常大的便利。钠离子电池在商业上在过去几年最大的优点是钠元素在地球的储量,是锂元素的350-430倍,而且分布更加合理。所以钠元素的价格更加稳定。在2021年后碳酸锂价格快速上涨,并在2022年达到40万以上之后,钠离子电池的研究重要程度就引起了大家非常大的关注。
 vient de demander à l’état hébreu d’« arrêter immédiatement son offensive militaire ». Ces jugements de la Cour Internationale de Justice, organe des Nations Unies créé en 1946, semble ainsi s’ajouter aux demandes de Karim Khan, le premier procureur […] ⌘ Read more
[47°09′02″S, 126°43′19″W] Reading: 1.65 Sv
Apple Says Future iPads Could Feature Landscape Apple Logo
French website Numerama interviewed three senior Apple employees about the new iPad Pro models that launched earlier this month. While the discussion did not reveal many new details, it did mention one potential change for future iPads.
p ⌘ Read more
[譯]Go 中的循環依賴:如何解決這個問題
作爲一個 Golang 開發,你可能在項目中遇到過包的循環依賴問題。Golang 不允許循環依賴,如果檢測到代碼中存在這種情況,在編譯時就會拋出異常。本文會討論循環依賴是如何發生的以及如何處理。循環依賴假設我們有兩個包:p1 和 p2。當包 p1 依賴包 p2,包 p2 依賴包 p1 時,就會產生循環依賴。真實情況可能會更復雜一些。例如,包 p2 不直接依賴包 p1 而是依賴於包 p3,而 p3 ⌘ Read more
一致性哈希的基本概念及其 Golang 實現
在大規模分佈式系統的世界中,高效地管理和分配數據是一個關鍵挑戰。一種廣泛使用的技術是一致性哈希。這種方法確保數據在多個服務器之間均勻分佈,即使服務器的數量隨時間變化也是如此。本文將探討水平擴展、簡單哈希和一致性哈希的概念,並提供一個 Go 語言的示例實現。水平擴展在分佈式系統中,數據通常無法容納在單個服務器上。爲了處理大規模數據,數據被分佈在多臺機器上,這個過程稱爲水平擴展或分片。爲了確保可預測的 ⌘ Read more
探索 Go 語言數據庫查詢的終極指南:深入解析 GORM 的強大查詢功能
一、GORM 基本查詢1、基本查詢func (c UserController) UserSelect() { //1、查詢id=3的用戶 user := models.User{Id: 3} models.DB.Find(&user) //2、查詢所有數據 user := []models.User{} result := models.DB.Find(&user) //5 (統計 ⌘ Read more
‘Peak cringe’: Canva goes viral for on-stage rap video
The rap was panned as being awkward and emblematic of how detached Silicon Valley has become from reality. But its co-founders say it was all part of the plan. ⌘ Read more
Local Group
⌘ Read more
DFRobot Releases New ESP32-UE and ESP32-E Modules Featuring External and PCB Antennas
DFRobot Releases New ESP32-UE and ESP32-E Modules Featuring External and PCB Antennas
DFRobot’s FireBeetle series has expanded with the FireBeetle 2 ESP32-UE (N16R2) and ESP32-E, robust IoT microcontrollers featuring the Tensilica LX6 dual-core processor. The ESP32-UE variant includes support for external Bluetooth and Wi-Fi antennas to boost communication range, along with … ⌘ Read more
Untitled ⌘ Read more
How to Change the Voice of ChatGPT on iPhone, Mac, iPad
ChatGPT for iPhone, iPad, and Mac, all include a very impressive Voice Chat feature, that lets you have voice chats and full on conversations with the advanced AI Large Language Model. One of the fun ways to customize Voice Chat with ChatGPT is to change the voice to something you prefer, and there are multiple … Read More ⌘ Read more
Deals: M1 iPad Air for $399, M3 MacBook Air 15″ 16GB/512GB for $1499, & More
Amazon is back with offering some great deals on the M1 iPad Air M1 model, taking $200 off the $599 MSRP, bringing the final price to just $399. To round it out, there’s also nice discounts on the compatible Magic Keyboard and Apple Pencil, so you can get a full iPad Air setup at a … [Read More](https://osxdaily.com/2024/05/26/deals-m1-ipad-air-for-399-m3-macbook-air-15-16gb-512 … ⌘ Read more
Sonos boss sounds off on high-stakes headphones, app backlash
US audio firm Sonos has a lot riding on its latest release – Bluetooth headphones that will tackle head-on the products of tech giants Bose, Sony and Apple. ⌘ Read more
Is the Ray-Ban Meta mash-up worth putting on your face?
Meta and Ray-Ban’s smart glasses put cameras, microphones, speakers and a little bit of AI into an object you would probably be wearing anyway. ⌘ Read more
DSGW-130: A Voice-Control Enabled Touchscreen Control Panel for Smart Homes
DSGW-130: A Voice-Control Enabled Touchscreen Control Panel for Smart Homes
The DSGW-130 Zigbee Touch Screen Control Panel by Dusun is a compact device designed for smart home automation. Measuring 86mm by 86mm, it fits into an 86-type junction box, replacing traditional wall switches. It supports Zigbee 3.0, facilitating the integration and management of Zigbee devices into smart homes. ⌘ Read more
Ignite Realtime Blog: New Openfire plugin: XMPP Web!
We are excited to be able to announce the immediate availability of a new plugin for Openfire: XMPP Web!
This new plugin for the real-time communications server provided by the Ignite Realtime community allows you to install the third-party webclient named ‘ XMPP Web’ in mere seconds! By installing this new plugin, the web client is immediately ready for use.
This new pl … ⌘ Read more
How to Change the Voice of ChatGPT on iPhone, Mac, iPad
ChatGPT for iPhone, iPad, and Mac, all include a very impressive Voice Chat feature, that lets you have voice chats and full on conversations with the advanced AI Large Language Model. One of the fun ways to customize Voice Chat with ChatGPT is to change the voice to something you prefer, and there are multiple … Read More ⌘ Read more
A spontaneous bike tour
This morning I was in a bit of a bad mood and got the idea that I needed to do some exercise again. I had taken a break for a week due to a cold. I also wanted to get out a bit because the weather was good. Then it was a spontaneous but perfect decision to go for a bike ride again. ⌘ Read more
Untitled ⌘ Read more
Can Tomatoes be Rocket Fuel?! ⌘ Read more
Gurman: iOS 18 Will Allow Users to Recolor App Icons and Place Them Anywhere
Apple’s iOS 18 update will introduce new features for further customizing the iPhone’s home screen, according to Bloomberg’s Mark Gurman.
The Digilent Zmod SDR Is a Comprehensive Tool for RF & SDR Applications
The Digilent Zmod SDR Is a Comprehensive Tool for RF & SDR Applications
Digilent recently launched the Zmod SDR which is a sophisticated digitizer specifically designed for software-defined radio and RF applications. This device includes a dual-channel ADC with an integrated front end, suitable for any SYZYGY compatible carrier board. ⌘ Read more
SkyByte: An Upcoming Mini DIY Drone Powered by ESP32 MCU with Smartphone Control
SkyByte: An Upcoming Mini DIY Drone Powered by ESP32 MCU with Smartphone Control
The SkyByte, an upcoming Mini DIY Wi-Fi Drone powered by the versatile ESP32 microcontroller, is set to debut on Kickstarter soon. This compact, open-source drone is engineered to attract both tech enthusiasts and beginners, featuring control via a smartphone app. ⌘ Read more
Xbox sequel raises the bar for audio, immersion and mental health in video games
Like a visually stunning eight-hour TV series, Senua’s Saga: Hellblade II is a 10th century Viking adventure following a warrior who lives with psychosis. ⌘ Read more
Untitled ⌘ Read more
Untitled ⌘ Read more
How to Confirm Before Closing Windows with Multiple Tabs in Chrome, Edge, Brave
If you use a lot of tabs when browsing the web with Google Chrome, Microsoft Edge, Brave, or any other Chromium based browser, you might want to enable an optional feature that asks to confirm whether or not you wish to close any browser window with multiple tabs open. This can help to prevent you … [Read More](https://osxdaily.com/2024/05/25/how-confirm-before-closing-windows-multiple-ta … ⌘ Read more
What the NIH’s Multibillion-Dollar Research on Alternative Medicine Reveals ⌘ Read more
名画pk决赛:当名画《清明上河图》PK《千里江山图》,你觉得哪幅画在你心中更胜一筹?
太巧了,这正是个把月前我在高中美术鉴赏课中抛给学生的一个辨析问题。学生们回答的很不错。我就直接搬运一下他们的答案吧。先说结果。52人的班级多过半数(有超过30人)投给了《清明上河图》,我也是。学生比较成熟的代表观点如下:
选《清明上河图》方:
1 题材稀缺,古代绘画中描绘祖国大好河山的作品比比皆是,关注民生反映现世生活的比较稀有,表现内容看似平常,但人间烟火的平凡朴实更能打动人心,相较古人胸中丘壑的理想,不仅具有丰富的艺术价值,历史价值更胜一筹。
2 画工超牛,几百个人物生动形象,细致描画,三教九流,神态各异。细节丰富耐看,画面节奏感强,突出高潮,故事性、趣味性,引人入胜。
3 画面有深刻内涵,通过特有的风俗画的艺术形式即实现了当时隐喻曲谏的政治目的,如今又是考证宋代社会经济,民生阶层,城市治理,对外贸易交流,国防政策及实效的第一手资料,比《东京梦华录》的记载更详实生动细致。
4 作品强烈的个 … ⌘ Read more
Top Stories: iOS 17.5.1 Fixes Concerning Photos Bug, All-New iPhone 17 Model Rumored, and More
It’s been quite a week of Apple news and rumors, ranging from a concerning bug with deleted photos reappearing on users’ devices to hot rumors about a new high-end iPhone model for 2025 and a MacBook with a foldable screen coming as soon as 2026.
Other news and rumors this week included fresh expectations for iOS 18 fe … ⌘ Read more
Why Do We Have Seasons? ⌘ Read more
How to Search the Web (Minus AI Junk & Clutter) with Google on Safari for Mac
If you’re a Safari user, as many of us are, you might be interested in actually searching the web with Google and then seeing a list of actual web link results, without seeing any of the new AI junk, video and image recommendations, knowledge panels, related searches, suggested searches, or the other junky clutter that … [Read More](https://osxdaily.com/2024/05/24/search-web-google-no-ai-junk-clutter-saf … ⌘ Read more
LILYGO T-Camera-Plus-S3: ESP32-S3 Development Board with Night Vision & Touch Display
LILYGO T-Camera-Plus-S3: ESP32-S3 Development Board with Night Vision & Touch Display ⌘ Read more