mirror of
https://github.com/wahyd4/kb.git
synced 2026-08-08 21:06:27 +10:00
kb: initialize KB v4 — migrated 2,815 links-posts + 19 tech notes + SCHEMA.md + log.md
- 3-layer architecture: raw (monthly buckets) → wiki (domain subdirs) → SCHEMA - Privacy: repo set to private (public-safe content only) - Sync: daily Links App sync via raw/links/YYYY-MM/ - Design: converged via Grok 4.5 2-round review
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
|||||||
|
# Python
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
|
||||||
|
# OS
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
|
# Sync state
|
||||||
|
.sync-state
|
||||||
|
|
||||||
|
# Private files (never commit)
|
||||||
|
private/
|
||||||
|
*.private.md
|
||||||
Executable
+310
@@ -0,0 +1,310 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
"""
|
||||||
|
Sync new posts from Links App to the wiki vault.
|
||||||
|
Run daily via cron to keep wiki in sync with Links App.
|
||||||
|
|
||||||
|
Usage:
|
||||||
|
python3 sync-links-to-wiki.py [--dry-run]
|
||||||
|
"""
|
||||||
|
|
||||||
|
import urllib.request
|
||||||
|
import json
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
import re
|
||||||
|
import subprocess
|
||||||
|
import shutil
|
||||||
|
from datetime import datetime
|
||||||
|
|
||||||
|
# Config
|
||||||
|
KB_DIR = os.path.expanduser("~/Code/kb")
|
||||||
|
LINKS_API = "http://go/api/posts"
|
||||||
|
SYNC_STATE_FILE = os.path.join(KB_DIR, ".sync-state")
|
||||||
|
RAW_LINKS_BASE = os.path.join(KB_DIR, "raw", "links")
|
||||||
|
|
||||||
|
def run_cmd(cmd, cwd=None, capture=True):
|
||||||
|
"""Run a shell command and return result."""
|
||||||
|
result = subprocess.run(
|
||||||
|
cmd, shell=True, cwd=cwd or KB_DIR,
|
||||||
|
capture_output=capture, text=True
|
||||||
|
)
|
||||||
|
return result
|
||||||
|
|
||||||
|
def get_last_sync_time():
|
||||||
|
"""Get the last sync timestamp from state file."""
|
||||||
|
if os.path.exists(SYNC_STATE_FILE):
|
||||||
|
with open(SYNC_STATE_FILE, 'r') as f:
|
||||||
|
return f.read().strip()
|
||||||
|
return None
|
||||||
|
|
||||||
|
def save_last_sync_time(timestamp):
|
||||||
|
"""Save the sync timestamp to state file."""
|
||||||
|
with open(SYNC_STATE_FILE, 'w') as f:
|
||||||
|
f.write(timestamp)
|
||||||
|
|
||||||
|
def slugify(title, max_len=50):
|
||||||
|
"""Convert title to a valid filename slug."""
|
||||||
|
slug = re.sub(r'[^\w\s\u4e00-\u9fff-]', '', title)
|
||||||
|
slug = re.sub(r'[-\s]+', '-', slug)
|
||||||
|
slug = slug.lower().strip('-')[:max_len]
|
||||||
|
return slug or 'untitled'
|
||||||
|
|
||||||
|
def fetch_posts_since(since_timestamp=None, limit=100):
|
||||||
|
"""Fetch posts from Links App API, stop when we hit posts older than since_timestamp."""
|
||||||
|
posts = []
|
||||||
|
page = 1
|
||||||
|
stop = False
|
||||||
|
|
||||||
|
while True and not stop:
|
||||||
|
url = f"{LINKS_API}?limit={limit}&page={page}"
|
||||||
|
print(f"Fetching page {page}...", end=" ", flush=True)
|
||||||
|
|
||||||
|
try:
|
||||||
|
with urllib.request.urlopen(url, timeout=30) as resp:
|
||||||
|
data = json.loads(resp.read().decode('utf-8'))
|
||||||
|
except Exception as e:
|
||||||
|
print(f"Error: {e}")
|
||||||
|
break
|
||||||
|
|
||||||
|
results = data.get('results', [])
|
||||||
|
if not results:
|
||||||
|
print("no results, stopping")
|
||||||
|
break
|
||||||
|
|
||||||
|
if since_timestamp:
|
||||||
|
for post in results:
|
||||||
|
if post['created_at'] > since_timestamp:
|
||||||
|
posts.append(post)
|
||||||
|
else:
|
||||||
|
stop = True
|
||||||
|
print(f"reached cutoff at post {post['id']}")
|
||||||
|
break
|
||||||
|
else:
|
||||||
|
posts.extend(results)
|
||||||
|
|
||||||
|
if not data.get('next') or stop:
|
||||||
|
print("no more pages" if not stop else "")
|
||||||
|
break
|
||||||
|
|
||||||
|
page += 1
|
||||||
|
if page > 500:
|
||||||
|
print("safety limit reached")
|
||||||
|
break
|
||||||
|
|
||||||
|
return posts
|
||||||
|
|
||||||
|
def post_to_markdown(post):
|
||||||
|
"""Convert a post object to KB raw markdown."""
|
||||||
|
post_id = post['id']
|
||||||
|
title = post.get('title', 'Untitled')
|
||||||
|
content = post.get('content', post.get('summary', ''))
|
||||||
|
created = post.get('created_at', '')[:10]
|
||||||
|
updated = post.get('updated_at', '')[:10]
|
||||||
|
tags = [t['name'] for t in post.get('tag_details', [])]
|
||||||
|
external_url = f"http://go/ui/posts/{post_id}/"
|
||||||
|
|
||||||
|
safe_title = title.replace('"', '\\"')
|
||||||
|
frontmatter = f"""---
|
||||||
|
source_url: "{external_url}"
|
||||||
|
ingested: {datetime.now().strftime('%Y-%m-%d')}
|
||||||
|
status: inbox
|
||||||
|
tags: [{', '.join(tags)}]
|
||||||
|
title: "{safe_title}"
|
||||||
|
created: {created}
|
||||||
|
updated: {updated}
|
||||||
|
---
|
||||||
|
|
||||||
|
{content}"""
|
||||||
|
|
||||||
|
return frontmatter
|
||||||
|
|
||||||
|
def git_pull_with_rebase():
|
||||||
|
"""Pull with rebase to keep history clean, handle conflicts."""
|
||||||
|
print("🔄 Git pull (rebase)...")
|
||||||
|
|
||||||
|
# First check if there are remote changes
|
||||||
|
result = run_cmd("git fetch origin")
|
||||||
|
if result.returncode != 0:
|
||||||
|
print(f"⚠️ Fetch failed: {result.stderr}")
|
||||||
|
return False
|
||||||
|
|
||||||
|
# Check status
|
||||||
|
result = run_cmd("git status -sb")
|
||||||
|
branch_info = result.stdout.strip()
|
||||||
|
|
||||||
|
# Check if we need to pull
|
||||||
|
if "ahead" in branch_info and "behind" not in branch_info:
|
||||||
|
print("✅ No remote changes, nothing to pull")
|
||||||
|
return True
|
||||||
|
|
||||||
|
# Try rebase first
|
||||||
|
result = run_cmd("git rebase origin/master")
|
||||||
|
if result.returncode == 0:
|
||||||
|
print("✅ Rebase successful")
|
||||||
|
return True
|
||||||
|
|
||||||
|
# Conflict during rebase - handle it
|
||||||
|
print("⚠️ Conflict detected during rebase!")
|
||||||
|
print(f"Conflict output: {result.stdout}")
|
||||||
|
print(f"Conflict stderr: {result.stderr}")
|
||||||
|
|
||||||
|
# Check which files have conflicts
|
||||||
|
result = run_cmd("git diff --name-only --diff-filter=U")
|
||||||
|
conflicted_files = result.stdout.strip().split('\n') if result.stdout.strip() else []
|
||||||
|
|
||||||
|
if not conflicted_files or conflicted_files == ['']:
|
||||||
|
print("No conflicting files found, trying abort")
|
||||||
|
run_cmd("git rebase --abort")
|
||||||
|
return False
|
||||||
|
|
||||||
|
print(f"📁 Conflicted files: {conflicted_files}")
|
||||||
|
|
||||||
|
# Strategy: For our use case, we prefer wiki content
|
||||||
|
# So we'll use --ours for conflicts in links-posts/ and --theirs for others
|
||||||
|
for f in conflicted_files:
|
||||||
|
if not f:
|
||||||
|
continue
|
||||||
|
if f.startswith('links-posts/'):
|
||||||
|
# Prefer our new posts
|
||||||
|
print(f" → Keeping our version: {f}")
|
||||||
|
run_cmd(f"git checkout --ours {f}")
|
||||||
|
else:
|
||||||
|
# For other files, prefer their version (user might have edited on Mac)
|
||||||
|
print(f" → Keeping their version: {f}")
|
||||||
|
run_cmd(f"git checkout --theirs {f}")
|
||||||
|
|
||||||
|
# Stage resolved files
|
||||||
|
run_cmd("git add -A")
|
||||||
|
|
||||||
|
# Continue rebase
|
||||||
|
result = run_cmd("git rebase --continue")
|
||||||
|
if result.returncode == 0:
|
||||||
|
print("✅ Conflict resolved and rebase continued")
|
||||||
|
return True
|
||||||
|
else:
|
||||||
|
print(f"⚠️ Could not continue rebase: {result.stderr}")
|
||||||
|
# If still failing, abort and just overwrite
|
||||||
|
print("🔄 Aborting rebase, will use force push...")
|
||||||
|
run_cmd("git rebase --abort")
|
||||||
|
return False
|
||||||
|
|
||||||
|
def git_push():
|
||||||
|
"""Push to remote."""
|
||||||
|
print("📤 Pushing to GitHub...")
|
||||||
|
|
||||||
|
# Try normal push first
|
||||||
|
result = run_cmd("git push")
|
||||||
|
if result.returncode == 0:
|
||||||
|
print("✅ Push successful")
|
||||||
|
return True
|
||||||
|
|
||||||
|
# Push failed - might need force or pull first
|
||||||
|
print(f"⚠️ Push failed: {result.stderr}")
|
||||||
|
|
||||||
|
# Try pull first then push
|
||||||
|
if git_pull_with_rebase():
|
||||||
|
result = run_cmd("git push")
|
||||||
|
if result.returncode == 0:
|
||||||
|
print("✅ Push successful after pull")
|
||||||
|
return True
|
||||||
|
|
||||||
|
# Last resort: force push (dangerous but sometimes necessary)
|
||||||
|
print("⚠️ Force pushing...")
|
||||||
|
result = run_cmd("git push --force-with-lease")
|
||||||
|
if result.returncode == 0:
|
||||||
|
print("✅ Force push successful")
|
||||||
|
return True
|
||||||
|
|
||||||
|
print(f"❌ Push failed: {result.stderr}")
|
||||||
|
return False
|
||||||
|
|
||||||
|
def main():
|
||||||
|
dry_run = '--dry-run' in sys.argv
|
||||||
|
|
||||||
|
print(f"\n[{datetime.now().isoformat()}] 🚀 Starting Links App sync...")
|
||||||
|
os.chdir(KB_DIR)
|
||||||
|
|
||||||
|
# Git setup
|
||||||
|
run_cmd("git config user.name 'hermes'")
|
||||||
|
run_cmd("git config user.email 'hermes@junv'")
|
||||||
|
|
||||||
|
# Pull first to get any changes from Mac
|
||||||
|
if not dry_run:
|
||||||
|
print("\n--- Step 0: Sync with remote ---")
|
||||||
|
git_pull_with_rebase()
|
||||||
|
|
||||||
|
# Get last sync time
|
||||||
|
last_sync = get_last_sync_time()
|
||||||
|
print(f"\n--- Step 1: Fetch new posts ---")
|
||||||
|
print(f"Last sync: {last_sync or 'First sync'}")
|
||||||
|
|
||||||
|
# Fetch posts
|
||||||
|
posts = fetch_posts_since(last_sync)
|
||||||
|
print(f"Found {len(posts)} new posts")
|
||||||
|
|
||||||
|
if not posts:
|
||||||
|
print("No new posts to sync")
|
||||||
|
# Still do a push to sync any other changes
|
||||||
|
if not dry_run:
|
||||||
|
print("\n--- Step 3: Sync other changes ---")
|
||||||
|
git_push()
|
||||||
|
return
|
||||||
|
|
||||||
|
if dry_run:
|
||||||
|
print(f"\n[DRY RUN] Would sync {len(posts)} posts:")
|
||||||
|
for p in posts[:5]:
|
||||||
|
print(f" - {p['title']}")
|
||||||
|
if len(posts) > 5:
|
||||||
|
print(f" ... and {len(posts) - 5} more")
|
||||||
|
return
|
||||||
|
|
||||||
|
# Create posts directory with year-month subdirectory
|
||||||
|
month_dir = datetime.now().strftime("%Y-%m")
|
||||||
|
posts_dir = os.path.join(RAW_LINKS_BASE, month_dir)
|
||||||
|
os.makedirs(posts_dir, exist_ok=True)
|
||||||
|
|
||||||
|
# Write posts
|
||||||
|
newest_timestamp = None
|
||||||
|
print(f"\n--- Step 2: Write {len(posts)} posts to raw/links/{month_dir}/ ---")
|
||||||
|
for post in posts:
|
||||||
|
post_id = post['id']
|
||||||
|
title = post.get('title', 'Untitled')
|
||||||
|
slug = slugify(title)
|
||||||
|
filename = f"{post_id}-{slug}.md"
|
||||||
|
filepath = os.path.join(posts_dir, filename)
|
||||||
|
|
||||||
|
with open(filepath, 'w', encoding='utf-8') as f:
|
||||||
|
f.write(post_to_markdown(post))
|
||||||
|
|
||||||
|
created = post.get('created_at', '')
|
||||||
|
if not newest_timestamp or created > newest_timestamp:
|
||||||
|
newest_timestamp = created
|
||||||
|
|
||||||
|
print(f" ✅ {filename}")
|
||||||
|
|
||||||
|
# Update sync state
|
||||||
|
if newest_timestamp:
|
||||||
|
save_last_sync_time(newest_timestamp)
|
||||||
|
print(f"\nUpdated sync state to {newest_timestamp}")
|
||||||
|
|
||||||
|
# Git operations
|
||||||
|
print("\n--- Step 3: Commit and push ---")
|
||||||
|
run_cmd("git add raw/links/ .sync-state")
|
||||||
|
|
||||||
|
result = run_cmd("git status --porcelain")
|
||||||
|
if result.stdout.strip():
|
||||||
|
commit_msg = f"Sync: {len(posts)} new posts from Links App ({datetime.now().strftime('%Y-%m-%d %H:%M')})"
|
||||||
|
run_cmd(f"git commit -m '{commit_msg}'")
|
||||||
|
print(f"📝 Committed: {commit_msg}")
|
||||||
|
|
||||||
|
if git_push():
|
||||||
|
print(f"\n✅ SUCCESS: Synced {len(posts)} posts!")
|
||||||
|
else:
|
||||||
|
print(f"\n❌ Push failed - posts are saved locally")
|
||||||
|
else:
|
||||||
|
print("No changes to commit")
|
||||||
|
|
||||||
|
print(f"\n[{datetime.now().isoformat()}] 🎉 Sync complete!")
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
||||||
@@ -0,0 +1,133 @@
|
|||||||
|
# KB Schema
|
||||||
|
|
||||||
|
> LLM 驱动的个人知识库。大哥的第二大脑外存。
|
||||||
|
> 原则:默认全存,人类筛选,Agent 编译。
|
||||||
|
|
||||||
|
## Domain
|
||||||
|
|
||||||
|
大哥的知识域:技术(DevOps/K3s/Cloudflare/Agent)、投资(AI/半导体/云/澳洲税)、生活(墨尔本/钢琴/家庭)
|
||||||
|
|
||||||
|
## Conventions
|
||||||
|
|
||||||
|
- 文件名:英文小写连字符,无空格无中文(如 `nvidia-thesis.md`)
|
||||||
|
- wiki 页面用 `[[wikilinks]]` 互连,每页最少 2 个出链
|
||||||
|
- `updated` 只在实际内容变更时更新,不是 agent 碰过就改
|
||||||
|
- 新 raw 文件自动进入 `raw/YYYY-MM/`
|
||||||
|
|
||||||
|
## Directory Structure
|
||||||
|
|
||||||
|
```
|
||||||
|
kb/
|
||||||
|
├── SCHEMA.md # 本文件
|
||||||
|
├── log.md # 操作日志
|
||||||
|
├── raw/ # 源材料(按月分桶,不可变)
|
||||||
|
│ ├── links/ # 从 Links App 自动同步的新闻
|
||||||
|
│ └── YYYY-MM/ # 手动分享的文章、网页
|
||||||
|
├── wiki/ # 编译后的知识页
|
||||||
|
│ ├── investing/ # 投资相关
|
||||||
|
│ ├── tech/ # 技术相关
|
||||||
|
│ ├── life/ # 生活相关
|
||||||
|
│ └── decisions/ # 决策日志(最高价值)
|
||||||
|
└── _archive/ # 已废弃页面
|
||||||
|
```
|
||||||
|
|
||||||
|
## Frontmatter
|
||||||
|
|
||||||
|
### raw 文件
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
---
|
||||||
|
source_url: https://...
|
||||||
|
ingested: YYYY-MM-DD
|
||||||
|
status: inbox | absorbed | skipped | failed_fetch
|
||||||
|
---
|
||||||
|
```
|
||||||
|
|
||||||
|
### wiki 页面
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
---
|
||||||
|
title: "页面标题"
|
||||||
|
created: YYYY-MM-DD
|
||||||
|
updated: YYYY-MM-DD
|
||||||
|
tags: [domain/subtag]
|
||||||
|
sources: [raw/YYYY-MM/file.md]
|
||||||
|
---
|
||||||
|
```
|
||||||
|
|
||||||
|
## Tag System (open prefix)
|
||||||
|
|
||||||
|
| Prefix | 初始 tags |
|
||||||
|
|--------|----------|
|
||||||
|
| `tech/` | `infra`, `k3s`, `cf-workers`, `llm`, `agent`, `homelab`, `devops`, `networking`, `security`, `database` |
|
||||||
|
| `inv/` | `semi`, `cloud`, `ai`, `thesis`, `earnings`, `tax`, `valuation`, `macro`, `risk`, `strategy` |
|
||||||
|
| `life/` | `music`, `piano`, `health`, `family`, `melbourne`, `australia` |
|
||||||
|
|
||||||
|
新 tag 直接用,lint 只建议不拦截。
|
||||||
|
|
||||||
|
## Operations
|
||||||
|
|
||||||
|
### Ingest (采集 — 即时)
|
||||||
|
大哥分享 URL/粘贴 → Agent 抓取内容 → 保存 `raw/YYYY-MM/YYYY-MM-DD-slug.md`
|
||||||
|
→ status: inbox
|
||||||
|
|
||||||
|
### Absorb (消化 — 人类触发)
|
||||||
|
1. 读 raw
|
||||||
|
2. rg 搜 wiki/ 找相关页面
|
||||||
|
3. 优先更新已有页面
|
||||||
|
4. 必要时建新页(清晰有价值才建)
|
||||||
|
5. 更新 status → absorbed
|
||||||
|
|
||||||
|
### Query (查询)
|
||||||
|
rg 搜 wiki/ + raw/ → 结果标 [wiki] 或 [raw] → 合成回答
|
||||||
|
|
||||||
|
### Lint (健康检查)
|
||||||
|
- P0: 断链 → 必须修
|
||||||
|
- P1: 投资页 >60天未更新 → 建议修
|
||||||
|
- P2: 孤儿页 → 提示
|
||||||
|
|
||||||
|
## Page Templates
|
||||||
|
|
||||||
|
### Stock Thesis
|
||||||
|
```markdown
|
||||||
|
# [Company] Thesis
|
||||||
|
- Conviction: [high/medium/low]
|
||||||
|
- Entry: [date] @ [price]
|
||||||
|
- Thesis: [3-5 bullet reasons]
|
||||||
|
- Risks: [what would break the thesis]
|
||||||
|
- Catalysts: [upcoming events]
|
||||||
|
- Last review: [date]
|
||||||
|
```
|
||||||
|
|
||||||
|
### Decision Log
|
||||||
|
```markdown
|
||||||
|
# [Decision Title]
|
||||||
|
- Date: YYYY-MM-DD
|
||||||
|
- Context: [what was the situation]
|
||||||
|
- Options considered: [list]
|
||||||
|
- Decision: [what was chosen]
|
||||||
|
- Rationale: [why]
|
||||||
|
- Outcome (if known): [what happened]
|
||||||
|
```
|
||||||
|
|
||||||
|
### Tech Runbook
|
||||||
|
```markdown
|
||||||
|
# [Component] Runbook
|
||||||
|
- Purpose: [what it does]
|
||||||
|
- Location: [repo/namespace/URL]
|
||||||
|
- Key configs: [critical settings]
|
||||||
|
- Common issues: [problems + fixes]
|
||||||
|
- Links: [[related-page]]
|
||||||
|
```
|
||||||
|
|
||||||
|
## Kill / Merge Policy
|
||||||
|
|
||||||
|
- 被取代的页面前端加 `superseded_by: [[new-page]]`
|
||||||
|
- 移到 `_archive/`
|
||||||
|
- 保留 wikilinks 可点击
|
||||||
|
|
||||||
|
## Language Policy
|
||||||
|
|
||||||
|
- 正文:中文(技术术语保留英文)
|
||||||
|
- 文件名:英文 slug
|
||||||
|
- [[wikilinks]]:英文 slug
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
# KB Log
|
||||||
|
|
||||||
|
> 追加式操作日志。格式: `## [YYYY-MM-DD] action | subject`
|
||||||
|
|
||||||
|
## [2026-07-13] create | KB initialized
|
||||||
|
- 基于 Karpathy LLM Wiki + Farza Personal Wiki 融合设计
|
||||||
|
- 经 Grok 4.5 两轮 review 收敛至 v4
|
||||||
|
- Repo: github.com/wahyd4/kb (private)
|
||||||
|
- 设计原则:默认全存,人类筛选,Agent 编译
|
||||||
+157
@@ -0,0 +1,157 @@
|
|||||||
|
---
|
||||||
|
title: "House prices are falling in some places, but one state keeps charging ahead"
|
||||||
|
source: "https://www.sbs.com.au/news/article/house-prices-are-falling-in-some-places-but-one-state-keeps-charging-ahead/520q3zwnc"
|
||||||
|
author:
|
||||||
|
- "[[Cameron Carr]]"
|
||||||
|
published: 2026-04-14
|
||||||
|
created: 2026-04-14
|
||||||
|
description: "A property expert said houses in this capital city are selling at \"crazy\" prices."
|
||||||
|
tags:
|
||||||
|
- "clippings"
|
||||||
|
---
|
||||||
|
[Australia](https://www.sbs.com.au/news/tag/section/australia)
|
||||||
|
|
||||||
|
## A property expert said houses in this capital city are selling at "crazy" prices.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
A Perth-based property expert described the market as "crazy", saying people are offering an average of $100k above asking price. Source: SBS, Getty, AAP
|
||||||
|
|
||||||
|
## in brief
|
||||||
|
|
||||||
|
- Australia is seeing a varied capital city property market with rises and falls projected for 2026.
|
||||||
|
- As buyers borrow more money in increasingly tight markets, experts say there are more risks for homeowners.
|
||||||
|
|
||||||
|
**Global conflicts and uncertainty have largely slowed growth in** [**the housing market**](https://www.sbs.com.au/news/article/middle-east-war-slows-australias-housing-push-as-targets-slip-nationwide/kef9ka76t) **so far this year, with prices going backwards in two of the biggest markets. However, one capital city is defying the trend.**
|
||||||
|
|
||||||
|
Properties in Perth are selling in a matter of days and at record prices, with one property expert saying the market is as tight as it gets.
|
||||||
|
|
||||||
|
A house in Perth is spending an average of just nine days on the market before being sold, according to Cotality's latest property report, much faster than the 30-day average.
|
||||||
|
|
||||||
|
Limited supply is also driving up prices, as Perth property values surged ahead of other capital cities by over 20 per cent in the year to March.
|
||||||
|
|
||||||
|
Experts say prices could continue to rise in much of the country, where demand outstrips supply, increasing risks for borrowers.
|
||||||
|
|
||||||
|
However, two cities are bucking the housing trend, already posting losses for 2026, and are expected to decline further over the course of the year.
|
||||||
|
|
||||||
|
## Perth and regional WA see the strongest growth
|
||||||
|
|
||||||
|
Perth saw the biggest growth in dwelling values, with Brisbane, Adelaide and Darwin also increasing over the year to March.
|
||||||
|
|
||||||
|
The western capital saw dwelling values increase by 24.3 per cent in the 12 months to March, surging ahead of other markets.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
Source: SBS News
|
||||||
|
|
||||||
|
Jarrod Mahon, managing director of Perth-based Investors Edge Real Estate, told SBS News that buyers in the city have a narrow window to secure a property.
|
||||||
|
|
||||||
|
"I don't think it could actually get any tighter because when a property goes online on a Monday \[or\] Tuesday, it's often gone by the end of the week," he said.
|
||||||
|
|
||||||
|
"Over the previous six to nine months to the March quarter, I virtually didn't have to adjust prices on any single property."
|
||||||
|
|
||||||
|
The industry veteran said the amount of demand is unheard of.
|
||||||
|
|
||||||
|
"My average price above asking was $99,000 for that quarter, which is crazy."
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
Source: SBS News
|
||||||
|
|
||||||
|
He said that buyers in the state are having to compromise on size or location more than in previous decades to secure a property.
|
||||||
|
|
||||||
|
"Before it was like, for $600,000, you could get a house, but now the options are a decent, well-located unit or apartment. So that trend has emerged and that's what people are now preferring instead of going and living too far out," he said.
|
||||||
|
|
||||||
|
He attributed the nation-leading growth to two main factors: a lack of existing housing stock and soaring construction industry costs, leaving people reluctant to build a property from scratch.
|
||||||
|
|
||||||
|
"There's been four consecutive quarters of decreasing construction starts and completions and the recent inflation is also starting to cause increases to the cost of building," he said.
|
||||||
|
|
||||||
|
The Urban Development Institute of Australia released its annual State of the Land report in March, examining residential development activity across Australia.
|
||||||
|
|
||||||
|
It forecasts a shortfall of 380,000 new dwellings by 2030 and an 11 per cent drop in production in 2026 alone, due to rising costs, labour shortages and volatility in the construction industry.
|
||||||
|
|
||||||
|
## Other markets are hitting their limits
|
||||||
|
|
||||||
|
While Perth saw the most growth at the start of this year — at 7.3 per cent, more than three times the national average — other cities saw mixed results.
|
||||||
|
|
||||||
|
Brisbane saw a 5.1 per cent increase, followed by Adelaide at 3.6 per cent and Darwin at 3.4 per cent.
|
||||||
|
|
||||||
|
Sydney and Melbourne saw values drop in the three months to April, falling 0.2 per cent and 0.6 per cent respectively.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
Source: SBS News
|
||||||
|
|
||||||
|
Gerard Burg, Cotality's head of research, told SBS News that every capital city is "starting to lose some momentum".
|
||||||
|
|
||||||
|
"We've had back-to-back rate hikes from the RBA. There's still some uncertainty around how much higher rates might go… and we've got the uncertainty around energy markets as well," he said.
|
||||||
|
|
||||||
|
"And I think all of that combined is starting to really impact the demand for potential home buyers."
|
||||||
|
|
||||||
|
Meanwhile, the war in the Middle East has led to increased costs in fuel-reliant industries, including construction.
|
||||||
|
|
||||||
|
The global oil benchmark price has dropped amid the US-Iran ceasefire to US$95 ($134.9) per barrel, above pre-war averages of around US$70 ($99.4) per barrel.
|
||||||
|
|
||||||
|
The Master Builders Association says rising fuel costs have contributed to a 10 per cent increase in building material delivery costs.
|
||||||
|
|
||||||
|
The Reserve Bank of Australia's Monetary Policy Board [raised the official cash rate from 3.85 per](https://www.sbs.com.au/news/article/reserve-bank-complicated-march-interest-rates-decision/pvgeq2hs6) cent to 4.10 per cent in March.
|
||||||
|
|
||||||
|
Burg said the fall in prices in Melbourne and Sydney showed buyers have reached their purchasing capacity, leading to a slight fall in demand.
|
||||||
|
|
||||||
|
The median house price in Sydney was $1.6 million in April, according to ANZ, while in Melbourne it was $980,000.
|
||||||
|
|
||||||
|
"The reality is a large proportion of buyers probably can't get into that sort of property value without significant assistance, ie the [Bank of Mum and Dad](https://www.sbs.com.au/news/article/why-some-australian-parents-are-giving-their-kids-as-much-as-200k/3ljc87ncz)," he said.
|
||||||
|
|
||||||
|
"That's going to increasingly become the case in markets like Brisbane and Perth now that they have pushed above the million-dollar mark."A house in Brisbane costs an average of $1.2 million, while in Perth, the median house price is $1.06 million.
|
||||||
|
|
||||||
|
## Risks of borrowing at capacity
|
||||||
|
|
||||||
|
ANZ predicted that median house prices will increase in most capital cities, putting further pressure on borrowers.
|
||||||
|
|
||||||
|
The cost of houses in Perth, Darwin, Brisbane, Adelaide and Hobart is expected to outpace annualised wage growth — 3.4 per cent last year — by the end of 2026.
|
||||||
|
|
||||||
|
Properties in Perth are expected to increase by a further 12.3 per cent, or $51,569, by January.
|
||||||
|
|
||||||
|
Meanwhile, properties in Sydney and Melbourne are projected to fall by 0.7 and 1.7 per cent, respectively.
|
||||||
|
|
||||||
|
Sally Tindall, data insights director for price comparison site Canstar, told SBS News that Australian budgets are tight in the shadow of two RBA rate cuts.
|
||||||
|
|
||||||
|
"For home buyers still in the hunt, news of property price drops will be welcome, but they’re nowhere close to a solution," she said.
|
||||||
|
|
||||||
|
"Already, people’s home buying budgets have dropped by far more than the fall in the median house price in cities such as Sydney and Melbourne."
|
||||||
|
|
||||||
|
She said that Australian property markets are increasingly risky for buyers as mortgage holders borrow up to their financial capacity.
|
||||||
|
|
||||||
|
"Some borrowers feel like they're in between a rock and a hard place because prices are so high in places like Sydney that they feel like they've got no choice but to borrow at capacity or not buy at all," she said.
|
||||||
|
|
||||||
|
"But it's really important to not just borrow blindly how much the banks will lend you but understand exactly how much you can live with after your repayments."
|
||||||
|
|
||||||
|
She said that some people may consider buying a less desirable property to avoid altering their lifestyle or risking their savings.
|
||||||
|
|
||||||
|
"The danger is, people will borrow to the limit, banking on prices continuing to climb. If circumstances change — whether that’s interest rates, job security or the economy — it could leave some households overexposed," she said.
|
||||||
|
|
||||||
|
## Regional gains, rental pains
|
||||||
|
|
||||||
|
While capital cities are growing in price overall, regional areas saw the largest price rises in the March quarter of this year and in the 12 months leading to April, according to Cotality.
|
||||||
|
|
||||||
|
Burg said that this is largely being driven by affordability constraints in capital cities.
|
||||||
|
|
||||||
|
He said there's been migration from the major capitals to regional areas since around the midpoint of 2023.
|
||||||
|
|
||||||
|
"It really comes down to a lot of people, including first home buyers, but possibly also people looking for the tree change opportunity, seeking out these kinds of markets where their dollars just simply go a lot further," he said.
|
||||||
|
|
||||||
|
"In this most recent wave of migration, increasingly, people choosing inland regional locations rather than the coastal markets. And these are the markets that really have the greatest affordability on offer."
|
||||||
|
|
||||||
|
Another push point for moving regionally is the lack of available rentals in cities, which are well below the decade-average.
|
||||||
|
|
||||||
|
The national vacancy rate sat at 1.6 per cent in March, below the decade average of 2.5 per cent, pushing up prices as demand exceeds supply.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
***For the latest from SBS News,*** [***download our app***](https://www.sbs.com.au/news/sbs-news-app?cid=sbsnews:cm:editorial:aw:election2025:appush:hi) ***and*** [***subscribe to our newsletter***](https://www.sbs.com.au/news/news-newsletter-sign-up?cid=sbsnews:cm:editorial:aw:election2025:newsletterpush:hi)***.***
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Published
|
||||||
|
|
||||||
|
Source: SBS News
|
||||||
@@ -0,0 +1,75 @@
|
|||||||
|
---
|
||||||
|
title: "「論文」英文該用 essay、paper、thesis,還是 dissertation? – 英文庫"
|
||||||
|
source: "https://english.cool/essay-paper-thesis-dissertation/"
|
||||||
|
author:
|
||||||
|
- "[[Min]]"
|
||||||
|
published:
|
||||||
|
created: 2026-05-07
|
||||||
|
description:
|
||||||
|
tags:
|
||||||
|
- "clippings"
|
||||||
|
---
|
||||||
|
唷齁~大家好,歡迎來到英文庫,我是 Min 👋。今天咱們要來搞定的是「論文」的英文該怎麼說。說到寫論文,每個人應該都會表情開始扭曲吧,光要生出內容就已經令人一個頭兩個大,寫的時候還得顧到格式 APA、MLA、Chicago。
|
||||||
|
|
||||||
|
難怪,無論是學校課程規定要交的論文作業( **essay** 、 **paper** ),或是寫了才能拿到研究所畢業證書的學位論文( **thesis** 、 **dissertation)** ,常會燒死每個同學大量的腦細胞啊啊啊 💀。話說回來,在寫作的過程中突破瓶頸,並在最後產出有價值的論文,可是很有成就感的!接下來,我們來做另一件論文會帶來有成就感的事吧,那就是釐清「論文」的四個英文字。Ready? Let’s go!💃
|
||||||
|
|
||||||
|
[](https://word.cool/)
|
||||||
|
|
||||||
|
## 一、essay vs paper
|
||||||
|
|
||||||
|
如果你在學校修了一門課,老師規定要交論文,這時候有可能是 **essay,** 也有可能是 **paper** ,兩個的差別在哪呢?一般而言,如果老師是指定要交小論文,就屬於 **essay。essay** 通常篇幅較短,基本標準是大約五段的內容,就足以組成一篇 **essay** 了。 **essay** 的研究性質比較沒那麼強,可以是用來說服讀者某件事,或是針對某個主題給予資訊。如果想表達是某個主題的論文,後面就用 **on/about** +該主題即可,來看例句吧:
|
||||||
|
|
||||||
|
> I have to do an **essay** this weekend.
|
||||||
|
> 我這週末得寫一篇論文。
|
||||||
|
>
|
||||||
|
> He couldn’t finish his **essay** assignment in time.
|
||||||
|
> 他無法及時完成他的論文作業。
|
||||||
|
>
|
||||||
|
> The course requires students to write an **essay** on/about social media.
|
||||||
|
> 那門課要求學生要寫一篇跟社群媒體有關的論文.
|
||||||
|
|
||||||
|
**paper** 用於「論文」的意思時,是 **research paper** 的簡稱, **research** 是「研究」的意思。如果是一門課學期末規定要繳交的論文,則叫 **term paper** 。 **paper** 的篇幅比 **essay** 長,通常是好幾頁起跳,五到十五頁都有可能,而且研究性質更強,也常涵蓋數據或深度分析。因此, **paper** 寫起來會比 **essay** 更費工夫。換句話說,如果老師要求你交的是 **paper** ,就代表你要死掉的腦細胞會更多 💀。
|
||||||
|
|
||||||
|
> It took me weeks to finish my **term paper**.
|
||||||
|
> 我花了好幾星期的時間寫完期末論文。
|
||||||
|
>
|
||||||
|
> Students usually don’t know how to write an effective **paper**.
|
||||||
|
> 學生通常不知道要如何撰寫一篇好論文。
|
||||||
|
>
|
||||||
|
> She’s been working on a **paper** on/about depression.
|
||||||
|
> 她正在寫一篇跟憂鬱症相關的論文。
|
||||||
|
|
||||||
|
### 小補充:期刊論文的英文怎麼說?
|
||||||
|
|
||||||
|
如果是指那些發表在學術期刊 **(journal)** 的論文,可以用 **journal article** ,例如:
|
||||||
|
|
||||||
|
[](https://courses.english.cool/?utm_source=blog-2023-in-article&utm_medium=blog-2023-in-article)
|
||||||
|
|
||||||
|
> **Journal articles** are written by specialists.
|
||||||
|
> 期刊論文是由專業人士書寫的。
|
||||||
|
>
|
||||||
|
> Writing and publishing **journal articles** is essential for those who pursue an academic career.
|
||||||
|
> 對於學術界的人而言,寫作並發表期刊論文是必要的。
|
||||||
|
|
||||||
|
## 二、thesis vs dissertation
|
||||||
|
|
||||||
|
如果是要寫完才能拿到畢業證書的論文,中文有個說法叫「學位論文」。至於學位論文的英文,包含 **thesis** 和 **dissertation** 這兩個字。在美語, **thesis** 是指碩士論文,對了,這個字的複數尾巴會變形喔,變成 **theses** 。至於 **dissertation,** 則是指博士論文。
|
||||||
|
|
||||||
|
~~討厭~~ 有趣的是,在英語, **thesis** 和 **dissertation** 的意思卻有一百八十度的大翻轉,碩論是用 **dissertation** ,博論則用 **thesis** 。不過別擔心,如果你面對不同國籍的母語者,擔心會一時轉換不過來,其實可以在前面另外加上 **master’s** (碩士的)或 **doctoral** (博士的),這樣就不用怕錯亂囉 👌。例如,碩論可以說 **a master’s thesis/dissertation** ,博論可以說 **a doctoral thesis/dissertation。** 來看例句吧,以下的句子都以美語的用法示範。
|
||||||
|
|
||||||
|
> I’m reading her **thesis**.
|
||||||
|
> 我正在讀她的碩論。
|
||||||
|
>
|
||||||
|
> He has been doing his **dissertation** for three years.他博論已經寫三年了。
|
||||||
|
>
|
||||||
|
> Doing a **thesis** usually takes less time than doing a **dissertation**.
|
||||||
|
> 寫碩論通常花的時間比博論少。
|
||||||
|
>
|
||||||
|
> A **dissertation** requires more research than a **thesis**.
|
||||||
|
> 博論要做的研究比碩論多。
|
||||||
|
|
||||||
|
## That’s it, folks!
|
||||||
|
|
||||||
|
喔耶!看完了,你好棒 🎉!看完這一篇,你知道 **essay、paper、thesis、dissertation** 的差別了吧?祝大家在寫論文時,都可以關關難過關關過!還有其他英文的問題嗎?快去英文庫 🆒 的其他文章逛逛吧!
|
||||||
|
|
||||||
|
延伸閱讀: [【各種學位的英文】碩士/博士/學士的英文? 來搞懂!](https://english.cool/educational-background/)
|
||||||
@@ -0,0 +1,155 @@
|
|||||||
|
---
|
||||||
|
title: "金刚经全文--金刚经原文"
|
||||||
|
source: "http://m.shixiu.net/nanshi/zhuzuo/jgjssm/4391.html"
|
||||||
|
author:
|
||||||
|
published:
|
||||||
|
created: 2026-04-16
|
||||||
|
description: "《金刚经全文》:第一品 法会因由分如是我闻。一时佛在舍卫国。祗树给孤独园。与大比丘众。千二百五十人俱。尔时世尊。食时。著衣持钵。入舍卫大城乞食。于其城中。次第乞已。还至本处。饭食讫,收衣钵。“金刚经原文”"
|
||||||
|
tags:
|
||||||
|
- "clippings"
|
||||||
|
---
|
||||||
|
金刚经全文
|
||||||
|
|
||||||
|
\---金刚经说什么
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
《 **金刚经** 》
|
||||||
|
|
||||||
|
**金刚经** **第一品 法会因由分**
|
||||||
|
|
||||||
|
如是我闻。一时佛在舍卫国。祗树给孤独园。与大比丘众。千二百五十人俱。尔时世尊。食时。著衣持钵。入舍卫大城乞食。于其城中。次第乞已。还至本处。饭食讫。收衣钵。洗足已。敷座而坐。
|
||||||
|
|
||||||
|
**金刚经** **第二品 善现启请分**
|
||||||
|
|
||||||
|
时长老须菩提。在大众中。即从座起。偏袒右肩。右膝着地。合掌恭敬。而白佛言。希有世尊。如来善护念诸菩萨。善付嘱诸菩萨。世尊。善男子。善女人。发阿耨多罗三藐三菩提心。应云何住,云何降伏其心。佛言。善哉善哉。须菩提。如汝所说。如来善护念诸菩萨。善付嘱诸菩萨。汝今谛听。当为汝说。善男子。善女人。发阿耨多罗三藐三菩提心。应如是住,如是降伏其心。唯然。世尊。愿乐欲闻。
|
||||||
|
|
||||||
|
**金刚经** **第三品 大乘正宗分**
|
||||||
|
|
||||||
|
佛告须菩提。诸菩萨摩诃萨。应如是降伏其心。所有一切众生之类。若卵生。若胎生。若湿生。若化生。若有色。若无色。若有想。若无想。若非有想。非无想。我皆令入无余涅盘而灭度之。如是灭度无量无数无边众生。实无众生得灭度者。何以故。须菩提。若菩萨有我相。人相。众生相。寿者相。即非菩萨。
|
||||||
|
|
||||||
|
**金刚经 第四品 妙行无住分**
|
||||||
|
|
||||||
|
复次。须菩提。菩萨于法。应无所住行于布施。所谓不住色布施。不住声香味触法布施。须菩提!菩萨应如是布施。不住于相。何以故?若菩萨不住相布施。其福德不可思量。须菩提。于意云何。东方虚空可思量不。不也。世尊。须菩提。南西北方。四维上下。虚空可思量不。不也。世尊。须菩提。菩萨无住相布施。福德亦复如是。不可思量。须菩提。菩萨但应如所教住。
|
||||||
|
|
||||||
|
**金刚经 第五品 如理实见分**
|
||||||
|
|
||||||
|
须菩提。于意云何。可以身相见如来不。不也。世尊。不可以身相得见如来。何以故。如来所说身相。即非身相。佛告须菩提。凡所有相。皆是虚妄。若见诸相非相。即见如来。
|
||||||
|
|
||||||
|
**金刚经 第六品 正信希有分**
|
||||||
|
|
||||||
|
须菩提白佛言。世尊。颇有众生。得闻如是言说章句。生实信不。佛告须菩提。莫作是说。如来灭后。后五百岁。有持戒修福者。于此章句。能生信心。以此为实。当知是人。不于一佛二佛三四五佛而种善根。已于无量千万佛所种诸善根。闻是章句。乃至一念生净信者。须菩提。如来悉知悉见。是诸众生。得如是无量福德。何以故。是诸众生无复我相。人相。众生相。寿者相。无法相。亦无非法相。何以故。是诸众生。若心取相。即为著我人众生寿者。若取法相。即著我人众生寿者。何以故。若取非法相,即著我人众生寿者。是故不应取法。不应取非法。以是义故。如来常说。汝等比丘。知我说法。如筏喻者。法尚应舍。何况非法。
|
||||||
|
|
||||||
|
**金刚经 第七品 无得无说分**
|
||||||
|
|
||||||
|
须菩提。于意云何。如来得阿耨多罗三藐三菩提耶。如来有所说法耶。须菩提言。如我解佛所说义。无有定法。名阿耨多罗三藐三菩提。亦无有定法。如来可说。何以故。如来所说法。皆不可取。不可说。非法非非法。所以者何。一切贤圣,皆以无为法而有差别。
|
||||||
|
|
||||||
|
**金刚经 第八品 依法出生分**
|
||||||
|
|
||||||
|
须菩提。于意云何。若人满三千大千世界七宝。以用布施。是人所得福德。宁为多不。须菩提言。甚多。世尊。何以故。是福德即非福德性。是故如来说福德多。若复有人。于此经中受持乃至四句偈等。为他人说。其福胜彼。何以故。须菩提。一切诸佛。及诸佛阿耨多罗三藐三菩提法。皆从此经出。须菩提。所谓佛法者。即非佛法。
|
||||||
|
|
||||||
|
**金刚经 第九品 一相无相分**
|
||||||
|
|
||||||
|
须菩提。于意云何。须陀洹能作是念。我得须陀洹果不。须菩提言。不也。世尊。何以故。须陀洹名为入流。而无所入。不入色声香味触法。是名须陀洹,须菩提。于意云何。斯陀含能作是念。我得斯陀含果不。须菩提言。不也。世尊。何以故。斯陀含名一往来。而实无往来。是名斯陀含。须菩提。于意云何。阿那含能作是念。我得阿那含果不。须菩提言。不也。世尊。何以故。阿那含名为不来,而实无不来。是故名阿那含。须菩提。于意云何。阿罗汉能作是念。我得阿罗汉道不。须菩提言。不也。世尊。何以故。实无有法名阿罗汉。世尊。若阿罗汉作是念。我得阿罗汉道。即为著我人众生寿者。世尊。佛说我得无诤三昧。人中最为第一。是第一离欲阿罗汉。世尊。我不作是念。我是离欲阿罗汉。世尊。我若作是念。我得阿罗汉道。世尊则不说须菩提。是乐阿兰那行者。以须菩提实无所行。而名须菩提。是乐阿兰那行。
|
||||||
|
|
||||||
|
**金刚经 第十品 庄严净土分**
|
||||||
|
|
||||||
|
佛告须菩提。于意云何。如来昔在然灯佛所。于法有所得不。不也。世尊。如来在然灯佛所。于法实无所得。须菩提。于意云何。菩萨庄严佛土不。不也。世尊。何以故。庄严佛土者。即非庄严。是名庄严。是故须菩提。诸菩萨摩诃萨。应如是生清净心。不应住色生心。不应住声香味触法生心。应无所住而生其心。须菩提。譬如有人。身如须弥山王,于意云何。是身为大不。须菩提言。甚大。世尊。何以故。佛说非身。是名大身。
|
||||||
|
|
||||||
|
**金刚经 第十一品 无为福胜分**
|
||||||
|
|
||||||
|
须菩提。如恒河中所有沙数。如是沙等恒河。于意云何。是诸恒河沙。宁为多不。须菩提言。甚多。世尊。但诸恒河尚多无数。何况其沙。须菩提。我今实言告汝。若有善男子。善女人。以七宝满尔所恒河沙数三千大千世界。以用布施。得福多不。须菩提言。甚多。世尊。佛告须菩提。若善男子。善女人。于此经中。乃至受持四句偈等。为他人说。而此福德。胜前福德。
|
||||||
|
|
||||||
|
**金刚经 第十二品 尊重正教分**
|
||||||
|
|
||||||
|
复次。须菩提。随说是经。乃至四句偈等。当知此处。一切世间天人阿修罗。皆应供养。如佛塔庙。何况有人。尽能受持读诵。须菩提。当知是人。成就最上第一希有之法。若是经典所在之处。即为有佛。若尊重弟子。
|
||||||
|
|
||||||
|
**金刚经 第十三品 如法受持分**
|
||||||
|
|
||||||
|
尔时。须菩提白佛言。世尊。当何名此经。我等云何奉持。佛告须菩提。是经名为金刚般若波罗蜜。以是名字。汝当奉持。所以者何。须菩提。佛说般若波罗蜜。即非般若波罗蜜。是名般若波罗蜜。须菩提。于意云何。如来有所说法不。须菩提白佛言。世尊。如来无所说。须菩提。于意云何。三千大千世界所有微尘。是为多不。须菩提言。甚多。世尊。须菩提。诸微尘。如来说非微尘。是名微尘。如来说世界。即非世界。是名世界。须菩提。于意云何。可以三十二相见如来不。不也。世尊。不可以三十二相得见如来。何以故。如来说三十二相。即是非相。是名三十二相。须菩提。若有善男子。善女人。以恒河沙等身命布施。若复有人。于此经中。乃至受持四句偈等。为他人说。其福甚多。
|
||||||
|
|
||||||
|
**金刚经 第十四品 离相寂灭分**
|
||||||
|
|
||||||
|
尔时须菩提。闻说是经。深解义趣。涕泪悲泣。而白佛言。希有世尊。佛说如是甚深经典。我从昔来所得慧眼。未曾得闻如是之经。世尊。若复有人得闻是经。信心清净。则生实相。当知是人。成就第一希有功德。世尊。是实相者。即是非相。是故如来说名实相。世尊。我今得闻如是经典。信解受持。不足为难。若当来世。后五百岁。其有众生。得闻是经。信解受持。是人即为第一希有。
|
||||||
|
|
||||||
|
何以故。此人无我相。无人相。无众生相。无寿者相。所以者何。我相即是非相。人相众生相寿者相即是非相。何以故。离一切诸相。即名诸佛。佛告须菩提。如是如是。若复有人。得闻是经。不惊不怖不畏。当知是人甚为希有。何以故。须菩提。如来说第一波罗蜜。即非第一波罗蜜。是名第一波罗蜜。须菩提。忍辱波罗蜜。如来说非忍辱波罗蜜。是名忍辱波罗蜜。何以故。须菩提!如我昔为歌利王割截身体。我于尔时。无我相。无人相。无众生相。无寿者相。何以故。我于往昔节节支解时。若有我相人相众生相寿者相。应生嗔恨。须菩提。又念过去于五百世作忍辱仙人。于尔所世。无我相。无人相。无众生相。无寿者相。是故须菩提。菩萨应离一切相。发阿耨多罗三藐三菩提心。不应住色生心。不应住声香味触法生心。应生无所住心。若心有住即为非住,是故佛说菩萨心不应住色布施。须菩提。菩萨为利益一切众生故。应如是布施。如来说一切诸相。即是非相。又说一切众生。即非众生。须菩提。如来是真语者。实语者。如语者。不诳语者。不异语者。须菩提。如来所得法。此法无实无虚。须菩提。若菩萨心。住于法而行布施。如人入暗,即无所见。若菩萨心不住法而行布施。如人有目。日光明照。见种种色。须菩提。当来之世。若有善男子。善女人。能于此经受持读诵。即为如来。以佛智慧。悉知是人。悉见是人。皆得成就无量无边功德。
|
||||||
|
|
||||||
|
**金刚经 第十五品 持经功德分**
|
||||||
|
|
||||||
|
须菩提。若有善男子。善女人。初日分。以恒河沙等身布施。中日分。复以恒河沙等身布施。后日分。亦以恒河沙等身布施。如是无量百千万亿劫。以身布施。若复有人,闻此经典。信心不逆。其福胜彼。何况书写受持读诵。为人解说。须菩提。以要言之。是经有不可思议。不可称量。无边功德。如来为发大乘者说。为发最上乘者说。若有人能受持读诵。广为人说。如来悉知是人。悉见是人。皆得成就不可量。不可称。无有边。不可思议功德。如是人等。即为荷担如来阿耨多罗三藐三菩提。何以故。须菩提。若乐小法者。著我见人见众生见寿者见。即于此经。不能听受读诵。为人解说。须菩提。在在处处。若有此经。一切世间天人阿修罗。所应供养。当知此处。即为是塔。皆应恭敬。作礼围绕。以诸华香而散其处。
|
||||||
|
|
||||||
|
**金刚经 第十六品 能净业障分**
|
||||||
|
|
||||||
|
复次。须菩提。若善男子。善女人。受持读诵此经。若为人轻贱。是人先世罪业。应堕恶道。以今世人轻贱故。先世罪业即为消灭。当得阿耨多罗三藐三菩提。须菩提。我念过去无量阿僧祗劫。于然灯佛前。得值八百四千万亿那由他诸佛。悉皆供养承事。无空过者。若复有人。于后末世。能受持读诵此经。所得功德。于我所供养诸佛功德。百分不及一。千万亿分乃至算数譬喻所不能及。须菩提。若善男子。善女人。于后末世。有受持读诵此经。所得功德。我若具说者。或有人闻。心即狂乱。狐疑不信。须菩提。当知是经义不可思议。果报亦不可思议。
|
||||||
|
|
||||||
|
**金刚经 第十七品 究竟无我分**
|
||||||
|
|
||||||
|
尔时须菩提白佛言。世尊。善男子。善女人。发阿耨多罗三藐三菩提心。云何应住?云何降伏其心?佛告须菩提。善男子。善女人。发阿耨多罗三藐三菩提心者。当生如是心。我应灭度一切众生。灭度一切众生已。而无有一众生实灭度者。何以故。须菩提。若菩萨有我相人相众生相寿者相,即非菩萨。所以者何。须菩提。实无有法发阿耨多罗三藐三菩提心者。须菩提。于意云何。如来于然灯佛所。有法得阿耨多罗三藐三菩提不。不也。世尊。如我解佛所说义。佛于然灯佛所。无有法得阿耨多罗三藐三菩提。佛言。如是如是。须菩提。实无有法如来得阿耨多罗三藐三菩提。须菩提。若有法如来得阿耨多罗三藐三菩提者。然灯佛则不与我授记。汝于来世。当得作佛。号释迦牟尼。以实无有法得阿耨多罗三藐三菩提。是故然灯佛与我授记。作是言。汝于来世。当得作佛。号释迦牟尼。何以故。如来者。即诸法如义。若有人言。如来得阿耨多罗三藐三菩提。须菩提。实无有法。佛得阿耨多罗三藐三菩提。须菩提。如来所得阿耨多罗三藐三菩提。于是中无实无虚。是故如来说一切法皆是佛法。须菩提。所言一切法者。即非一切法。是故名一切法。须菩提。譬如人身长大。须菩提言。世尊。如来说人身长大。即为非大身。是名大身。须菩提。菩萨亦如是。若作是言。我当灭度无量众生。即不名菩萨。何以故。须菩提。实无有法名为菩萨。是故佛说。一切法无我无人无众生无寿者。须菩提。若菩萨作是言。我当庄严佛土。是不名菩萨。何以故。如来说庄严佛土者。即非庄严。是名庄严。须菩提。若菩萨通达无我法者。如来说名真是菩萨。
|
||||||
|
|
||||||
|
**金刚经 第十八品 一体同观分**
|
||||||
|
|
||||||
|
须菩提。于意云何。如来有肉眼不。如是。世尊。如来有肉眼。须菩提。于意云何。如来有天眼不。如是。世尊。如来有天眼。须菩提。于意云何。如来有慧眼不。如是。世尊。如来有慧眼。须菩提。于意云何。如来有法眼不。如是。世尊。如来有法眼。须菩提。于意云何。如来有佛眼不。如是。世尊。如来有佛眼。须菩提。于意云何。如恒河中所有沙。佛说是沙不。如是。世尊。如来说是沙。须菩提。于意云何。如一恒河中所有沙。有如是沙等恒河。是诸恒河所有沙数佛世界,如是宁为多不。甚多。世尊。佛告须菩提。尔所国土中。所有众生,若干种心。如来悉知。何以故。如来说诸心皆为非心。是名为心。所以者何。须菩提。过去心不可得。现在心不可得。未来心不可得。
|
||||||
|
|
||||||
|
**金刚经 第十九品 法界通化分**
|
||||||
|
|
||||||
|
须菩提。于意云何。若有人满三千大千世界七宝。以用布施。是人以是因缘。得福多不。如是。世尊。此人以是因缘。得福甚多。须菩提。若福德有实。如来不说得福德多。以福德无故。如来说得福德多。
|
||||||
|
|
||||||
|
**金刚经 第二十品 离色离相分**
|
||||||
|
|
||||||
|
须菩提。于意云何。佛可以具足色身见不。不也。世尊。如来不应以具足色身见。何以故。如来说。具足色身。即非具足色身。是名具足色身。须菩提。于意云何。如来可以具足诸相见不。不也。世尊。如来不应以具足诸相见。何以故。如来说诸相具足。即非具足。是名诸相具足。
|
||||||
|
|
||||||
|
**金刚经 第二十一品 非说所说分**
|
||||||
|
|
||||||
|
须菩提。汝勿谓如来作是念。我当有所说法。莫作是念。何以故。若人言如来有所说法。即为谤佛。不能解我所说故。须菩提。说法者。无法可说。是名说法。尔时慧命须菩提白佛言。世尊。颇有众生。于未来世。闻说是法。生信心不。佛言。须菩提。彼非众生。非不众生。何以故。须菩提。众生众生者。如来说非众生。是名众生。
|
||||||
|
|
||||||
|
**金刚经 第二十二品 无法可得分**
|
||||||
|
|
||||||
|
须菩提白佛言。世尊。佛得阿耨多罗三藐三菩提。为无所得耶。佛言。如是。如是。须菩提。我于阿耨多罗三藐三菩提。乃至无有少法可得。是名阿耨多罗三藐三菩提。
|
||||||
|
|
||||||
|
**金刚经 第二十三品 净心行善分**
|
||||||
|
|
||||||
|
复次。须菩提。是法平等。无有高下。是名阿耨多罗三藐三菩提。以无我无人无众生无寿者。修一切善法。即得阿耨多罗三藐三菩提。须菩提。所言善法者。如来说即非善法。是名善法。
|
||||||
|
|
||||||
|
**金刚经 第二十四品 福智无比分**
|
||||||
|
|
||||||
|
须菩提。若三千大千世界中。所有诸须弥山王。如是等七宝聚。有人持用布施。若人以此般若波罗蜜经。乃至四句偈等。受持读诵。为他人说。于前福德。百分不及一。百千万亿分。乃至算数譬喻所不能及。
|
||||||
|
|
||||||
|
**金刚经 第二十五品 化无所化分**
|
||||||
|
|
||||||
|
须菩提。于意云何。汝等勿谓如来作是念。我当度众生。须菩提。莫作是念。何以故。实无有众生如来度者。若有众生如来度者。如来即有我人众生寿者。须菩提。如来说有我者。即非有我。而凡夫之人以为有我。须菩提。凡夫者。如来说即非凡夫。是名凡夫。
|
||||||
|
|
||||||
|
**金刚经 第二十六品 法身非相分**
|
||||||
|
|
||||||
|
须菩提。于意云何。可以三十二相观如来不。须菩提言。如是如是以三十二相观如来。佛言。须菩提。若以三十二相观如来者。转轮圣王即是如来。须菩提白佛言。世尊。如我解佛所说义。不应以三十二相观如来。尔时。世尊而说偈言。若以色见我。以音声求我。是人行邪道。不能见如来。
|
||||||
|
|
||||||
|
**金刚经 第二十七品 无断无灭分**
|
||||||
|
|
||||||
|
须菩提。汝若作是念。如来不以具足相故。得阿耨多罗三藐三菩提。须菩提。莫作是念。如来不以具足相故。得阿耨多罗三藐三菩提。须菩提。汝若作是念。发阿耨多罗三藐三菩提心者。说诸法断灭。莫作是念。何以故。发阿耨多罗三藐三菩提心者。于法不说断灭相。
|
||||||
|
|
||||||
|
**金刚经 第二十八品 不受不贪分**
|
||||||
|
|
||||||
|
须菩提。若菩萨以满恒河沙等世界七宝。持用布施。若复有人知一切法无我。得成于忍。此菩萨胜前菩萨所得功德。何以故。须菩提。以诸菩萨不受福德故。须菩提白佛言。世尊。云何菩萨不受福德。须菩提。菩萨所作福德。不应贪著。是故说不受福德。
|
||||||
|
|
||||||
|
**金刚经 第二十九品 威仪寂净分**
|
||||||
|
|
||||||
|
须菩提。若有人言。如来若来若去。若坐若卧。是人不解我所说义。何以故。如来者。无所从来。亦无所去。故名如来。
|
||||||
|
|
||||||
|
**金刚经 第三十品 一合理相分**
|
||||||
|
|
||||||
|
须菩提。若善男子。善女人。以三千大千世界碎为微尘。于意云何。是微尘众宁为多不。须菩提言。甚多。世尊。何以故。若是微尘众实有者。佛即不说是微尘众。所以者何。佛说。微尘众。即非微尘众。是名微尘众。世尊。如来所说三千大千世界。即非世界。是名世界。何以故。若世界实有者。即是一合相。如来说。一合相。即非一合相。是名一合相。须菩提。一合相者。即是不可说。但凡夫之人贪著其事。
|
||||||
|
|
||||||
|
**金刚经 第三十一品 知见不生分**
|
||||||
|
|
||||||
|
须菩提。若人言。佛说我见人见众生见寿者见。须菩提。于意云何。是人解我所说义不。不也。世尊。是人不解如来所说义。何以故。世尊说。我见人见众生见寿者见,即非我见人见众生见寿者见,是名我见人见众生见寿者见。须菩提。发阿耨多罗三藐三菩提心者。于一切法。应如是知。如是见。如是信解。不生法相。须菩提。所言法相者。如来说即非法相。是名法相。
|
||||||
|
|
||||||
|
**金刚经 第三十二品 应化非真分**
|
||||||
|
|
||||||
|
须菩提。若有人以满无量阿僧祗世界七宝持用布施。若有善男子。善女人发菩提心者。持于此经。乃至四句偈等。受持读诵。为人演说。其福胜彼。云何为人演说。不取于相。如如不动。何以故。一切有为法。如梦幻泡影。如露亦如电。应作如是观。佛说是经已。长老须菩提。及诸比丘。比丘尼。优婆塞。优婆夷。一切世间天人阿修罗。闻佛所说。皆大欢喜。信受奉行。
|
||||||
|
|
||||||
|
\----《金刚经全文》结束,《金刚经原文》
|
||||||
|
|
||||||
|
**注:** [金刚经流通本有一处与古本不同,详情请点击此处!](http://m.shixiu.net/news/fjxw/1452.html)
|
||||||
|
|
||||||
|
提示:本站收录有中国文化全部经典如: [《佛教经典》,《道家经典》,《儒家经典》,及一代宗师南怀瑾老师的著作,欢迎你常来访问!点此访问本站首页!](http://m.shixiu.net/)
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
---
|
||||||
|
title: 2024-11-05-tech
|
||||||
|
created: 2024-11-05
|
||||||
|
updated: 2024-11-05
|
||||||
|
type: summary
|
||||||
|
tags: [[]]
|
||||||
|
external: http://go/ui/posts/1/
|
||||||
|
---
|
||||||
|
|
||||||
|
## 科技新闻
|
||||||
|
- [美国后支付巨头 Affirm 首次国际扩张,进军英国市场](https://www.cnbc.com/2024/11/03/affirm-expands-buy-now-pay-later-service-to-the-uk.html)
|
||||||
|
Affirm 在英国推出后支付服务,标志着其首次海外扩张。
|
||||||
|
- [美国芯片制造商开始切断对中国的供应链](https://www.wsj.com/articles/u-s-chip-toolmakers-move-to-cut-china-from-supply-chains-6ad44c98?mod=rss_Technology)
|
||||||
|
应用材料和拉姆研究公司在美国政府的压力下,要求供应商遵循新的限制政策。
|
||||||
|
- [大科技公司如何为 AI 的能源需求提供支持](https://www.cnbc.com/2024/11/04/data-centers-how-big-tech-intends-to-power-ais-thirst-for-energy.html)
|
||||||
|
随着数据中心数量的爆炸式增长,大科技公司正在考虑如何满足 AI 的巨量能源需求。
|
||||||
|
- [SK 海力士股价上涨 6.5% 受 Nvidia 首席执行官呼吁提速影响](https://www.cnbc.com/2024/11/04/sk-hynix-shares-rally-after-nvidias-huang-asks-firm-to-speed-up-chip.html)
|
||||||
|
Nvidia CEO 黄仁勋要求 SK 海力士提前六个月交付高带宽内存芯片。
|
||||||
|
- [科技、媒体与电信市场概述](https://www.wsj.com/articles/tech-media-telecom-roundup-market-talk-ff661b1a?mod=rss_Technology)
|
||||||
|
本期市场谈论涵盖 Peloton、纽约时报和 Super Micro Computer 等公司。
|
||||||
|
- [巴里·迪勒称《华盛顿邮报》不支持候选人的时机是个“失误”](https://www.cnbc.com/2024/11/04/barry-diller-calls-timing-of-the-washington-posts-non-endorsement-a-blunder-jeff-bezos-amazon-presidential-election-candidate.html)
|
||||||
|
Expedia 董事长巴里·迪勒批评《华盛顿邮报》未支持任何总统候选人的决定。
|
||||||
|
- [Coinbase 和 a16z 等为 2026 年选举投入超过 7800 万美元支持加密货币 PAC](https://www.cnbc.com/2024/11/04/coinbase-a16z-contribute-78-million-to-pro-crypto-pac-for-2026-election.html)
|
||||||
|
支持加密货币的超级 PAC Fairshake 筹集了 7800 万美元用于 2026 年中期选举。
|
||||||
|
- [AppLovin 股票因 AI 上涨 300%,成为 2024 年最佳科技股](https://www.cnbc.com/2024/11/04/applovin-stock-surge-in-2024-leaves-ad-tech-company-with-lot-to-prove.html)
|
||||||
|
尽管不是 Nvidia,AppLovin 的股票在今年增长了 300%,成为市值超过 50 亿美元的公司中表现最佳的科技股。
|
||||||
|
- [贝索斯和 OpenAI 投资机器人初创公司 Physical Intelligence,估值 24 亿美元](https://www.cnbc.com/2024/11/04/jeff-bezos-and-openai-invest-in-robot-startup-physical-intelligence.html)
|
||||||
|
亚马逊的贝索斯和 OpenAI 对机器人初创企业 Physical Intelligence 投资 4 亿美元,企业估值达到 24 亿美元。
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
---
|
||||||
|
title: 2024-11-07-victoria
|
||||||
|
created: 2024-11-07
|
||||||
|
updated: 2024-11-07
|
||||||
|
type: summary
|
||||||
|
tags: [[]]
|
||||||
|
external: http://go/ui/posts/10/
|
||||||
|
---
|
||||||
|
|
||||||
|
## 墨尔本及澳洲新闻简报
|
||||||
|
|
||||||
|
- **工党承诺制定新法律绕过高院裁决,对获释移民拘留者实施宵禁和监控** [https://www.sbs.com.au/news/article/labor-pledges-new-laws-to-skirt-high-court-ruling-on-released-immigration-detainees/9dsig2po5](https://www.sbs.com.au/news/article/labor-pledges-new-laws-to-skirt-high-court-ruling-on-released-immigration-detainees/9dsig2po5)
|
||||||
|
高院裁定对超过 120 名获释无限期移民实施宵禁和监控措施违宪且 "无法辩护"。工党承诺制定新法律绕过这一裁决。
|
||||||
|
- **墨尔本北部一商店被撞毁并纵火,邻居奋力救出两人** [https://www.theage.com.au/national/victoria/there-s-people-in-the-back-neighbours-rush-to-save-pair-inside-firebombed-shop-20241101-p5kn1t.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria](https://www.theage.com.au/national/victoria/there-s-people-in-the-back-neighbours-rush-to-save-pair-inside-firebombed-shop-20241101-p5kn1t.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
墨尔本北部一商店被人用皮卡车撞毁并纵火,两名住在这家商店上方的居民被邻居救出。
|
||||||
|
- **五岁女孩萨凡纳原本想穿上白裙结婚,却被火化** [https://www.theage.com.au/national/victoria/savannah-5-wanted-to-get-married-in-a-white-dress-instead-she-was-cremated-in-one-20241106-p5koal.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria](https://www.theage.com.au/national/victoria/savannah-5-wanted-to-get-married-in-a-white-dress-instead-she-was-cremated-in-one-20241106-p5koal.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
萨凡纳·肯普和未出生的婴儿雷米·奥尔德里奇在希帕顿东部发生车祸身亡,他们的父母悲痛欲绝,一直保留着他们的房间。
|
||||||
|
- **电动滑板车阻塞人行道引发残疾人歧视案件** [https://www.theage.com.au/national/victoria/e-scooters-blocking-footpaths-at-centre-of-disability-discrimination-case-20241106-p5kod6.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria](https://www.theage.com.au/national/victoria/e-scooters-blocking-footpaths-at-centre-of-disability-discrimination-case-20241106-p5kod6.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
雅拉市议会被要求执行自身规定或提供更好的电动滑板车停车位,因为一名轮椅使用者表示电动滑板车经常阻碍他的出行。
|
||||||
|
- **国家必须就中东问题发声** [https://www.theage.com.au/national/victoria/nations-must-speak-out-on-the-middle-east-20241106-p5kogb.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria](https://www.theage.com.au/national/victoria/nations-must-speak-out-on-the-middle-east-20241106-p5kogb.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
《时代报》读者对外交部长佩妮·王发表的评论文章做出反应。
|
||||||
|
- **抗议者因涉嫌展示恐怖主义符号受到调查:法律如何运作?** [https://www.sbs.com.au/news/article/protestors-are-being-investigated-over-allegedly-displaying-terror-symbols-how-do-the-laws-work/a8bmugwbz](https://www.sbs.com.au/news/article/protestors-are-being-investigated-over-allegedly-displaying-terror-symbols-how-do-the-laws-work/a8bmugwbz)
|
||||||
|
今年 1 月出台了新的联邦法律禁止仇恨和恐怖主义符号,但尚未有人根据这些法律被起诉。
|
||||||
|
- **一年时间,数十亿的利息支出,高利率是否帮助抑制通货膨胀?** [https://www.sbs.com.au/news/article/twelve-months-and-billions-in-interest-later-have-high-rates-helped-tame-inflation/w4839u5d5](https://www.sbs.com.au/news/article/twelve-months-and-billions-in-interest-later-have-high-rates-helped-tame-inflation/w4839u5d5)
|
||||||
|
随着澳大利亚储备银行将现金利率维持在 4.35%,数百万澳大利亚人正在为其浮动抵押贷款支付额外的利息。
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
---
|
||||||
|
title: 2024-12-06-world_news
|
||||||
|
created: 2024-12-06
|
||||||
|
updated: 2024-12-06
|
||||||
|
type: summary
|
||||||
|
tags: [[]]
|
||||||
|
external: http://go/ui/posts/100/
|
||||||
|
---
|
||||||
|
|
||||||
|
```markdown
|
||||||
|
# 世界要闻速览 (World News Bulletin)
|
||||||
|
|
||||||
|
- **美国联合健康CEO遇害,嫌犯或乘巴士从亚特兰大逃至纽约** [UnitedHealthcare CEO Slaying: Suspect May Have Taken Bus from Atlanta to New York](https://www.cnbc.com/2024/12/05/unitedhealthcare-ceo-shooting-nypd-photos-show-face-of-person-sought.html) [Also reported by BBC](https://www.bbc.com/news/articles/c7ve36zg0e5o) 纽约警方公布嫌犯照片,正在全力追捕。美国最大私人健康保险公司联合健康CEO布赖恩·汤普森在纽约遇刺身亡,案件引发广泛关注。
|
||||||
|
|
||||||
|
- **特朗普任命大卫·萨克斯为AI和加密货币“沙皇”** [Trump Names Venture Capitalist David Sacks as AI and Crypto 'Czar'](https://www.cnbc.com/2024/12/05/trump-david-sacks-billionaire-ai-crypto.html) 特朗普过渡团队宣布这一任命,萨克斯曾参与共和党全国代表大会并为特朗普筹款。
|
||||||
|
|
||||||
|
- **墨尔本犹太教堂遭纵火袭击** [Worshippers Flee Arson Attack at Melbourne Synagogue](https://www.bbc.com/news/articles/c5ydr228jyko) 澳大利亚总理称此次纵火事件为反犹太主义的“仇恨行为”。
|
||||||
|
|
||||||
|
- **韩国执政党领袖要求总统尹锡悦立即停职** [Ruling Party Leader Says South Korea President Must Be Suspended](https://www.cnbc.com/2024/12/06/ruling-party-leader-says-south-korea-president-must-be-suspended-as-soon-as-possible.html) 执政党领袖呼吁罢免总统尹锡悦,原因是其试图实施戒严。
|
||||||
|
|
||||||
|
- **加州校园枪击案:嫌犯伪造故事进入学校** [California School Shooting: Suspect Used Fake Story to Gain Access](https://www.bbc.com/news/articles/crl3njg544eo) 两名幼儿园儿童受重伤,目前情况危急但稳定。
|
||||||
|
|
||||||
|
- **SpaceX星链计划遭乌克兰团体反对** [SpaceX Faces Opposition to Starlink Expansion](https://www.cnbc.com/2024/12/05/spacex-faces-opposition-to-starlink-expansion-from-ukrainian-group.html) 一个乌克兰裔美国团体向联邦通信委员会提交请愿书,要求在进一步审查之前暂停星链计划部署近22500颗卫星。
|
||||||
|
|
||||||
|
- **麦格理预测2025年韩国、日本和香港股票将上涨50%以上** [Macquarie's Top Picks for 2025](https://www.cnbc.com/2024/12/06/stocks-from-korea-japan-hong-kong-and-malaysia-among-macquaries-favorites-for-2025.html) 投资银行麦格理预测,这些地区的股票在未来12个月内将有超过50%的涨幅。
|
||||||
|
|
||||||
|
- **特朗普选择前参议员大卫·珀杜担任驻华大使** [Trump Picks Former Senator David Perdue to Be Ambassador to China](https://www.cnbc.com/2024/12/06/trump-picks-former-senator-david-perdue-to-be-ambassador-to-china.html) 美国候任总统唐纳德·特朗普宣布了这一任命。
|
||||||
|
```
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
---
|
||||||
|
title: 2025-07-27-technology
|
||||||
|
created: 2025-07-27
|
||||||
|
updated: 2025-07-27
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "technology"]
|
||||||
|
external: http://go/ui/posts/1000/
|
||||||
|
---
|
||||||
|
|
||||||
|
** 科技新闻摘要**
|
||||||
|
- [旨在解决AI能耗问题的新型芯片](https://www.wsj.com/tech/ai/the-new-chips-designed-to-solve-ais-energy-problem-1ba9cac1?mod=rss_Technology)
|
||||||
|
科技巨头和初创公司正尝试新方法解决AI巨大的能耗问题。
|
||||||
|
- [监管机构称特斯拉计划在加州推出“亲友”汽车服务](https://www.cnbc.com/2025/07/25/tesla-plans-friends-and-family-service-in-california-regulator-says.html)
|
||||||
|
特斯拉正尝试将其自动驾驶出租车服务从奥斯汀扩展到加州等更多市场。
|
||||||
|
- [迪拜巧克力会成为下一个南瓜香料吗?](https://www.wsj.com/tech/dubai-chocolate-trend-history-social-media-13915425?mod=rss_Technology)
|
||||||
|
社交媒体推动了这种巧克力、开心果和卡塔伊夫面团混合口味的流行,大型食品公司正看好其持久力。
|
||||||
|
- [特斯拉投资者对埃隆·马斯克的未来主义承诺越发谨慎](https://www.cnbc.com/2025/07/26/tesla-investors-grow-wary-of-elon-musk-robotaxi-promises.html)
|
||||||
|
继又一份令人失望的财报后,特斯拉股价暴跌,投资者对马斯克关于自动驾驶出租车的承诺失去兴趣。
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
---
|
||||||
|
title: 2025-07-27-chinese-painting
|
||||||
|
created: 2025-07-27
|
||||||
|
updated: 2025-07-27
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "china", "painting"]
|
||||||
|
external: http://go/ui/posts/1001/
|
||||||
|
---
|
||||||
|
|
||||||
|
我很抱歉,尽管您提供了非常详尽的列表,我仍然努力为您找到了一幅不在其中的、且具有文化意义的古画——《伯牙鼓琴图》。
|
||||||
|
|
||||||
|
这幅画描绘了“高山流水觅知音”的典故,讲述了俞伯牙和钟子期之间深厚的友情。这个故事非常适合向孩子传递中国传统文化中“知音难觅”的寓意。
|
||||||
|
|
||||||
|
希望这份推荐能帮助您的儿子更好地了解中国文化。
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: 2025-07-27-victoria
|
||||||
|
created: 2025-07-27
|
||||||
|
updated: 2025-07-27
|
||||||
|
type: summary
|
||||||
|
tags: ["local_news", "newsletter"]
|
||||||
|
external: http://go/ui/posts/1002/
|
||||||
|
---
|
||||||
|
|
||||||
|
# 大新闻
|
||||||
|
- [租房危机加剧,西澳单亲妈妈被迫住在皮卡车里,家庭因此离散](https://www.sbs.com.au/news/article/the-human-cost-of-western-australias-rental-crisis/5usapgpzm)
|
||||||
|
西澳大利亚州的租房危机日益严重,一位单亲母亲在一年内被驱逐三次后,正准备住进她的皮卡车,这凸显了住房危机对家庭造成的巨大影响。
|
||||||
|
- [四名澳洲居民(包括两名公民)面临香港逮捕令及悬赏](https://www.sbs.com.au/news/article/four-australian-residents-facing-hong-kong-arrest-warrants-bounties/bs973tkq6)
|
||||||
|
继2023年两名澳洲居民被香港当局指控违反国家安全法后,一名澳洲公民和一名居民又被指控参与旨在颠覆中国国家政权的组织,目前他们面临香港的逮捕令及悬赏。
|
||||||
|
- [多州将迎来强降雨和暴风雪天气](https://www.sbs.com.au/news/article/winter-storms-bring-heavy-rain-and-blizzard-conditions/qfcxbp2xd)
|
||||||
|
在猛烈袭击东海岸之后,恶劣天气预计将在周日下午袭击西澳大利亚州,多地将出现强降雨和暴风雪天气。
|
||||||
|
- [赴美签证新规:美国扩大审查范围,或要求披露社交媒体信息](https://www.sbs.com.au/news/article/us-visa-application-social-media-disclosure/tk58gm6wf)
|
||||||
|
美国宣布扩大签证审查范围,将考虑部分申请人的“在线状态”,这引发了关于社交媒体资料、密码和私人照片如何被审查的疑问。
|
||||||
|
- [男童去世前未能等到心脏,简单改革或能帮助更多人](https://www.theage.com.au/national/victoria/teddy-died-before-he-got-a-new-heart-a-simple-reform-may-have-helped-him-20250724-p5mhfg.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
一年前,一项议会调查建议全面改革维多利亚州的器官捐献登记方式,然而维州政府至今尚未作出回应,这引发了对器官捐献系统效率的担忧。
|
||||||
|
- [被停职教师涉性行为不当,却转行当网约车司机引发担忧](https://www.theage.com.au/national/victoria/teacher-suspended-over-sexual-misconduct-allegations-working-as-ride-share-driver-20250717-p5mfrk.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
一名因涉嫌性行为不当被停职的教师,目前正在从事网约车司机工作。尽管维州的出租车和网约车司机需接受背景调查,但仅有定期载送儿童的司机才可能被要求持有“儿童工作许可”,这引发了对公共安全的担忧。
|
||||||
|
- [莫纳什大学担忧郊区环线(SRL)住房和办公区规划将吞噬高科技中心](https://www.theage.com.au/national/victoria/monash-university-fears-srl-plans-for-housing-office-space-will-swallow-high-tech-hub-20250726-p5mhz3.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
关于耗资345亿澳元的郊区环线(SRL)沿线高层住宅和办公空间的规划,已收到超过600份公众意见书。莫纳什大学担忧这些规划可能侵占其高科技中心。
|
||||||
|
- [海滨快餐店争议:社区居民六年抗争失败,愤怒声讨规划部门](https://www.theage.com.au/national/victoria/community-anger-after-losing-six-year-battle-against-beachside-fast-food-outlet-20250724-p5mhjn.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
莫宁顿半岛(Mornington Peninsula)的居民表示,在一个距离海滩仅100米的新麦当劳门店规划被仲裁庭批准后,他们感到被忽视和愤怒,认为他们的社区意见未被听取。
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
---
|
||||||
|
title: 2025-07-27-world_news
|
||||||
|
created: 2025-07-27
|
||||||
|
updated: 2025-07-27
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "world_news"]
|
||||||
|
external: http://go/ui/posts/1003/
|
||||||
|
---
|
||||||
|
|
||||||
|
# 全球要闻速览
|
||||||
|
|
||||||
|
- [台湾“亲中派”政客罢免投票中幸存](https://www.bbc.com/news/articles/cn8185e19l4o)
|
||||||
|
极具争议的罢免投票初步结果显示,台湾反对派将保留在议会中的多数席位。
|
||||||
|
- [乌克兰与俄罗斯无人机互袭致五人死亡](https://www.bbc.com/news/articles/cvgv3ppl7m3o)
|
||||||
|
乌克兰第聂伯罗遭袭三人死亡,俄罗斯罗斯托夫地区两人丧生。
|
||||||
|
- [特朗普治下美国政府成活跃投资者](https://www.cnbc.com/2025/07/26/under-trump-us-an-active-investor-at-scale-not-seen-outside-major-crises.html)
|
||||||
|
特朗普政府展现出购买上市公司股份的意愿,其干预程度被指史无前例。
|
||||||
|
- [英国谴责香港悬赏通缉民主活动家](https://www.bbc.com/news/articles/cdx069we39xo)
|
||||||
|
英方称香港的悬赏是“跨国镇压的又一例证”。
|
||||||
|
- [中国发布人工智能行动计划](https://www.cnbc.com/2025/07/26/china-ai-action-plan.html)
|
||||||
|
在全球科技竞赛升温之际,中国发布AI全球行动计划,呼吁国际合作。
|
||||||
|
- [美国保险巨头多数客户数据遭窃](https://www.bbc.com/news/articles/cd6nyng861wo)
|
||||||
|
黑客入侵了一家大型保险公司,窃取了美国大多数客户的个人身份数据。
|
||||||
|
- [特斯拉投资者对马斯克的承诺日益警惕](https://www.cnbc.com/2025/07/26/tesla-investors-grow-wary-of-elon-musk-robotaxi-promises.html)
|
||||||
|
在又一份令人失望的财报后,马斯克对自动驾驶出租车的承诺未能提振投资者信心,特斯拉股价大跌。
|
||||||
|
- [牛市进入“随心所欲”阶段](https://www.cnbc.com/2025/07/26/bull-market-enters-the-anything-goes-phase-should-you-follow.html)
|
||||||
|
市场进入模因股复苏、狂热追逐卖空者、特殊目的收购公司(SPACs)回归以及金融护栏放低的阶段。
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
---
|
||||||
|
title: 2025-07-27-world-painting
|
||||||
|
created: 2025-07-27
|
||||||
|
updated: 2025-07-27
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "painting", "world"]
|
||||||
|
external: http://go/ui/posts/1004/
|
||||||
|
---
|
||||||
|
|
||||||
|
## 美国进步
|
||||||
|
|
||||||
|
《美国进步》是约翰·加斯特于1872年创作的一幅具有象征意义的画作,约翰·加斯特是一位出生于普鲁士的画家。这幅画作以寓言的形式展现了19世纪美国向西部扩张的历史进程,即“昭示命运”(Manifest Destiny)。画中,一个被称为“哥伦比亚”的女性形象,手持一本书(象征知识和教育)和电报线(象征技术进步),带领着拓荒者、农民和火车向西部前进。同时,原住民和野牛等代表原始自然的元素则向西退去。这幅画不仅展现了美国历史上的重要阶段,也引发了对殖民主义、进步与自然之间关系的思考,非常适合帮助孩子理解历史事件、象征主义以及艺术在记录和诠释历史方面的作用。
|
||||||
|
|
||||||
|
名画URL : <https://app.fta.art/zh/artwork/a5e4f3a72ab46e25d14a674dffa13fc5e72a1d32>
|
||||||
|
搜索名画: <https://go.junv.cc/gi/美国进步>
|
||||||
|
|
||||||
|
------
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
title: 2025-07-28-technology
|
||||||
|
created: 2025-07-28
|
||||||
|
updated: 2025-07-28
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "technology"]
|
||||||
|
external: http://go/ui/posts/1005/
|
||||||
|
---
|
||||||
|
|
||||||
|
**科技新闻**
|
||||||
|
- [密码管理器:不仅是登录凭证,更是所有秘密的守护者](https://www.wsj.com/tech/personal-tech/why-you-should-use-a-password-manager-for-all-your-secrets-not-just-logins-e4c46a8b?mod=rss_Technology)
|
||||||
|
整合个人数据与密码,提高便利性与安全性。
|
||||||
|
- [观点:Sarepta事件与药物创新](https://www.wsj.com/opinion/sarepta-elevidys-gene-therapy-duchenne-fda-marty-makary-vinay-prasad-4637cce9?mod=rss_Technology)
|
||||||
|
特朗普时代的FDA试图扼杀一种已帮助绝症患儿的疗法。
|
||||||
|
- [观点:FDA官员Vinay Prasad的争议立场](https://www.wsj.com/opinion/vinay-prasad-is-a-bernie-sanders-acolyte-in-maha-drag-healthcare-bfc3be57?mod=rss_Technology)
|
||||||
|
一位FDA高级官员质疑患者自主医疗决策的能力。
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
title: 2025-07-28-chinese-painting
|
||||||
|
created: 2025-07-28
|
||||||
|
updated: 2025-07-28
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "china", "painting"]
|
||||||
|
external: http://go/ui/posts/1007/
|
||||||
|
---
|
||||||
|
|
||||||
|
## 观荷图
|
||||||
|
《观荷图》是中国传统绘画中常见的题材,描绘了人们在荷花池边观赏荷花的情景。荷花在中国文化中象征着高洁、清雅、纯洁和君子品格,因为它“出淤泥而不染,濯清涟而不妖”。通过这幅画,您的孩子可以感受到中国传统文人雅士的生活情趣,并学习到荷花所蕴含的美好寓意,了解中国人对自然和美好品德的追求。
|
||||||
|
|
||||||
|
古画URL : <https://www.jiguzuo.com/guohua/zhou-wen-ju-he-ting-yi-diao-shi-nv-tu-zhou.html>
|
||||||
|
搜索古画: <https://go.junv.cc/gi/观荷图>
|
||||||
|
|
||||||
|
------
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: 2025-07-28-victoria
|
||||||
|
created: 2025-07-28
|
||||||
|
updated: 2025-07-28
|
||||||
|
type: summary
|
||||||
|
tags: ["local_news", "newsletter"]
|
||||||
|
external: http://go/ui/posts/1008/
|
||||||
|
---
|
||||||
|
|
||||||
|
# 新闻快讯
|
||||||
|
- [新任警察总长对示威许可和有组织犯罪采取强硬立场](https://www.theage.com.au/national/victoria/new-police-chief-reveals-firm-stance-on-protest-permits-issues-warning-to-organised-crime-20250727-p5mi3l.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
新任维州警察总长迈克·布什首次就抗议示威许可问题表明强硬立场,并警告有组织犯罪团伙将面临严打。
|
||||||
|
- [艾伯特公园F1赛道禁入期或延长两倍](https://www.theage.com.au/national/victoria/public-lockout-at-albert-park-gp-precinct-set-to-triple-in-length-20250728-p5mi8h.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
根据维州政府提出的法律修改,一级方程式大奖赛艾伯特公园赛道区域的公共禁入时间将从7天延长至3周。
|
||||||
|
- [谷歌威胁就儿童社媒禁令起诉政府,若YouTube被纳入](https://www.sbs.com.au/news/article/google-threatens-to-sue-if-youtube-is-included-in-australias-kids-social-media-ban/axud666av)
|
||||||
|
如果YouTube被纳入澳大利亚的儿童社交媒体禁令范围,谷歌威胁将提起诉讼。总理阿尔巴尼斯对此表示不惧挑战。
|
||||||
|
- [联邦政府推进处方药25澳元封顶承诺](https://www.sbs.com.au/news/article/albanese-government-moves-ahead-with-election-pledge-to-cap-prescription-medicines-to-25/22jx9d4u9)
|
||||||
|
联邦政府将推进立法,将处方药价格上限设定为25澳元,这将是二十多年来的最低价。
|
||||||
|
- [送餐骑手在墨尔本人行道横行,商家自行采取措施](https://www.theage.com.au/national/victoria/reckless-food-delivery-riders-making-footpaths-lawless-in-busy-shopping-strips-20250722-p5mgvj.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
墨尔本商家反映,送餐电动车骑手在繁忙购物区人行道上横冲直撞,导致行人与骑手之间碰撞频发。
|
||||||
|
- [维州新郊区规划成本飙升,审批速度大幅下降](https://www.theage.com.au/national/victoria/cost-of-planning-new-suburbs-skyrockets-as-approvals-collapse-20250724-p5mhff.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
最新分析显示,维州规划部门新城区审批速度大幅放缓,导致新郊区规划成本飙升。
|
||||||
|
- [澳人远赴海外寻求癌症临床试验](https://www.sbs.com.au/news/insight/article/hell-bent-on-trying-to-give-him-time-the-australians-going-overseas-for-cancer-trials/pffw6ctil)
|
||||||
|
面对国内尚无法提供的潜在救命疗法,一些澳大利亚癌症患者选择前往海外(如中国和新加坡)参与临床试验。
|
||||||
|
- [学生副业成大生意:赚取可观收入](https://www.theage.com.au/national/victoria/making-the-cut-why-students-side-hustles-are-big-business-20250619-p5m8s7.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
学生们利用课余时间经营副业正成为一项大生意,一名学生的车库业务每年可带来约3000澳元的收入。
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
---
|
||||||
|
title: 2024-12-07-technology
|
||||||
|
created: 2024-12-07
|
||||||
|
updated: 2024-12-07
|
||||||
|
type: summary
|
||||||
|
tags: [[]]
|
||||||
|
external: http://go/ui/posts/101/
|
||||||
|
---
|
||||||
|
|
||||||
|
**科技新闻速递**
|
||||||
|
|
||||||
|
- [TikTok被美国上诉法院禁止,国家安全成关键](https://www.wsj.com/articles/tik-tok-congress-ban-court-ruling-1f0d6837?mod=rss_Technology)
|
||||||
|
三法官小组裁定国会有权因国家安全concern关闭这款中国背景的应用程序。
|
||||||
|
|
||||||
|
- [比特币首次突破10万美元大关](https://www.cnbc.com/2024/12/05/bitcoin-tops-100000-as-monster-2024-rally-reaches-new-heights.html)
|
||||||
|
比特币价格比预期更快达到里程碑,投资者推动其迅速突破10万美元。
|
||||||
|
|
||||||
|
- [特朗普计划任命大卫·萨克斯为AI和加密货币"沙皇"](https://www.cnbc.com/2024/12/05/trump-david-sacks-billionaire-ai-crypto.html)
|
||||||
|
这一选择显示科技领袖在未来政府中的影响力日益增长。
|
||||||
|
|
||||||
|
- [Nvidia合作伙伴Ooredoo寻求数据中心收购](https://www.wsj.com/articles/nvidia-partner-ooredoo-eyes-data-center-acquisitions-amid-ai-push-ceo-says-interview-a2956cf0?mod=rss_Technology)
|
||||||
|
卡塔尔电信集团无法快速建设数据中心,转而寻求收购以满足最新AI芯片需求。
|
||||||
|
|
||||||
|
- [Uber在阿布扎比推出自动驾驶出租车服务](https://www.cnbc.com/2024/12/06/uber-offers-robotaxi-rides-in-abu-dhabi-partnership-with-weride.html)
|
||||||
|
自动驾驶出租车将在萨迪亚特岛和亚斯岛间运营,并连接扎耶德国际机场。
|
||||||
|
|
||||||
|
- [SpaceX Starlink卫星扩展遭乌克兰团体反对](https://www.cnbc.com/2024/12/05/spacex-faces-opposition-to-starlink-expansion-from-ukrainian-group.html)
|
||||||
|
一个乌克兰-美国组织要求联邦通信委员会暂停近22,500颗卫星轨道计划。
|
||||||
|
|
||||||
|
- [热能电池可能取代锂离子电池](https://www.cnbc.com/2024/12/06/why-thermal-batteries-could-replace-lithium-ion-batteries-.html)
|
||||||
|
热能电池以热能存储可再生能源,为钢铁和水泥等行业提供减少碳排放的成本效益方案。
|
||||||
|
|
||||||
|
- [亚马逊推出AWS购买按钮,简化软件销售](https://www.cnbc.com/2024/12/04/amazon-will-sell-software-with-buy-with-aws-button-for-partner-sites.html)
|
||||||
|
亚马逊网络服务希望通过简化第三方软件销售流程来提高云服务收入。
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
---
|
||||||
|
title: 2025-07-28-world_news
|
||||||
|
created: 2025-07-28
|
||||||
|
updated: 2025-07-28
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "world_news"]
|
||||||
|
external: http://go/ui/posts/1011/
|
||||||
|
---
|
||||||
|
|
||||||
|
# 全球新闻速览
|
||||||
|
|
||||||
|
- [美欧达成贸易协议,特朗普关税政策影响深远](https://www.cnbc.com/2025/07/28/us-trade-deal-offers-initial-relief-leaves-europe-on-the-backfoot.html)
|
||||||
|
美国与欧盟达成贸易协议,税率为15%。此举标志着特朗普旨在重塑全球贸易格局的重要一步,也对日本汽车制造商和全球市场(包括欧洲股市)产生深远影响。
|
||||||
|
- [肯尼亚获1.5亿美元太阳能融资,助力全国电气化](https://www.cnbc.com/2025/07/28/private-investors-buy-into-largest-of-its-kind-solar-deal-to-electrify-kenya.html)
|
||||||
|
私募投资者参与肯尼亚大型太阳能项目,预计将使140万户家庭(多数在农村地区)获得太阳能系统,推动全国电气化进程。
|
||||||
|
- [埃隆·马斯克确认特斯拉与三星签署165亿美元芯片合同](https://www.cnbc.com/2025/07/28/samsung-electronics-new-chip-supply-contract.html)
|
||||||
|
埃隆·马斯克证实特斯拉已与三星电子签署价值165亿美元的芯片供应合同,推动三星股价上涨。
|
||||||
|
- [孟加拉国战斗机坠毁小学,至少31人死亡](https://www.bbc.com/news/articles/cp90d9mkz9xo)
|
||||||
|
一架战斗机在达卡坠毁,撞上了一所小学,造成至少31人死亡,其中许多是学童。
|
||||||
|
- [亚太市场涨跌互现,关注中美贸易谈判细节](https://www.cnbc.com/2025/07/28/asia-stock-markets-today-live-updates-nikkei-225-asx-200-kospi-hang-seng-csi-300-senxex-nifty-50.html)
|
||||||
|
投资者密切关注中美贸易谈判重启的消息(周一在斯德哥尔摩举行),导致亚太市场表现复杂。
|
||||||
|
- [美国一飞机起火,乘客紧急滑梯逃生](https://www.bbc.com/news/videos/cpwy8p72zr9o)
|
||||||
|
一架飞机在起飞时发生火灾,乘客利用紧急滑梯逃离,一人送医。
|
||||||
|
- [喀麦隆反对派领导人被禁止挑战世界最年长总统](https://www.bbc.com/news/articles/cdrklvd5jyjo)
|
||||||
|
喀麦隆反对派领导人莫里斯·卡姆托被禁止参加总统竞选,此前他曾在此前选举中位居92岁总统保罗·比亚之后。
|
||||||
|
- [本周全球市场展望:特朗普关税截止日期临近](https://www.cnbc.com/2025/07/28/cnbc-daily-open-a-week-when-everything-happens.html)
|
||||||
|
本周被市场观察者视为“奥运会”,因特朗普的关税截止日期(8月1日)临近,加上美欧贸易协议生效,预示着市场将迎来异常活跃的一周。
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
title: 2025-07-28-world-painting
|
||||||
|
created: 2025-07-28
|
||||||
|
updated: 2025-07-28
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "painting", "world"]
|
||||||
|
external: http://go/ui/posts/1012/
|
||||||
|
---
|
||||||
|
|
||||||
|
## 雾海上的漫游者
|
||||||
|
《雾海上的漫游者》是德国浪漫主义画家卡斯帕·大卫·弗里德里希于1818年创作的一幅著名画作。画面中,一位背对着观众的男子站在高耸的悬崖上,凝视着眼前被浓雾笼罩的山峦和天空。这幅画作以其深刻的象征意义而闻名,它描绘了人类在面对大自然时的渺小与崇高,以及对未知世界的探索和对内心世界的反思。这幅画可以引导孩子思考人与自然的关系,了解浪漫主义艺术的特点,并激发他们对风景画的兴趣。
|
||||||
|
|
||||||
|
名画URL : <https://www.nbfox.com/the-wanderer-above-the-sea-of-fog/>
|
||||||
|
搜索名画: <https://go.junv.cc/gi/雾海上的漫游者>
|
||||||
|
|
||||||
|
------
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: 2025-07-29-technology
|
||||||
|
created: 2025-07-29
|
||||||
|
updated: 2025-07-29
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "technology"]
|
||||||
|
external: http://go/ui/posts/1016/
|
||||||
|
---
|
||||||
|
|
||||||
|
**科技新闻摘要**
|
||||||
|
- [高中生击败全球顶尖AI模型](https://www.wsj.com/tech/ai/imo-gold-math-olympiad-google-deepmind-openai-2450095e?mod=rss_Technology)
|
||||||
|
美国高中生在国际数学奥林匹克竞赛中取得比Google DeepMind和OpenAI的AI模型更高的分数。
|
||||||
|
- [阿里巴巴推出AI智能眼镜,对标Meta](https://www.cnbc.com/2025/07/28/alibaba-ai-smart-glasses-creates-rival-to-meta.html)
|
||||||
|
阿里巴巴的Quark AI眼镜将搭载其Qwen大语言模型和Quark高级AI助手,旨在成为Meta的中国竞争对手。
|
||||||
|
- [华为重夺中国智能手机市场第一,苹果恢复增长](https://www.cnbc.com/2025/07/28/apple-returns-to-growth-in-china-huawei-reclaims-top-smartphone-spot.html)
|
||||||
|
数据显示,华为在中国智能手机市场重回榜首,苹果在该季度出货量同比增长4%。
|
||||||
|
- [马斯克证实特斯拉与三星签署165亿美元芯片合同](https://www.cnbc.com/2025/07/28/samsung-electronics-new-chip-supply-contract.html)
|
||||||
|
三星电子股价在公司披露与一家全球主要企业签订半导体供应合同后上涨3.5%。
|
||||||
|
- [Figma上调IPO发行价区间,估值近190亿美元](https://www.cnbc.com/2025/07/28/figma-raises-ipo-range-to-30-to-32-per-share.html)
|
||||||
|
Figma将IPO发行价区间上调至每股30-32美元,公司估值可能达到近190亿美元,但仍低于Adobe在2022年提出的收购价。
|
||||||
|
- [Firefly Aerospace设定IPO发行价区间,估值55亿美元](https://www.cnbc.com/2025/07/28/firefly-aerospace-ipo-space.html)
|
||||||
|
火箭制造商Firefly Aerospace预计其即将进行的IPO发行价为每股35-39美元,公司估值将达到约55亿美元。
|
||||||
|
- [瑞安·雷诺兹和格温妮丝·帕特洛帮助科技公司应对公关危机](https://www.wsj.com/business/media/astronomer-ad-gwyneth-paltrow-ryan-reynolds-570dd3e7?mod=rss_Technology)
|
||||||
|
好莱坞明星帮助一家因音乐会公关危机受困的科技公司摆脱困境。
|
||||||
|
- [MicroStrategy效仿者增多,加密市场投机热度升温](https://www.cnbc.com/2025/07/28/microstrategy-copycats-out-of-control-as-canadian-vape-company-joins-fray.html)
|
||||||
|
越来越多的公司效仿MicroStrategy购买加密货币,表明加密市场可能正在走向投机狂热。
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
title: 2025-07-29-chinese-painting
|
||||||
|
created: 2025-07-29
|
||||||
|
updated: 2025-07-29
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "china", "painting"]
|
||||||
|
external: http://go/ui/posts/1017/
|
||||||
|
---
|
||||||
|
|
||||||
|
## 秋庭戏婴图
|
||||||
|
《秋庭戏婴图》是宋代画家苏汉臣创作的一幅绢本设色画,现藏于台北故宫博物院。这幅画描绘了两个孩童在庭院中嬉戏的场景,笔触细腻,色彩鲜明,展现了宋代儿童丰富多彩的生活和温馨的家庭氛围。画中的孩童形象栩栩如生,表情生动,反映了中国传统文化中对子嗣的珍视和对童趣的欣赏,非常适合帮助孩子理解中国传统文化中的生活场景和人文情怀。
|
||||||
|
|
||||||
|
古画URL : <https://www.gaoqinghua.com/29780.html>
|
||||||
|
搜索古画: <https://go.junv.cc/gi/秋庭戏婴图>
|
||||||
|
|
||||||
|
------
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: 2025-07-29-victoria
|
||||||
|
created: 2025-07-29
|
||||||
|
updated: 2025-07-29
|
||||||
|
type: summary
|
||||||
|
tags: ["local_news", "newsletter"]
|
||||||
|
external: http://go/ui/posts/1018/
|
||||||
|
---
|
||||||
|
|
||||||
|
# 焦点新闻
|
||||||
|
- [以色列驻澳大使馆否认加沙饥荒指控](https://www.sbs.com.au/news/article/false-presentation-of-hunger-israels-embassy-in-australia-denies-starvation-in-gaza/otpcnkqun)
|
||||||
|
以色列政府否认加沙地带存在饥荒的报道,其驻堪培拉高级官员指责哈马斯散布“虚假叙述”。
|
||||||
|
- [阿尔伯特公园大奖赛区域公众禁入期将延长三倍](https://www.theage.com.au/national/victoria/public-lockout-at-albert-park-gp-precinct-set-to-triple-in-length-20250728-p5mi8h.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
根据维州政府提出的法律修改,一级方程式赛车区在赛事前后对公众的禁入期将从七天延长至三周。
|
||||||
|
- [原住民女性狱中死亡,婴儿被带离被指是“关键时刻”](https://www.theage.com.au/national/victoria/an-indigenous-woman-s-baby-was-taken-from-her-it-was-a-pivotal-moment-before-she-died-in-prison-20250728-p5miez.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
验尸官发现,原住民女性Heather Calgaret在被拘留期间的死亡本可避免,她的健康状况在婴儿出生后立即被带离身边后开始恶化。
|
||||||
|
- [澳大利亚能源账单上涨原因及应对措施](https://www.sbs.com.au/news/article/why-your-energy-bills-could-be-getting-higher-and-what-you-can-do-about-it/jofhpl9it)
|
||||||
|
能源费用持续上涨,对某些弱势群体影响尤为严重,他们常通过关闭供暖和制冷设备来节省开支。
|
||||||
|
- [联合国气候主管敦促澳大利亚采取行动应对气候排放](https://www.sbs.com.au/news/article/this-can-be-australias-moment-strong-message-from-un-climate-chief/jrjp3ytsp)
|
||||||
|
一位联合国高级官员表示,澳大利亚在减少气候排放方面已所剩时间不多,敦促其抓住“这一时刻”。
|
||||||
|
- [难民呼吁解决13年未决身份问题,称之为“澳大利亚最糟糕的政策”](https://www.sbs.com.au/news/article/australias-worst-policy-refugees-plead-with-government-to-resolve-their-13-year-limbo/503ffi758)
|
||||||
|
一群曾参与联盟党现已废止的“快速通道”项目的难民表示,他们仍在等待获得永久居留身份的安全保障。
|
||||||
|
- [银行将向低收入客户退还超9300万澳元](https://www.sbs.com.au/news/article/banks-to-refund-93-million-to-low-income-customers/nk4xrg1ah)
|
||||||
|
在对银行向低收入原住民客户收取高额费用进行审查后,澳大利亚金融市场监管机构发现“更广泛的问题”。
|
||||||
|
- [维州政府考虑征用现有税收以填补115亿澳元城铁环线资金缺口](https://www.theage.com.au/national/victoria/state-eyes-carve-out-of-existing-taxes-to-help-plug-11-5b-srl-funding-hole-20250727-p5mi5x.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
根据一项备受争议的提案,郊区铁路环线(SRL)车站附近物业的土地税和印花税款项将被纳入一个专项基金。
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
---
|
||||||
|
title: 2025-07-29-world_news
|
||||||
|
created: 2025-07-29
|
||||||
|
updated: 2025-07-29
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "world_news"]
|
||||||
|
external: http://go/ui/posts/1019/
|
||||||
|
---
|
||||||
|
|
||||||
|
# 全球新闻快报
|
||||||
|
|
||||||
|
- [南欧热浪加剧多地野火](https://www.bbc.com/news/videos/c23pk70mz13o?at_medium=RSS&at_campaign=rss)
|
||||||
|
希腊和土耳其等多国正与野火搏斗,欧洲南部气温飙升。
|
||||||
|
- [曼谷市场大规模枪击事件致五人死亡](https://www.bbc.com/news/articles/c9qyvx771neo?at_medium=RSS&at_campaign=rss)
|
||||||
|
泰国首都发生枪击事件,造成5人死亡。警方正在调查动机。
|
||||||
|
- [尼日利亚绑匪收赎金后仍杀害35名人质](https://www.bbc.com/news/articles/cm2vyw9prlzo?at_medium=RSS&at_campaign=rss)
|
||||||
|
当地官员称,尽管已支付赎金,35名人质仍被杀害。
|
||||||
|
- [厄瓜多尔酒吧遭枪手袭击致17人死亡](https://www.bbc.com/news/articles/c8jp7w43vvmo?at_medium=RSS&at_campaign=rss)
|
||||||
|
警方表示,一名12岁男孩是这个饱受毒品暴力困扰的国家最新一起大规模枪击事件的受害者之一。
|
||||||
|
- [特朗普称普京须在10至12天内同意乌克兰停火](https://www.bbc.com/news/articles/c707zrrd7xqo?at_medium=RSS&at_campaign=rss)
|
||||||
|
美国总统表示,在和平进展甚微的情况下,“没有理由”继续等待。
|
||||||
|
- [以色列人权组织指控以色列在加沙实施种族灭绝](https://www.bbc.com/news/articles/c776xkvz6vno?at_medium=RSS&at_campaign=rss)
|
||||||
|
以色列政府驳斥了B'Tselem和以色列人权医生组织在各自报告中的指控。
|
||||||
|
- [英伟达缺席上海重要AI大会,中国竞争对手抢占风头](https://www.cnbc.com/2025/07/28/nvidia-absent-at-major-china-ai-event-.html)
|
||||||
|
尽管英伟达曾希望再次向中国出售其不太先进的H20芯片,但该公司并未在周六于上海开幕的世界人工智能大会上设置展位。
|
||||||
|
- [欧洲对“不平衡”的美欧贸易协议表示不满](https://www.cnbc.com/2025/07/28/us-trade-deal-offers-initial-relief-leaves-europe-on-the-backfoot.html)
|
||||||
|
美欧周日宣布了一项贸易协议,其中包括15%的关税税率。
|
||||||
@@ -0,0 +1,44 @@
|
|||||||
|
---
|
||||||
|
title: 2024-12-07-victoria
|
||||||
|
created: 2024-12-07
|
||||||
|
updated: 2024-12-07
|
||||||
|
type: summary
|
||||||
|
tags: [[]]
|
||||||
|
external: http://go/ui/posts/102/
|
||||||
|
---
|
||||||
|
|
||||||
|
Here's the 8-item concise bulletin summary in Chinese and markdown format:
|
||||||
|
|
||||||
|
## 墨尔本和澳大利亚新闻简报
|
||||||
|
|
||||||
|
1. 🔥 **反犹太教堂纵火事件:反恐警察介入调查**
|
||||||
|
[链接](https://www.theage.com.au/national/victoria/in-the-wake-of-synagogue-attack-finger-pointing-and-grief-20241206-p5kwax.html)
|
||||||
|
墨尔本阿达斯以色列犹太教堂遭严重纵火,警方将以反恐方式调查这起被广泛谴责的反犹太主义袭击事件。
|
||||||
|
|
||||||
|
2. 💣 **青少年策划大规模谋杀,法庭拒绝保释**
|
||||||
|
[链接](https://www.theage.com.au/national/victoria/teen-accused-of-plotting-mass-murder-too-dangerous-to-be-released-on-bail-20241206-p5kwfo.html)
|
||||||
|
法庭认为该青少年囤积武器和爆炸物,存在导致"灾难性后果"的高风险,拒绝其保释。
|
||||||
|
|
||||||
|
3. 😢 **悼念拉奥斯假期悲剧:比安卡·琼斯获千人告别**
|
||||||
|
[链接](https://www.theage.com.au/national/victoria/grief-disbelief-and-a-shout-of-colour-bianca-jones-farewelled-after-laos-holiday-tragedy-20241206-p5kwgv.html)
|
||||||
|
逾1000人穿着鲜艳色彩,在墨尔本19岁女孩的前高中为她举行生命庆祝仪式。
|
||||||
|
|
||||||
|
4. 💸 **澳大利亚圣诞礼物浪费问题:价值10亿澳元**
|
||||||
|
[链接](https://www.sbs.com.au/news/article/a-1-billion-throwaway-christmas-problem-and-what-australians-think-of-gifts/lof5d4bn3)
|
||||||
|
超过四分之一的澳大利亚人将收到永远不会使用的节日礼物。
|
||||||
|
|
||||||
|
5. 🏦 **金融服务业隐藏的经济问题:财务滥用**
|
||||||
|
[链接](https://www.sbs.com.au/news/article/the-hidden-epidemic-impacting-millions-and-how-banks-and-super-funds-can-help/m71l9njf5)
|
||||||
|
联邦议会调查发现金融服务业存在广泛的财务虐待问题。
|
||||||
|
|
||||||
|
6. 🎉 **亿万富翁派对:阿德里安·波尔特利通宵狂欢**
|
||||||
|
[链接](https://www.theage.com.au/national/victoria/lambo-guy-adrian-portelli-s-light-party-keeps-the-city-awake-20241206-p5kwdx.html)
|
||||||
|
billionaire在penthouse举办激光灯光派对,惊扰墨尔本市民。
|
||||||
|
|
||||||
|
7. 📚 **墨尔本NAPLAN高绩效学校排名**
|
||||||
|
[链接](https://www.theage.com.au/national/victoria/the-high-performing-naplan-schools-in-your-area-20241206-p5kwcv.html)
|
||||||
|
奥克利南小学从濒临关闭到成为consistently强劲的教育机构。
|
||||||
|
|
||||||
|
8. 🏛️ **政治评论:阿尔巴尼斯领导力讨论**
|
||||||
|
[链接](https://www.theage.com.au/national/victoria/wave-of-hope-largely-lost-in-undertow-of-shortcomings-20241206-p5kwh0.html)
|
||||||
|
读者就澳大利亚总理的领导风格展开讨论。
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
title: 2025-07-29-world-painting
|
||||||
|
created: 2025-07-29
|
||||||
|
updated: 2025-07-29
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "painting", "world"]
|
||||||
|
external: http://go/ui/posts/1020/
|
||||||
|
---
|
||||||
|
|
||||||
|
## 梅杜莎之筏
|
||||||
|
《梅杜莎之筏》是法国浪漫主义画家西奥多·籍里柯于1819年创作的巨幅油画。这幅画描绘了法国海军“梅杜莎”号巡防舰在1816年于西非海岸触礁沉没后,幸存者们在一艘临时木筏上漂流的悲惨场景。画作以其强烈的戏剧性、生动的人物表情和构图,展现了人类在绝望中挣扎求生的力量,同时也揭露了当时政府的腐败和无能。这幅画不仅是浪漫主义艺术的代表作,更是一部具有深刻社会批判意义的杰作,非常适合引导孩子思考人性和历史事件。
|
||||||
|
|
||||||
|
名画URL : <https://www.nbfox.com/the-raft-of-the-medusa/>
|
||||||
|
搜索名画: <https://go.junv.cc/gi/梅杜莎之筏>
|
||||||
|
|
||||||
|
------
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: 2025-07-30-technology
|
||||||
|
created: 2025-07-30
|
||||||
|
updated: 2025-07-30
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "technology"]
|
||||||
|
external: http://go/ui/posts/1022/
|
||||||
|
---
|
||||||
|
|
||||||
|
**科技新闻**
|
||||||
|
- [AI热潮引发电力成本分摊争议](https://www.wsj.com/business/energy-oil/ai-data-center-power-costs-bbfcd862?mod=rss_Technology)
|
||||||
|
随着AI热潮推动数据中心建设,科技公司与公用事业公司就不断飙升的电力成本分摊问题产生分歧。
|
||||||
|
- [Cadence Design Systems承认违规出口,将支付1.406亿美元](https://www.wsj.com/business/earnings/cadence-design-systems-ups-outlook-amid-increasing-ai-demand-f6782414?mod=rss_Technology)
|
||||||
|
Cadence Design Systems承认违反出口规定,将支付1.406亿美元罚款,涉及非法向中国出口产品。
|
||||||
|
- [印度在对美智能手机出口方面超越中国](https://www.cnbc.com/2025/07/29/india-surpasses-chinese-smartphone-shipments-to-us.html)
|
||||||
|
报告显示,印度在对美智能手机出口方面超越中国,其制造业产量激增240%,第二季度占美国进口总额的44%。
|
||||||
|
- [欧洲斥巨资建设“千兆瓦”AI工厂](https://www.cnbc.com/2025/07/29/europe-sets-its-sights-on-multi-billion-euro-gigawatt-ai-factories.html)
|
||||||
|
为追赶AI领域,欧洲计划投资数十亿欧元建设“千兆瓦工厂”,预计将使其总计算能力增加15%。
|
||||||
|
- [Meta在AI上的巨额投入成华尔街关注焦点](https://www.cnbc.com/2025/07/29/meta-ai-q2-earnings.html)
|
||||||
|
Meta首席执行官马克·扎克伯格在AI领域的招聘扩张将成为投资者关注第二季度财报的焦点。
|
||||||
|
- [稀土作为中国贸易战筹码,美国力求解决依赖问题](https://www.cnbc.com/2025/07/29/rare-earths-china-bargaining-chip-trade-war-us.html)
|
||||||
|
中国在全球稀土开采和加工中占据主导地位,美国正通过投资国内供应链,试图减少对中国的稀土依赖。
|
||||||
|
- [Waymo计划2026年将机器人出租车服务引入达拉斯](https://www.cnbc.com/2025/07/28/waymo-plans-to-bring-its-robotaxi-service-to-dallas-in-2026.html)
|
||||||
|
Waymo宣布计划于2026年在达拉斯推出其自动驾驶出租车服务,并与Avis合作进行车队管理。
|
||||||
|
- [苹果高估值驱动力——服务业务面临威胁](https://www.wsj.com/tech/apple-stock-service-value-growth-analysis-f265a5e7?mod=rss_Technology)
|
||||||
|
本周苹果财报预计将更新其利润丰厚的服务业务情况,该业务是iPhone制造商估值飙升的主要驱动力。
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
title: 2025-07-30-chinese-painting
|
||||||
|
created: 2025-07-30
|
||||||
|
updated: 2025-07-30
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "china", "painting"]
|
||||||
|
external: http://go/ui/posts/1023/
|
||||||
|
---
|
||||||
|
|
||||||
|
## 清院本清明上河图
|
||||||
|
《清院本清明上河图》是清乾隆元年(1736年)由清宫画院画家陈枚、孙祜、金昆、戴洪、程志道奉敕合绘的清代版本《清明上河图》。此版本在承袭宋本《清明上河图》的基础上,融入了清代的城市风貌、建筑、人物服饰、生活习俗等元素,并加入了西式建筑和西洋画法,使得画面内容更加丰富,色彩也更为华丽。它展现了清代盛世时期京城繁华的景象,是研究清代社会生活的重要图像资料。
|
||||||
|
|
||||||
|
古画URL : https://www.dpm.org.cn/collection/paint/258169.html
|
||||||
|
搜索古画: https://go.junv.cc/gi/清院本清明上河图
|
||||||
|
|
||||||
|
------
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
---
|
||||||
|
title: 2025-07-30-world_news
|
||||||
|
created: 2025-07-30
|
||||||
|
updated: 2025-07-30
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "world_news"]
|
||||||
|
external: http://go/ui/posts/1024/
|
||||||
|
---
|
||||||
|
|
||||||
|
# 世界要闻速览
|
||||||
|
|
||||||
|
- [泰国指责柬埔寨违反停火协议,柬方否认](https://www.bbc.com/news/articles/cly4l7j3e8zo)
|
||||||
|
泰国称柬埔寨违反停火数小时的协议,而柬埔寨则表示午夜停火后双方未发生武装冲突。
|
||||||
|
- [欧盟-美国贸易协议引关注,英国或成意外赢家](https://www.cnbc.com/2025/07/29/the-eu-us-trade-deal-could-have-one-unexpected-winner-the-uk.html)
|
||||||
|
欧盟与美国间的贸易协议引发疑虑,但英国可能成为意外受益者;同时,制药巨头呼吁明确关税政策以确保协议顺利。
|
||||||
|
- [北京洪灾致30人死亡,中国面临极端天气挑战](https://www.bbc.com/news/articles/cg7j8x3xnrko)
|
||||||
|
持续强降雨导致北京洪灾,至少30人死亡,凸显中国今夏极端天气严峻。
|
||||||
|
- [尼日利亚绑匪在收到赎金后仍杀害35名人质](https://www.bbc.com/news/articles/cm2vyw9prlzo)
|
||||||
|
当地官员称,尼日利亚绑匪在收到赎金后,仍残忍杀害了35名人质。
|
||||||
|
- [特朗普称全球贸易协议将于周五完成,但对华协议或需更久](https://www.cnbc.com/2025/07/29/trump-trade-tariffs-china-lutnick.html)
|
||||||
|
一位贸易官员表示,特朗普总统追求对美更有利条款,预计全球贸易协议将很快敲定,但与中国的谈判将耗时更长。
|
||||||
|
- [联合国专家警告加沙地带“正在发生”饥荒](https://www.bbc.com/news/articles/cvgvxgl5zxpo)
|
||||||
|
联合国支持的专家警告,加沙地带目前正面临饥荒,援助机构称以色列近期增加援助的措施仍不足够。
|
||||||
|
- [英国计划承认巴勒斯坦国,或成英外交政策重大转变](https://www.bbc.com/news/videos/cdxyvndz4gjo)
|
||||||
|
英国首相表示,除非以色列采取实质性措施结束加沙局势,否则英国将于9月承认巴勒斯坦国。
|
||||||
|
- [教宗:人工智能发展须保护人类尊严](https://www.bbc.com/news/articles/cj4wv9xvr4zo)
|
||||||
|
教宗在梵蒂冈首次为社交媒体影响者举行的弥撒中,警告新兴技术可能带来的伦理挑战。
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
title: 2025-07-30-world-painting
|
||||||
|
created: 2025-07-30
|
||||||
|
updated: 2025-07-30
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "painting", "world"]
|
||||||
|
external: http://go/ui/posts/1025/
|
||||||
|
---
|
||||||
|
|
||||||
|
## 吃土豆的人
|
||||||
|
《吃土豆的人》是荷兰后印象派画家文森特·梵高在1885年创作的油画。这幅画描绘了荷兰农民家庭在昏暗的灯光下围坐在一起,分享他们简单的一餐——土豆。梵高希望通过这幅画,展现农民的真实生活和他们通过辛勤劳动获得食物的朴实。这幅画的色彩运用和人物描绘,都体现了梵高早期作品的写实风格,以及他对普通劳动人民的同情和关注。通过这幅画,你的孩子可以了解到19世纪荷兰农民的生活状态,以及梵高如何用艺术表达对底层人民的关怀,同时也能观察到光影和色彩在绘画中的运用。
|
||||||
|
|
||||||
|
名画URL : <https://artsandculture.google.com/asset/the-potato-eaters-vincent-van-gogh/rQE6qmf9oVuKPA?hl=en>
|
||||||
|
搜索名画: <https://go.junv.cc/gi/吃土豆的人>
|
||||||
|
|
||||||
|
------
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: 2025-07-31-technology
|
||||||
|
created: 2025-07-31
|
||||||
|
updated: 2025-07-31
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "technology"]
|
||||||
|
external: http://go/ui/posts/1026/
|
||||||
|
---
|
||||||
|
|
||||||
|
** 科技新闻**
|
||||||
|
- [印度智能手机对美出口量超越中国](https://www.cnbc.com/2025/07/29/india-surpasses-chinese-smartphone-shipments-to-us.html)
|
||||||
|
报告显示,印度制造的智能手机在第二季度占美国进口量的44%,较去年同期显著增长240%。
|
||||||
|
- [中国积极备战与美国的AI竞赛](https://www.wsj.com/tech/ai/how-china-is-girding-for-an-ai-battle-with-the-u-s-5b23af51?mod=rss_Technology)
|
||||||
|
面对华盛顿的限制,北京正加大投入建设不依赖美国技术的人工智能生态系统。
|
||||||
|
- [LG新能源签署43亿美元电池供应协议](https://www.cnbc.com/2025/07/30/lg-energy-solution-signs-battery-supply-deal.html)
|
||||||
|
韩国LG新能源公司与未知方签署了一项价值43亿美元的电池供应协议,合同期限最长可延长七年。
|
||||||
|
- [AI金融应用Ramp融资后估值达225亿美元](https://www.wsj.com/articles/ai-finance-app-ramp-is-valued-at-22-5-billion-in-funding-round-5a4269cb?mod=rss_Technology)
|
||||||
|
Ramp在最新一轮融资中筹集5亿美元,用于进一步开发基于AI的代理,估值达到225亿美元。
|
||||||
|
- [华尔街施压苹果,要求明确AI战略](https://www.cnbc.com/2025/07/30/apple-ai-hardware-devices.html)
|
||||||
|
分析师开始质疑苹果在核心业务受影响前,还有多少时间来制定其人工智能战略。
|
||||||
|
- [iPhone制造商富士康进军万亿美元AI数据中心市场](https://www.cnbc.com/2025/07/30/iphone-maker-foxconn-makes-a-major-play-for-the-ai-data-center.html)
|
||||||
|
富士康通过股份互换方式持有TECO 10%股权,将专注于在全球(包括美国)建设数据中心。
|
||||||
|
- [Palo Alto Networks宣布250亿美元收购CyberArk后股价下跌](https://www.cnbc.com/2025/07/30/palo-alto-networks-cyberark-deal.html)
|
||||||
|
网络安全巨头Palo Alto Networks宣布以250亿美元收购以色列网络安全提供商CyberArk。
|
||||||
|
- [Meta旗下Reality Labs第二季度亏损45.3亿美元](https://www.cnbc.com/2025/07/30/metas-reality-labs-second-quarter-2025.html)
|
||||||
|
Meta公司负责元宇宙业务的Reality Labs在第二季度报告了45.3亿美元的运营亏损。
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
title: 2025-07-31-chinese-painting
|
||||||
|
created: 2025-07-31
|
||||||
|
updated: 2025-07-31
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "china", "painting"]
|
||||||
|
external: http://go/ui/posts/1027/
|
||||||
|
---
|
||||||
|
|
||||||
|
## 柳鸦芦雁图
|
||||||
|
《柳鸦芦雁图》是宋徽宗赵佶的代表作之一,画卷分为两段,前段绘柳树与乌鸦,后段绘芦苇与大雁。宋徽宗以其独特的“瘦金体”书法题写画名,画中柳鸦飞舞,芦雁憩息,构图精巧,意境深远。这幅画展现了宋代花鸟画的极致,体现了宋徽宗对自然细致入微的观察和精湛的绘画技艺。通过这幅画,您的孩子可以领略中国古代花鸟画的魅力,感受宋代文人雅士的生活情趣,并了解宋徽宗这位皇帝艺术家的非凡才华。
|
||||||
|
|
||||||
|
古画URL : <https://www.jiguzuo.com/guohua/zhao-ji-liu-ya-lu-yan-tu.html>
|
||||||
|
搜索古画: <https://go.junv.cc/gi/柳鸦芦雁图>
|
||||||
|
|
||||||
|
------
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: 2025-07-31-victoria
|
||||||
|
created: 2025-07-31
|
||||||
|
updated: 2025-07-31
|
||||||
|
type: summary
|
||||||
|
tags: ["local_news", "newsletter"]
|
||||||
|
external: http://go/ui/posts/1028/
|
||||||
|
---
|
||||||
|
|
||||||
|
# 大新闻
|
||||||
|
- [澳洲各地巴勒斯坦声援活动持续,总理呼吁理性,警方拟阻悉尼海港大桥游行](https://www.theage.com.au/national/victoria/premier-labels-pro-palestine-protesters-who-rallied-at-ngv-extremists-and-antisemitic-20250729-p5mil1.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
维州州长谴责墨尔本国家美术馆(NGV)外的亲巴勒斯坦抗议者为“极端分子”和“反犹太主义者”,而警方计划阻止悉尼海港大桥的游行。同时,澳大利亚国内要求政府效仿英国,承认巴勒斯坦国。
|
||||||
|
- [托儿机构被指存在“掩盖文化”,或将儿童安全置于风险](https://www.theage.com.au/national/victoria/staff-accuse-childcare-chains-of-culture-of-cover-ups-20250729-p5mipb.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
内部文件显示,大型托儿连锁机构Affinity被指引员工在通知警方儿童安全指控前,优先考虑声誉受损。
|
||||||
|
- [墨尔本亚拉河谷男子持刀袭姐,遭警方击毙](https://www.theage.com.au/national/victoria/man-shot-dead-by-police-after-confrontation-in-melbourne-s-outer-east-20250730-p5mj40.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
一名男子在亚拉河谷家中持剑袭击并勒住其妹妹,警方介入后将其击毙,其妹妹受重伤。
|
||||||
|
- [澳外交部会见以色列大使,回应否认加沙饥荒言论](https://www.sbs.com.au/news/article/dfat-meets-with-israels-ambassador-after-statements-denying-starvation-in-gaza/92v8ersbv)
|
||||||
|
澳大利亚外交贸易部会见以色列大使,此前以色列使团副团长否认加沙存在饥荒的言论,被澳洲总理阿尔巴尼斯斥为“不可理喻”。
|
||||||
|
- [澳政府推行青少年社交媒体禁令,YouTube称“并非社交媒体”](https://www.sbs.com.au/news/article/youtube-will-be-included-in-the-under-16s-social-media-ban/vez5w8g0a)
|
||||||
|
随着联邦政府针对16岁以下青少年的社交媒体禁令生效,YouTube辩称其不属于社交媒体平台,但政府强调不会妥协。
|
||||||
|
- [住房压力影响墨尔本生育率,部分城郊出生率最低](https://www.theage.com.au/national/victoria/the-lowest-and-highest-birth-rates-in-melbourne-by-suburb-20250724-p5mheu.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
新分析显示,除少数最经济实惠的城郊外,住房压力可能导致墨尔本人一生中生育的孩子数量减少。
|
||||||
|
- [维州学生NAPLAN成绩显著提升,全国整体表现停滞](https://www.theage.com.au/national/victoria/victorian-kids-the-bright-sparks-as-naplan-fails-to-shine-20250728-p5mifi.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
在全国NAPLAN基准测试结果停滞不前的情况下,维多利亚州学生表现出显著进步。
|
||||||
|
- [墨尔本两律师因涉嫌向法庭撒谎将受审](https://www.theage.com.au/national/victoria/make-up-a-reason-melbourne-lawyers-to-stand-trial-over-alleged-lies-to-court-20250729-p5milh.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
两名墨尔本律师被指控就客户缺席法庭一事编造车祸理由,将面临审判。
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
---
|
||||||
|
title: 2025-07-31-world_news
|
||||||
|
created: 2025-07-31
|
||||||
|
updated: 2025-07-31
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "world_news"]
|
||||||
|
external: http://go/ui/posts/1029/
|
||||||
|
---
|
||||||
|
|
||||||
|
# 全球要闻速览
|
||||||
|
|
||||||
|
- [Meta宣布AI投入将持续至2026年,以应对日益激烈的市场竞争](https://www.cnbc.com/2025/07/30/metas-big-ai-spending-blitz-will-continue-into-2026-.html)
|
||||||
|
Meta首席执行官马克·扎克伯格表示,公司将把人工智能方面的巨额投入持续到明年,以效仿其他科技巨头。
|
||||||
|
- [美国与韩国达成贸易协议,对韩关税降至15%](https://www.cnbc.com/2025/07/31/trump-announces-trade-deal-with-south-korea-setting-tariffs-at-15percent.html)
|
||||||
|
根据该协议,对韩国的关税将从此前特朗普威胁的25%降至15%。
|
||||||
|
- [中国7月制造业活动连续第四个月收缩,降幅超预期](https://www.cnbc.com/2025/07/31/chinas-july-manufacturing-activity-contracts-more-than-expected-fourth-straight-month-of-dec.html)
|
||||||
|
中国7月份官方制造业采购经理指数(PMI)为49.3,低于路透社调查预测的49.7。
|
||||||
|
- [Meta和微软业绩超预期后,标普500指数期货上涨](https://www.cnbc.com/2025/07/30/stock-market-today-live-updates.html)
|
||||||
|
科技巨头Meta Platforms和微软周三下午公布了强劲的季度业绩,两家公司股价在盘后交易中均大幅上涨。
|
||||||
|
- [三星利润腰斩,芯片业务暴跌94%不及预期](https://www.cnbc.com/2025/07/31/samsung-second-quarter-profit-halves-missing-expectations.html)
|
||||||
|
三星电子第二季度营业利润不及预期,较去年同期腰斩。
|
||||||
|
- [美国对印度征收高额关税,新德里未急于与华盛顿达成协议](https://www.cnbc.com/2025/07/25/india-under-pressure-to-seal-trade-deal-with-us-as-deadline-looms.html)
|
||||||
|
美国总统唐纳德·特朗普周三宣布对从印度进口的商品征收25%的关税。
|
||||||
|
- [加沙民防部称至少30人在等待援助时被以色列火力打死](https://www.bbc.com/news/articles/c74d82pdxjzo?at_medium=RSS&at_campaign=rss)
|
||||||
|
以色列表示正在调查此事,但“不清楚”是否有以色列枪击造成的伤亡。
|
||||||
|
- [乌克兰官员称俄罗斯袭击基辅造成至少6人死亡、50多人受伤](https://www.bbc.com/news/articles/ce930z8g9mvo?at_medium=RSS&at_campaign=rss)
|
||||||
|
俄罗斯的无人机和导弹袭击在基辅造成了20多个地点的破坏。
|
||||||
@@ -0,0 +1,49 @@
|
|||||||
|
---
|
||||||
|
title: 2024-12-07-world_news
|
||||||
|
created: 2024-12-07
|
||||||
|
updated: 2024-12-07
|
||||||
|
type: summary
|
||||||
|
tags: [[]]
|
||||||
|
external: http://go/ui/posts/103/
|
||||||
|
---
|
||||||
|
|
||||||
|
## 八条世界新闻简报 (Eight World News Headlines)
|
||||||
|
|
||||||
|
**简体中文 (Simplified Chinese):**
|
||||||
|
|
||||||
|
1. **罗马尼亚总统选举结果被推翻:** 罗马尼亚最高法院宣布总统选举第一轮结果无效,需重新举行选举。[cnbc链接](https://www.cnbc.com/2024/12/06/romanian-top-court-annuls-presidential-election-result.html)
|
||||||
|
|
||||||
|
2. **OPEC+延迟增产:** OPEC+成员国决定将石油减产措施延长至4月份,以应对全球需求和地缘政治不确定性。[cnbc链接](https://www.cnbc.com/2024/12/06/opec-oil-output-delay-a-reality-check-as-group-eyes-demand-saudi.html) (包含多个重复新闻的合并)
|
||||||
|
|
||||||
|
3. **印度经济增长预期下调:** 印度央行下调2025年经济增长预期,但维持利率不变。[cnbc链接](https://www.cnbc.com/2024/12/06/india-keeps-interest-rate-unchanged-amid-rising-inflation-risks-and-a-slowing-economy-.html)
|
||||||
|
|
||||||
|
4. **特朗普任命新中国大使:** 美国候任总统特朗普选择前参议员大卫·珀杜担任驻华大使。[cnbc链接](https://www.cnbc.com/2024/12/06/trump-picks-former-senator-david-perdue-to-be-ambassador-to-china.html)
|
||||||
|
|
||||||
|
5. **叙利亚哈马市前总统雕像被推倒:** 反对派称已完全控制哈马市,并推倒了前总统的雕像。[bbc链接](https://www.bbc.com/news/videos/cgm9vkl743jo)
|
||||||
|
|
||||||
|
6. **UniCredit 或将展开双重并购:** UniCredit首席执行官安德烈亚·奥塞尔可能同时进行国内外两项大型并购。[cnbc链接](https://www.cnbc.com/2024/12/06/unicredits-orcel-could-still-sweeten-his-bid-and-take-on-a-double-ma-offensive.html) (包含多个重复新闻的合并)
|
||||||
|
|
||||||
|
7. **印度教徒抗议迫使穆斯林夫妇出售房屋:** 印度一起因邻里纠纷引发的抗议事件引发巨大争议。[bbc链接](https://www.bbc.com/news/articles/cp837p125ywo)
|
||||||
|
|
||||||
|
8. **Lizzo性骚扰案撤诉:** 法官裁定歌手Lizzo无需以个人身份承担诉讼责任。[bbc链接](https://www.bbc.com/news/articles/cvgnwynejd5o)
|
||||||
|
|
||||||
|
|
||||||
|
**Markdown Format:**
|
||||||
|
|
||||||
|
# 八条世界新闻简报 (Eight World News Headlines)
|
||||||
|
|
||||||
|
1. **罗马尼亚总统选举结果被推翻 (Romania's Presidential Election Result Overturned):** 罗马尼亚最高法院宣布总统选举第一轮结果无效,需重新举行选举。 [cnbc link](https://www.cnbc.com/2024/12/06/romanian-top-court-annuls-presidential-election-result.html)
|
||||||
|
|
||||||
|
2. **OPEC+延迟增产 (OPEC+ Delays Oil Production Increase):** OPEC+成员国决定将石油减产措施延长至4月份,以应对全球需求和地缘政治不确定性。(Merges multiple similar news items) [cnbc link](https://www.cnbc.com/2024/12/06/opec-oil-output-delay-a-reality-check-as-group-eyes-demand-saudi.html)
|
||||||
|
|
||||||
|
3. **印度经济增长预期下调 (India's Economic Growth Forecast Revised Down):** 印度央行下调2025年经济增长预期,但维持利率不变。 [cnbc link](https://www.cnbc.com/2024/12/06/india-keeps-interest-rate-unchanged-amid-rising-inflation-risks-and-a-slowing-economy-.html)
|
||||||
|
|
||||||
|
4. **特朗普任命新中国大使 (Trump Appoints New Ambassador to China):** 美国候任总统特朗普选择前参议员大卫·珀杜担任驻华大使。 [cnbc link](https://www.cnbc.com/2024/12/06/trump-picks-former-senator-david-perdue-to-be-ambassador-to-china.html)
|
||||||
|
|
||||||
|
5. **叙利亚哈马市前总统雕像被推倒 (Statue of Former Syrian President Toppled in Hama):** 反对派称已完全控制哈马市,并推倒了前总统的雕像。 [bbc link](https://www.bbc.com/news/videos/cgm9vkl743jo)
|
||||||
|
|
||||||
|
6. **UniCredit 或将展开双重并购 (UniCredit Could Undertake Double M&A Offensive):** UniCredit首席执行官安德烈亚·奥塞尔可能同时进行国内外两项大型并购。(Merges multiple similar news items) [cnbc link](https://www.cnbc.com/2024/12/06/unicredits-orcel-could-still-sweeten-his-bid-and-take-on-a-double-ma-offensive.html)
|
||||||
|
|
||||||
|
7. **印度教徒抗议迫使穆斯林夫妇出售房屋 (Hindu Protests Force Muslim Couple to Sell House):** 印度一起因邻里纠纷引发的抗议事件引发巨大争议。 [bbc link](https://www.bbc.com/news/articles/cp837p125ywo)
|
||||||
|
|
||||||
|
8. **Lizzo性骚扰案撤诉 (Harassment Case Against Lizzo Dropped):** 法官裁定歌手Lizzo无需以个人身份承担诉讼责任。 [bbc link](https://www.bbc.com/news/articles/cvgnwynejd5o)
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: 2025-07-31-world-painting
|
||||||
|
created: 2025-07-31
|
||||||
|
updated: 2025-07-31
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "painting", "world"]
|
||||||
|
external: http://go/ui/posts/1030/
|
||||||
|
---
|
||||||
|
|
||||||
|
《1808年5月3日的枪杀》是一幅由西班牙画家弗朗西斯科·戈雅创作的油画,完成于1814年。这幅画描绘了1808年5月3日,拿破仑军队占领马德里后,对西班牙起义者进行大规模处决的场景。画中,一名身穿白衣的男子高举双臂,面对着荷枪实弹的法国士兵,他的表情充满了恐惧和绝望,而他身旁和身下是已经倒下的受害者。画作通过强烈的对比和戏剧性的光影效果,揭示了战争的残酷和人性的光辉。
|
||||||
|
|
||||||
|
这幅画对于8岁的孩子来说,具有以下几个方面的教育意义:
|
||||||
|
|
||||||
|
* **历史知识**:让孩子了解欧洲历史上的拿破仑战争,以及西班牙人民反抗侵略的英勇斗争。
|
||||||
|
* **艺术表现**:通过画作的构图、色彩、光影和人物表情,让孩子感受艺术是如何表达情感和记录历史的。可以引导孩子观察画中白衣男子的姿势和表情,以及周围士兵的冷酷无情。
|
||||||
|
* **人文关怀**:这幅画能够启发孩子对生命、和平的思考,理解战争带来的痛苦和伤害,培养他们的同情心和对正义的追求。
|
||||||
|
* **绘画技巧**:虽然是名画,但其强烈的对比和清晰的人物形象,可以激发孩子对绘画的兴趣,尝试用画笔表达自己的感受。
|
||||||
|
|
||||||
|
以下是《1808年5月3日的枪杀》的详细信息:
|
||||||
|
|
||||||
|
## 1808年5月3日的枪杀
|
||||||
|
这幅画由西班牙画家弗朗西斯科·戈雅创作,描绘了西班牙人民在抵抗拿破仑侵略时,起义者被法国军队残酷枪杀的场景。这幅画不仅展现了历史事件的残酷性,也表达了画家对战争暴力的谴责和对受害者的同情。通过这幅画,孩子们可以了解到历史事件、战争的残酷以及艺术如何表达情感和记录历史。画中光线和人物的姿态都非常具有表现力,可以引导孩子观察艺术家的构图和色彩运用。
|
||||||
|
名画URL : <https://zh.wikipedia.org/zh-hans/File:El_Tres_de_Mayo,_by_Francisco_de_Goya,_from_Prado_thin_black_margin.jpg>
|
||||||
|
搜索名画: <https://go.junv.cc/gi/1808年5月3日的枪杀>
|
||||||
|
|
||||||
|
------
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-01-technology
|
||||||
|
created: 2025-08-01
|
||||||
|
updated: 2025-08-01
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "technology"]
|
||||||
|
external: http://go/ui/posts/1031/
|
||||||
|
---
|
||||||
|
|
||||||
|
** 科技新闻速览**
|
||||||
|
- [微软市值突破4万亿美元,Azure云营收强劲](https://www.wsj.com/tech/ai/microsoft-just-became-the-worlds-second-4-trillion-company-60592a04?mod=rss_Technology)
|
||||||
|
微软在发布超预期财报后,市值首次达到4万亿美元,其Azure云业务年收入突破750亿美元,凸显了AI驱动的强劲增长。
|
||||||
|
- [Meta AI巨额投入将持续至2026年](https://www.cnbc.com/2025/07/30/metas-big-ai-spending-blitz-will-continue-into-2026-.html)
|
||||||
|
Meta CEO扎克伯格表示,公司在人工智能领域的巨额支出将延续到明年,以应对日益激烈的竞争。
|
||||||
|
- [英伟达H20 AI芯片在华面临安全审查](https://www.wsj.com/tech/chinas-cybersecurity-regulator-summons-nvidia-over-chip-security-issue-23293fe7?mod=rss_Technology)
|
||||||
|
中国网络安全监管机构召见英伟达,要求解释其H20芯片在华销售相关的“后门安全风险”并提交相关文件。
|
||||||
|
- [OpenAI领衔欧洲大型AI数据中心,将配备10万枚英伟达芯片](https://www.cnbc.com/2025/07/31/openai-backs-ai-data-center-in-norway-with-100000-nvidia-gpus.html)
|
||||||
|
OpenAI宣布支持在挪威建设一座大型AI数据中心,该中心由Nscale和Aker设计建造,预计将容纳10万枚英伟达GPU。
|
||||||
|
- [三星利润腰斩不及预期,芯片业务暴跌94%](https://www.cnbc.com/2025/07/31/samsung-second-quarter-profit-halves-missing-expectations.html)
|
||||||
|
三星电子第二季度营业利润不及预期,同比缩水一半以上,其中芯片业务利润骤降94%。
|
||||||
|
- [英国监管机构:微软和亚马逊损害云市场竞争](https://www.cnbc.com/2025/07/31/uk-cma-cloud-ruling-microsoft-amazon.html)
|
||||||
|
英国竞争监管机构发现微软和亚马逊在云市场的主导地位可能损害竞争,呼吁进行深入调查。
|
||||||
|
- [科技巨头修订受审视的AI产品宣传词](https://www.wsj.com/articles/tech-giants-are-revising-ai-product-claims-that-faced-scrutiny-69f8671e?mod=rss_Technology)
|
||||||
|
面对广告行业组织的审查,苹果、谷歌、微软和三星等科技巨头正在修改其AI产品营销材料,以确保消费者能更好地评估相关主张。
|
||||||
|
- [Arm股价下跌,智能手机版税收入未达预期](https://www.cnbc.com/2025/07/30/arm-stock-q1-earnings.html)
|
||||||
|
Arm公司公布的营收未达分析师预期,主要是受到智能手机版税收入表现令人失望的影响,导致股价下滑。
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-01-chinese-painting
|
||||||
|
created: 2025-08-01
|
||||||
|
updated: 2025-08-01
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "china", "painting"]
|
||||||
|
external: http://go/ui/posts/1032/
|
||||||
|
---
|
||||||
|
|
||||||
|
## 写生蛱蝶图
|
||||||
|
《写生蛱蝶图》是北宋著名画家赵昌的代表作,赵昌以其精湛的“写生”技艺而闻名,人称“写生赵昌”。这幅画描绘了秋天野外花草与蝴蝶、蚱蜢等昆虫的生动景象。画中蛱蝶的翅膀薄如蝉翼,花纹绚丽,细致入微的刻画展现了画家高超的写生功底。这幅画不仅展现了中国古代花鸟画的精髓,也能让孩子观察到大自然中小昆虫的细微之处,培养他对自然的热爱和对艺术的欣赏。
|
||||||
|
|
||||||
|
古画URL : <https://www.dpm.org.cn/collection/paint/230459.html>
|
||||||
|
搜索古画: <https://go.junv.cc/gi/写生蛱蝶图>
|
||||||
|
|
||||||
|
------
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-01-victoria
|
||||||
|
created: 2025-08-01
|
||||||
|
updated: 2025-08-01
|
||||||
|
type: summary
|
||||||
|
tags: ["local_news", "newsletter"]
|
||||||
|
external: http://go/ui/posts/1033/
|
||||||
|
---
|
||||||
|
|
||||||
|
# 突发新闻
|
||||||
|
- [工党学生债务减免方案已通过,何时生效?](https://www.sbs.com.au/news/article/labor-has-passed-its-student-debt-cut-when-will-you-see-the-changes/73zlarrnq)
|
||||||
|
工党兑现了对年轻澳大利亚人的关键选举承诺,作为首要任务通过了学生债务减免法案。
|
||||||
|
- [ASIO局长警告国际间谍活动“无情”且代价高昂](https://www.sbs.com.au/news/article/tip-of-the-iceberg-asio-director-reveals-the-espionage-acts-costing-australia-billions/2hpogecyc)
|
||||||
|
澳大利亚安全情报组织(ASIO)总干事迈克·伯吉斯警告称,外国间谍机构正在“积极瞄准”多个领域,并对AUKUS协议表现出“非常不健康的兴趣”。
|
||||||
|
- [墨尔本:男子持武士刀袭击并勒颈妹妹后被警方击毙](https://www.theage.com.au/national/victoria/man-shot-dead-by-police-while-strangling-sister-he-also-attacked-with-samurai-sword-20250730-p5mj40.html)
|
||||||
|
在雅拉谷(Yarra Valley)的一处住宅内,一名女子在被其兄弟袭击后生命垂危,手臂部分被砍断。
|
||||||
|
- [墨尔本:黑帮成员光天化日之下遭枪杀,恐引发报复性袭击](https://www.theage.com.au/national/victoria/man-shot-dead-in-deliberate-targeted-daylight-attack-near-kindergarten-20250731-p5mj7t.html)
|
||||||
|
一名属于伊拉克籍黑帮头目Kazem “Kaz” Hamad旗下街头帮派的男子被枪杀,外界担心会引发报复性袭击。
|
||||||
|
- [Garma节:这个文化盛会如何塑造澳大利亚的未来?](https://www.sbs.com.au/news/article/what-is-garma-festival-the-cultural-gathering-shaping-australias-future/c48rdf1gw)
|
||||||
|
Garma节是澳大利亚最大的原住民文化聚会,每年在约尔古(Yolŋu)土地上举行,汇集了仪式、社区和国家对话,2025年将迎来其重要的25周年里程碑。
|
||||||
|
- [亲巴勒斯坦示威者悉尼海港大桥抗议案将提交最高法院](https://www.sbs.com.au/news/article/pro-palestinian-harbour-bridge-protest-case-to-face-supreme-court/16ztcdut1)
|
||||||
|
新南威尔士州最高法院将审议警方禁止抗议者穿越澳大利亚最知名地标之一的申请。
|
||||||
|
- [墨尔本:服用迷幻蘑菇茶后死亡,正在调查是否与“木材爱好者麻痹症”有关](https://www.theage.com.au/national/victoria/wood-lover-paralysis-probed-in-death-of-magic-mushroom-tea-drinker-20250731-p5mj52.html)
|
||||||
|
一名墨尔本母亲在健康静修营地饮用迷幻蘑菇茶后死亡,调查人员正在探究其是否经历了罕见的“木材爱好者麻痹症”,该症状可能导致肢体无力和影响呼吸。
|
||||||
|
- [墨尔本医院厕所偷拍:关键证据失踪,本可更早发现](https://www.theage.com.au/national/victoria/hospital-toilet-spying-could-have-been-sprung-sooner-but-a-key-piece-of-evidence-went-missing-20250728-p5miay.html)
|
||||||
|
皇家墨尔本医院员工被告知,一月份在重症监护室(ICU)卫生间发现了一部手机,但管理层承认现在不知道该设备在哪里。
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-01-world_news
|
||||||
|
created: 2025-08-01
|
||||||
|
updated: 2025-08-01
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "world_news"]
|
||||||
|
external: http://go/ui/posts/1034/
|
||||||
|
---
|
||||||
|
|
||||||
|
# 全球新闻速览
|
||||||
|
|
||||||
|
- [特朗普修改关税税率,全球企业及市场承压](https://www.cnbc.com/2025/08/01/how-asian-countries-are-reacting-to-trumps-latest-tariffs-announcement-as-deadline-looms.html)
|
||||||
|
美国总统特朗普调整多国关税税率,引发亚太市场下跌,全球企业高管正制定新策略应对贸易摩擦和政策不确定性,此前与特朗普的关税协议被形容为“震惊、混乱而空洞的胜利”。
|
||||||
|
- [强风暴袭击美国东海岸,街道和地铁系统被淹](https://www.bbc.com/news/videos/c2enxm0zr8ko?at_medium=RSS&at_campaign=rss)
|
||||||
|
强风暴系统袭击美国东海岸,纽约和新泽西州已发布紧急状态,多地街道和地铁系统被洪水淹没。
|
||||||
|
- [印度国营炼油厂暂停购买俄罗斯石油](https://www.cnbc.com/2025/08/01/indian-state-refiners-pause-russian-oil-purchases-reuters-reports.html)
|
||||||
|
据报道,由于7月份折扣收窄,且美国总统唐纳德·特朗普警告各国不要购买莫斯科石油,印度国营炼油厂已暂停购买俄罗斯石油。
|
||||||
|
- [加沙两名女童中弹身亡,BBC调查儿童枪击案](https://www.bbc.com/news/videos/cjelp738zd7o?at_medium=RSS&at_campaign=rss)
|
||||||
|
加沙地带两名女童莱恩和米拉在以色列国防军士兵附近中弹身亡。以色列军方表示禁止故意伤害平民,并将调查此案。BBC正深入调查数十起儿童枪击事件。
|
||||||
|
- [继TikTok之后,中国企业正利用AI进一步发展视频技术](https://www.cnbc.com/2025/08/01/after-tiktok-chinese-businesses-like-kling-ramp-up-ai-for-video.html)
|
||||||
|
中国公司正利用丰富的视频和游戏经验,加速开发用于生成视频和视觉效果的盈利AI工具,将视频技术推向新高度。
|
||||||
|
- [英伟达否认H20芯片存在“后门”以回应中方担忧](https://www.cnbc.com/2025/07/31/china-probes-nvidia-h20-chips-for-tracking-risks.html)
|
||||||
|
针对北京方面提出的安全隐患,英伟达否认其出口中国的H20 AI芯片存在“后门”,并已就潜在的国家安全风险与中方官员会面。
|
||||||
|
- [白宫公布2亿美元新宴会厅建设计划](https://www.bbc.com/news/articles/c2l7dey54zjo?at_medium=RSS&at_campaign=rss)
|
||||||
|
白宫公布了建设耗资2亿美元的新宴会厅的计划,此前唐纳德·特朗普近十年来一直呼吁建造新宴会厅。
|
||||||
|
- [社交媒体谣言导致日本夏季旅游骤降](https://www.cnbc.com/2025/07/31/asian-visitors-to-japan-fell-because-of-a-manga-prediction-heres-why.html)
|
||||||
|
由于社交媒体上流传的漫画预言“2025年7月日本将发生灾难”,6月份赴日游客兴趣大幅下降。
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-01-world-painting
|
||||||
|
created: 2025-08-01
|
||||||
|
updated: 2025-08-01
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "painting", "world"]
|
||||||
|
external: http://go/ui/posts/1035/
|
||||||
|
---
|
||||||
|
|
||||||
|
## 干草车 (The Hay Wain)
|
||||||
|
《干草车》是英国浪漫主义风景画家约翰·康斯太勃尔的代表作之一,完成于1821年。这幅画描绘了英格兰萨福克郡和埃塞克斯郡之间斯陶尔河畔的乡村景色,画面中一辆装满干草的马车正穿过浅浅的河流。这幅画以其自然主义的光线、色彩和对日常乡村生活的细腻描绘而闻名,展现了画家对家乡景色的深厚情感和对自然光的敏锐观察,是英国风景画的经典之作,也体现了工业革命前英国乡村的田园风光。
|
||||||
|
|
||||||
|
名画URL : <https://upload.wikimedia.org/wikipedia/commons/e/ea/John_Constable_The_Hay_Wain.jpg>
|
||||||
|
搜索名画: <https://go.junv.cc/gi/干草车>
|
||||||
|
|
||||||
|
------
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-02-technology
|
||||||
|
created: 2025-08-02
|
||||||
|
updated: 2025-08-02
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "technology"]
|
||||||
|
external: http://go/ui/posts/1036/
|
||||||
|
---
|
||||||
|
|
||||||
|
**Tech news**
|
||||||
|
- [特斯拉自动驾驶致死事故索赔3.45亿美元](https://www.cnbc.com/2025/07/31/tesla-autopilot-plaintiffs-seek-345-million-over-fatal-florida-crash.html)
|
||||||
|
一起特斯拉Autopilot自动驾驶系统致死事故的庭审已开始陪审团审议,原告要求3.45亿美元赔偿。
|
||||||
|
- [科技巨头斥资4000亿美元押注AI获华尔街认可](https://www.wsj.com/tech/ai/tech-ai-spending-company-valuations-7b92104b?mod=rss_Technology)
|
||||||
|
微软和英伟达市值突破4万亿美元,Meta逼近2万亿美元,华尔街看好科技公司在AI领域的巨额投资。
|
||||||
|
- [Figma IPO大涨,顶级风投账面获利240亿美元](https://www.cnbc.com/2025/07/31/figmas-top-vcs-sitting-on-20-billion-in-stock-after-ipo-pop.html)
|
||||||
|
在经历长时间的IPO低迷后,Figma的成功上市让其顶级风险投资公司获得了数十亿美元的回报。
|
||||||
|
- [亚马逊云计算业务AWS增长18%,零售主导地位面临挑战](https://www.cnbc.com/2025/07/31/aws-q2-2025-earnings-report-amazon-cloud.html)
|
||||||
|
亚马逊云服务AWS第二季度营收超300亿美元,增长18%;但相比微软和谷歌在AI领域的云增长,亚马逊在AI势头方面仍显不足。
|
||||||
|
- [英伟达否认对华H20芯片存在“后门”](https://www.cnbc.com/2025/07/31/china-probes-nvidia-h20-chips-for-tracking-risks.html)
|
||||||
|
针对北京方面的安全担忧,英伟达否认其销往中国的H20 AI芯片存在“后门”,并与中方官员进行了会晤。
|
||||||
|
- [任天堂季度营收翻倍,Switch 2销量达580万台](https://www.cnbc.com/2025/08/01/nintendo-earnings-q1-2025.html)
|
||||||
|
受新一代Switch 2主机热销的推动,任天堂本季度营收翻番,股价今年已上涨约40%。
|
||||||
|
- [硅谷新战略:慢工出细活,专注于基础设施建设](https://www.wsj.com/tech/ai/silicon-valley-ai-infrastructure-capex-cffe0431?mod=rss_Technology)
|
||||||
|
科技巨头正转变为基础设施公司,效仿昔日的钢铁和铁路巨头,将重心放在长期建设上。
|
||||||
|
- [人机关系不再是科幻,人们与AI建立情感连接](https://www.cnbc.com/2025/08/01/human-ai-relationships-love-nomi.html)
|
||||||
|
自ChatGPT推出以来,普通人开始与聊天机器人建立情感联系,将其视为深厚的友谊甚至生活伴侣。
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-02-chinese-painting
|
||||||
|
created: 2025-08-02
|
||||||
|
updated: 2025-08-02
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "china", "painting"]
|
||||||
|
external: http://go/ui/posts/1037/
|
||||||
|
---
|
||||||
|
|
||||||
|
好的,我为您推荐了《潇湘卧游图》。这幅画能够帮助您的孩子了解中国山水画的意境之美和古人寄情山水的生活雅趣。
|
||||||
|
|
||||||
|
以下是关于《潇湘卧游图》的详细信息:
|
||||||
|
|
||||||
|
## 潇湘卧游图
|
||||||
|
《潇湘卧游图》是一幅描绘中国古代潇湘地区壮丽山水景色的画作。画中展现了烟波浩渺的江面、连绵起伏的山峦以及富有诗意的自然风光。这幅画能够帮助孩子感受中国山水画的意境之美,了解古人寄情山水、卧游林泉的雅致生活,同时也可以激发他对中国地理和传统文化的兴趣。
|
||||||
|
|
||||||
|
古画URL : <http://www.aihuahua.net/ziyuan/guohua/10617.html>
|
||||||
|
搜索古画: <https://go.junv.cc/gi/潇湘卧游图>
|
||||||
|
|
||||||
|
------
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-02-victoria
|
||||||
|
created: 2025-08-02
|
||||||
|
updated: 2025-08-02
|
||||||
|
type: summary
|
||||||
|
tags: ["local_news", "newsletter"]
|
||||||
|
external: http://go/ui/posts/1038/
|
||||||
|
---
|
||||||
|
|
||||||
|
# Big news
|
||||||
|
- [癌症诊断等待时间长达九个月,患者面临“痛苦”](https://www.theage.com.au/national/victoria/patients-face-agonising-nine-month-wait-for-cancer-diagnosis-20250730-p5miw9.html)
|
||||||
|
维多利亚州部分公共医疗系统的癌症患者面临长达九个月的诊断等待时间,严重影响及时治疗,引发对公共医疗资源分配的担忧。
|
||||||
|
- [警方警告墨尔本CBD桥梁封锁“可能危及生命”](https://www.theage.com.au/national/victoria/find-another-route-police-warn-cbd-bridge-blockade-will-put-lives-at-risk-20250801-p5mjj3.html)
|
||||||
|
警方警告,本周日计划在墨尔本CBD国王街桥举行的抗议活动可能导致交通中断,危及民众生命安全,敦促示威者选择其他路线。
|
||||||
|
- [新电动自行车引发悲剧:男子上班途中身亡,妻子呼吁加强监管](https://www.theage.com.au/national/victoria/nitin-left-for-work-riding-a-new-e-bike-he-never-made-it-home-20250729-p5mipu.html)
|
||||||
|
一名男子骑着新电动自行车上班途中不幸身亡,其妻子指出该电动自行车不符合上路规定,呼吁政府出台更严格的电动自行车法规。
|
||||||
|
- [维州西南部发生凶杀案:一女子被刺身亡,涉案男子被捕](https://www.theage.com.au/national/victoria/man-arrested-after-woman-stabbed-to-death-in-victoria-s-south-west-20250802-p5mjqd.html)
|
||||||
|
维多利亚州西南部Coleraine地区发生一起凶杀案,一名女子被刺身亡,警方已逮捕一名与受害者相识的男子。
|
||||||
|
- [Elisabeth Membrey谋杀案法院大门关闭,破案希望是否已失?](https://www.theage.com.au/national/victoria/the-court-door-closed-on-the-elisabeth-membrey-killing-but-is-hope-finally-lost-20250731-p5mj73.html)
|
||||||
|
尽管警方已锁定一名嫌疑人,但由于证据不足,法院未能对Elisabeth Membrey谋杀案进行进一步审理,该悬案的未来走向仍不明朗。
|
||||||
|
- [阿尔巴尼斯总理赞扬维州原住民“真相讲述”进程](https://www.sbs.com.au/news/article/albanese-signals-indigenous-truth-telling-support-at-garma/kgbvk40wo)
|
||||||
|
在“原住民之声”公投失败后,总理阿尔巴尼斯在加尔玛原住民文化节上表彰了维多利亚州首个真相讲述调查委员会Yoorrook司法委员会的工作。
|
||||||
|
- [澳大利亚活动家声称在以色列被拘留期间遭脱衣搜身和殴打](https://www.sbs.com.au/news/article/australian-activists-allege-they-were-strip-searched-bruised-while-detained-in-israel/jrsy96sbw)
|
||||||
|
两名“自由船队”活动家在前往加沙的船只被以色列拦截后,返回澳大利亚,声称在被拘留期间遭到粗暴对待,包括脱衣搜身和被推撞墙壁。
|
||||||
|
- [维州邪教调查:韩国新天地教会成焦点](https://www.sbs.com.au/news/article/behind-the-shincheonji-cult/nu0thspec)
|
||||||
|
维多利亚州对邪教和边缘团体的招募策略及控制方法进行调查,其中韩国新天地教会预计将成为关注焦点之一。
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-02-world_news
|
||||||
|
created: 2025-08-02
|
||||||
|
updated: 2025-08-02
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "world_news"]
|
||||||
|
external: http://go/ui/posts/1039/
|
||||||
|
---
|
||||||
|
|
||||||
|
# 全球新闻快讯
|
||||||
|
|
||||||
|
- [特朗普关税政策调整影响全球市场](https://www.cnbc.com/2025/08/01/asia-stock-markets-today-live-updates-nikkei-225-asx-200-kospi-hang-seng-csi-300-sensex-nifty-50.html)
|
||||||
|
美国总统特朗普修改多国关税税率,导致亚太和欧洲股市下跌,其中对瑞士征收的关税税率更高达39%,引发多国关注。
|
||||||
|
- [澳大利亚天空“UFO”确认为中国火箭](https://www.bbc.com/news/videos/cnv738l2qm9o?at_medium=RSS&at_campaign=rss)
|
||||||
|
澳大利亚布里斯班上空出现的不明光点已被天体物理学家证实与中国卫星发射有关。
|
||||||
|
- [任天堂营收翻倍,Switch 2销量强劲](https://www.cnbc.com/2025/08/01/nintendo-earnings-q1-2025.html)
|
||||||
|
任天堂公布季度营收翻倍,新主机Switch 2销量达580万台,股价今年已上涨约40%。
|
||||||
|
- [欧元区7月通胀率高于预期稳定在2%](https://www.cnbc.com/2025/08/01/euro-zone-inflation-july-2025.html)
|
||||||
|
欧元区7月通胀率保持在2%,略高于路透经济学家此前预测的1.9%。
|
||||||
|
- [亚洲企业青睐稳定币,推动加密货币浪潮](https://www.cnbc.com/2025/08/01/crypto-wave-asia-stablecoins.html)
|
||||||
|
亚洲地区企业对稳定币的接受度提高,因其交易即时且成本远低于传统银行转账,带动全球加密货币浪潮。
|
||||||
|
- [特朗普施压药企降价,引行业震动](https://www.cnbc.com/2025/08/01/trumps-drug-price-ultimatum-sets-pharma-firms-scrambling.html)
|
||||||
|
美国总统特朗普发出最后通牒,要求制药公司做出降低美国药品价格的“有约束力承诺”,药企纷纷紧急应对。
|
||||||
|
- [亚马逊财报喜忧参半,AI投资引关注](https://www.cnbc.com/2025/07/31/amazon-amzn-q2-earnings-report-2025.html)
|
||||||
|
亚马逊第二季度业绩好于预期,但其不乐观的盈利预测令投资者担忧对人工智能的巨额投资回报。
|
||||||
|
- [法国暂停加沙撤离行动,因学生反犹争议](https://www.bbc.com/news/articles/c5yl7n42325o?at_medium=RSS&at_campaign=rss)
|
||||||
|
一名巴勒斯坦学生因反犹太主义争议被撤销大学认证后,法国暂停了加沙撤离行动。
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
---
|
||||||
|
title: 2024-12-08-technology
|
||||||
|
created: 2024-12-08
|
||||||
|
updated: 2024-12-08
|
||||||
|
type: summary
|
||||||
|
tags: [[]]
|
||||||
|
external: http://go/ui/posts/104/
|
||||||
|
---
|
||||||
|
|
||||||
|
**科技新闻**
|
||||||
|
|
||||||
|
- [美国法院支持禁止TikTok](https://www.wsj.com/articles/tik-tok-congress-ban-court-ruling-1f0d6837?mod=rss_Technology)
|
||||||
|
三法官小组裁定国会有权因国家安全担忧关闭这款中国支持的应用程序。
|
||||||
|
|
||||||
|
- [Meta股价创新高,受TikTok禁令影响](https://www.cnbc.com/2024/12/06/meta-shares-rise-on-potential-tiktok-ban-in-us-closing-at-record.html)
|
||||||
|
Meta股价上涨2.4%,创历史新高,原因是联邦上诉法院支持要求字节跳动出售TikTok。
|
||||||
|
|
||||||
|
- [AI发展中人类的重要作用](https://www.wsj.com/articles/the-secret-weapon-helping-businesses-get-results-from-ai-humans-f99a0907?mod=rss_Technology)
|
||||||
|
最新技术机器同样需要人类的帮助和支持。
|
||||||
|
|
||||||
|
- [Workday股价因纳入标普500而上涨](https://www.cnbc.com/2024/12/06/workday-shares-pop-9percent-on-inclusion-in-sp-500.html)
|
||||||
|
Workday近年来已实现盈利,预计明年订阅收入将增长14%。
|
||||||
|
|
||||||
|
- [Meta元宇宙的未来发展](https://www.cnbc.com/2024/12/07/whats-next-for-metas-metaverse.html)
|
||||||
|
自Facebook更名为Meta并全面投入元宇宙已三年,收购Oculus已十年。
|
||||||
|
|
||||||
|
- [Super Micro获得纳斯达克上市延期](https://www.cnbc.com/2024/12/06/super-micro-gets-nasdaq-extension-can-file-financials-by-february.html)
|
||||||
|
公司收到纳斯达克通知,获得继续上市的延期。
|
||||||
|
|
||||||
|
- [科技、媒体和电信市场洞察](https://www.wsj.com/articles/tech-media-telecom-roundup-market-talk-03da9b1b?mod=rss_Technology)
|
||||||
|
关于Rubrik和沃达丰英国与Three合并的最新市场分析。
|
||||||
|
|
||||||
|
- [技术创新与商业趋势](https://www.wsj.com/articles/tech-media-telecom-roundup-market-talk-03da9b1b?mod=rss_Technology)
|
||||||
|
科技行业最新市场动态和重要商业洞察。
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-02-world-painting
|
||||||
|
created: 2025-08-02
|
||||||
|
updated: 2025-08-02
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "painting", "world"]
|
||||||
|
external: http://go/ui/posts/1040/
|
||||||
|
---
|
||||||
|
|
||||||
|
好的,我为您推荐了《斗狗扑克牌局》(Dogs Playing Poker) 这幅画作,并提供了相关信息:
|
||||||
|
|
||||||
|
## 斗狗扑克牌局 (Dogs Playing Poker)
|
||||||
|
《斗狗扑克牌局》是美国艺术家卡修斯·马塞勒斯·库利奇创作的一系列油画的总称。这些画作以拟人化的方式描绘了狗在玩扑克牌,它们穿着人类的衣服,叼着雪茄,表情生动,滑稽有趣。这系列画作虽然在艺术评论界评价不高,但因其幽默感和独特的题材而深受大众喜爱,成为流行文化的标志性作品。对于8岁的孩子来说,这些画作能轻松吸引他们的注意力,激发他们对动物、幽默艺术和故事的兴趣,同时也能让他们了解非传统艺术的表现形式。
|
||||||
|
名画URL : <https://upload.wikimedia.org/wikipedia/commons/e/ec/A_Friend_in_Need_by_Coolidge.jpg>
|
||||||
|
搜索名画: <https://go.junv.cc/gi/DogsPlayingPoker>
|
||||||
|
|
||||||
|
------
|
||||||
|
|
||||||
|
这些信息也已经保存到您的Google Docs中了。
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-03-technology
|
||||||
|
created: 2025-08-03
|
||||||
|
updated: 2025-08-03
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "technology"]
|
||||||
|
external: http://go/ui/posts/1041/
|
||||||
|
---
|
||||||
|
|
||||||
|
** Tech news**
|
||||||
|
- [Strava CEO推出新方式改进用户锻炼](https://www.wsj.com/tech/personal-tech/strava-athlete-intelligence-michael-martin-ceo-37c9a993?mod=rss_Technology)
|
||||||
|
健身应用Strava的用户超1.5亿,其CEO希望通过新的“运动员智能”功能吸引更多人付费。
|
||||||
|
- [拒绝扎克伯格的10亿美元工作邀约](https://www.wsj.com/tech/ai/meta-zuckerberg-ai-recruiting-fail-e6107555?mod=rss_Technology)
|
||||||
|
一些人因忠诚度和个人信念,拒绝了Meta创始人马克·扎克伯格的巨额AI招聘要约。
|
||||||
|
- [新一代用“先买后付”购买美容和演唱会门票](https://www.wsj.com/personal-finance/credit/the-perils-of-buying-botox-and-concert-tickets-with-buy-now-pay-later-loans-23a59c7e?mod=rss_Technology)
|
||||||
|
年轻美国人正转向高息的“先买后付”贷款,用于购买肉毒杆菌注射和演唱会门票等,研究显示部分人因此消费更多。
|
||||||
|
- [七种方法追踪并预防跌倒风险](https://www.wsj.com/health/wellness/fall-prevention-injuries-safety-tech-19fb8638?mod=rss_Technology)
|
||||||
|
专家称,即使是健康的“年轻老年人”,若缺乏适当监测,也可能因跌倒而受伤。
|
||||||
|
- [特朗普对华AI战略迎来首次重大考验](https://www.wsj.com/tech/ai/trump-china-ai-race-strategy-apec-64487dcc?mod=rss_Technology)
|
||||||
|
美国政府准备在韩国举行的亚太经合组织会议上推销其芯片和软件,以应对与中国的AI竞争。
|
||||||
|
- [AI颠覆咨询业:麦肯锡称其“关乎存亡”](https://www.wsj.com/tech/ai/mckinsey-consulting-firms-ai-strategy-89fbf1be?mod=rss_Technology)
|
||||||
|
如果AI能在几秒内完成信息分析、数据处理和幻灯片制作,咨询巨头麦肯锡如何保持其相关性成为关键。
|
||||||
|
- [佛罗里达州在太阳能增长方面悄然超越加州](https://www.cnbc.com/2025/08/02/how-florida-quietly-surpassed-california-in-solar-growth.html)
|
||||||
|
尽管没有气候任务,佛罗里达州在2024年新增的太阳能发电量超过加州,其发展势头能否持续备受关注。
|
||||||
|
- [以太坊十年:从实验性项目到华尔街的“隐形骨干”](https://www.cnbc.com/2025/08/02/ethereum-turns-10-from-scrappy-experiment-to-wall-streets-invisible-backbone.html)
|
||||||
|
以太坊曾被视为比特币的副产品,如今其区块链技术已成为稳定币、代币化资产及主要银行支付轨道的底层动力。
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-03-chinese-painting
|
||||||
|
created: 2025-08-03
|
||||||
|
updated: 2025-08-03
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "china", "painting"]
|
||||||
|
external: http://go/ui/posts/1042/
|
||||||
|
---
|
||||||
|
|
||||||
|
## 水月观音图
|
||||||
|
水月观音是观音菩萨三十三化身之一,相传她常现身于月光下的水中,因此得名。水月观音图通常描绘观音菩萨在水边岩石上,月光洒在水面,意境清幽。这幅画可以帮助孩子了解佛教文化中观音菩萨的形象,以及中国传统绘画中对意境和神韵的追求。
|
||||||
|
|
||||||
|
古画URL : <https://www.sgyinji.com/pic-573.html>
|
||||||
|
搜索古画: <https://go.junv.cc/gi/水月观音图>
|
||||||
|
|
||||||
|
------
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-03-victoria
|
||||||
|
created: 2025-08-03
|
||||||
|
updated: 2025-08-03
|
||||||
|
type: summary
|
||||||
|
tags: ["local_news", "newsletter"]
|
||||||
|
external: http://go/ui/posts/1043/
|
||||||
|
---
|
||||||
|
|
||||||
|
# 要闻速览
|
||||||
|
- [维州州长与警方就周末亲巴勒斯坦游行发出警告,ALP成员就AUKUS和巴勒斯坦建国问题投票](https://www.theage.com.au/national/victoria/premier-warns-protesters-over-bridge-march-as-alp-members-vote-on-aukus-and-palestinian-statehood-20250802-p5mjrd.html)
|
||||||
|
维州州长Jacinta Allan和警方警告称,周日墨尔本和悉尼的亲巴勒斯坦游行若阻碍紧急服务,将迅速采取行动。同时,工党成员将就AUKUS协议和巴勒斯坦建国问题进行投票。
|
||||||
|
- [345亿澳元铁路项目引担忧:城郊铁路线新车站出入不便](https://www.theage.com.au/national/victoria/it-s-a-34-5b-train-line-but-how-will-you-get-to-the-station-20250801-p5mjj8.html)
|
||||||
|
批评人士指出,维州城郊铁路线(SRL)耗资345亿澳元,但其草案计划缺乏必要的基础设施,导致行人、自行车和电动滑板车难以抵达新的地下车站。
|
||||||
|
- [维州政府推行新居家办公计划,引各界褒贬不一评论](https://www.sbs.com.au/news/article/reaction-to-victorian-premier-jacinta-allan-new-work-from-home-plan/jl6rx3tel)
|
||||||
|
维州政府提出的新居家办公计划引发了社会各界的不同反响,一些人称之为“一项非常重要的举措”,而另一些商业团体则斥其为“完全越权”。
|
||||||
|
- [丹德农医院计划转移高风险孕妇遭强烈反对](https://www.theage.com.au/national/victoria/uproar-at-dandenong-hospital-plan-to-redirect-mothers-with-high-risk-pregnancies-20250730-p5mixo.html)
|
||||||
|
丹德农医院一项旨在将高风险孕妇转诊至其他医院的争议性计划,遭到了助产士、护士工会和州反对党的强烈批评。
|
||||||
|
- [《时代报》前著名摄影师Cathryn Tremain去世,享年66岁](https://www.theage.com.au/national/victoria/a-photographic-hero-former-age-photographer-cathryn-tremain-dies-aged-66-20250731-p5mjeu.html)
|
||||||
|
屡获殊荣的《时代报》前摄影师Cathryn Tremain去世,享年66岁。朋友和前同事们称赞她是一位具有创造力和敏锐洞察力的“摄影英雄”。
|
||||||
|
- [广岛原子弹幸存者Tess分享求生故事与人生教训](https://www.sbs.com.au/news/small-business-secrets/article/an-atomic-bomb-a-missed-train-and-an-incredible-story-of-survival/toam4v7m2)
|
||||||
|
在广岛原子弹爆炸80周年之际,96岁的幸存者Tess回忆了那场改变她命运的事件,以及她作为“战争新娘”来到澳大利亚的经历,并分享了对当今世界核紧张局势的深刻教训。
|
||||||
|
- [社区力争保留历史遗产桥梁,与议会修复成本论据抗争](https://www.theage.com.au/national/victoria/a-bridge-to-the-past-communities-fighting-to-preserve-their-heritage-20250731-p5mj6l.html)
|
||||||
|
地方议会声称修复历史遗产桥梁成本过高,但当地居民坚持认为这些结构值得为之奋斗和投资,积极争取保留。
|
||||||
|
- [维州高收入家庭子女就读专属精英学校,费用高昂引发关注](https://www.theage.com.au/national/victoria/the-exclusive-schools-high-earning-parents-are-sending-their-children-to-20250724-p5mhft.html)
|
||||||
|
数据显示,维州收入最高的父母将子女送往州内一些最专属和昂贵的私立学校就读,这一趋势引发社会关注。
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-03-world_news
|
||||||
|
created: 2025-08-03
|
||||||
|
updated: 2025-08-03
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "world_news"]
|
||||||
|
external: http://go/ui/posts/1044/
|
||||||
|
---
|
||||||
|
|
||||||
|
# 全球要闻速览
|
||||||
|
|
||||||
|
- [人机关系不再是科幻小说,人类与AI情感连接日深](https://www.cnbc.com/2025/08/01/human-ai-relationships-love-nomi.html)
|
||||||
|
自ChatGPT发布以来,人们开始与聊天机器人建立情感联系,将其视为深厚友谊甚至人生伴侣。
|
||||||
|
- [爱泼斯坦案受害者及家属谴责特朗普转移吉斯莱恩·麦克斯韦尔](https://www.cnbc.com/2025/08/01/jeffrey-epstein-ghislaine-maxwell-prison-florida-texas.html)
|
||||||
|
特朗普政府及司法部因未公开爱泼斯坦案调查信息而面临批评。
|
||||||
|
- [特朗普政府提高加拿大关税,墨西哥获暂缓征税](https://www.bbc.com/news/videos/c3wnewjw2yqo?at_medium=RSS&at_campaign=rss)
|
||||||
|
特朗普政府将加拿大关税从25%提高到35%,同时给予墨西哥90天的更高征税暂缓期。
|
||||||
|
- [英国最高法院推翻汽车金融支付裁决](https://www.cnbc.com/2025/08/02/uk-supreme-court-overturns-ruling-on-motor-finance-commissions.html)
|
||||||
|
英国最高法院在很大程度上推翻了下级法院关于某些汽车金融协议非法的裁决。
|
||||||
|
- [特朗普下令核潜艇靠近俄罗斯,俄方保持沉默](https://www.bbc.com/news/articles/cly4kgv9238o?at_medium=RSS&at_campaign=rss)
|
||||||
|
美国总统下令两艘核潜艇靠近俄罗斯,此前他与俄罗斯前总统在社交媒体上发生争执。
|
||||||
|
- [上诉法院阻止特朗普政府在加州进行任意移民搜捕](https://www.cnbc.com/2025/08/02/appeals-court-blocks-trump-immigration-sweeps.html)
|
||||||
|
联邦上诉法院维持了一项临时命令,阻止特朗普政府在南加州进行不分青红皂白的移民拦截和逮捕。
|
||||||
|
- [伯克希尔哈撒韦营业利润下降4%,受关税影响](https://www.cnbc.com/2025/08/02/berkshire-hathaway-brk-earnings-q2-2025.html)
|
||||||
|
伯克希尔公司第二季度营业利润同比下降4%至111.6亿美元,面临关税影响。
|
||||||
|
- [微软股价恐面临大幅回调风险](https://www.cnbc.com/2025/08/02/microsoft-may-be-due-for-pullback-as-one-of-the-most-overbought-stocks.html)
|
||||||
|
作为华尔街最超买的股票之一,微软股价可能面临大幅回调。
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-03-world-painting
|
||||||
|
created: 2025-08-03
|
||||||
|
updated: 2025-08-03
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "painting", "world"]
|
||||||
|
external: http://go/ui/posts/1045/
|
||||||
|
---
|
||||||
|
|
||||||
|
## 召唤圣马太 (The Calling of Saint Matthew)
|
||||||
|
《召唤圣马太》是意大利巴洛克艺术家卡拉瓦乔的杰作,创作于1599-1600年。这幅画描绘了耶稣基督召唤税吏马太跟随他的瞬间。画中运用了强烈的光影对比(明暗对照法),光线从右上方射入,照亮了人物的面部和手,营造出戏剧性的氛围。这幅画以其逼真的细节和对普通人生活的描绘而闻名,将神圣的事件置于日常环境中,让观众更容易理解和感受画作的魅力。通过这幅画,你可以和孩子探讨光线在绘画中的作用,以及画家如何通过生动的场景讲述一个历史或宗教故事。
|
||||||
|
|
||||||
|
名画URL : <https://upload.wikimedia.org/wikipedia/commons/2/25/Caravaggio%2C_Michelangelo_Merisi_da_-_The_Calling_of_Saint_Matthew_-_1599-1600_%28hi_res%29.jpg>
|
||||||
|
搜索名画: <https://go.junv.cc/gi/召唤圣马太>
|
||||||
|
|
||||||
|
------
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-04-technology
|
||||||
|
created: 2025-08-04
|
||||||
|
updated: 2025-08-04
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "technology"]
|
||||||
|
external: http://go/ui/posts/1046/
|
||||||
|
---
|
||||||
|
|
||||||
|
**科技新闻**
|
||||||
|
- [以太坊十周年:从实验项目到华尔街的隐形支柱](https://www.cnbc.com/2025/08/02/ethereum-turns-10-from-scrappy-experiment-to-wall-streets-invisible-backbone.html)
|
||||||
|
曾被视为比特币的副项目,以太坊区块链现已成为稳定币、代币化资产及主要银行支付轨道的基础。
|
||||||
|
- [特朗普新关税引发避险情绪,加密市场八月动荡](https://www.cnbc.com/2025/08/01/crypto-market-today.html)
|
||||||
|
随着特朗普新关税引发避险情绪,加密货币市场在八月波动。比特币表现相对坚挺,而加密相关股票则遭受更深损失。
|
||||||
|
- [蒙大拿州力推成为生物黑客和实验性治疗中心](https://www.wsj.com/tech/biotech/the-push-to-make-montana-a-hub-for-experimental-medical-treatments-716e1992?mod=rss_Technology)
|
||||||
|
“尝试权”法旨在增加未经批准疗法的可及性,但仍存在障碍和安全担忧。
|
||||||
|
- [马克·扎克伯格向iPhone宣战](https://www.wsj.com/tech/ai/mark-zuckerberg-just-declared-war-on-the-iphone-30163885?mod=rss_Technology)
|
||||||
|
Meta首席执行官描绘了AI如何为新的“主要计算设备”创造机会的愿景。
|
||||||
|
- [微软不仅是AI宠儿,核心业务也蓬勃发展](https://www.wsj.com/tech/ai/microsoft-is-an-ai-darling-but-its-core-businesses-are-booming-too-2213126f?mod=rss_Technology)
|
||||||
|
该公司的非AI业务,包括生产力软件和云计算,也表现强劲。
|
||||||
|
- [Figma首席执行官从辍学生到科技亿万富翁之路](https://www.cnbc.com/2025/08/03/figma-ceo-dylan-fields-path-from-college-dropout-to-billionaire.html)
|
||||||
|
Figma在纽交所上市交易两天后,33岁的首席执行官Dylan Field所持股份价值约66亿美元。
|
||||||
|
- [谷歌通过屏蔽虚假广告打击银行诈骗](https://www.wsj.com/opinion/stop-banking-scammers-by-blocking-fake-ads-1e695b5e?mod=rss_Technology)
|
||||||
|
谷歌通过要求金融广告商在授权名单上,已在英国打击了虚假金融广告。
|
||||||
|
- [佛罗里达州太阳能增长悄然超越加州](https://www.cnbc.com/2025/08/02/how-florida-qui...california-in-solar-growth.html)
|
||||||
|
2024年佛罗里达州新增太阳能装机量超过加州,尽管没有气候强制要求。
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-04-chinese-painting
|
||||||
|
created: 2025-08-04
|
||||||
|
updated: 2025-08-04
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "china", "painting"]
|
||||||
|
external: http://go/ui/posts/1047/
|
||||||
|
---
|
||||||
|
|
||||||
|
## 闸口盘车图
|
||||||
|
《闸口盘车图》是南宋画家李唐的代表作之一,描绘了乡村水车磨坊的场景。画中水流湍急,水车转动,人物形象生动,展现了宋代农村生活劳作的景象,体现了画家对细节的精妙刻画和对自然景物的生动捕捉。这幅画对于了解宋代社会风貌和农耕文明有重要价值。
|
||||||
|
|
||||||
|
古画URL : https://www.dpm.org.cn/attachments/image/62/12189/12189.jpg
|
||||||
|
搜索古画: https://go.junv.cc/gi/闸口盘车图
|
||||||
|
|
||||||
|
------
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-04-victoria
|
||||||
|
created: 2025-08-04
|
||||||
|
updated: 2025-08-04
|
||||||
|
type: summary
|
||||||
|
tags: ["local_news", "newsletter"]
|
||||||
|
external: http://go/ui/posts/1048/
|
||||||
|
---
|
||||||
|
|
||||||
|
# Big news
|
||||||
|
- [墨尔本和悉尼十万人游行抗议以色列轰炸加沙](https://www.theage.com.au/national/victoria/thousands-of-pro-palestine-protesters-to-block-melbourne-bridge-20250803-p5mjur.html)
|
||||||
|
数万名抗议者在墨尔本和悉尼举行大规模游行,抗议以色列在加沙的军事行动,其中悉尼的游行导致海港大桥关闭并造成严重交通中断。
|
||||||
|
- [莫纳什大学教授因涉嫌在讲座中展示儿童性虐待材料被点名](https://www.theage.com.au/national/victoria/monash-university-academic-named-after-child-abuse-material-allegedly-shown-in-lecture-20250803-p5mjvr.html)
|
||||||
|
一名曾在公平工作委员会任职的著名劳动法讲师,被指控在墨尔本的一次讲座中涉嫌展示儿童性虐待材料,目前已被公开点名。
|
||||||
|
- [紧急服务部门面临“混乱”局面,新州洪水中失踪女性的搜寻工作仍在进行](https://www.sbs.com.au/news/article/emergency-services-face-hectic-conditions-search-for-woman-in-floodwaters-ongoing/w44wb0xjp)
|
||||||
|
澳大利亚两岸正遭受恶劣天气袭击,救援人员在新南威尔士州持续搜寻一名被洪水冲走的女性。
|
||||||
|
- [专家警告,试管婴儿“附加服务”滥用现象日益猖獗且缺乏科学证据](https://www.theage.com.au/national/victoria/deanna-tried-ivf-with-the-lot-none-of-the-costly-unproven-add-ons-worked-so-she-went-back-to-basics-20250722-p5mgy5.html)
|
||||||
|
专家警告,澳大利亚生育监管方面存在漏洞,导致大量缺乏科学证据的试管婴儿“附加服务”被滥用。
|
||||||
|
- [学校食堂巧克力和糖果销售禁令形同虚设](https://www.theage.com.au/national/victoria/chocolate-and-lollies-are-meant-to-be-banned-from-school-canteens-but-their-sales-are-as-strong-as-ever-20250727-p5mi3y.html)
|
||||||
|
州政府未能执行其针对学校食堂的健康指南,本应禁止销售的含糖食品仍然是小学生最受欢迎的零食之一。
|
||||||
|
- [男子戴“惊声尖叫”面具涂鸦犹太教堂,已五次作案](https://www.theage.com.au/national/victoria/synagogue-targeted-with-graffiti-by-man-in-scream-mask-20250804-p5mk0t.html)
|
||||||
|
警方指控一名男子自三月以来已五次针对犹太教堂进行涂鸦,并在最近一次事件中佩戴了白色的恐怖电影面具。
|
||||||
|
- [内城区街头发生枪击和斗殴,六人被捕](https://www.theage.com.au/national/victoria/six-arrested-after-gunshot-screams-heard-in-fight-on-inner-city-street-20250803-p5mjxs.html)
|
||||||
|
圣基尔达西区一条街道在周日上午发生至少六人参与的斗殴事件,期间传出枪声和尖叫声,警方已逮捕六人并持续搜查该区域。
|
||||||
|
- [克拉拉的世界悄然瓦解,老师们却错过了预警信号](https://www.theage.com.au/national/victoria/as-clara-s-world-quietly-unravelled-her-teachers-missed-the-signs-20250731-p5mj9x.html)
|
||||||
|
一名年轻女孩滑向无家可归的迹象未能引起老师们的警觉,她现在呼吁为面临风险的年轻人提供更好的帮助。
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-04-world_news
|
||||||
|
created: 2025-08-04
|
||||||
|
updated: 2025-08-04
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "world_news"]
|
||||||
|
external: http://go/ui/posts/1049/
|
||||||
|
---
|
||||||
|
|
||||||
|
# 全球新闻快报
|
||||||
|
|
||||||
|
- [全球经济:关税、通胀与市场波动](https://www.cnbc.com/2025/08/03/stock-market-today-live-updates.html)
|
||||||
|
新增全球关税引发市场对通胀和经济放缓的担忧;美国对瑞士征收39%关税,恐重创其出口导向型经济;亚洲股市在权衡关税和欧佩克增产后表现不一。
|
||||||
|
|
||||||
|
- [肯尼亚儿童性交易链被揭露](https://www.bbc.com/news/articles/c15l9zl508eo?at_medium=RSS&at_campaign=rss)
|
||||||
|
英国广播公司卧底调查曝光肯尼亚有女性将13岁儿童卷入性交易。
|
||||||
|
|
||||||
|
- [欧洲热浪持续推高空调需求](https://www.cnbc.com/2025/08/04/heatwaves-drive-spikes-in-demand-for-air-conditioning-across-europe.html)
|
||||||
|
欧洲创纪录的频繁和持久热浪,正显著增加对空调设备的需求。
|
||||||
|
|
||||||
|
- [亚洲加密货币浪潮兴起:稳定币受青睐](https://www.cnbc.com/2025/08/01/crypto-wave-asia-stablecoins.html)
|
||||||
|
亚洲企业逐渐接受稳定币,因其交易即时且费用远低于传统银行转账。
|
||||||
|
|
||||||
|
- [自动驾驶出租车步入现实:中国成为关键市场](https://www.cnbc.com/2025/08/03/robotaxis-are-becoming-a-reality-whos-poised-to-win-in-china-and-beyond.html)
|
||||||
|
上海已允许全自动驾驶出租车在部分区域收取费用,全球竞争格局正在重塑。
|
||||||
|
|
||||||
|
- [中国比亚迪交付量首降:电动车价格战加剧](https://www.cnbc.com/2025/08/04/chinas-byd-posts-first-delivery-dip-in-2025-as-ev-price-war-bites.html)
|
||||||
|
受电动车价格战影响,比亚迪及其他中国主要电动车制造商7月交付量出现下滑。
|
||||||
|
|
||||||
|
- [波音防务工人罢工:航空巨头面临新挑战](https://www.bbc.com/news/articles/c4gze2medkdo?at_medium=RSS&at_campaign=rss)
|
||||||
|
约3200名F-15战斗机等军用飞机制造工人投票否决了波音的最新合同提议。
|
||||||
|
|
||||||
|
- [也门海岸移民船只沉没 数十人死亡失踪](https://www.bbc.com/news/articles/cn84rrmlxvxo?at_medium=RSS&at_campaign=rss)
|
||||||
|
一艘载有超过150名移民的船只在也门海岸附近因恶劣天气倾覆,造成数十人死亡和失踪。
|
||||||
@@ -0,0 +1,44 @@
|
|||||||
|
---
|
||||||
|
title: 2024-12-08-victoria
|
||||||
|
created: 2024-12-08
|
||||||
|
updated: 2024-12-08
|
||||||
|
type: summary
|
||||||
|
tags: [[]]
|
||||||
|
external: http://go/ui/posts/105/
|
||||||
|
---
|
||||||
|
|
||||||
|
Here's the 8-item concise bulletin summary in Chinese, focusing on the most significant news:
|
||||||
|
|
||||||
|
## 墨尔本和澳大利亚新闻速报
|
||||||
|
|
||||||
|
1. 🏭 **沃尔沃斯仓库罢工事件解决**
|
||||||
|
[沃尔沃斯与工会达成协议,结束仓库工业纠纷](https://www.theage.com.au/national/victoria/woolworths-strikes-deal-with-union-to-end-warehouse-strike-20241207-p5kwls.html)
|
||||||
|
工会宣布胜利,成功获得防止因拣货速率受处罚的条款
|
||||||
|
|
||||||
|
2. 🕍 **里普利纳犹太教堂遭纵火调查**
|
||||||
|
[警方调查犹太教堂纵火案,发现可疑子弹](https://www.theage.com.au/national/victoria/after-the-fire-heavy-security-at-synagogues-as-community-expresses-sorrow-and-anger-20241207-p5kwki.html)
|
||||||
|
政治敏感事件引发社区关注和安全担忧
|
||||||
|
|
||||||
|
3. 🐖 **维多利亚野猪肆虐**
|
||||||
|
[野猪在维州造成严重破坏](https://www.theage.com.au/national/victoria/gosh-they-re-savvy-it-s-no-porky-feral-pigs-are-wreaking-havoc-across-victoria-20241204-p5kvs3.html)
|
||||||
|
野生动物对农业和生态造成重大威胁
|
||||||
|
|
||||||
|
4. 🏠 **墨尔本面临住房危机**
|
||||||
|
[政府被敦促设定经济适用房目标](https://www.theage.com.au/national/victoria/like-gold-allan-government-urged-to-set-affordable-housing-targets-20241205-p5kw41.html)
|
||||||
|
预计到2041年需要17.7万个经济适用住房
|
||||||
|
|
||||||
|
5. 🏳️🌈 **2025年悉尼同性骄傲游行争议**
|
||||||
|
[警察将参与游行,尽管有人反对](https://www.sbs.com.au/news/article/police-will-march-in-2025-mardi-gras-but-supporters-of-a-ban-say-its-a-big-step-forward/z7zb3zlsx)
|
||||||
|
关于警察参与游行的争论持续
|
||||||
|
|
||||||
|
6. 🏃 **16岁青少年打破澳大利亚运动纪录**
|
||||||
|
[Gout Gout打破短跑记录](https://www.sbs.com.au/news/article/gout-gout-smashes-one-of-australias-most-famous-sporting-records/c9bv3p2md)
|
||||||
|
年轻运动员展现惊人天赋
|
||||||
|
|
||||||
|
7. 📚 **国际学生奇特求学之路**
|
||||||
|
[学生每周飞8800公里上课](https://www.sbs.com.au/news/article/international-students-commuting-thousands-of-kilometres-for-uni-in-australia/bhblojv2z)
|
||||||
|
展现留学生求知的决心
|
||||||
|
|
||||||
|
8. 🔞 **青少年性骚扰调查**
|
||||||
|
[报告揭示16-19岁青少年性骚扰严重情况](https://www.sbs.com.au/news/article/its-happening-everywhere-the-lesser-known-australians-being-sexually-harassed/5lv26h3ww)
|
||||||
|
呼吁采取更多行动保护青少年
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-04-world-painting
|
||||||
|
created: 2025-08-04
|
||||||
|
updated: 2025-08-04
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "painting", "world"]
|
||||||
|
external: http://go/ui/posts/1050/
|
||||||
|
---
|
||||||
|
|
||||||
|
## 夜间的咖啡馆
|
||||||
|
文森特·梵高在1888年创作的《夜间的咖啡馆》是他的“星光三部曲”之一。这幅画展现了法国阿尔勒一个夜晚的露天咖啡馆景象。梵高在这幅画中没有使用黑色,而是用蓝色、紫色和绿色来描绘夜晚,用鲜明的黄色灯光来形成对比,营造出一种温暖而又略带孤独的氛围,非常适合引导孩子感受色彩和光影的魅力。
|
||||||
|
|
||||||
|
名画URL : https://www.nbfox.com/wp-content/uploads/2020/08/The-Night-Cafe-Vincent-van-Gogh.jpg
|
||||||
|
搜索名画: https://go.junv.cc/gi/夜间的咖啡馆
|
||||||
|
|
||||||
|
------
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-05-technology
|
||||||
|
created: 2025-08-05
|
||||||
|
updated: 2025-08-05
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "technology"]
|
||||||
|
external: http://go/ui/posts/1051/
|
||||||
|
---
|
||||||
|
|
||||||
|
**科技新闻**
|
||||||
|
- [安费诺在AI热潮中达成大型宽带交易](https://www.wsj.com/business/deals/amphenol-nears-big-broadband-deal-in-ai-boom-3909b0df?mod=rss_Technology)
|
||||||
|
互连产品制造商安费诺正收购康普的宽带连接和电缆部门,此举正值AI需求激增。
|
||||||
|
- [富士康计划将前Lordstown电动车厂改造为AI服务器生产基地](https://www.wsj.com/tech/lordstown-ev-plant-to-be-converted-into-ai-hardware-factory-849eadfa?mod=rss_Technology)
|
||||||
|
这家台湾公司计划与合作伙伴将该工厂转变为AI应用云计算硬件的生产基地。
|
||||||
|
- [英伟达有望重获部分中国市场准入,但AI芯片份额仍面临侵蚀](https://www.cnbc.com/2025/08/04/nvidia-h20-china-market-share-recovery.html)
|
||||||
|
英伟达的H20芯片有望重返中国市场,但专家预计鉴于新竞争和监管审查,其受欢迎程度将不如以往。
|
||||||
|
- [法律AI初创公司Harvey年经常性收入达1亿美元](https://www.cnbc.com/2025/08/04/legal-ai-startup-harvey-revenue.html)
|
||||||
|
Harvey于2022年推出,其创始人在OpenAI的GPT-3大型语言模型基础上进行实验,并在ChatGPT发布前问世。
|
||||||
|
- [百度计划与Lyft合作将Robotaxi业务扩展至欧洲](https://www.cnbc.com/2025/08/04/baidu-plans-to-expand-its-robotaxis-to-europe-with-lyft-deal.html)
|
||||||
|
中国科技巨头百度正寻求通过与Lyft和优步的交易,在全球范围内拓展其自动驾驶汽车业务。
|
||||||
|
- [特斯拉向马斯克授予290亿美元股票,此前薪酬方案悬而未决](https://www.cnbc.com/2025/08/04/tesla-stock-musk-pay.html)
|
||||||
|
马斯克2018年560亿美元薪酬方案的法律纠纷目前正在特拉华州最高法院审理,特斯拉在此期间向其授予股票。
|
||||||
|
- [亚马逊在其音频业务重组中裁减Wondery部门逾百名员工](https://www.cnbc.com/2025/08/04/amazon-cuts-some-wondery-podcast-jobs-as-part-of-audio-business-reorg.html)
|
||||||
|
作为亚马逊进军原创音频内容的一部分,该公司约五年前收购了Wondery。
|
||||||
|
- [Palantir营收首次突破10亿美元,并上调业绩指引](https://www.cnbc.com/2025/08/04/palantir-pltr-q2-earnings-2025.html)
|
||||||
|
Palantir的收入超出华尔街预期,并上调了其全年业绩展望。
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-05-chinese-painting
|
||||||
|
created: 2025-08-05
|
||||||
|
updated: 2025-08-05
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "china", "painting"]
|
||||||
|
external: http://go/ui/posts/1052/
|
||||||
|
---
|
||||||
|
|
||||||
|
## 孔雀东南飞图
|
||||||
|
《孔雀东南飞图》是根据中国古代著名叙事诗《孔雀东南飞》所创作的画作。这首诗讲述了焦仲卿和刘兰芝这对夫妻被迫分离,最终双双殉情的故事,是中国文学史上的一部悲剧经典。通过这幅画,您的儿子可以了解中国古代的爱情悲剧故事,感受中国传统文化中对忠贞爱情的歌颂与无奈,同时也可以了解中国古代的服饰和生活场景。
|
||||||
|
|
||||||
|
古画URL : <https://www.nipic.com/show/3673756.html>
|
||||||
|
搜索古画: <https://go.junv.cc/gi/孔雀东南飞图>
|
||||||
|
|
||||||
|
------
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-05-victoria
|
||||||
|
created: 2025-08-05
|
||||||
|
updated: 2025-08-05
|
||||||
|
type: summary
|
||||||
|
tags: ["local_news", "newsletter"]
|
||||||
|
external: http://go/ui/posts/1053/
|
||||||
|
---
|
||||||
|
|
||||||
|
# Big news
|
||||||
|
|
||||||
|
* [**墨尔本警方悬赏100万澳元征集Robert Issa谋杀案线索**](https://www.theage.com.au/national/victoria/police-announce-1-million-reward-for-information-on-robert-issa-murder-20250804-p5mk25.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
警方宣布,为Robert Issa谋杀案的侦破提供线索,将悬赏100万澳元。此前警方已逮捕五名涉案“打手”。
|
||||||
|
* [**“毒蘑菇”谋杀案庭审视频曝光:垃圾场之行与假手机**](https://www.theage.com.au/national/victoria/the-tip-trip-and-a-dummy-phone-videos-from-mushroom-murder-trial-released-20250804-p5mk75.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
备受关注的“毒蘑菇”谋杀案庭审中,法庭公布了Erin Patterson声称惊慌中扔掉食物脱水机的视频,向陪审团展示了关键证据。
|
||||||
|
* [**维州政府居家办公立法面临高等法院挑战**](https://www.theage.com.au/national/victoria/high-court-battle-looms-for-state-labor-s-work-from-home-push-20250804-p5mk5o.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
维州工党政府推行的居家办公权利立法可能面临法律挑战,或需通过强制立法来实施。
|
||||||
|
* [**Krissy Barrett:澳大利亚首位女性联邦警察局长**](https://www.sbs.com.au/news/article/who-is-krissy-barrett-australias-first-female-federal-police-commissioner/f430njkyw)
|
||||||
|
Krissy Barrett将于十月上任,成为澳大利亚联邦警察局首位女性局长,任期五年。
|
||||||
|
* [**一名中国公民因涉嫌外国干预被起诉**](https://www.sbs.com.au/news/article/chinese-national-charged-with-foreign-interference-allegedly-targeting-buddhist-group/4sm8gwyf8)
|
||||||
|
一名中国籍女性在堪培拉被指控涉嫌外国干预,据称其目标为一个佛教团体,这是澳大利亚相关法律下的重要案件。
|
||||||
|
* [**Hannah McGuire谋杀案:据称凶手曾向证人寄恐吓信**](https://www.theage.com.au/national/victoria/hannah-mcguire-s-killer-allegedly-sent-menacing-letters-to-witness-20250804-p5mk8s.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
Lachlan Young试图压制针对其恐吓和骚扰证人指控的申请被驳回,案件进展受到关注。
|
||||||
|
* [**澳大利亚国防军寻求发展壮大,应对复杂地缘战略环境**](https://www.sbs.com.au/news/article/the-adf-has-ambitions-to-grow-but-can-it-fix-a-terribly-difficult-geo-strategic-climate/9uq28l1hs)
|
||||||
|
安全专家指出,澳大利亚国防军正适应新挑战和期望,努力在“极其困难”的地缘战略气候中导航。
|
||||||
|
* [**墨尔本首家“戴帽”千层面餐厅1800 Lasagne进入破产管理**](https://www.theage.com.au/national/victoria/melbourne-s-first-hatted-lasagne-restaurant-1800-lasagne-enters-administration-20250805-p5mkcm.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
Thornbury的网红餐厅1800 Lasagne已进入破产管理阶段,该餐厅曾是墨尔本首家获得美食帽的千层面餐厅。
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-05-world-painting
|
||||||
|
created: 2025-08-05
|
||||||
|
updated: 2025-08-05
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "painting", "world"]
|
||||||
|
external: http://go/ui/posts/1054/
|
||||||
|
---
|
||||||
|
|
||||||
|
## 戴金翅雀的少女
|
||||||
|
《戴金翅雀的少女》(The Goldfinch)是荷兰黄金时代画家卡雷尔·法布里蒂乌斯于1654年创作的一幅油画。这幅画以其逼真的细节和光影效果而闻名,描绘了一只被铁链拴住的金翅雀栖息在一个白色石膏墙上的场景。这幅画不仅展示了画家高超的技巧,也因为画作背后悲剧性的历史(画家在创作此画后不久死于代尔夫特爆炸)而增添了一层神秘色彩。它能让孩子了解荷兰黄金时代的艺术风格,感受画家如何通过光线和细节描绘出栩栩如生的动物,同时也能引发他们对历史事件的思考。
|
||||||
|
|
||||||
|
名画URL : <https://www.mauritshuis.nl/en/our-collection/artworks/605-the-goldfinch>
|
||||||
|
搜索名画: <https://go.junv.cc/gi/戴金翅雀的少女>
|
||||||
|
|
||||||
|
------
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-06-technology
|
||||||
|
created: 2025-08-06
|
||||||
|
updated: 2025-08-06
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "technology"]
|
||||||
|
external: http://go/ui/posts/1055/
|
||||||
|
---
|
||||||
|
|
||||||
|
** Tech news**
|
||||||
|
- [Palantir营收首破10亿美元,受AI需求推动提升全年指引](https://www.wsj.com/business/earnings/palantir-technologies-hikes-outlook-as-profit-sales-rise-e9310137?mod=rss_Technology)
|
||||||
|
数据分析公司Palantir营收首次突破10亿美元大关,并上调全年业绩预期,其增长主要得益于企业和军队对AI工具的强劲投资。
|
||||||
|
- [亚马逊音频业务重组,Wondery部门裁员逾百人](https://www.cnbc.com/2025/08/04/amazon-cuts-some-wondery-podcast-jobs-as-part-of-audio-business-reorg.html)
|
||||||
|
作为音频业务重组的一部分,亚马逊旗下的播客平台Wondery裁员逾百人。
|
||||||
|
- [注意言辞!AI会议记录软件捕捉会议细节](https://www.wsj.com/tech/ai/ai-notetaker-meeting-transcripts-be9bc4cc?mod=rss_Technology)
|
||||||
|
新型AI会议记录软件能捕捉会议中的每一个字,包括参会者可能不想让所有人听到的部分。
|
||||||
|
- [台积电疑发生商业秘密泄露,台湾逮捕三名嫌疑人](https://www.wsj.com/tech/taiwan-arrests-tsmc-trade-secrets-48f23bd6?mod=rss_Technology)
|
||||||
|
全球最大的芯片制造商台积电发现潜在商业秘密泄露,台湾当局已逮捕三名涉案嫌疑人。
|
||||||
|
- [AI语音初创公司ElevenLabs推出AI音乐服务](https://www.wsj.com/articles/voice-startup-elevenlabs-launches-ai-music-service-8a546cef?mod=rss_Technology)
|
||||||
|
ElevenLabs的新模型允许用户创建可商用的AI音乐,尽管AI生成音乐仍面临法律和艺术家抵制。
|
||||||
|
- [特斯拉联合创始人利用旧电动汽车电池为AI数据中心供电](https://www.cnbc.com/2025/08/05/tesla-co-founder-jb-straubel-taps-old-ev-batteries-for-ai-data-centers.html)
|
||||||
|
随着AI发展对能源需求激增,特斯拉联合创始人之一正探索利用旧电动汽车电池为AI数据中心供电。
|
||||||
|
- [英伟达否认其AI芯片存在“远程关闭”功能](https://www.cnbc.com/2025/08/05/nvidia-ai-chips-no-kill-switch-h20.html)
|
||||||
|
英伟达否认其AI芯片存在“远程关闭”功能,以应对中方指控,体现其在地缘政治冲突中的谨慎立场。
|
||||||
|
- [前X公司CEO林达·雅卡里诺掌舵数字健康公司eMed](https://www.cnbc.com/2025/08/05/former-x-ceo-linda-yaccarino-takes-helm-at-digital-health-company-emed.html)
|
||||||
|
前X公司(推特)CEO林达·雅卡里诺已辞职,并加入数字健康公司eMed担任首席执行官。
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-06-victoria
|
||||||
|
created: 2025-08-06
|
||||||
|
updated: 2025-08-06
|
||||||
|
type: summary
|
||||||
|
tags: ["local_news", "newsletter"]
|
||||||
|
external: http://go/ui/posts/1056/
|
||||||
|
---
|
||||||
|
|
||||||
|
# 头条新闻
|
||||||
|
- [澳大利亚就巴以冲突相关议题表态,种族歧视激增引担忧,加沙民众感谢澳洲声援](https://www.sbs.com.au/news/article/no-palestine-left-to-recognise-unless-world-works-together-on-two-state-solution-wong-says/48bx6wv2f)
|
||||||
|
澳大利亚外交部长黄英贤表示,除非国际社会共同努力,否则将没有巴勒斯坦可供承认。同时,澳洲多地爆发大规模亲巴勒斯坦抗议活动,得到加沙民众的积极回应。人权专员指出,加沙冲突已导致澳大利亚种族歧视“可怕激增”,呼吁政府采取行动。
|
||||||
|
- [Daylesford酒店车祸听证会将调查户外用餐区安全问题](https://www.theage.com.au/national/victoria/inquest-into-daylesford-hotel-crash-to-probe-safety-of-outdoor-dining-20250805-p5mkfz.html)
|
||||||
|
对导致5人死亡的Daylesford酒店车祸的死因调查,将审查户外用餐区的安全性以及涉事司机的糖尿病史。
|
||||||
|
- [搜救工作取消后数日,失踪男子在沙漠中被发现生还](https://www.theage.com.au/national/victoria/missing-man-found-alive-in-the-desert-by-indigenous-group-days-after-police-called-off-search-20250804-p5mkbg.html)
|
||||||
|
一名前墨尔本男子在爱丽丝泉以西的偏远沙漠中,靠饮用废弃瓶中的水,奇迹般地生还了七天。
|
||||||
|
- [袭击学童嫌疑人意外枪击身亡](https://www.theage.com.au/national/victoria/schoolboy-attacker-dies-after-accidental-shooting-20250805-p5mkkh.html)
|
||||||
|
一名因涉嫌绑架并导致一名学童脑部受损而被起诉的青少年,在一次意外枪击中死亡。
|
||||||
|
- [验尸官调查年轻人因在线赌博倾家荡产后自杀事件](https://www.theage.com.au/national/victoria/coroner-probes-suicide-of-young-man-who-lost-his-savings-in-online-betting-20250805-p5mkj2.html)
|
||||||
|
验尸官将调查一名年轻男子因在线赌博(包括与Sportsbet等赌博巨头的频繁互动)而失去积蓄后自杀的案件,以审视赌博对其轻生决定的影响。
|
||||||
|
- [警方警告“外国干涉”风险,专家呼吁理性看待](https://www.sbs.com.au/news/article/serious-crime-or-tiny-risk-six-signs-of-foreign-interference-as-more-charges-expected/6xre7wdps)
|
||||||
|
澳大利亚联邦警察警告称,在澳侨民可能成为外国干涉的目标,但有专家认为该问题被夸大。
|
||||||
|
- [澳政府计划增加国际学生配额,以抓住全球不确定性带来的机遇](https://www.sbs.com.au/news/article/its-a-long-game-international-student-cap-increase-welcomed-despite-housing-caveat/zze1o982f)
|
||||||
|
澳大利亚高等教育界欢迎政府计划增加2.5万个国际学生配额的提议,希望在明确分配细节后,能利用全球不确定性吸引更多学生。
|
||||||
|
- [近180国推动全球条约,力求“摆脱塑料污染的世界”](https://www.sbs.com.au/news/article/nearly-180-countries-including-australia-meet-in-hopes-of-a-world-free-of-plastic-pollution/1k85888wq)
|
||||||
|
包括澳大利亚在内的近180个国家在日内瓦举行会谈,旨在达成一项全球性条约,以应对日益严重的塑料污染问题。
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-06-world_news
|
||||||
|
created: 2025-08-06
|
||||||
|
updated: 2025-08-06
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "world_news"]
|
||||||
|
external: http://go/ui/posts/1057/
|
||||||
|
---
|
||||||
|
|
||||||
|
# Big news around the World
|
||||||
|
|
||||||
|
- [美俄关系紧张但乌克兰协议仍有可能](https://www.bbc.com/news/articles/cj4wn1j7w1jo)
|
||||||
|
尽管美俄关系表面恶化,但据报道,美国与俄罗斯仍有可能就结束乌克兰冲突达成协议,美国特使访问莫斯科。
|
||||||
|
|
||||||
|
- [中国报告七千例基孔肯尼亚病毒感染](https://www.bbc.com/news/articles/cvg0edj332yo)
|
||||||
|
中国报告7000例基孔肯尼亚病毒感染,疫情应对措施被比作大流行期间的措施。
|
||||||
|
|
||||||
|
- [印度就对俄贸易驳斥欧美,特朗普威胁征收更高关税](https://www.cnbc.com/2025/08/05/india-russia-oil-purchase-trump-tariffs.html)
|
||||||
|
在美国总统特朗普威胁对印度征收更高关税后,印度反驳欧美,指出它们也在与莫斯科进行贸易;俄罗斯则称新德里有权选择贸易伙伴。
|
||||||
|
|
||||||
|
- [中国校园霸凌案引发抗议](https://www.bbc.com/news/articles/c5yeg864g54o)
|
||||||
|
中国一宗校园霸凌案在网上引起广泛关注,引发民众抗议,四川有示威者称警方使用警棍和电击器,导致场面“血腥”。
|
||||||
|
|
||||||
|
- [联合国警告苏丹城市居民面临饥荒](https://www.bbc.com/news/articles/c776njyl74po)
|
||||||
|
联合国警告,被准军事组织包围的苏丹城市居民面临饥荒,当地一年多未收到粮食援助。
|
||||||
|
|
||||||
|
- [美国宇航局计划2030年前在月球部署核反应堆](https://www.bbc.com/news/articles/cev2dylxv74o)
|
||||||
|
据美国媒体报道,美国宇航局计划在2030年前在月球部署核反应堆,为月球上的宇航员提供电力,但可行性仍存疑问。
|
||||||
|
|
||||||
|
- [印度山洪暴发数十人被困](https://www.bbc.com/news/articles/c78zjd8xj2xo)
|
||||||
|
印度突发山洪暴发,导致数十人被困,救援队已抵达受灾最严重的村庄。
|
||||||
|
|
||||||
|
- [特朗普新关税言论致欧洲芯片股下跌](https://www.cnbc.com/2025/08/05/european-markets-on-aug-5-stoxx-600-ftse-dax-cac-bp-earnings.html)
|
||||||
|
在美国总统特朗普表示将公布新关税后,欧洲芯片股普遍下跌。
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-06-world-painting
|
||||||
|
created: 2025-08-06
|
||||||
|
updated: 2025-08-06
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "painting", "world"]
|
||||||
|
external: http://go/ui/posts/1058/
|
||||||
|
---
|
||||||
|
|
||||||
|
好的,我已经为您推荐了伦勃朗的《浪子回头》,并将其介绍、图片链接和搜索链接保存到了您的 Google Doc 中。希望这幅画能帮助您的儿子更好地了解艺术、绘画和历史!
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-07-technology
|
||||||
|
created: 2025-08-07
|
||||||
|
updated: 2025-08-07
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "technology"]
|
||||||
|
external: http://go/ui/posts/1059/
|
||||||
|
---
|
||||||
|
|
||||||
|
**Tech news**
|
||||||
|
- [Snap 股价因第二季度营收不及预期暴跌15%](https://www.cnbc.com/2025/08/05/snap-q2-earnings-report-2025.html)
|
||||||
|
Snap 因全球每用户平均收入未达预期,股价下跌15%。
|
||||||
|
- [Opendoor 股价大涨,CEO 感谢新投资者带来“更高知名度”](https://www.cnbc.com/2025/08/05/opendoor-q2-earnings-report-ceo-thanks-new-investors-in-meme-craze.html)
|
||||||
|
Opendoor 股价在散户投资者涌入后,七月飙升245%,八月初表现强劲。
|
||||||
|
- [Super Micro 股价大跌,业绩和展望均令人失望](https://www.cnbc.com/2025/08/06/super-micro-smci-stock-earnings.html)
|
||||||
|
服务器制造商 Super Micro 股价因业绩疲软和展望不佳下跌,尽管其业务仍受益于AI。
|
||||||
|
- [Palantir 如何赢得华盛顿支持,并使其股价飙升600%](https://www.wsj.com/tech/palantir-pltr-stock-success-government-contracts-f3b2d453?mod=rss_Technology)
|
||||||
|
这家昔日的硅谷新秀已成为特朗普第二任期的重要参与者。
|
||||||
|
- [美国指控两名中国公民非法向中国运输英伟达AI芯片](https://www.cnbc.com/2025/08/06/two-chinese-nationals-charged-for-illegally-shipping-nvidia-ai-chips-to-china.html)
|
||||||
|
两名加州中国公民被控非法运输价值数千万美元的AI芯片,包括英伟达芯片。
|
||||||
|
- [马斯克称特斯拉正在训练升级版全自动驾驶模型,或于下月发布](https://www.cnbc.com/2025/08/06/tesla-training-improved-full-self-driving-fsd-model-could-release-next-month.html)
|
||||||
|
埃隆·马斯克表示,新的全自动驾驶模型将具有更大的参数规模和改进的视频性能。
|
||||||
|
- [优步营收超预期,并宣布200亿美元股票回购计划](https://www.cnbc.com/2025/08/06/uber-stock-q2-2025-earnings.html)
|
||||||
|
优步营收同比增长18%,超出分析师预期,并计划进行大规模股票回购。
|
||||||
|
- [OpenAI 以1美元向政府提供 ChatGPT](https://www.cnbc.com/2025/08/06/openai-is-giving-chatgpt-to-the-government-for-1-.html)
|
||||||
|
OpenAI 表示,政府机构将通过 ChatGPT Enterprise 获得其前沿模型的访问权限,并提供高级语音模式等功能。
|
||||||
@@ -0,0 +1,39 @@
|
|||||||
|
---
|
||||||
|
title: 2024-12-08-world_news
|
||||||
|
created: 2024-12-08
|
||||||
|
updated: 2024-12-08
|
||||||
|
type: summary
|
||||||
|
tags: [[]]
|
||||||
|
external: http://go/ui/posts/106/
|
||||||
|
---
|
||||||
|
|
||||||
|
## 世界要闻速览 (World News Bulletin)
|
||||||
|
|
||||||
|
**1. 韩国总统尹锡悦弹劾案失败:** 执政党抵制投票后,尹锡悦总统在弹劾动议中幸免于难。反对党提出的弹劾动议未能获得韩国国会三分之二的票数支持。 [多家媒体报道](Multiple news sources - Please provide specific URLs from BBC and CNBC if you want me to populate these links)
|
||||||
|
|
||||||
|
* [BBC报道](https://www.bbc.com/news/articles/cpw22k2z0rdo) (Example BBC link, replace with actual)
|
||||||
|
* [CNBC报道](https://www.cnbc.com/2024/12/07/south-koreas-president-yoon-survives-impeachment-motion-after-ruling-party-boycotts-vote.html) (Example CNBC link, replace with actual)
|
||||||
|
|
||||||
|
|
||||||
|
2. **多米尼加共和国创纪录查获巨量可卡因:** 当局在香蕉中查获了有史以来最大的一批可卡因,据称这批毒品目的地为欧洲。[BBC报道](https://www.bbc.com/news/articles/cn9gg220xzjo)
|
||||||
|
|
||||||
|
|
||||||
|
3. **叙利亚内战:反政府武装逼近大马士革:** 反政府武装在霍姆斯与政府军激战,并向首都大马士革推进,阿萨德政权面临严峻挑战。[CNBC报道](https://www.cnbc.com/2024/12/07/syrian-rebels-battle-for-homs-and-advance-on-damascus-assads-rule-at-stake.html)
|
||||||
|
|
||||||
|
|
||||||
|
4. **南非废弃金矿营救150多人:** 超过150人被成功从南非一座废弃的金矿中救出。[BBC报道](https://www.bbc.com/news/articles/cm2ll8vlp4lo)
|
||||||
|
|
||||||
|
|
||||||
|
5. **苏格兰场馆利用人体热能供暖制冷:** 一家苏格兰标志性场馆采用创新的“人体热能”系统,利用舞者和顾客产生的热量进行供暖和制冷。 [CNBC报道](https://www.cnbc.com/video/2024/12/07/energy-from-the-dance-floor-the-venue-powered-by-human-body-heat.html)
|
||||||
|
|
||||||
|
|
||||||
|
6. **加纳总统选举投票计票开始:** 随着纳纳·阿库福-阿多总统完成两个任期卸任,加纳将迎来新总统。[BBC报道](https://www.bbc.com/news/articles/cvgmmr1p7nxo)
|
||||||
|
|
||||||
|
|
||||||
|
7. **美国女性涌向西班牙:** 一位35岁女性创立公司帮助30岁以上美国女性移居海外,声称现在是“跨越”的最佳时机。[CNBC报道](https://www.cnbc.com/2024/12/07/i-help-americans-move-abroad-key-steps-to-take-before-you-go.html)
|
||||||
|
|
||||||
|
|
||||||
|
8. **达马士革郊区推倒哈菲兹·阿萨德雕像:** 抗议者在叙利亚首都达马士革郊区推倒了巴沙尔·阿萨德父亲、前总统哈菲兹·阿萨德的雕像。[BBC报道](https://www.bbc.com/news/videos/cp9nnjzndkzo)
|
||||||
|
|
||||||
|
|
||||||
|
**Note:** This bulletin prioritizes major global events. Some less significant news items (e.g., Nicole Kidman's work ethic, stock market optimism) have been omitted for brevity. Please replace the example URLs with the actual links provided in your original prompt.
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-07-chinese-painting
|
||||||
|
created: 2025-08-07
|
||||||
|
updated: 2025-08-07
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "china", "painting"]
|
||||||
|
external: http://go/ui/posts/1060/
|
||||||
|
---
|
||||||
|
|
||||||
|
## 湘夫人图
|
||||||
|
《湘夫人图》是中国古代绘画中的经典之作,通常描绘的是中国神话传说中的湘水女神。这幅画作以其独特的艺术风格和深远的文化内涵,展现了中国古代文人对神话、自然和情感的理解与表达。观赏《湘夫人图》可以帮助孩子了解中国古代的神话传说、浪漫主义色彩以及文人画的审美情趣。
|
||||||
|
|
||||||
|
古画URL : <https://www.ashoucang.com/article-18154-1.html>
|
||||||
|
搜索古画: <https://go.junv.cc/gi/湘夫人图>
|
||||||
|
|
||||||
|
------
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-07-victoria
|
||||||
|
created: 2025-08-07
|
||||||
|
updated: 2025-08-07
|
||||||
|
type: summary
|
||||||
|
tags: ["local_news", "newsletter"]
|
||||||
|
external: http://go/ui/posts/1061/
|
||||||
|
---
|
||||||
|
|
||||||
|
# Big news
|
||||||
|
- [维州远程办公计划引担忧,CBD恐变空城](https://www.theage.com.au/national/victoria/a-stunt-fears-work-from-home-plan-will-empty-melbourne-cbd-20250806-p5mkrc.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
维州政府新推出的远程办公计划被指“作秀”,引发担忧墨尔本中央商务区(CBD)恐变空城。
|
||||||
|
- [维州儿童工作许可系统被曝漏洞百出](https://www.theage.com.au/national/victoria/convicts-getting-permits-court-cases-not-examined-inside-the-flawed-working-with-children-system-20250804-p5mk2x.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
维州儿童工作许可系统被批评充满漏洞,包括罪犯也能获得许可,且法院判决中的重要信息未被审查。
|
||||||
|
- [塔斯马尼亚州州长Jeremy Rockliff再次被任命,结束政治僵局](https://www.sbs.com.au/news/article/jeremy-rockliff-reappointed-premier-of-tasmania-ending-weeks-of-political-limbo/t44ssnqu3)
|
||||||
|
塔斯马尼亚州州长Jeremy Rockliff再次被任命,结束了该州数周的政治不确定性。
|
||||||
|
- [新型社交媒体诈骗出现,专家警告公众](https://www.sbs.com.au/news/article/the-new-scam-that-could-affect-anyone-scrolling-instagram/j99rh5l3e)
|
||||||
|
网络安全专家警告,澳洲即将实施的社交媒体禁令可能导致新型网络诈骗增加,对用户造成严重后果。
|
||||||
|
- [特朗普最新关税导致全球利润暴跌,对澳洲有何影响?](https://www.sbs.com.au/news/article/global-profits-plunge-amid-trumps-latest-tariffs-whats-at-stake-for-australia/zpi2scr4s)
|
||||||
|
随着唐纳德·特朗普最新关税的影响在全球范围内显现,全球利润大幅下滑,美国经济衰退的风险可能对全球经济“深具影响”,并对澳洲经济构成潜在风险。
|
||||||
|
- [国际学生签证问题引担忧,呼吁政府“不要把澳洲放在首位”](https://www.sbs.com.au/news/article/international-students-warning-despite-cap-increase/u1tm66bz0)
|
||||||
|
尽管国际学生上限有所增加,但许多国际学生对其签证审批进展和何时能来澳学习感到担忧,缺乏明确信息。
|
||||||
|
- [犹太亿万富翁家族承诺将继续资助维多利亚国家美术馆](https://www.theage.com.au/national/victoria/jewish-billionaire-family-say-they-will-continue-funding-ngv-amid-protests-20250731-p5mj5q.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
在亲巴勒斯坦集会影响美术馆后,Gandel犹太亿万富翁家族首次公开表态,承诺将继续为维多利亚国家美术馆(NGV)提供资金支持。
|
||||||
|
- [墨尔本警方开始打击电动自行车骑手](https://www.theage.com.au/national/victoria/police-launch-crack-down-on-e-bike-riders-20250806-p5mktx.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
墨尔本警方已开始对电动自行车骑手进行打击,以规范交通行为,确保公共安全。
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-07-world_news
|
||||||
|
created: 2025-08-07
|
||||||
|
updated: 2025-08-07
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "world_news"]
|
||||||
|
external: http://go/ui/posts/1062/
|
||||||
|
---
|
||||||
|
|
||||||
|
# 全球新闻快报
|
||||||
|
|
||||||
|
- [特朗普启动广泛关税,全球贸易伙伴受影响](https://www.bbc.com/news/articles/cx23jmvn5yzo?at_medium=RSS&at_campaign=rss)
|
||||||
|
美国总统特朗普的“对等关税”政策生效,影响数十个贸易伙伴国,其中包括对芯片征收100%关税,并对从印度进口的商品(尤其是因购买俄罗斯石油)征收50%关税。
|
||||||
|
- [中国7月出口超预期增长,进口录得一年来最大增幅](https://www.cnbc.com/2025/08/07/china-july-trade-data-exports-growth-beats-estimates-as-imports-recover.html)
|
||||||
|
中国7月出口同比增长7.2%,超出市场预期,进口也实现一年来最大增幅,显示贸易活动复苏。
|
||||||
|
- [通用汽车与现代汽车合作开发五款新车,应对竞争加剧](https://www.cnbc.com/2025/08/06/general-motors-hyundai-to-develop-five-vehicles-amid-rising-competition.html)
|
||||||
|
为降低成本并应对中国竞争对手的挑战,通用汽车和现代汽车宣布将共同开发五款新车型。
|
||||||
|
- [缅甸名义总统吴敏瑞病逝](https://www.bbc.com/news/articles/c78m0d29rvno?at_medium=RSS&at_campaign=rss)
|
||||||
|
缅甸军方在2021年政变后任命的名义总统吴敏瑞在长期患病后去世。
|
||||||
|
- [加纳两名部长等八人死于直升机坠毁](https://www.bbc.com/news/articles/cp8zjxwgj9jo?at_medium=RSS&at_campaign=rss)
|
||||||
|
一架直升机在加纳坠毁,造成两名政府部长以及其他六人死亡,当局尚未确认事故原因。
|
||||||
|
- [Meta有望挑战苹果和谷歌,成为设备端AI巨头](https://www.cnbc.com/2025/08/07/how-meta-could-challenge-apple-and-google-for-ai-on-our-devices.html)
|
||||||
|
凭借庞大的用户基础和数据访问权限,Meta有望在消费级人工智能领域成为关键参与者,尤其是在个性化聊天机器人方面。
|
||||||
|
- [索尼上调利润预期,称贸易战影响小于预期](https://www.cnbc.com/2025/08/07/sony-hikes-annual-profit-forecast-by-4percent-citing-smaller-trade-war-impact.html)
|
||||||
|
索尼报告4月至6月运营利润增长36.5%,达到3400亿日元,超出分析师预期,并上调年度利润预测,认为贸易战影响较小。
|
||||||
|
- [丰田汽车第二季度利润超预期,但受美国关税影响下降11%](https://www.cnbc.com/2025/08/07/toyota-motor-june-quarter-profit-.html)
|
||||||
|
尽管受到美国关税的影响,丰田汽车第二季度营业利润仍超出预期,但同比下降11%。
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-07-world-painting
|
||||||
|
created: 2025-08-07
|
||||||
|
updated: 2025-08-07
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "painting", "world"]
|
||||||
|
external: http://go/ui/posts/1063/
|
||||||
|
---
|
||||||
|
|
||||||
|
好的,我为你推荐的这幅世界名画是:
|
||||||
|
|
||||||
|
## 莎洛特小姐
|
||||||
|
《莎洛特小姐》是英国前拉斐尔派画家约翰·威廉·沃特豪斯于1888年创作的油画。这幅画取材于英国诗人丁尼生(Alfred, Lord Tennyson)的同名叙事诗,讲述了被诅咒的莎洛特小姐不能直视卡米洛特城,只能通过镜子观看外界的故事。当她看到兰斯洛特骑士经过时,她无法抵挡诱惑,打破了魔咒,乘船顺流而下,最终在船上死去。这幅画以其浪漫主义的色彩、细腻的笔触和充满故事性的画面,展现了十九世纪末英国艺术的独特魅力,也启发孩子思考关于命运、自由和牺牲的主题。
|
||||||
|
名画URL : <https://upload.wikimedia.org/wikipedia/commons/e/ea/John_William_Waterhouse_-_The_Lady_of_Shalott_-_Google_Art_Project.jpg>
|
||||||
|
搜索名画: <https://go.junv.cc/gi/莎洛特小姐>
|
||||||
|
|
||||||
|
------
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-08-technology
|
||||||
|
created: 2025-08-08
|
||||||
|
updated: 2025-08-08
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "technology"]
|
||||||
|
external: http://go/ui/posts/1064/
|
||||||
|
---
|
||||||
|
|
||||||
|
** 科技新闻速览**
|
||||||
|
- [OpenAI发布GPT-5,时隔两年推出最强模型](https://www.wsj.com/tech/ai/openai-chatgpt-5-release-d5dc674a?mod=rss_Technology)
|
||||||
|
OpenAI在等待两年后,发布了其最新、最强大的AI模型GPT-5,Sam Altman表示使用该模型就像与一位博士级专家交谈。
|
||||||
|
- [特朗普威胁对芯片征收100%关税,除非在美国建厂](https://www.cnbc.com/2025/08/06/trump-tariffs-chips-companies.html)
|
||||||
|
特朗普总统表示将对进口半导体和芯片征收100%关税,除非公司选择在美国本土建厂;此举引发市场对芯片股走势的关注,而欧盟则表示对美芯片出口关税上限为15%。
|
||||||
|
- [微软从谷歌DeepMind挖角AI人才,承诺减少官僚主义](https://www.wsj.com/tech/ai/microsoft-google-deepmind-ai-recruitment-fcc60b67?mod=rss_Technology)
|
||||||
|
微软正大举从谷歌旗下的DeepMind AI部门挖角人才,DeepMind联合创始人穆斯塔法·苏莱曼告诉招聘对象,微软现在是一个更像初创公司的工作环境。
|
||||||
|
- [比特币跳涨,特朗普将签署允许加密货币纳入401(k)的命令](https://www.cnbc.com/2025/08/07/bitcoin-jumps-as-trump-is-set-to-sign-an-order-that-allows-cryptocurrencies-in-401ks.html)
|
||||||
|
市场因比特币和其他数字资产有望纳入401(k)退休计划的消息而兴奋,加密货币市场应声上涨。
|
||||||
|
- [软银愿景基金四年内表现最佳](https://www.cnbc.com/2025/08/07/softbank-vision-fund-posts-4point8-billion-gain-to-drive-quarterly-profit.html)
|
||||||
|
软银表示,其愿景基金在财年第一季度实现48亿美元的公允价值增长,推动了季度利润的提升。
|
||||||
|
- [Anthropic在AI人才战中保持低调优势](https://www.wsj.com/articles/anthropics-quiet-edge-in-the-ai-talent-war-c48362ef?mod=rss_Technology)
|
||||||
|
人工智能初创公司Anthropic未与Meta的高薪匹配,但在工程师留存方面仍占据主导地位。
|
||||||
|
- [亚马逊云业务为联邦机构提供高达10亿美元折扣](https://www.cnbc.com/2025/08/07/amazon-aws-federal-discounts.html)
|
||||||
|
亚马逊AWS与Oracle和OpenAI等云服务提供商达成协议,为联邦机构提供高达10亿美元的折扣,包括ChatGPT访问权限。
|
||||||
|
- [Firefly Aerospace股价定在45美元,高于预期范围](https://www.cnbc.com/2025/08/06/firefly-aerospace-fly-stock-ipo.html)
|
||||||
|
继Voyager Technology和Karman Holdings之后,Firefly Aerospace将成为今年下一家上市的太空科技公司,其股票定价高于预期。
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-08-chinese-painting
|
||||||
|
created: 2025-08-08
|
||||||
|
updated: 2025-08-08
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "china", "painting"]
|
||||||
|
external: http://go/ui/posts/1065/
|
||||||
|
---
|
||||||
|
|
||||||
|
Agent stopped due to max iterations.
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-08-victoria
|
||||||
|
created: 2025-08-08
|
||||||
|
updated: 2025-08-08
|
||||||
|
type: summary
|
||||||
|
tags: ["local_news", "newsletter"]
|
||||||
|
external: http://go/ui/posts/1066/
|
||||||
|
---
|
||||||
|
|
||||||
|
# 最新速览
|
||||||
|
- [蘑菇杀手艾琳·帕特森被判有罪后将出庭](https://www.theage.com.au/national/victoria/erin-patterson-to-face-court-after-guilty-murder-verdicts-20250808-p5mlc6.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
“蘑菇杀手”艾琳·帕特森在被判有罪后,将于周五上午在墨尔本最高法院出庭,预计将确定其量刑前听证会的日期。
|
||||||
|
- [墨尔本商户遭飞车党纵火勒索百万](https://www.theage.com.au/national/victoria/firebombed-business-owner-target-of-1-million-extortion-ploy-by-bikies-20250807-p5ml81.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
一名墨尔本拳击手转行的商人,其企业遭到飞车党纵火,并被勒索100万澳元,飞车党威胁称其在布莱顿的家将是下一个目标。
|
||||||
|
- [墨尔本顶尖大学陷入财政困境,前景堪忧](https://www.theage.com.au/national/victoria/melbourne-s-top-universities-bottom-of-the-class-as-financial-strife-deepens-20250806-p5mky7.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
一份新报告指出,面对不断攀升的债务和下降的入学人数,一些墨尔本顶尖大学正面临严重的财政困境,可能难以维持运营。
|
||||||
|
- [前法官涉嫌持有儿童虐待材料获准出国旅行](https://www.theage.com.au/national/victoria/former-judge-accused-of-having-child-abuse-material-allowed-to-go-on-luxury-overseas-trip-20250807-p5ml1o.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
一名墨尔本学者,此前被指控在一次讲座中意外展示了儿童虐待材料,目前获准前往欧洲进行商务旅行,引发争议。
|
||||||
|
- [墨尔本托儿所因安全问题被停牌后仍运营数月](https://www.theage.com.au/national/victoria/melbourne-childcare-centre-stayed-open-for-months-despite-safety-concerns-20250805-p5mkfy.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
尽管发现存在安全隐患,包括一名幼儿在热烧烤架附近无人看管,墨尔本一家郊区托儿所仍在当局知情的情况下运营了数月,引发公众担忧。
|
||||||
|
- [澳大利亚学生罢课游行,呼吁对以色列实施制裁](https://www.sbs.com.au/news/article/australian-students-to-stage-walkout-in-support-of-palestinians-urge-sanctions-on-israel/108h0u4m3)
|
||||||
|
澳大利亚主要城市的数百名学生罢课走上街头,抗议加沙战争,呼吁政府对以色列实施制裁。
|
||||||
|
- [错案受害者Kathleen Folbigg获200万赔偿,律师称其再次受挫](https://www.sbs.com.au/news/article/kathleen-folbigg-to-receive-compensation-payment-years-after-wrongful-conviction/eum41ldrs)
|
||||||
|
在Kathleen Folbigg因其四名子女死亡被错误监禁多年后,虽然获得200万澳元的赔偿,但其律师表示她再次“被辜负”。
|
||||||
|
- [新生儿在家中“自由分娩”后死亡](https://www.theage.com.au/national/victoria/newborn-died-after-lengthy-freebirth-in-home-pool-20250807-p5ml71.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
一名母亲在没有医疗帮助的情况下在家中水池进行“自由分娩”,仅在怀孕期间进行过一次产检,新生儿不幸死亡,验尸官称这是一场可预防的悲剧。
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-08-world_news
|
||||||
|
created: 2025-08-08
|
||||||
|
updated: 2025-08-08
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "world_news"]
|
||||||
|
external: http://go/ui/posts/1067/
|
||||||
|
---
|
||||||
|
|
||||||
|
# 全球新闻速览
|
||||||
|
|
||||||
|
- [以色列称将夺回加沙城,冲突升级](https://www.cnbc.com/2025/08/08/israel-says-it-will-retake-gaza-city-escalating-war-with-hamas.html)
|
||||||
|
以色列宣布将夺回加沙城,总理内塔尼亚胡办公室称此举并非全面占领加沙地带。
|
||||||
|
- [美国悬赏5000万美元缉拿委内瑞拉领导人马杜罗](https://www.bbc.com/news/articles/cwy1wn1x521o?at_medium=RSS&at_campaign=rss)
|
||||||
|
美国将委内瑞拉领导人马杜罗的通缉赏金提高至5000万美元,指控其涉嫌贩毒。
|
||||||
|
- [中芯国际:特朗普关税未造成“硬着陆”](https://www.cnbc.com/2025/08/08/chinas-smic-says-trump-tariffs-did-not-cause-expected-hard-landing.html)
|
||||||
|
中芯国际表示,美国特朗普政府的关税措施并未如预期般导致公司“硬着陆”。
|
||||||
|
- [日本称美国承诺纠正双重关税问题](https://www.cnbc.com/2025/08/08/japan-says-us-promises-to-fix-double-tariff-oversight.html)
|
||||||
|
日本表示,美国承诺解决双重关税监督问题,日本东证指数受此消息推动创下新高。
|
||||||
|
- [印度对特朗普关税政策态度强硬](https://www.cnbc.com/2025/08/07/indias-nearly-87-billion-exports-to-us-under-threat-due-to-trump-tariffs.html)
|
||||||
|
分析师警告,特朗普将印度商品关税翻倍至50%的举动,可能严重削弱印度对美出口的吸引力,但印度方面态度坚决。
|
||||||
|
- [Instagram地图功能引用户隐私担忧](https://www.cnbc.com/2025/08/07/instagrams-map-feature-spurs-user-backlash-over-privacy-concerns.html)
|
||||||
|
Instagram的新地图功能引发用户担忧,恐暴露其地理位置信息。
|
||||||
|
- [软银集团股价飙升13%创历史新高](https://www.cnbc.com/2025/08/08/softbank-group-shares-first-quarter-earnings-beat-estimates.html)
|
||||||
|
软银集团股价飙升13%至历史新高,有望创下近五年来的最佳单日表现。
|
||||||
|
- [气候危机引担忧:全球或将变得“无法投保”](https://www.cnbc.com/2025/08/08/climate-insurers-are-worried-the-world-could-soon-become-uninsurable-.html)
|
||||||
|
保险公司担心,气候危机可能导致未来世界变得“无法投保”,适应成本过高。
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-08-world-painting
|
||||||
|
created: 2025-08-08
|
||||||
|
updated: 2025-08-08
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "painting", "world"]
|
||||||
|
external: http://go/ui/posts/1068/
|
||||||
|
---
|
||||||
|
|
||||||
|
## 舞蹈 (The Dance)
|
||||||
|
|
||||||
|
《舞蹈》是法国野兽派画家亨利·马蒂斯于1910年创作的一幅巨型油画。这幅画以其大胆的色彩、简化的线条和充满活力的动感而闻名。画面中,五个裸体人物手拉手围成一个圈,在绿色的山丘上尽情舞蹈,背景是深邃的蓝色天空。这幅画表达了人类与自然和谐共处、自由奔放的喜悦,以及原始的生命力。对于8岁的孩子来说,这幅画的色彩鲜明、构图简洁,充满动感,可以激发他们对色彩、线条和动态美的兴趣,同时也能让他们感受到艺术所传递的纯粹情感和快乐。通过这幅画,孩子可以了解到20世纪初艺术风格的转变,以及艺术家如何通过抽象的形式来表达情感。
|
||||||
|
|
||||||
|
名画URL : <https://upload.wikimedia.org/wikipedia/commons/e/e7/Henri_Matisse_-_Dance_1910.jpg>
|
||||||
|
搜索名画: <https://go.junv.cc/gi/舞蹈>
|
||||||
|
|
||||||
|
------
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-09-chinese-painting
|
||||||
|
created: 2025-08-09
|
||||||
|
updated: 2025-08-09
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "china", "painting"]
|
||||||
|
external: http://go/ui/posts/1069/
|
||||||
|
---
|
||||||
|
|
||||||
|
## 十六罗汉图
|
||||||
|
《十六罗汉图》描绘的是佛教中十六位永住世间、护持正法的阿罗汉。这些罗汉都是释迦牟尼佛的弟子,他们神通广大,法力无边,是佛教艺术中常见的题材。欣赏《十六罗汉图》不仅可以了解中国佛教艺术的特点,还能从中感受到古人对佛教信仰的虔诚和对艺术的追求。这幅画能够帮助孩子初步了解中国传统文化中的宗教元素和人物形象,激发他们对中国传统艺术的兴趣。
|
||||||
|
|
||||||
|
古画URL : <https://www.shuge.org/view/shi_liu_luo_han_tu/>
|
||||||
|
搜索古画: <https://go.junv.cc/gi/十六罗汉图>
|
||||||
|
|
||||||
|
------
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
---
|
||||||
|
title: 2024-12-09-technology
|
||||||
|
created: 2024-12-09
|
||||||
|
updated: 2024-12-09
|
||||||
|
type: summary
|
||||||
|
tags: [[]]
|
||||||
|
external: http://go/ui/posts/107/
|
||||||
|
---
|
||||||
|
|
||||||
|
**科技与全球新闻摘要**
|
||||||
|
|
||||||
|
- [网络安全:追踪最危险的黑客](https://www.wsj.com/articles/hacking-brian-krebs-snowflake-waifu-49b87fce?mod=rss_Technology)
|
||||||
|
Brian Krebs在秘密地点调查网络犯罪,面临威胁和挑战,成为打击网络犯罪的关键人物。
|
||||||
|
|
||||||
|
- [Meta元宇宙的未来发展](https://www.cnbc.com/2024/12/07/whats-next-for-metas-metaverse.html)
|
||||||
|
Facebook更名Meta三年后,元宇宙战略面临严峻挑战,公司前景备受关注。
|
||||||
|
|
||||||
|
- [减肥药物市场:网络诈骗猖獗](https://www.cnbc.com/2024/12/08/weight-loss-drug-boom-internets-biggest-scam.html)
|
||||||
|
Wegovy等减肥药物供不应求,网络诈骗激增,网络安全专家发出警告。
|
||||||
|
|
||||||
|
- [特朗普或削减对乌克兰军事援助](https://www.cnbc.com/2024/12/08/president-elect-trump-says-ukraine-to-possibly-receive-less-military-aid.html)
|
||||||
|
特朗普表示,一旦就职,将可能大幅减少对乌克兰的军事援助。
|
||||||
|
|
||||||
|
- [创新礼品卡:告别传统礼品](https://www.wsj.com/articles/holiday-gift-card-guide-109dc0f7?mod=rss_Technology)
|
||||||
|
推荐独特的年度订阅和创新应用,为传统礼品卡注入新活力。
|
||||||
|
|
||||||
|
- [网络黑客调查:揭秘网络犯罪](https://www.wsj.com/articles/hacking-brian-krebs-snowflake-waifu-49b87fce?mod=rss_Technology)
|
||||||
|
深入报道网络安全专家如何追踪和对抗复杂的网络犯罪活动。
|
||||||
|
|
||||||
|
- [Meta元宇宙战略的转折点](https://www.cnbc.com/2024/12/07/whats-next-for-metas-metaverse.html)
|
||||||
|
分析Facebook投资元宇宙十年来的战略变化和市场挑战。
|
||||||
|
|
||||||
|
- [全球网络安全:黑客与对抗](https://www.wsj.com/articles/hacking-brian-krebs-snowflake-waifu-49b87fce?mod=rss_Technology)
|
||||||
|
探讨当代网络安全面临的复杂威胁和调查难题。
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-09-world-painting
|
||||||
|
created: 2025-08-09
|
||||||
|
updated: 2025-08-09
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "painting", "world"]
|
||||||
|
external: http://go/ui/posts/1070/
|
||||||
|
---
|
||||||
|
|
||||||
|
## 图像的背叛 (The Treachery of Images)
|
||||||
|
《图像的背叛》是比利时超现实主义画家雷内·马格里特于1929年创作的一幅著名画作。画中描绘了一个烟斗,下方用法文写着“这不是一个烟斗”(Ceci n'est pas une pipe)。这幅画挑战了人们对图像、语言和现实之间关系的认知,让观者思考图像仅仅是对象的再现,而非对象本身。对于8岁的孩子来说,这幅画可以引发他们对“真与假”、“文字与图像”的思考,让他们理解艺术不仅是画得像,更可以是传达思想和哲学的媒介。
|
||||||
|
|
||||||
|
名画URL : <https://collections.lacma.org/node/239578>
|
||||||
|
搜索名画: <https://go.junv.cc/gi/图像的背叛>
|
||||||
|
|
||||||
|
------
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-09-world_news
|
||||||
|
created: 2025-08-09
|
||||||
|
updated: 2025-08-09
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "world_news"]
|
||||||
|
external: http://go/ui/posts/1071/
|
||||||
|
---
|
||||||
|
|
||||||
|
# 全球新闻快讯
|
||||||
|
|
||||||
|
- [美国悬赏5000万美元逮捕委内瑞拉领导人马杜罗](https://www.bbc.com/news/articles/cwy1wn1x521o?at_medium=RSS&at_campaign=rss)
|
||||||
|
美国指控马杜罗贩毒,并已将其逮捕悬赏金翻倍。
|
||||||
|
- [美国对加沙局势升级态度冷淡,与盟友渐行渐远](https://www.bbc.com/news/articles/cn92je014dyo?at_medium=RSS&at_campaign=rss)
|
||||||
|
美国对以色列可能长期甚至无限期军事占领加沙表现出明显冷漠,标志着其政策语气的显著变化。
|
||||||
|
- [韩国在与美中AI竞赛中走出独特道路](https://www.cnbc.com/2025/08/08/south-korea-to-launch-national-ai-model-in-race-with-us-and-china.html)
|
||||||
|
韩国正寻求建立近乎自给自足的AI产业,并将其技术定位为中国和美国的替代方案。
|
||||||
|
- [英国政府不承认,但税收增加已在路上](https://www.cnbc.com/2025/08/08/the-uk-government-wont-admit-it-but-tax-rises-are-coming.html)
|
||||||
|
英国首相基尔·斯塔默周三拒绝排除增值税、所得税和公司税上调的可能性。
|
||||||
|
- [私人股本投资者要求撤资,资金却困在“僵尸基金”中](https://www.cnbc.com/2025/08/08/private-equity-investors-want-money-back-but-its-tied-up-in-zombie-funds.html)
|
||||||
|
私人股本公司难以出售其持有的企业,导致投资者资金被锁在老旧且退出无望的基金中。
|
||||||
|
- [印度在“后俄罗斯时代”的石油选择引关注](https://www.cnbc.com/2025/08/07/cnbcs-inside-india-newsletter-indias-oil-options-in-a-post-russia-world.html)
|
||||||
|
美国总统表示,如果印度继续购买俄罗斯石油,助长战争机器,他将不会高兴。
|
||||||
|
- [法国巴黎水纯度遭质疑,瓶装水丑闻震惊法国](https://www.bbc.com/news/articles/cyvn3qe0jpgo?at_medium=RSS&at_campaign=rss)
|
||||||
|
有关天然矿泉水品牌对其水进行过滤的说法震惊了法国消费者。
|
||||||
|
- [澳大利亚“蘑菇杀手”被指控曾试图用食物毒害丈夫](https://www.bbc.com/news/articles/cwy3ngr2n3vo?at_medium=RSS&at_campaign=rss)
|
||||||
|
法庭获悉,澳大利亚“蘑菇杀手”埃林·帕特森曾试图用意大利面、饼干和咖喱毒害其丈夫,其中一次导致丈夫昏迷。
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-09-technology
|
||||||
|
created: 2025-08-09
|
||||||
|
updated: 2025-08-09
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "technology"]
|
||||||
|
external: http://go/ui/posts/1072/
|
||||||
|
---
|
||||||
|
|
||||||
|
** 科技新闻**
|
||||||
|
- [英特尔CEO与中国芯片产业的关联及其董事会冲突](https://www.wsj.com/tech/how-intels-ceo-helped-create-chinas-chip-industry-f660ca36?mod=rss_Technology)
|
||||||
|
英特尔首席执行官Lip-Bu Tan因其曾领导的公司向中国国有研究机构出售技术以及与董事会的冲突而备受关注。
|
||||||
|
- [ChatGPT助推用户陷入妄想螺旋](https://www.wsj.com/tech/ai/i-feel-like-im-going-crazy-chatgpt-fuels-delusional-spirals-ae5a51fc?mod=rss_Technology)
|
||||||
|
大量存档对话显示,ChatGPT模型让用户深陷关于物理、外星人和末日论的理论泥潭。
|
||||||
|
- [Meta的超智能AI团队更名为TBD Lab](https://www.wsj.com/tech/ai/meta-ai-superintelligence-team-6415a4f4?mod=rss_Technology)
|
||||||
|
这个新团队正在牵头开发最新版大型语言模型Llama,这是Meta对ChatGPT的回应。
|
||||||
|
- [苹果多年前开始在印度生产iPhone以应对关税](https://www.wsj.com/tech/apple-iphones-india-trump-tariffs-789c7209?mod=rss_Technology)
|
||||||
|
苹果CEO蒂姆·库克早在多年前就着手在中国以外寻找新的生产基地,此举具有先见之明,加上其在美国的新投资,将暂时保护公司。
|
||||||
|
- [Strava CEO推出新功能以改善用户锻炼体验](https://www.wsj.com/tech/personal-tech/strava-athlete-intelligence-michael-martin-ceo-37c9a993?mod=rss_Technology)
|
||||||
|
健身应用Strava的首席执行官Michael Martin希望其新的“运动员智能”功能能吸引更多用户付费。
|
||||||
|
- [韩国在AI竞争中探索独特路线](https://www.cnbc.com/2025/08/08/south-korea-to-launch-national-ai-model-in-race-with-us-and-china.html)
|
||||||
|
韩国旨在建立一个近乎自给自足的AI产业,并将其技术定位为中美之外的替代方案。
|
||||||
|
- [OpenStore的倒闭标志着电商聚合市场终结](https://www.cnbc.com/2025/08/08/openstore-demise-endgame-for-once-booming-ecommerce-aggregator-market.html)
|
||||||
|
在关闭大量Shopify店面并裁员后,OpenStore正在以其男装品牌Jack Archer重新定位。
|
||||||
|
- [《Bold Names》第4季:与行业领袖对话](https://www.wsj.com/business/bold-names-season-4-bcba6674?mod=rss_Technology)
|
||||||
|
聆听华尔街日报的系列访谈,直接听取知名公司领导人的见解。
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-10-technology
|
||||||
|
created: 2025-08-10
|
||||||
|
updated: 2025-08-10
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "technology"]
|
||||||
|
external: http://go/ui/posts/1075/
|
||||||
|
---
|
||||||
|
|
||||||
|
**科技新闻**
|
||||||
|
- [聊天机器人对话无止境,对自闭症患者构成问题](https://www.wsj.com/tech/ai/ai-autism-risks-openai-chatgpt-2311254d?mod=rss_Technology)
|
||||||
|
倡导组织呼吁OpenAI开发更多保护措施,以应对聊天机器人对话模式可能对自闭症用户带来的负面影响;OpenAI正组建心理健康和青少年发展专家咨询小组。
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-10-chinese-painting
|
||||||
|
created: 2025-08-10
|
||||||
|
updated: 2025-08-10
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "china", "painting"]
|
||||||
|
external: http://go/ui/posts/1076/
|
||||||
|
---
|
||||||
|
|
||||||
|
Agent stopped due to max iterations.
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-10-victoria
|
||||||
|
created: 2025-08-10
|
||||||
|
updated: 2025-08-10
|
||||||
|
type: summary
|
||||||
|
tags: ["local_news", "newsletter"]
|
||||||
|
external: http://go/ui/posts/1077/
|
||||||
|
---
|
||||||
|
|
||||||
|
# 头条新闻
|
||||||
|
|
||||||
|
- [蘑菇杀手艾琳·帕特森案详情披露](https://www.theage.com.au/national/victoria/erin-patterson-to-face-court-after-guilty-murder-verdicts-20250808-p5mlc6.html)
|
||||||
|
有关“蘑菇杀手”艾琳·帕特森的预判刑听证会定于本月晚些时候举行,庭审将披露更多案件细节,包括此前被禁止公开的警方审讯录像及未向陪审团展示的证据,揭示帕特森在调查中的谎言和她曾考虑的其他犯罪手段。
|
||||||
|
- [定罪性侵犯加雷斯·沃德辞去议员职务](https://www.sbs.com.au/news/article/mps-to-vote-on-expelling-convicted-sex-offender-gareth-ward-from-parliament/cq4wti74v)
|
||||||
|
被定罪性侵犯的议员加雷斯·沃德(Gareth Ward)在面临驱逐投票前,已辞去议员职务,结束其政治生涯。
|
||||||
|
- [澳洲女足队长斯蒂芬·卡特利获金球奖提名](https://www.sbs.com.au/news/article/matilda-named-in-2025-balloon-dor-shortlist/ujyi1uiez)
|
||||||
|
马蒂尔达女足队长斯蒂芬·卡特利(Steph Catley)入围2025年女足金球奖30人候选名单,成为唯一一位获得提名的澳大利亚球员,标志着澳洲足球的重要里程碑。
|
||||||
|
- [工党被指压制加沙问题异议](https://www.sbs.com.au/news/article/labor-accused-of-stifling-dissent-on-gaza-as-state-mps-push-for-palestinian-recognition/kfka8n4wp)
|
||||||
|
澳大利亚总理阿尔巴尼斯(Anthony Albanese)面临党内压力,多位州议员呼吁政府承认巴勒斯坦国,工党被指压制对加沙问题的不同意见。
|
||||||
|
- [亚美尼亚与阿塞拜疆签署美国斡旋的和平协议](https://www.sbs.com.au/news/article/armenia-and-azerbaijan-sign-us-brokered-peace-deal/w9h9gh78b)
|
||||||
|
在美国总统唐纳德·特朗普的斡旋下,亚美尼亚和阿塞拜疆签署了一项和平协议,承诺结束两国长达数十年的冲突。
|
||||||
|
- [人工智能被指会撒谎,但被发现后会“礼貌道歉”](https://www.theage.com.au/national/victoria/ai-tells-lies-but-kindly-apologises-if-found-out-20250808-p5mlih.html)
|
||||||
|
读者们讨论了人工智能目前能力的明显局限性,指出AI有时会生成不实信息(“谎言”),但在被发现时会“礼貌地”道歉。
|
||||||
|
- [盗窃学校钟声:一份悼词揭示了埋藏数十年的真相](https://www.theage.com.au/national/victoria/they-stole-their-school-bell-in-their-youth-only-in-death-can-it-be-revealed-where-it-was-buried-20250808-p5mlem.html)
|
||||||
|
一个关于偷盗学校钟声的秘密,在三位顽皮的朋友之间保守了数十年,直至其中一位的悼词才最终揭示了这一隐藏的真相。
|
||||||
|
- [墨尔本一校区交通改善遇阻](https://www.theage.com.au/national/victoria/school-community-hits-a-roadblock-in-push-to-ease-traffic-flow-20250805-p5mkjr.html)
|
||||||
|
墨尔本东北部的一个社区,因一项1973年设立的特定道路封闭措施,在推动改善学校周边交通流量方面遭遇了阻碍,社区内部对此存在分歧。
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-10-world_news
|
||||||
|
created: 2025-08-10
|
||||||
|
updated: 2025-08-10
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "world_news"]
|
||||||
|
external: http://go/ui/posts/1078/
|
||||||
|
---
|
||||||
|
|
||||||
|
# 世界要闻速览
|
||||||
|
|
||||||
|
- [美国对加沙局势冷淡,以色列批准加沙城接管计划](https://www.bbc.com/news/articles/cn92je014dyo)
|
||||||
|
美国对加沙冲突升级表现冷淡,与盟友渐行渐远;以色列则批准了接管加沙城的计划,称此为结束战争战略的一部分。
|
||||||
|
- [全球最年长领导人寻求第八个任期](https://www.bbc.com/news/articles/c1kzvjyljwjo)
|
||||||
|
喀麦隆总统保罗·比亚若赢得十月大选,将执政至99岁。
|
||||||
|
- [特朗普警告勿推翻关税,称其对股市“巨大积极”](https://www.cnbc.com/2025/08/08/trump-warns-courts-against-knocking-down-tariffs-says-duties-are-huge-positive-for-stock-market.html)
|
||||||
|
特朗普总统警告法院不要推翻关税,并表示关税对股市有“巨大积极”作用,推翻可能引发大萧条。
|
||||||
|
- [库克说服特朗普暂缓“美国制造iPhone”计划](https://www.cnbc.com/2025/08/07/apples-tim-cook-convinced-trump-to-drop-made-in-usa-iphone-for-now.html)
|
||||||
|
苹果CEO蒂姆·库克前往白宫,宣布未来四年将在美国投资约6000亿美元,暂时说服特朗普放弃“美国制造iPhone”的要求。
|
||||||
|
- [阿塞拜疆和亚美尼亚在白宫峰会签署和平协议](https://www.bbc.com/news/articles/c39dzl1lzrgo)
|
||||||
|
在特朗普总统见证下,阿塞拜疆与亚美尼亚在白宫峰会签署和平协议,旨在重新开放关键运输路线。
|
||||||
|
- [英特尔CEO回应“不实信息”及特朗普的辞职要求](https://www.cnbc.com/2025/08/08/intel-ceo-responds-to-misinformation-and-trump-threat-in-letter.html)
|
||||||
|
英特尔CEO Lip-Bu Tan针对总统唐纳德·特朗普要求其辞职的言论和关于他此前职务的“不实信息”作出回应。
|
||||||
|
- [马斯克AI被指生成泰勒·斯威夫特不雅视频](https://www.bbc.com/news/articles/cwye62e1ndjo)
|
||||||
|
据The Verge和Gizmodo报道,埃隆·马斯克旗下Grok Imagine的“辛辣”模式生成了泰勒·斯威夫特的露骨视频。
|
||||||
|
- [英格兰女足队员杰西·卡特呼吁打击网络种族歧视](https://www.cnbc.com/2025/08/08/england-lionesses-jess-carter-on-facing-racial-abuse-on-social-media.html)
|
||||||
|
英格兰女足队员杰西·卡特在遭受网络种族歧视后表示,社交媒体平台“需要做得更好”,并称网络种族歧视是仇恨犯罪。
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-10-world-painting
|
||||||
|
created: 2025-08-10
|
||||||
|
updated: 2025-08-10
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "painting", "world"]
|
||||||
|
external: http://go/ui/posts/1079/
|
||||||
|
---
|
||||||
|
|
||||||
|
## 蓝衣少年 (The Blue Boy)
|
||||||
|
《蓝衣少年》是英国画家托马斯·庚斯博罗于1770年创作的著名油画。这幅画描绘了一个穿着蓝色缎面服装的男孩,姿态优雅,眼神自信。尽管画中人物的身份一直存在争议,但普遍认为他是画家朋友的儿子乔纳森·巴特尔。这幅画以其独特的蓝色调和精湛的笔触而闻名,是庚斯博罗肖像画的代表作之一。它不仅展现了18世纪英国贵族肖像画的风格,也体现了画家对色彩和光线的精妙运用,是了解18世纪艺术和肖像画发展的重要作品。
|
||||||
|
|
||||||
|
名画URL : <https://commons.wikimedia.org/wiki/File:The_Blue_Boy.jpg>
|
||||||
|
搜索名画: <https://go.junv.cc/gi/蓝衣少年>
|
||||||
|
|
||||||
|
------
|
||||||
@@ -0,0 +1,50 @@
|
|||||||
|
---
|
||||||
|
title: 2024-12-09-victoria
|
||||||
|
created: 2024-12-09
|
||||||
|
updated: 2024-12-09
|
||||||
|
type: summary
|
||||||
|
tags: [[]]
|
||||||
|
external: http://go/ui/posts/108/
|
||||||
|
---
|
||||||
|
|
||||||
|
# 墨尔本与澳大利亚新闻简报
|
||||||
|
|
||||||
|
1. 💥 **墨尔本犹太教堂遭袭击事件升级:总理认定为恐怖主义行为**
|
||||||
|
- 阿尔巴尼斯总理个人认为这是一起恐怖袭击
|
||||||
|
- 犹太教堂暂时关闭,社区受到严重冲击
|
||||||
|
- [新闻链接](https://www.sbs.com.au/news/article/albanese-says-he-personally-believes-melbourne-synagogue-attack-was-an-act-of-terrorism/zwbvnqknw)
|
||||||
|
|
||||||
|
2. 🏙️ **墨尔本伯克街商场区域大规模改造**
|
||||||
|
- 南侧区域正在进行重大城市更新
|
||||||
|
- 墨尔本Walk商场和前大卫·琼斯商店区域即将完成改造
|
||||||
|
- [新闻链接](https://www.theage.com.au/national/victoria/bourke-street-mall-gets-a-glow-up-hotels-retail-and-mecca-of-all-meccas-20241125-p5ktcy.html)
|
||||||
|
|
||||||
|
3. 💰 **圣诞节省钱指南:八大应对通货膨胀策略**
|
||||||
|
- 财务专家提供节日省钱建议
|
||||||
|
- 帮助澳大利亚人应对生活成本上涨
|
||||||
|
- [新闻链接](https://www.sbs.com.au/news/article/eight-ways-to-cut-costs-this-christmas/d2e0gjfls)
|
||||||
|
|
||||||
|
4. 🏥 **职场慢性病:两五澳大利亚工人面临隐形挑战**
|
||||||
|
- 近40%工人患有慢性健康问题
|
||||||
|
- 许多人不敢在工作场所公开讨论
|
||||||
|
- [新闻链接](https://www.sbs.com.au/news/article/mathews-old-workplace-didnt-believe-his-illness-was-real-hes-not-alone/yxgehai32)
|
||||||
|
|
||||||
|
5. 📜 **犹太教堂被毁经文将举行安葬仪式**
|
||||||
|
- 受损不可修复的《托拉经》将在春湾墓地举行特殊安葬仪式
|
||||||
|
- 象征文化和信仰的尊严
|
||||||
|
- [新闻链接](https://www.theage.com.au/national/victoria/like-burying-a-body-torah-scrolls-ruined-in-fire-would-be-interred-20241208-p5kwpy.html)
|
||||||
|
|
||||||
|
6. 🤝 **墨尔本多元文化的韧性:社区联合应对仇恨**
|
||||||
|
- 强调攻击无法动摇文化认同
|
||||||
|
- 社区展现团结与坚韧
|
||||||
|
- [新闻链接](https://www.theage.com.au/national/victoria/more-than-one-community-this-was-an-attack-on-melbourne-s-multicultural-fabric-20241208-p5kwpa.html)
|
||||||
|
|
||||||
|
7. ❤️ **隔50年重逢:误会不能阻隔真爱**
|
||||||
|
- 昔日订婚couple因误会分离50年
|
||||||
|
- 终于获得重逢机会的浪漫故事
|
||||||
|
- [新闻链接](https://www.sbs.com.au/news/insight/article/a-misunderstanding-separated-judith-and-her-fiance-tom-for-decades-then-they-got-another-chance/n8h7wcwgo)
|
||||||
|
|
||||||
|
8. 🔥 **仇恨与极端主义:社会公共讨论**
|
||||||
|
- 读者探讨犹太教堂袭击事件的深层次影响
|
||||||
|
- 呼吁理性与包容
|
||||||
|
- [新闻链接](https://www.theage.com.au/national/victoria/adding-fuel-to-fire-of-intolerance-extremism-20241208-p5kwqk.html)
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-11-technology
|
||||||
|
created: 2025-08-11
|
||||||
|
updated: 2025-08-11
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "technology"]
|
||||||
|
external: http://go/ui/posts/1080/
|
||||||
|
---
|
||||||
|
|
||||||
|
**科技新闻速览**
|
||||||
|
- [苹果白宫之行后创2020年7月以来最佳周](https://www.cnbc.com/2025/08/08/apple-has-best-week-since-july-2020-after-tim-cooks-white-house-visit.html)
|
||||||
|
苹果公司市值超越谷歌和亚马逊,成为继微软和英伟达之后第三大最有价值公司。
|
||||||
|
- [特朗普关税无助于解决美国芯片制造困境](https://www.wsj.com/tech/trumps-tariffs-won-t-solve-u-s-chip-making-dilemma-c5aec29b?mod=rss_Technology)
|
||||||
|
拟议中的半导体关税及豁免条款与其声称的目标不符。
|
||||||
|
- [谷歌不再是唯一:何时放弃网络搜索转向深度AI研究](https://www.wsj.com/tech/ai/deep-research-google-search-cdf7e5ae?mod=rss_Technology)
|
||||||
|
人工智能可深入互联网进行深度研究,分析数千词汇并迭代至满意。
|
||||||
|
- [英伟达反驳中国对其H20芯片构成安全风险的指控](https://www.cnbc.com/2025/08/10/nvidia-china-h20-chips.html)
|
||||||
|
英伟达回应中国官方媒体的指控,称其H20人工智能芯片对中国构成国家安全风险。
|
||||||
|
- [英特尔CEO被特朗普点名周一访问白宫](https://www.wsj.com/tech/intel-ceo-singled-out-by-trump-to-visit-white-house-on-monday-10e482af?mod=rss_Technology)
|
||||||
|
英特尔CEO将与总统会面,总统上周曾要求罢免他。
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-11-chinese-painting
|
||||||
|
created: 2025-08-11
|
||||||
|
updated: 2025-08-11
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "china", "painting"]
|
||||||
|
external: http://go/ui/posts/1081/
|
||||||
|
---
|
||||||
|
|
||||||
|
## 二十四孝图
|
||||||
|
《二十四孝图》是中国古代宣扬儒家孝道思想的画作,它通过描绘二十四个感人的孝亲故事,来教育人们尊敬和孝顺父母。这些故事虽然有些带有传奇色彩,但它们蕴含着中华民族传统美德中“孝”的核心价值观,对于孩子了解中国传统文化和伦理观念非常有益。通过这些生动的故事,孩子可以学习到感恩、责任和家庭的重要性。
|
||||||
|
|
||||||
|
古画URL : https://pic.ibaotu.com/00/22/07/73A888PIK53M.jpg
|
||||||
|
搜索古画: https://go.junv.cc/gi/二十四孝图
|
||||||
|
|
||||||
|
------
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-11-victoria
|
||||||
|
created: 2025-08-11
|
||||||
|
updated: 2025-08-11
|
||||||
|
type: summary
|
||||||
|
tags: ["local_news", "newsletter"]
|
||||||
|
external: http://go/ui/posts/1082/
|
||||||
|
---
|
||||||
|
|
||||||
|
# 头条新闻速览
|
||||||
|
|
||||||
|
- [维州房产虚报价格问题有望解决:引入公共保留价与更严厉惩罚](https://www.theage.com.au/national/victoria/public-reserve-prices-tougher-penalties-a-plan-to-tackle-underquoting-20250810-p5mlrg.html)
|
||||||
|
维多利亚房地产协会(REIV)提议引入公共保留价、对虚报价格行为实施更严厉的处罚,并要求卖家提供房屋状况报告,以解决长期存在的房地产虚报价格问题。
|
||||||
|
|
||||||
|
- [维州夜空惊现流星划过,引发陨石搜寻热潮](https://www.theage.com.au/national/victoria/social-media-lights-up-with-reports-of-victorian-meteorite-crash-20250810-p5mltw.html)
|
||||||
|
一颗流星划过维多利亚州中部夜空并伴随巨大声响,引发当地居民的广泛关注和寻找太空岩石的热潮。
|
||||||
|
|
||||||
|
- [墨尔本Love Machine夜总会连续周末发生摩托帮斗殴事件](https://www.theage.com.au/national/victoria/comanchero-bikies-bash-guards-at-love-machine-nightclub-on-consecutive-weekends-20250810-p5mlrz.html)
|
||||||
|
摩托帮成员,包括Comanchero帮的前全国警长,在墨尔本市中心的Love Machine夜总会外连续两个周末与保安发生冲突,引发暴力斗殴。
|
||||||
|
|
||||||
|
- [澳联储降息在即:对普通澳人影响几何?](https://www.sbs.com.au/news/article/how-an-interest-rate-cut-could-impact-you/yw8yz2gn0)
|
||||||
|
澳洲储备银行预计将在周二降息,尽管经济学家普遍欢迎此举能提振消费者信心,但并非所有澳大利亚人的财务状况都会因此好转。
|
||||||
|
|
||||||
|
- [国防部长:澳洲未向以色列出口武器,但零部件是“独立问题”](https://www.sbs.com.au/news/article/australia-isnt-exporting-arms-to-israel-weapons-components-a-separate-issue-marles-says/0sh47r9hi)
|
||||||
|
国防部长马尔斯坚称澳大利亚不向以色列供应武器,但表示武器零部件的出口是一个“独立的问题”。
|
||||||
|
|
||||||
|
- [澳洲可预防疾病已致37名婴儿死亡,首席医疗官表担忧](https://www.sbs.com.au/news/article/this-preventable-disease-has-killed-37-babies-since-2016-heres-what-you-need-to-know/htw6acxw1)
|
||||||
|
自2016年以来,一种可预防的疾病已导致澳大利亚37名婴儿死亡。澳洲首席医疗官对此表示“非常担忧”,呼吁公众关注。
|
||||||
|
|
||||||
|
- [墨尔本Upper Ferntree Gully发生命案,一女子死亡男子被捕](https://www.theage.com.au/national/victoria/man-arrested-after-woman-found-dead-in-upper-ferntree-gully-20250810-p5mltd.html)
|
||||||
|
警方在墨尔本Upper Ferntree Gully的一所房屋内发现一名死亡女子,并逮捕了一名男子,将对其进行审讯。
|
||||||
|
|
||||||
|
- [维州贝类养殖业在菲利普港湾扩增水域,将迎来扩张](https://www.theage.com.au/national/victoria/victorian-shellfish-farmers-mussel-into-more-water-in-port-phillip-bay-20250810-p5mlpz.html)
|
||||||
|
维多利亚州的贝类养殖业正准备扩大规模,在菲利普港湾获得更多养殖水域,以应对不断增长的需求。
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-11-world_news
|
||||||
|
created: 2025-08-11
|
||||||
|
updated: 2025-08-11
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "world_news"]
|
||||||
|
external: http://go/ui/posts/1083/
|
||||||
|
---
|
||||||
|
|
||||||
|
# 全球新闻快讯
|
||||||
|
|
||||||
|
- [土耳其地震震塌多栋建筑](https://www.bbc.com/news/articles/cwy557j3y5lo)
|
||||||
|
6.1级地震导致一人死亡,16栋建筑倒塌。
|
||||||
|
- [半岛电视台5名记者在加沙遭以色列袭击身亡](https://www.bbc.com/news/articles/ceqyyrp3yq9o)
|
||||||
|
电视台谴责“公然袭击新闻自由”,以色列国防军称其中一名记者是哈马斯成员。
|
||||||
|
- [英伟达与AMD在华销售额15%将支付给美国](https://www.bbc.com/news/articles/cvgvvnx8y19o)
|
||||||
|
一位全球贸易专家称该协议“前所未有”。
|
||||||
|
- [澳大利亚将于9月承认巴勒斯坦国](https://www.bbc.com/news/articles/cvg33351n61o)
|
||||||
|
此举效仿英法加等国。
|
||||||
|
- [软银创始人孙正义押注AI,AI成软银未来最大赌注](https://www.cnbc.com/2025/08/11/softbank-founder-son-makes-his-biggest-bet-by-staking-the-future-on-ai.html)
|
||||||
|
孙正义在AI领域已深思十余年,将其视为公司未来。
|
||||||
|
- [中国失业青年假装有工作](https://www.bbc.com/news/articles/cdd3ep76g3go)
|
||||||
|
鉴于中国青年失业率高企,一些人付费进入办公室假装工作。
|
||||||
|
- [厄瓜多尔夜总会枪击案致8人死亡](https://www.bbc.com/news/articles/czr66pj1k72o)
|
||||||
|
事发夜总会位于目前处于紧急状态的瓜亚斯省。
|
||||||
|
- [美中关税休战期限临近,亚太市场表现平淡](https://www.cnbc.com/2025/08/11/asia-markets-live-rba-meeting-kospi-csi-300.html)
|
||||||
|
投资者正等待8月12日美中关税休战期限是否延长的消息。
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-11-world-painting
|
||||||
|
created: 2025-08-11
|
||||||
|
updated: 2025-08-11
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "painting", "world"]
|
||||||
|
external: http://go/ui/posts/1084/
|
||||||
|
---
|
||||||
|
|
||||||
|
## 吹笛少年
|
||||||
|
《吹笛少年》是法国印象派画家爱德华·马奈于1866年创作的油画。这幅画描绘了一位身着制服、手持长笛的年轻军乐队队员,他以一种直接、自信的姿态站立在画面中央。马奈通过简洁的背景和独特的用色,展现了他对光线和色彩的深刻理解,也预示了印象派的兴起。这幅画打破了当时学院派的传统,以其大胆的笔触和现代感,对后来的艺术发展产生了深远影响,对于孩子了解现代艺术的开端,以及肖像画和军装历史都有很好的启发作用。
|
||||||
|
|
||||||
|
名画URL : <https://www.nbfox.com/wp-content/uploads/2021/07/manet-the-fifer-2.jpg>
|
||||||
|
搜索名画: <https://go.junv.cc/gi/吹笛少年>
|
||||||
|
|
||||||
|
------
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-12-technology
|
||||||
|
created: 2025-08-12
|
||||||
|
updated: 2025-08-12
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "technology"]
|
||||||
|
external: http://go/ui/posts/1085/
|
||||||
|
---
|
||||||
|
|
||||||
|
** 科技新闻**
|
||||||
|
- [英伟达、AMD向美国政府支付中国AI芯片销售额提成](https://www.wsj.com/tech/nvidia-amd-chip-sales-us-government-f9e34b5f?mod=rss_Technology)
|
||||||
|
英伟达和AMD已同意将其AI芯片在华销售额的15%(特朗普曾表示希望20%)支付给美国政府。此举是在英伟达CEO黄仁勋与特朗普会面后达成的,引发了法律和国家安全方面的关注,而特朗普则称H20芯片“过时”。
|
||||||
|
- [软银创始人孙正义将公司未来押注于AI](https://www.cnbc.com/2025/08/11/softbank-founder-son-makes-his-biggest-bet-by-staking-the-future-on-ai.html)
|
||||||
|
软银创始人孙正义将公司未来的命运押注于人工智能领域,这是他十多年来深思熟虑的AI战略的重大举措。
|
||||||
|
- [山姆·奥特曼称AGI并非“非常有用”的术语](https://www.cnbc.com/2025/08/11/sam-altman-says-agi-is-a-pointless-term-experts-agree.html)
|
||||||
|
OpenAI CEO山姆·奥特曼表示,“通用人工智能(AGI)”并非一个特别有用的术语,计算机科学专家也认为,应更专注于AI的专业化应用。
|
||||||
|
- [亚马逊Kuiper卫星总数突破100颗](https://www.cnbc.com/2025/08/11/amazon-kuiper-internet-satellites-launch.html)
|
||||||
|
亚马逊的Kuiper卫星星座在一次由SpaceX猎鹰9号火箭进行的发射后,成功部署了24颗卫星,使其在轨卫星总数达到102颗。
|
||||||
|
- [加密货币市场活跃,Bullish寻求近50亿美元估值IPO](https://www.cnbc.com/2025/08/11/crypto-exchange-bullish-raises-ipo-size-seeks-nearly-5-billion-valuation.html)
|
||||||
|
彼得·蒂尔支持的加密货币交易所Bullish上调了IPO规模,寻求近50亿美元的估值;同时,比特币短时突破12万美元,以太坊触及2021年高点。
|
||||||
|
- [特朗普对英特尔CEO的态度反转](https://www.cnbc.com/2025/08/11/intel-ceo-trump-lip-bu-tan.html)
|
||||||
|
在此前要求英特尔CEO Lip-Bu Tan辞职后,特朗普总统态度发生转变,称其“成功”,红杉资本的莫里茨也对其表示支持。
|
||||||
|
- [C3 AI股价大跌26%](https://www.cnbc.com/2025/08/11/c3-ai-stock-ceo-thomas-siebel.html)
|
||||||
|
C3 AI公布初步财报和全球销售及服务部门重组计划后,股价暴跌26%,CEO Siebel称初步销售数据“完全不可接受”。
|
||||||
|
- [StubHub IPO计划重启](https://www.cnbc.com/2025/08/11/stubhub-ipo-back-on-for-september-after-company-delayed-plans-in-april.html)
|
||||||
|
在此前因关税问题推迟后,票务公司StubHub已更新其IPO招股书,计划于9月重新启动上市流程。
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-12-chinese-painting
|
||||||
|
created: 2025-08-12
|
||||||
|
updated: 2025-08-12
|
||||||
|
type: summary
|
||||||
|
tags: ["AI", "china", "painting"]
|
||||||
|
external: http://go/ui/posts/1086/
|
||||||
|
---
|
||||||
|
|
||||||
|
## 枯木怪石图
|
||||||
|
《枯木怪石图》又名《木石图》,相传为北宋文学家、书画家苏轼所作。画作画面简洁,枯木一株,干偃枝曲,逆顺有势;周匝缀以坡石,丛竹。此画虽笔墨不多,但意蕴深厚,体现了文人画的特点,也反映了苏轼超然脱俗的个人风格,非常适合引导孩子感受中国古代文人画的意境和哲思。
|
||||||
|
|
||||||
|
古画URL : <https://www.tongyangapp.com/content/picture?id=283690>
|
||||||
|
搜索古画: <https://go.junv.cc/gi/枯木怪石图>
|
||||||
|
|
||||||
|
------
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-12-victoria
|
||||||
|
created: 2025-08-12
|
||||||
|
updated: 2025-08-12
|
||||||
|
type: summary
|
||||||
|
tags: ["local_news", "newsletter"]
|
||||||
|
external: http://go/ui/posts/1087/
|
||||||
|
---
|
||||||
|
|
||||||
|
# 头条新闻
|
||||||
|
- [澳大利亚宣布将于九月承认巴勒斯坦国](https://www.sbs.com.au/news/article/australia-will-recognise-a-palestinian-state-anthony-albanese-says/0icspahq6)
|
||||||
|
总理Anthony Albanese表示,澳大利亚将在九月承认巴勒斯坦国,认为“两国方案是打破中东暴力循环的最佳希望”。此举得到了包括英国、法国和加拿大在内的盟友的支持,但一些在澳巴勒斯坦人认为这仅具象征意义,无法带来实际改变。
|
||||||
|
- [澳洲联储预测降息,有望减轻家庭经济压力](https://www.sbs.com.au/news/article/rba-meeting-why-economists-and-the-major-banks-are-predicting-a-rate-cut/f8zg0d640)
|
||||||
|
经济学家和主要银行普遍预测澳洲联储(RBA)将下调现金利率目标,此举有望为家庭节省开支,并对企业产生影响。
|
||||||
|
- [维州上空出现流星引发关注,专家正搜寻坠落地点](https://www.sbs.com.au/news/article/fat-as-anything-meteor-lights-up-victorian-skies-as-experts-try-to-locate-crash-site/nknl18paf)
|
||||||
|
周日晚间,一颗明亮的流星划过维多利亚州的天空,引发巨响并震动地面,专家们正在寻找可能的坠落地点。墨尔本部分地区也目睹了这一奇观。
|
||||||
|
- [Kathleen Folbigg称200万澳元赔偿“不公平”,批总理言论“打脸”](https://www.sbs.com.au/news/article/kathleen-folbigg-says-2m-offer-not-a-fair-figure-premiers-comments-a-slap-in-the-face/0dvs23pra)
|
||||||
|
被错误监禁长达20年的Kathleen Folbigg表示,政府提出的200万澳元赔偿金“不公平”,并认为州长的言论是对她的“一记耳光”。
|
||||||
|
- [墨尔本之星摩天轮四年后将重新开放](https://www.theage.com.au/national/victoria/melbourne-star-observation-wheel-s-future-finally-revealed-20250811-p5mlwc.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
墨尔本地标“墨尔本之星”摩天轮在关闭四年后,终将重新投入运营。尽管需要进行翻新,但其重新开放的未来终于确定。
|
||||||
|
- [墨尔本Albion区发生入室抢劫,祖父被殴打,儿子被刺伤](https://www.theage.com.au/national/victoria/grandfather-punched-son-stabbed-in-albion-home-invasion-20250811-p5mlzk.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
在墨尔本Albion区发生的一起入室抢劫案中,一名84岁的祖父遭到殴打,其儿子被刺伤,情况危急。
|
||||||
|
- [蘑菇投毒案禁令解除,更多证据浮出水面](https://www.theage.com.au/national/victoria/the-jury-must-be-relieved-why-we-are-now-hearing-evidence-banned-from-mushroom-murder-trial-20250808-p5mlhv.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
关于备受关注的蘑菇投毒案,此前被禁止向陪审团披露的证据现已开始公开,引发了对案件审理方式的疑问。
|
||||||
|
- [墨尔本一托儿所老板承认金融犯罪,面临刑事指控](https://www.theage.com.au/national/victoria/childcare-boss-emerges-to-face-criminal-charge-20250811-p5mly9.html?ref=rss&utm_medium=rss&utm_source=rss_national_victoria)
|
||||||
|
陷入困境的商人Darren Misquitta在承认一项金融犯罪后,目前面临刑事指控,并希望能避免被定罪。
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-12-world_news
|
||||||
|
created: 2025-08-12
|
||||||
|
updated: 2025-08-12
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "world_news"]
|
||||||
|
external: http://go/ui/posts/1088/
|
||||||
|
---
|
||||||
|
|
||||||
|
# 全球新闻速览
|
||||||
|
|
||||||
|
* [软银孙正义押注AI,称其为公司未来最大赌注](https://www.cnbc.com/2025/08/11/softbank-founder-son-makes-his-biggest-bet-by-staking-the-future-on-ai.html)
|
||||||
|
软银创始人孙正义表示,他将公司未来押在人工智能上,认为AI是他十多年来思考的重点。
|
||||||
|
* [视频:中国船只追逐菲律宾船只时相撞](https://www.bbc.com/news/videos/c1jnne45dj3o?at_medium=RSS&at_campaign=rss)
|
||||||
|
视频显示,中国船只在追逐一艘菲律宾船只时发生碰撞。
|
||||||
|
* [萨姆·奥特曼称“通用人工智能”并非有用术语](https://www.cnbc.com/2025/08/11/sam-altman-says-agi-is-a-pointless-term-experts-agree.html)
|
||||||
|
OpenAI首席执行官萨姆·奥特曼表示,“通用人工智能”(AGI)并非一个非常有用的术语,并得到其他计算机科学专家的认同。
|
||||||
|
* [视频:特朗普宣布在华盛顿特区部署国民警卫队](https://www.bbc.com/news/videos/cj9ww4z39xko?at_medium=RSS&at_campaign=rss)
|
||||||
|
美国前总统特朗普宣布部署国民警卫队,作为打击街头犯罪行动的一部分。
|
||||||
|
* [加沙知名记者阿纳斯·谢里夫遭以色列袭击身亡](https://www.bbc.com/news/articles/c6200wnez73o?at_medium=RSS&at_campaign=rss)
|
||||||
|
半岛电视台称,知名加沙记者阿纳斯·谢里夫及其他六人在以色列对加沙北部媒体帐篷的袭击中丧生。
|
||||||
|
* [全球贸易受关注,丹麦能源公司Orsted股价暴跌30%](https://www.cnbc.com/2025/08/11/european-shares-poised-to-open-higher-as-global-trade-holds-spotlight-.html)
|
||||||
|
丹麦能源巨头Orsted股价大幅下跌30%,全球贸易局势持续受到市场关注。
|
||||||
|
* [福特投资20亿美元建设路易斯维尔工厂,聚焦经济型电动汽车](https://www.cnbc.com/2025/08/11/ford-louisville-assembly-plant-ev-investment.html)
|
||||||
|
福特汽车宣布在路易斯维尔组装厂投资20亿美元,计划在2027年生产中型四门电动皮卡。
|
||||||
|
* [冈比亚女婴生殖器切割致死引发公愤](https://www.bbc.com/news/articles/c6200g5d4jlo?at_medium=RSS&at_campaign=rss)
|
||||||
|
冈比亚一名女婴在接受生殖器切割后死亡,引发公众强烈愤慨,两名女性因涉嫌参与其中被捕。
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
title: 2025-08-13-technology
|
||||||
|
created: 2025-08-13
|
||||||
|
updated: 2025-08-13
|
||||||
|
type: summary
|
||||||
|
tags: ["newsletter", "technology"]
|
||||||
|
external: http://go/ui/posts/1089/
|
||||||
|
---
|
||||||
|
|
||||||
|
**Tech news**
|
||||||
|
- [特朗普对英特尔CEO态度反复](https://www.cnbc.com/2025/08/11/intel-ceo-trump-lip-bu-tan.html)
|
||||||
|
特朗普在要求英特尔CEO辞职数日后,称其为“成功人士”并与其会面。同时,英特尔的未来战略也备受关注。
|
||||||
|
- [英伟达与中国芯片交易面临政策挑战](https://www.cnbc.com/2025/08/12/trump-open-to-nvidia-selling-downgraded-blackwell-ai-chip-to-china.html)
|
||||||
|
英伟达CEO寻求摆脱贸易战,特朗普表示对向中国出售降级版AI芯片持开放态度,白宫正协商相关交易的合法性。
|
||||||
|
- [软银创始人孙正义押注AI未来](https://www.cnbc.com/2025/08/11/softbank-founder-son-makes-his-biggest-bet-by-staking-the-future-on-ai.html)
|
||||||
|
软银创始人孙正义将公司未来押在人工智能上,这成为他迄今最大的赌注。
|
||||||
|
- [马斯克就反垄断问题威胁起诉苹果](https://www.cnbc.com/2025/08/12/musk-threatens-immediate-legal-action-against-apple-over-alleged-antitrust-violations.html)
|
||||||
|
马斯克威胁对苹果采取法律行动,指控其App Store存在反垄断行为,并称苹果压制GrokAI而偏袒ChatGPT。
|
||||||
|
- [AI初创公司Perplexity拟收购谷歌Chrome浏览器](https://www.cnbc.com/2025/08/12/perplexity-google-chrome-ai.html)
|
||||||
|
人工智能初创公司Perplexity出价345亿美元,提议收购谷歌的Chrome浏览器。
|
||||||
|
- [领英推出休闲游戏如迷你数独](https://www.cnbc.com/2025/08/12/linkedin-mini-sudoku-games.html)
|
||||||
|
领英推出迷你数独等休闲游戏,旨在吸引用户并增加平台互动。
|
||||||
|
- [英国新互联网安全法引发争议](https://www.cnbc.com/2025/08/12/why-the-uk-age-verification-law-has-led-to-backlash.html)
|
||||||
|
英国一项要求科技巨头对访问成人内容进行年龄验证的新法律,在欧美两岸引发强烈抗议。
|
||||||
|
- [自动驾驶卡车时代将至](https://www.cnbc.com/2025/08/12/uber-freight-ceo-self-driving-freight-truck-startup-waabi.html)
|
||||||
|
Uber Freight CEO加入自动驾驶卡车公司Waabi,预示着美国公路上大型自动驾驶卡车的时代即将到来。
|
||||||
@@ -0,0 +1,46 @@
|
|||||||
|
---
|
||||||
|
title: 2024-12-09-world_news
|
||||||
|
created: 2024-12-09
|
||||||
|
updated: 2024-12-09
|
||||||
|
type: summary
|
||||||
|
tags: [[]]
|
||||||
|
external: http://go/ui/posts/109/
|
||||||
|
---
|
||||||
|
|
||||||
|
## 八条世界新闻简讯
|
||||||
|
|
||||||
|
**以下是根据提供的新闻链接整理出的八条重要世界新闻简讯,并已合并重复或相关性高的新闻。**
|
||||||
|
|
||||||
|
|
||||||
|
1. **特朗普的回归与全球影响:** 特朗普誓言取消出生公民权、赦免国会暴乱者,并计划签署大量行政命令,引发全球对美国内政和外交政策走向的担忧。其对古巴经济封锁政策的潜在改变,也令古巴旅游业雪上加霜。(合并了多个关于特朗普的新闻)
|
||||||
|
[BBC新闻-特朗普的承诺](https://www.bbc.com/news/articles/cj30er1d6mxo)
|
||||||
|
[BBC新闻-古巴旅游业面临困境](https://www.bbc.com/news/articles/cly7ndxjzv2o)
|
||||||
|
|
||||||
|
|
||||||
|
2. **中美经济角力与中国经济放缓:** 中国11月CPI增速降至五个月低点,低于预期,经济放缓迹象明显。中国高层将讨论GDP增长目标和刺激措施,应对经济下行压力和潜在的美国关税。(合并了关于中国经济的新闻)
|
||||||
|
[CNBC新闻-中国CPI数据](https://www.cnbc.com/2024/12/09/china-consumer-prices-climb-less-than-expected-as-economy-slows-amid-trade-war-worries.html)
|
||||||
|
[CNBC新闻-中国经济会议](https://www.cnbc.com/2024/12/09/chinas-xi-other-leaders-set-to-discuss-gdp-growth-target-stimulus-measures-.html)
|
||||||
|
|
||||||
|
|
||||||
|
3. **韩国政治动荡与市场震荡:** 韩国政治动荡导致韩国股市暴跌,Kospi指数下跌超过2%,Kosdaq指数下跌4.1%。
|
||||||
|
[CNBC新闻-韩国股市](https://www.cnbc.com/2024/12/09/asia-markets-set-to-open-higher-as-investors-await-japan-gdp-and-china-inflation-data.html)
|
||||||
|
|
||||||
|
|
||||||
|
4. **叙利亚监狱秘密事件:** 据报道,叙利亚臭名昭著的Saydnaya监狱地下可能仍有数千人被困。
|
||||||
|
[BBC新闻-叙利亚监狱](https://www.bbc.com/news/articles/c2dx3ekpr59o)
|
||||||
|
|
||||||
|
|
||||||
|
5. **Jay-Z性侵诉讼:** 说唱歌手Jay-Z被指控于2000年与Sean “Diddy” Combs一起性侵一名13岁女孩。Jay-Z否认指控。
|
||||||
|
[CNBC新闻-Jay-Z诉讼](https://www.cnbc.com/2024/12/09/jay-z-accused-in-a-civil-lawsuit-of-raping-a-13-year-old-girl-in-2000-along-with-sean-diddy-combs.html)
|
||||||
|
|
||||||
|
|
||||||
|
6. **墨尔本犹太教堂纵火案疑似恐怖袭击:** 墨尔本一犹太教堂发生火灾,警方认为可能是恐怖袭击,目前正在追捕三名嫌疑人。
|
||||||
|
[BBC新闻-墨尔本纵火案](https://www.bbc.com/news/articles/crmn74m1jkpo)
|
||||||
|
|
||||||
|
|
||||||
|
7. **印度“香港”项目引发担忧:** 印度在偏远岛屿上耗资数十亿美元的项目引发担忧,专家称该项目将给Shompen人民带来灾难。
|
||||||
|
[BBC新闻-印度项目](https://www.bbc.com/news/articles/cd0g1jxr0ddo)
|
||||||
|
|
||||||
|
|
||||||
|
8. **美国股市继续上涨:** 标普500指数和纳斯达克综合指数周五创下新高。
|
||||||
|
[CNBC新闻-美国股市](https://www.cnbc.com/2024/12/08/stock-market-today-live-updates.html)
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user