Fortnite Has a Political Violence Problem
In a report shared exclusively with WIRED, the Global Project Against Hate and Extremism says it found more than a dozen user-generated games on Fortnite that featured antisemitism and political violence. ⌘ Read more

⤋ Read More

The Blurred Reality of AI’s ‘Human-Washing’
This week, we examine the trend among generative AI chatbots to flirt, stammer, and try to make us believe they’re human—a development that some researchers say crosses an ethical line. ⌘ Read more

⤋ Read More

Lab-Grown Diamonds Are Everywhere. This Company Thinks It Has the Secret to Making Them High-End
Now that it’s possible to grow affordable gems in the time it takes to watch a movie, the race is on to save the value of the most precious stone. ⌘ Read more

⤋ Read More

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

⤋ Read More

Dockerfile 的工作原理說明
什麼是 Dockerfile?Dockerfile 是一個文本文件,其中包含有關如何構建 Docker 鏡像的說明。每個指令都由一個命令組成,後跟一個或多個參數。按照慣例,命令以大寫形式編寫,以區分它們與參數,並使 Dockerfile 更具可讀性。以下是 Node.js 應用程序的 Dockerfile 示例:FROM node:20.11.1WORKDIR /appCOPY package.j ⌘ Read more

⤋ Read More

JVM 是如何創建對象的?你瞭解嗎?
JDK 版本:1.81、對象的創建的方式Java 語言中,對象創建的方式有六種:    1.1、new 關鍵字:    最常見的形式、Xxx 的靜態方法、XxxBuilder、XxxFactory 的靜態方法。    1.2、Class 類的 newInstance() 方法:    通過反射的方式創建對象,調用類的無參構造器進行對象的創建,且其訪問權限爲 public。    1.3、Const ⌘ Read more

⤋ Read More

網絡原理:史上最全 tcp-ip 協議詳解
TCP/IP 協議包含了一系列的協議,也叫 TCP/IP 協議族(TCP/IP Protocol Suite,或 TCP/IP Protocols),簡稱 TCP/IP。TCP/IP 協議族提供了點對點的連結機制,並且將傳輸數據幀的封裝、尋址、傳輸、路由以及接收方式,都予以標準化。TCP/IP 協議的分層模型——————在展開介紹 TCP/IP 協議之前,首先介紹一下七層 ⌘ Read more

⤋ Read More

敲黑板!吳恩達 LLM Agent 工作流 Prompt 精華全解析
在詳解和實測吳恩達 4 種 Agentic 工作流之中,我測試了各種框架諸如反思、工具調用、規劃、多智能體,在學習了其中各種 Prompt 設計後,有了一些新的認識。 對於特定的任務來說,沒有萬能的 Prompt,只有一些通用的模式,要完成這個任務還需要這個任務特定的 Example。另外,你一定要 PUA 它,強烈的鼓勵它,使用類似 MUST、獎勵等字眼來 PUA 它,這樣能讓大模型更好的跟隨 ⌘ Read more

⤋ Read More

一文徹底搞懂 Transformer - 總體架構
圖片*****Transformer**一、RNN 編碼器 - 解碼器架構__******序列到序列模型(Seq2Seq):Seq2Seq 模型的目標是將一個輸入序列轉換成另一個輸出序列,這在多種應用中都具有廣泛的實用價值,例如語言建模、機器翻譯、對話生成等。 圖片******Seq2Seq******RNN 編碼器 - 解碼器架構:**Transformer 出來之前,主流的序列轉換模型都基於 ⌘ Read more

⤋ Read More

一文了解 AI Agent(智能體)
*****一、前言**AI Agent(人工智能代理)是上半年一個火熱的話題。筆者最近對相關概念進行了學習與研究,期間也通過智能體開發平臺成功搭建了一些有趣的 Agent。所以計劃通過本篇文章,跟大家分享筆者對於 AI Agent 的些許理解。**二、AI Agent 是什麼**AI Agent,即人工智能體,是一種能夠感知環境、進行自主理解、決策和執行動作的智能實體。簡單理解,是一種基於大語言模 ⌘ Read more

⤋ Read More

爲什麼需要向量化執行引擎
前言–在一些前沿數據庫中,經常可以看到一個很火的詞彙——向量化執行引擎,比如 ClickHouse、DuckDB、Doris 等等,我對這個概念一直還停留在淺顯的理論層面,一直沒有機會深入,藉此機會,好好捋一捋這個高大尚的詞彙,什麼是向量化執行引擎。傳統數據庫執行器——–早期數據庫受限於硬件,內存和 CPU 等都十分昂貴,所以大多數數據庫執行器都採用傳統的火山模型,火山模型又稱 Vol ⌘ Read more

⤋ Read More

微服務系統架構設計
隨着互聯網技術的發展,微服務架構逐漸成爲企業級應用系統設計的主流選擇。我將以一份詳細的微服務系統架構圖爲例,分享如何設計一個高效、穩定的微服務系統。一、系統整體架構在我的設計中,系統分爲外網和內網兩部分。外網主要處理客戶請求,通過 Nginx 進行負載均衡和流量轉發,而內網則負責實際業務邏輯和數據處理。二、外網部分客戶端:支持多終端接入,包括 PC、手機和平板等,爲用戶提供便捷的訪問方式。 ⌘ Read more

⤋ Read More

案例解析:RAG 的盡頭是 Agent
AI 進化論:從 RAG 到 Agent,智能體如何重塑未來世界© 作者 |Blaze來源 | 神州問學引言 隨着 ChatGPT、ChatGPT-4 等的發佈,我們徹底被大模型(LLM)的魅力所征服,越來越多的公司和企業開始聚焦大模型技術的研發和使用,爲我們的日常生活帶來了極大的便利。但是,大模型同樣面臨着時效性、準確性等各種問題,如何讓 LLM 變得更好?如何解決 LLM 所面臨的挑戰?如何 ⌘ Read more

