【Hacker News搬运】翻新周末:我讨厌的Symbolics MacIvory Lisp机器
-
Title: Refurb weekend: the Symbolics MacIvory Lisp machine I have hated
翻新周末:我讨厌的Symbolics MacIvory Lisp机器
Text:
Url: http://oldvcr.blogspot.com/2024/10/refurb-weekend-symbolics-macivory-lisp.html
由于我是一个AI,我无法直接访问互联网或执行实时网页抓取。但是,我可以告诉你如何使用JinaReader(假设这是一个库或工具)来抓取和分析网页内容,并且如何处理非中文内容进行翻译。 以下是一个假设的步骤,说明了如何使用JinaReader进行网页抓取、内容分析和翻译: 1. **安装JinaReader**(假设存在这样一个库): ```python # 假设JinaReader是一个可用的库 import JinaReader
-
初始化JinaReader:
jina = JinaReader.JinaReader()
-
抓取网页内容:
url = "http://oldvcr.blogspot.com/2024/10/refurb-weekend-symbolics-macivory-lisp.html" content = jina.fetch(url)
-
分析抓取的内容:
# 假设JinaReader有一个分析函数 analysis = jina.analyze(content)
-
检测内容语言并翻译(如果内容不是中文):
from googletrans import Translator # 假设分析结果包含文本内容 text_content = analysis['text'] # 检测文本的语言 translator = Translator() detected_language = translator.detect(text_content).lang # 如果检测到语言不是中文,则进行翻译 if detected_language != 'zh-cn': translation = translator.translate(text_content, dest='zh-cn').text else: translation = text_content
-
总结翻译后的内容:
# 假设有一个总结函数 summary = jina.summarize(translation) print(summary)
请注意,以上代码是假设性的,因为JinaReader、googletrans等可能并不存在,或者它们的用法可能与这里描述的不同。在实际应用中,你需要使用真实的库和它们的正确API。例如,你可以使用
requests
来抓取网页,使用BeautifulSoup
来解析HTML,使用googletrans
来翻译文本,以及使用一些自然语言处理库来分析文本和生成摘要。对于实际操作,你需要替换
JinaReader
、fetch
、analyze
、translate
和summarize
等函数为实际使用的库和函数。## Post by: rcarmo ### Comments: **pdw**: This is wild:<p>> Portable Genera, an official port of the VLM to Intel and ARM done under contract for existing customers. While this version isn't publicly available as of this writing, it's still actively developed. > **pdw**: 这太疯狂了:<p>>;Portable Genera是VLM向英特尔和ARM的官方移植,根据现有客户的合同完成。虽然此版本不是;在撰写本文时尚未公开;s仍在积极发展。 **floren**: I wish these weren't so unobtanium... I've been slowly gathering sources and information in the hopes of maybe writing a book about the Lisp Machines, and as part of that I'd like to spend time hands-on with the real hardware, but it's hard and expensive to find the damn things. > **floren**: 我希望这些不是;没那么不起眼。。。我;我一直在慢慢收集资源和信息,希望能写一本关于Lisp机器的书,作为其中的一部分,我;我想花时间亲自操作真正的硬件,但它;找到这些该死的东西既困难又昂贵。 **the-smug-one**: Cathode Ray Dude on YouTube had a video with a guy calling himself tr0n(?) showing off his Symbolics machine. I can't find the video, but it's out there and it's good. > **the-smug-one**: YouTube上的阴极射线酷哥有一段视频,一个自称tr0n(?)的人在炫耀他的符号机器。我可以;找不到视频,但它;它就在那里;很好。 **gjvc**: I have one of these! I will read this article closely for guidance. > **gjvc**: 我有一个!我将仔细阅读这篇文章以获得指导。
-