⤋ Read More

Growing Evidence of ‘Harm’ From Social Media, Says Surgeon General
Emily Hutto,  Associate Video Producer  -  MedPage Today

_Stephan: Social media with its torrent of misinformation and lies, AI generated fake audio, and fake porn, its use to make classmates and fellow workers humiliated and hurt is, as the Surgeon General of the United States spells out, causing great social damage. Through it all the Congress sits on its hands and does nothing. Social media i … ⌘ Read more

⤋ Read More

The World’s Problems Explained in One Issue: Electricity
TREVOR JACKSON,    -  The Nation

_Stephan: Here you see an excellent analysis of why so many countries in the world are being so slow to prepare for climate change. Simple answer: Because profit is the only priority that matters. As this piece describes to exit the carbon era, the electrical systems cannot be principally petroleum fueled as they are in the United States. As the author says, “The idea that markets … ⌘ Read more

⤋ Read More

The American republic is crumbling before us – and Democrats must share the blame
Owen Jones,  Columnist  -  The Guardian

_Stephan: Throughout the day I have watched different channels cover the Trump Republican Party convention. It is astonishing. Every person speaking at the convention does nothing but lie and spread misinformation. I have never seen anything like it. Meanwhile Biden is diagnosed with Covid and we have only 110 days until the … ⌘ Read more

⤋ Read More

Almost two-thirds of Democrats want Biden to step down, poll finds
Ivana Saric,  Staff Writer  -  Axios

_Stephan: I think Biden should announce his retirement. He would leave and history would see him as perhaps the most successful President since Franklin Roosevelt. If he stays and loses I think history will revile him for for letting his ego and his family’s egos put himself above his nation’s best interests. If he stays and wins it will be seen as one of t … ⌘ Read more

⤋ Read More

Newly Discovered Moon Caves Could One Day House Astronauts
Analysis of lunar imagery has ended a longstanding debate over whether there are accessible underground areas on the Moon; an emptied lava tube in the Sea of Tranquility is of particular interest. ⌘ Read more

⤋ Read More

Rust 異步編程指南:掌握 Futures-rs 從入門到實戰的詳細教程
引言–Rust 語言以其高性能和內存安全性而聞名。而在現代應用程序開發中,異步編程已成爲一種必要技能。Futures-rs 是 Rust 提供的一套強大的異步編程工具集,可以幫助開發者輕鬆地編寫高效的異步代碼。本文將帶領你一步步地深入瞭解 Futures-rs,從基本概念到實戰應用,最終掌握這項強大的技能。什麼是 Futures-rs?—————Futures-rs 是一個 ⌘ Read more

⤋ Read More

大白話!解析大模型原理!
LLM 的工作原理對大多數人來說是個謎。雖然它們本質上在於 “預測下一個詞”,並需要大量文本進行訓練,但具體細節往往令人困惑。原因在於這些系統獨特的開發方式:基於數十億詞彙訓練的神經網絡,不同於傳統的人類編寫的軟件。儘管沒人完全理解其內部機制,但研究人員正努力探索。本文旨在以非技術、非數學的方式解釋 LLM 的工作原理,包括詞向量、Transformer 模型及其訓練方式,以及爲何需要海量數據來取 ⌘ Read more

⤋ Read More

LLM 基礎模型系列:Fine-Tuning 總覽
` 文|龐德公編輯|郭嘉由於對大型語言模型,人工智能從業者經常被問到這樣的問題:如何訓練自己的數據?回答這個問題遠非易事。生成式人工智能的最新進展是由具有許多參數的大規模模型驅動的,而訓練這樣的模型 LLM 需要昂貴的硬件(即許多具有大量內存的昂貴 GPU)和花哨的訓練技術(例如,完全分片的數據並行訓練)。幸運的是,這些模型通常分兩個階段進行訓練——預訓練和微調。其中前一個階段(要)昂貴得多。鑑於 ⌘ Read more`

⤋ Read More

大模型應用框架:LangChain 與 LlamaIndex 的對比選擇
開發基於大型模型的應用時,選擇合適的應用框架不僅能顯著提高開發效率,還能增強應用的質量屬性。這類似於在 Windows 上開發傳統軟件服務時從 MFC 過渡到. NET Framework,或在 Linux 服務器端使用 Java 語言時採用 Spring 及 Spring Boot 框架,以及在 Web 前端開發中選擇 VUE、React 或 Angular 等多樣的框架。面對基於大模型的應用開 ⌘ Read more

⤋ Read More

Terraform 工作流程:合併前應用 vs 合併後應用
如果您曾經管理過雲基礎設施, 您可能遇到過 Terraform, 這是該領域最流行的基礎設施即代碼工具。2023 年, Hashicorp 配置語言 (HCL) 再次成爲 GitHub 年度 Octoverse 報告

⤋ Read More

(#22exukq) @bender@bender Yeah I dunno wtf this feed is 🤣 Looks like a gopher feed. Either their client is fucked up, or this is just pure …
@bender @twtxt.net Yeah I dunno wtf this feed is 🤣 Looks like a gopher feed. Either their client is fucked up, or this is just pure spam 🤔 Anyway found some bugs in yarnd that I should fix because of this feed. ⌘ Read more

⤋ Read More

Alleged ‘Maniac Murder Cult’ Leader Indicted Over Plot to Kill Jews
US prosecutors have charged Michail Chkhikvishvili, also known as “Commander Butcher,” with a litany of crimes, including alleged attempts to poison Jewish children in NYC. ⌘ Read more

⤋ Read More