diff --git a/.DS_Store b/.DS_Store
index cc9678a..74549fa 100644
Binary files a/.DS_Store and b/.DS_Store differ
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 0000000..360e18e
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,23 @@
+{
+ "python.defaultInterpreterPath": "/Users/gavin/venv/bin/python",
+ "python-envs.pythonProjects": [
+ {
+ "path": "/Users/gavin/venv",
+ }
+ ],
+ // 指定 Python 解释器为你的虚拟环境
+
+ // 在终端打开时自动激活虚拟环境
+ "python.terminal.activateEnvironment": true,
+
+ // 可选:指定 VS Code 使用的 shell
+ // 如果想自动 source venv,即使没有选择 Python 解释器
+ "terminal.integrated.profiles.osx": {
+ "zsh_with_venv": {
+ "path": "/bin/zsh",
+ "args": ["-c", "source ~/venv/bin/activate; exec zsh"]
+ }
+ },
+ "terminal.integrated.defaultProfile.osx": "zsh_with_venv",
+ ]
+}
diff --git a/__pycache__/annotationdata.cpython-312.pyc b/__pycache__/annotationdata.cpython-312.pyc
index c272251..41b3f8f 100644
Binary files a/__pycache__/annotationdata.cpython-312.pyc and b/__pycache__/annotationdata.cpython-312.pyc differ
diff --git a/__pycache__/booklist_parse.cpython-312.pyc b/__pycache__/booklist_parse.cpython-312.pyc
index 138baa4..9d811e5 100644
Binary files a/__pycache__/booklist_parse.cpython-312.pyc and b/__pycache__/booklist_parse.cpython-312.pyc differ
diff --git a/__pycache__/config.cpython-312.pyc b/__pycache__/config.cpython-312.pyc
new file mode 100644
index 0000000..d0f4a19
Binary files /dev/null and b/__pycache__/config.cpython-312.pyc differ
diff --git a/__pycache__/toc_parse.cpython-312.pyc b/__pycache__/toc_parse.cpython-312.pyc
index 9e5f492..6a4aef8 100644
Binary files a/__pycache__/toc_parse.cpython-312.pyc and b/__pycache__/toc_parse.cpython-312.pyc differ
diff --git a/annotationdata.py b/annotationdata.py
index 5fa5343..f0f6e38 100644
--- a/annotationdata.py
+++ b/annotationdata.py
@@ -6,12 +6,15 @@ annotationdata.py
- 提供parse_location辅助函数,解析笔记定位信息。
- 返回结构化的annotations数据,便于后续章节定位与导出。
+依赖:config.py 统一管理路径和配置项。
+
主要接口:
- get_annotations(db_path, bookid=None):返回所有或指定assetid的笔记,结构为{assetid: {uuid: {...}}}
- parse_location(location):解析ZANNOTATIONLOCATION,返回(idref, filepos)
依赖:sqlite3, collections, re, os, datetime
"""
+import config
import sqlite3
from collections import defaultdict
@@ -34,7 +37,7 @@ def parse_location(location):
filepos = matches[1] if len(matches) > 1 else None
return idref, filepos
-def get_annotations(db_path='./data/AEAnnotation.sqlite', bookid=None):
+def get_annotations(db_path=config.LOCAL_ANNOTATION_DB, bookid=None):
# 检查WAL模式相关文件
base = db_path.rsplit('.', 1)[0]
wal_path = base + '.sqlite-wal'
diff --git a/booklist b/backup/booklist
similarity index 100%
rename from booklist
rename to backup/booklist
diff --git a/booklist_parse.py b/booklist_parse.py
index 17b0444..28ca146 100644
--- a/booklist_parse.py
+++ b/booklist_parse.py
@@ -5,6 +5,8 @@ booklist_parse.py
- 解析iBooks的Books.plist,提取所有书籍元数据(书名、作者、路径、时间等)。
- 解析BKLibrary.sqlite,获取每本书的最近打开时间(苹果时间戳,基准2001-01-01)。
+依赖:config.py 统一管理路径和配置项。
+
主要接口:
- parse_books_plist(plist_path):返回所有书籍元数据,结构为{bk_id: {...}}
- get_books_last_open(db_path):返回所有书籍最近打开时间,结构为{bk_id: {'last_open': 时间戳}}
@@ -12,13 +14,14 @@ booklist_parse.py
依赖:plistlib, collections, sqlite3, os, datetime
典型用法:
- booksinfo = parse_books_plist('./data/Books.plist')
- books_open = get_books_last_open('data/BKLibrary.sqlite')
+ booksinfo = parse_books_plist(config.LOCAL_BOOKS_PLIST)
+ books_open = get_books_last_open(config.LOCAL_LIBRARY_DB)
"""
+import config
import plistlib
from collections import defaultdict
-def parse_books_plist(plist_path):
+def parse_books_plist(plist_path=config.LOCAL_BOOKS_PLIST):
booksinfo = defaultdict(dict)
with open(plist_path, 'rb') as f: plist_data = plistlib.load(f)
for book in plist_data.get('Books', []):
@@ -38,7 +41,7 @@ def parse_books_plist(plist_path):
import sqlite3
import os
-def get_books_last_open(db_path='data/BKLibrary.sqlite'):
+def get_books_last_open(db_path=config.LOCAL_LIBRARY_DB):
"""
从BKLibrary.sqlite获取书籍最近打开时间
返回:defaultdict(dict),bk_id为索引,包含最近打开时间
@@ -51,8 +54,7 @@ def get_books_last_open(db_path='data/BKLibrary.sqlite'):
conn = sqlite3.connect(db_path)
cursor = conn.cursor()
# ZBKLIBRARYASSET表包含书籍信息
- cursor.execute(''' SELECT ZASSETID, zlastopendate FROM ZBKLIBRARYASSET WHERE zlastopendate IS NOT NULL
- ''')
+ cursor.execute(''' SELECT ZASSETID, zlastopendate FROM ZBKLIBRARYASSET WHERE zlastopendate IS NOT NULL ''')
rows = cursor.fetchall()
for row in rows:
asset_id, last_open = row
@@ -67,7 +69,7 @@ def get_books_last_open(db_path='data/BKLibrary.sqlite'):
return books_open
if __name__ == '__main__':
- booksinfo = parse_books_plist('./data/Books.plist')
+ booksinfo = parse_books_plist(config.LOCAL_BOOKS_PLIST)
from pprint import pprint
print("\n【前三条示例】")
for k, v in list(booksinfo.items())[:3]:
diff --git a/config.py b/config.py
new file mode 100644
index 0000000..5ee560d
--- /dev/null
+++ b/config.py
@@ -0,0 +1,29 @@
+"""
+config.py
+---------
+统一管理所有涉及文件路径、目录、常量等配置项。
+"""
+
+import os
+
+# 数据目录
+DATA_DIR = os.path.join(os.path.dirname(__file__), 'data')
+EXPORT_NOTES_DIR = os.path.join(os.path.dirname(__file__), 'export_notes')
+EXAMPLES_DIR = os.path.join(os.path.dirname(__file__), 'examples')
+
+# iBooks 源数据路径(可根据实际环境修改)
+IBOOKS_ANNOTATION_DB = os.path.expanduser('~/Library/Containers/com.apple.iBooksX/Data/Documents/AEAnnotation/AEAnnotation_v10312011_1727_local.sqlite')
+IBOOKS_ANNOTATION_SHM = IBOOKS_ANNOTATION_DB + '-shm'
+IBOOKS_ANNOTATION_WAL = IBOOKS_ANNOTATION_DB + '-wal'
+IBOOKS_LIBRARY_DB = os.path.expanduser('~/Library/Containers/com.apple.iBooksX/Data/Documents/BKLibrary/BKLibrary-1-091020131601.sqlite')
+IBOOKS_BOOKS_PLIST = os.path.expanduser('~/Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/Books.plist')
+
+# 本地数据文件名
+LOCAL_ANNOTATION_DB = os.path.join(DATA_DIR, 'AEAnnotation.sqlite')
+LOCAL_ANNOTATION_SHM = os.path.join(DATA_DIR, 'AEAnnotation.sqlite-shm')
+LOCAL_ANNOTATION_WAL = os.path.join(DATA_DIR, 'AEAnnotation.sqlite-wal')
+LOCAL_LIBRARY_DB = os.path.join(DATA_DIR, 'BKLibrary.sqlite')
+LOCAL_BOOKS_PLIST = os.path.join(DATA_DIR, 'Books.plist')
+
+# 其他可扩展配置项
+# ...
diff --git a/data/AEAnnotation.sqlite b/data/AEAnnotation.sqlite
index c1a9fdd..ee06285 100644
Binary files a/data/AEAnnotation.sqlite and b/data/AEAnnotation.sqlite differ
diff --git a/data/Books.plist b/data/Books.plist
index b4f1fd4..fcb2e39 100644
Binary files a/data/Books.plist and b/data/Books.plist differ
diff --git a/detaildesign.md b/detaildesign.md
index 0e8cab1..92acacf 100644
--- a/detaildesign.md
+++ b/detaildesign.md
@@ -155,14 +155,37 @@ answer = inquirer.fuzzy(
---
-### 9.1 主要代码文件说明
-- `exportbooknotes.py`:主程序,负责数据同步、交互式选择、笔记导出等全部流程,菜单排序和显示基于最近打开时间戳。
-- `annotationdata.py`:负责从 iBooks 的 SQLite 数据库中解析和获取笔记数据。
-- `booklist_parse.py`:负责解析 Books.plist,获取书籍元数据(如书名、路径等),并提供 get_books_last_open 读取 BKLibrary.sqlite 获取最近打开时间。
-- `opf_parse.py`:负责解析 epub 的 OPF 文件,获取章节与文件映射关系。
-- `toc_parse.py`:负责解析 NCX 目录文件,章节定位,以及辅助章节查找。
-- `backup/booksnote.py`:备份或历史版本的笔记处理脚本。
+## 9.1 主要代码文件说明(细化)
+
+- `exportbooknotes.py`
+ - 数据同步:自动复制 iBooks 数据库和元数据到本地。
+ - 菜单交互:按最近打开时间戳排序,显示“书名 [时间戳]”,支持模糊搜索。
+ - 只处理用户选中书籍的笔记,按章节分组导出 Markdown。
+ - 依赖核心解析模块,负责主流程调度。
+
+- `annotationdata.py`
+ - 解析 AEAnnotation.sqlite,提取所有或指定 assetid 的笔记。
+ - 支持苹果时间戳转换,结构化输出。
+ - parse_location 辅助函数,统一解析笔记定位信息。
+
+- `booklist_parse.py`
+ - 解析 Books.plist,获取书籍元数据(书名、作者、路径、时间等)。
+ - 解析 BKLibrary.sqlite,获取每本书的最近打开时间(zlastopendate,苹果时间戳)。
+ - 提供统一数据接口,便于主流程排序和展示。
+
+- `opf_parse.py`
+ - 解析 epub 的 OPF 文件,获取章节与文件映射关系(idref -> href)。
+ - 支持多种 epub 目录结构。
+
+- `toc_parse.py`
+ - 解析 NCX 目录文件,递归构建章节树结构。
+ - find_label_path:支持通过 ref 和 filepos 查找完整 label 路径。
+ - find_section_by_selectedtext:通过选中文本在 html 文件中定位章节标题。
+ - parse_html_title:解析 html 文件标题。
+
+- `backup/booksnote.py`
+ - 历史/备份脚本,辅助数据迁移或格式转换。
---
diff --git a/export_notes/notes_export_B18FCD9F90FD43C2373AE52BAEF9A77C.md b/export_notes/notes_export_B18FCD9F90FD43C2373AE52BAEF9A77C.md
index 0f75c0e..d414ade 100644
--- a/export_notes/notes_export_B18FCD9F90FD43C2373AE52BAEF9A77C.md
+++ b/export_notes/notes_export_B18FCD9F90FD43C2373AE52BAEF9A77C.md
@@ -1,4 +1,4 @@
-# 笔记导出 2025-08-12 21:16
+# 笔记导出 2025-08-15 13:25
## 传统十论
@@ -530,6 +530,11 @@
如今人必称法治的时代,用韩非式的“法治”偷换现代宪政法治的危险也是不容忽视的,我们应当小心不要落入黄宗羲揭示的那个陷阱:
“法愈密而天下之乱即生于法之中,所谓非法之法也。”
+那种把清亡后出现混乱局面简单归结为“西化”与“激进”所致的看法是肤浅的:如果清亡后的混乱是因为西化,那以前的历代王朝灭亡时产生的混乱又是为何?换言之,清亡后的乱世究竟有几分是现代化“欲速则不达”的结果,几分只是“治乱循环”传统怪圈的一环?
+
+黄宗羲的批判虽然激烈而且深刻,他的“建构”却不能说是成功的。他鼓吹的“学校政治”并不包含程序民主,只是高度泛道德化的政治
+ ,而现在人们都知道这样的政治容易走向“道德专政”
+
### 西儒会融,解构“法道互补”——典籍与行为中的文化史悖论及中国现代化之路 / 绪论:“儒”与“吏
官是掌权的,这时主要从科举“正途”出身。吏是办事的,这时或从民间作为一种职役征调而来,或者由官“自辟僚属”而选用,前者多为奔走执事者,如皂隶、里胥、门子、捕快,后者多为文案工作者,称为文吏或书吏。但不论职役还是文吏,地位都低于官,有的王朝甚至规定吏户入贱籍,法定地位还低于一般民(农)户。然而我国传统制度的一个特点就是“县官不如现管”、狐假虎威的“奴隶”比无威可恃的“自由民”更有优势,因此胥吏的实际势力是很大的。
@@ -562,3 +567,142 @@
强者对弱者“无为”,可以理解为宽容,弱者对强者“无为”,就沦于苟且了。权力对权利“无为”意味着自由,而权利对权力“无为”则意味着奴役
而道家的上述诡辩论则为本来难以相容的“儒表”与“法里”提供了关键性的黏合剂,为逻辑上摩擦剧烈的王道之表与霸道之里加注了有效的润滑油:法家指鹿为马,儒家曰此非马,则被坑矣;曰此马也,则非儒矣。而庄子曰:马亦鹿也,鹿亦马也,所谓“万物一齐”也。是故指鹿为鹿者,儒也;而指鹿为马者,尤大儒也。言“大”者何?谓其超越是非之俗见,是为“真人”、“至人”也。故曰:法家儒也,儒家法也。而儒表法里者,其旷世之大儒乎!庄周的逻辑适足以论证如此“高尚的无耻”!
+
+即便我们写不出罗尔斯、哈耶克那种层次的理论巨著,我们也可以实行“拿来主义”,但倘若我们干不了甘地、哈维尔等人所干之事,那是绝不会有人代替我们干的
+
+达则独善其身”就是说大权在握时尤其要注意权力的自律,而不能凭借权力用自己哪怕是真诚的理想去无限制地律人
+
+如果无权者即“穷”者中没有人以自我牺牲的精神“兼济天下”,则所有的人都将难以“独善其身”。
+
+至于“穷则独善其身”,其缺陷在于只强调无权者的道德自律,而没有考虑需要争取和维护“无权者的权利”
+
+圣雄而达,则高于圣君,因为后者如果“己所欲必施于人”是会异化成暴君的。圣雄而穷,则高于圣隐,因为后者如果只是“知其不可而不为”,则不过犬儒而已。而圣雄者,穷则兼济天下,知其不可而为之,人所不欲之牺牲而施诸己,岂止“己所不欲勿施于人”哉!达则独善其身,己所欲而必请于人然后施之天下,真所谓“大道之行天下为公”矣
+> 这个很反人性,因为你要达者不做恶,他要穷者坚持底线。所谓穷则志短。
+
+而为了约束权力,对“达”者的舆论监督实际上实行的是“有错推定”原则,“达”者必须承担无错举证责任,如不能证明你无错,那你就被视为有错。这不就是“达则独善其身”吗
+
+如果“穷”者中多一些“兼济天下”的圣雄精神,那就能“以我之大公争得天下人之小私”,而实现“因民之所利而利之”的圣贤之道。如果对“达”者多一点约束圣君之制使其“独善其身”,那就会消除“以我之大私为天下之大公”的千年祸患,真正实现“克己复礼,天下归仁”。因此我们应该让“穷”者多一点权利意识,而“达”者少一点权力迷信。
+> 作者太高估了人性
+
+穷”者要能够“有为而有不为”,“达”者要善于“无为而无不为”。只有这样,我们这个文明古国才能跳出因“达则有为穷则无为”而陷入“法道互补”的怪圈,儒学本身才能摆脱“儒表法里”与“儒表道里”的双重异化、抵抗强权哲学与犬儒哲学的两面夹击,才有可能实现“老内圣开出新外王”
+
+### 谁,面向哪个东方?——评弗兰克:《重新面向东方》,兼论所谓“西方中心论”问题
+有趣的是清代关税税率比更为看重市舶之利的两宋为低,但却比根本无所谓关税
+
+用布罗代尔的话说:
+(西欧)贵金属也经由波罗的海流向东欧。这些落后国家为西方提供小麦、木材、黑麦、鱼、皮革、毛皮,但很少购买西方的商品。实际上是西方逐渐促成这些国家的货币流通。16世纪与(俄罗斯)纳尔瓦的贸易便是一例……1553年英国人在(俄罗斯)白海港口阿尔汉格尔斯克开创的贸易是又一个例子。18世纪圣彼得堡的贸易也属于这种情况。必须注入外国货币,才能指望俄国输出西方期待的原料。荷兰人执意用纺织品、布料和鲱鱼支付货款,结果他们失去了在俄国的优先地位
+(18)
+
+ 。
+
+评论界早有人指出这种以外贸盈余来证明经济发达的“贸易主义”
+(4)
+
+ 是弗兰克此书的一大硬伤。所以说是硬伤,盖因其不是个资料多少的问题,而是个不合逻辑的问题。众所周知,我国现在就是世界外贸顺差最大的国家之一(仅次于日本),而美国则是世界头号外贸逆差国。这能说明我国如今是“世界经济中心”而美国则是比非洲还要惨的最“边缘”之地么?
+
+有趣的是,当时的一般趋势是中国经济越繁荣,通货输出越明显,而在经济衰败时期便会出现通货回流。如宋金对峙时代南宋钱币长期北流入金,但到南宋末的最后数十年间,却出现了钱币回流现象
+
+(14)
+
+ 。
+
+唐宋时期中国的贸易逆差就更为明显,这个时期中国贵金属的极度稀缺据说就与此有关。贵金属之外,当时中国一般通货的大量外流更蔚为大观,从“开元通宝”到宋代制钱,都曾广行于周边地区,几成“国际通货”,有似今日美国以美元支付逆差的结果
+
+破财换虚荣的“贡赐”的明朝为高。可见在
+
+农业时代的外贸需求一般主要是奢侈品需求,强大帝国的这种需求(可以货币支付的需求)往往高于衰弱国家,因而容易形成更大的逆差。初级工业化开始后大宗产品供给与大宗原材料需求同步增加,但如果它是与没有投资需求的传统农业国进行贸易,则它的大宗原材料需求会比大宗产品供给更易实现,从而也造成大量逆差
+
+ 清代初年也曾厉行海禁,“片帆不准入口”。康熙中叶解除海禁后也只限四口(广州、漳州、宁波、云台山)通商,比宋元时代的口岸少得多。而且仅仅70年后又关闭了三口,只限广州一口通商,实际上回到了半海禁状态。在广州一口又实行官府特许的行商垄断制度,加上对越来越多的货物实行禁止外贸(包括军需品、粮食、铁、丝绸、马匹、书籍等),对国民接触外国人的严厉限制(如1759年《防夷五事》条规所规定的)等,对“自由贸易”排拒岂是今日所谓的关税壁垒或贸易保护主义所能比拟的
+
+农业时代世界史中相对发达地区贸易是逆差、通货纯流出的现象是大量的,相反的事例反而较少。
+ 在汉帝国黄金流向西域的同时,罗马帝国的黄金也在向东流
+
+在历史上,关税壁垒是重商主义的一种实践,而没有这种壁垒可能意味着“后重商主义”自由贸易时代,也可能意味着“前重商主义”命令经济时代
+
+明清政府的外贸政策就更为保守。明代曾长期实行“片板不许入海,寸货不许入蕃”的海禁政策,完全取缔民间外贸,以至于逼商为“寇”,造成了绵延不绝的“倭寇”问题
+
+清代的关税税则紊乱,黑幕重重,贪污勒索盛行,若就国库所得而言,其税率确实不高,不仅低于英国,而且也低于两宋。但这与自由贸易全不相干,
+ 只反映了当时以“农本”立围,以地丁钱粮为“正供”,当局视外贸为不正经,犹如偷鸡摸狗,国家财政岂能寄望于此
+
+ 在中国古代,政府对外贸最积极的时代是宋元而非明清。两宋政府尤其是幅员缩小而军费浩繁的南宋政府基于财政需要而鼓励市舶贸易,市舶口岸多达20余个,还曾以抓壮丁式的方式强籍商人出海
+(20)
+
+ 。然而这种贸易并不“自由”。市舶司(类似海关)对进口货“抽解”(征税)10%~40%,这一税率比清代关税要高许多。但关键问题并不在此:宋政府对外贸的最致命的控制实际上是在“抽解”后。纳完关税的货物并不能直接进入市场,要先由市舶司统购统销一大部分,号曰“博买”主要的舶货如奢侈品、镔铁、药材等全部收购,其他货物也要由官府“博买”一半。“博买”后由官方编纲解运京师。“官市之余,听市于民”
+(21)
+
+ ,真正能“自由贸易”的不过这些漏网之鱼而已。
+
+然而弗兰克在这方面汲取的东西很少,他的基本立论几乎完全建立在外贸顺差这一点上,此书中译本取名《白银资本》(据说这个书名征求了弗兰克本人的意见)即因此而来
+
+现实社会主义衰败了,自由主义也面临很多问题,究竟人类的道路在哪里,这只能从普世的角度,而不是什么西方或东方的角度来研究。
+
+记得前几年《东方》杂志上有句话:谁是“东方”?小心地球是圆的,向东,向东,没准儿又回到了原地
+
+传统帝国在对外商有时的确“真是太宽容了”的同时,对本国商民却极尽歧视、镇压乃至剿灭之能事,其手段一点也不“和平”。相应地作为“博弈”的另一方,当时的中国海商也常常以海盗的形式对祖国处在战争状态,从明代作为所谓“倭寇”主体的中国民间海商武装,到明清两代的林风、林道乾、刘香、送芝龙郑成功父子以至蔡牵、郭惟太等莫不如此,这其间哪有什么“用和平方式解决冲突”的文明规则
+
+而在中文版前言中他又认为中国自古以来一直先进,直到鸦片战争后才衰落,“而这显然是暂时的”,现在它又将“再次占据世界经济的支配地位”
+> 中国一直先进的观点,原来是他炮制出来的。
+
+文化”不可比,但“制度”有优劣
+
+他在努力使他的理论与当时在苏联居于正统地位的马克思主义周期危机的理论相适应,但他很快就在农业集体化中被当成异端而被捕并死于大肃反,这一努力遂告中断。
+
+以对政府财政资助的依赖程度来衡量第三部门自主性受到的束缚,这样的论证在公民社会是可以成立的
+(25)
+
+ ,但放到其他社会类型就不行了
+
+在前重商主义体制下,官方不仅限制进口,尤其禁阻出口(这与重商主义只限制进口但支持出口正相反),限制的目的也不是保护国内产业,而是便于管制国民
+
+何况,“康德拉季耶夫周期”在经济学上本有其明确的所指,它是一种平均约为54年的兴衰周期。虽然历史学著述借用经济学概念时出现泛化是可以理解的,但像弗兰克那样把从几千年到几十年的过程都算做“康德拉季耶夫周期”,也未免过分了。依了这种逻辑,恐龙的兴衰乃至天体的生灭是否都可以叫做“康德拉季耶夫周期”,而且可以以这个概念作为原因来解释过程本身?苟如此,人们还有什么“谜”是不可解的呢?
+> 对所有的事情都可以用道家的相转化的理论来解释的
+
+显然,尽管由于某种原因左右派都称道“东方”,“东方”好像既是社会主义的希望所在,又是自由主义或保守主义的希望所在,但我们没有理由去忽视“主义”本身所给出的真问题,而沉迷于所谓“东方”还是“西方”这样的假问题
+ ,并以那种所谓萨克斯和崔之元都是“东方中心论者”的昏话把人搞糊涂。
+
+于是在经济转轨问题上,左派、右派似乎都成了“东方中心论”者,都在以“中国的经验”教训欧洲人应当如何干。萨克斯教训欧洲人应当学习中国禁止民间工会,崔之元教训欧洲人应当学习中国搞“鞍钢宪法”——人们能把他们在“东方中心论”的名义下一锅煮么?
+
+1939年由美国经济学家J·A·熊彼特提议后,世界经济学界都接受了“康德拉季耶夫周期”这一术语作为经济成长中长时段波动的称呼。
+
+### 谁,面向哪个东方?——评弗兰克:《重新面向东方》,兼论所谓“西方中心论”问题 / 一、外贸顺差与“经济中心
+同样按这个逻辑,明清之际有大量白银流入中国,因此它是世界第一。那么我们怎么评价秦汉唐宋?那可是大量通货流出中国的时代——是大量外国商品传入中国的时代,
+ 是“贸易”大量逆差的时代。如果用这种尺度评价,那两千多年中华帝国历史的大部分便成了大衰落的时代,一无可取的时代,龟缩于“世界体系之边缘”的时代,只有到了明清间的这几百年,才昙花一现,忽然崛起为“全球经济中心”,尔后又莫名其妙地忽然衰落
+
+
+### 公社之谜——农业集体化的再认识
+中国的大一统始于秦,而关于奠定了强秦之基的商鞅变法,过去史学界有个流行的论点,即认为商鞅坏井田、开阡陌而推行了“土地私有制”。如今史学界仍持此论者恐已不多,因为20世纪70年代以来,人们从睡虎地出土秦简与青川出土的秦牍中已明确知道秦朝实行的是严格的国家授地制,而不是什么“土地自由买卖”
+
+1919年以后,虽然村苏维埃普遍设立,但传统村社的势力仍然强大,形成所谓乡村中“两个政权并存”的局面
+
+(36)
+
+ 。在20世纪20年代,由于大多数村苏维埃没有预算,而米尔村社则控制着土地和社区公共资源,因此往往比村苏维埃更具实质功能。经过革命,“警察式”管理衰落而“公社式”管理更活跃,村社的自治性因而也增加了。当时村苏维埃的选举要讲“阶级原则”,“富农”没有选举和被选举权,而村社及村会的选举则是传统式的,不讲什么“阶级”,于是所谓“富农”控制村社便成了布尔什维克体制在农村遇到的一大问题。
+
+不久中央便正式决定在全国取消农会。紧接着在这年10月间,集体化最重要的逻辑前提——统购统销即正式出台。取消农会的决定在主观上虽未必与统购统销这一重大转折有关,但此举无疑使国家在这一转折关头消除了一个潜在的谈判对手,面对着一盘散沙式的小农户,其地位远比面对着自治村社的苏俄国家要有利。至此,我国农村组织前所未有的一元化,任何可能制衡大共同体的自治机制都不存在
+
+集体化在中国遇到的阻力就小得多。中国农民抵制集体化的高潮发生在1956年的高级社时期
+
+在某种意义上,传统俄国社会类似于传统(中世纪)西欧与传统中国之间的中介类型。
+ 与西欧贵族相比,俄国贵族具有浓厚的官僚气味;而与传统中国官僚相比,则又具有浓厚贵族色彩。同样的,传统俄国乡村组织——米尔公社与中古西欧的小共同体相比具有明显的“政社合一”式的官办色彩,但与传统中国的乡里保甲相比却显得更像个自治的小共同体。传统西欧是“小共同体本位”社会,个人依附于采邑、村社、教区、行会乃至家族等传统小共同体,个性发展受其抑制。但
+
+浙江是全国农潮最严重的省份,宁波专区有5%社员退社,想退社而未遂的达20%,为全国之冠
+
+1956年农潮之后到1958年公社化时,农民就再未发生反抗之风,甚至在大饥荒导致上千万人饿死时亦然
+
+当年苏联为了迫使农民——土地公有的传统村社社员接受集体化,曾付出了惨烈的代价:逮捕、流放了上百万“富农”;出动成师的正规红军和飞机大炮镇压农民反抗;在一些地区的镇压,其惨烈程度甚至导致某些红军部队(他们也是“穿军装的农民”)的哗变
+
+回头再看中国,对于“小私有”的中国农民更容易被“集体化”便不会觉得奇怪。如前所述,在中国农民集体化的全过程中相对较强的抵制发生在东南沿海的广东、浙江、江苏诸省,而这三省(尤其是前二省)在近代恰是中国民间传统小共同体——宗族组织最活跃的地方
+
+### 土地改革=民主革命?集体化=社会主义?——马克思主义农民理论的演变与发展 / 一、“两种保守性”与小生产衰亡论
+如上所述,马克思、恩格斯认为农民“小生产”及作为这种生产基础的“小土地私有”相对于“大生产”(无论是资本主义还是社会主义的)而言是“保守”的、乃至“反动”的。但过去我们也知道,马克思、恩格斯对小私有农民在反封建问题上的作用有另外的评价。马克思在赞赏法国大革命时曾指出,资产阶级革命的基础“就是消灭农村中的封建制度,就是创立自由的占有土地的农民阶级”
+(17)
+
+ 。他还提到:“自耕农的这种自由小土地所有制形式,作为占统治地位的正常形式……是封建土地所有制解体所产生的各种形式之一。……在这里,土地的所有权是个人独立发展的基础。它也是农业本身发展的一个必要的过渡阶段。”
+(18
+
+### 土地改革=民主革命?集体化=社会主义?——马克思主义农民理论的演变与发展
+只有到了“市民社会”个人依靠“交换的力量”冲破了共同体的束缚,结束“人的依附性”而形成“人的独立性”。
+ 进而克服马克思认为是因私有财产而带来的“异化”,走向“自由个性”和“自由人联合体”的理想状态。
+
+问题的实质在于:作为近代经济组织的合作制,是商品生产者的自由联合体,是契约性社会中商品生产者为市场竞争中的共同利益而在产、供、销等各领域或信贷、科技、机械服务等方面形成的联营组织。
+ 它的前提便是要有商品生产者自由个性的觉醒、经济理性的成熟,作为契约主体的独立人格(包括法人人格)的存在以及社会交换关系的发达。而身份性社会中的传统农村公社和命令经济(习俗经济)中的“集体”却是一种以人身依附为基础的共同体,一种以压抑人的个性自觉与否定契约人格为条件的束缚一保护纽带。两者所体现的社会性质与经济关系是全然不同甚至对立的
diff --git a/exportbooknotes.py b/exportbooknotes.py
index a66214a..e9f8dd3 100644
--- a/exportbooknotes.py
+++ b/exportbooknotes.py
@@ -8,6 +8,8 @@ exportbooknotes.py
- 命令行菜单按最近打开时间降序展示书籍列表,供用户选择导出。
- 仅导出选中书籍的所有笔记,按章节分组,生成Markdown文件。
+依赖:config.py 统一管理路径和配置项。
+
主要数据流:
1. 数据同步到data目录
2. 解析Books.plist获取书籍元数据
@@ -19,10 +21,13 @@ exportbooknotes.py
依赖:Python 3, InquirerPy, bs4, shutil, os, datetime, sqlite3
+主要数据流:
+
典型用法:
python exportbooknotes.py
# 按提示选择书籍,自动导出笔记到export_notes目录
"""
+import config
"""
自动生成 booksnote 数据结构:
booksnote = {
@@ -63,7 +68,7 @@ def get_toc_tree(toc_path):
#pprint(toc_tree, indent=2, depth=5)
return toc_tree
-def build_booksnote(annotation_db='data/AEAnnotation.sqlite', books_plist='data/Books.plist', bookid=None):
+def build_booksnote(annotation_db=config.LOCAL_ANNOTATION_DB, books_plist=config.LOCAL_BOOKS_PLIST, bookid=None):
# 支持只处理特定 assetid 的笔记
annotations = get_annotations(annotation_db, bookid=bookid)
booksinfo = parse_books_plist(books_plist)
@@ -148,11 +153,11 @@ if __name__ == '__main__':
import os.path
# 自动覆盖 ./data 下的数据库和plist文件,源为iBooks真实路径
src_files = [
- (os.path.expanduser('~/Library/Containers/com.apple.iBooksX/Data/Documents/AEAnnotation/AEAnnotation_v10312011_1727_local.sqlite'), 'data/AEAnnotation.sqlite'),
- (os.path.expanduser('~/Library/Containers/com.apple.iBooksX/Data/Documents/AEAnnotation/AEAnnotation_v10312011_1727_local.sqlite-shm'), 'data/AEAnnotation.sqlite-shm'),
- (os.path.expanduser('~/Library/Containers/com.apple.iBooksX/Data/Documents/AEAnnotation/AEAnnotation_v10312011_1727_local.sqlite-wal'), 'data/AEAnnotation.sqlite-wal'),
- (os.path.expanduser('~/Library/Containers/com.apple.iBooksX/Data/Documents/BKLibrary/BKLibrary-1-091020131601.sqlite'), 'data/BKLibrary.sqlite'),
- (os.path.expanduser('~/Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/Books.plist'), 'data/Books.plist')
+ (config.IBOOKS_ANNOTATION_DB, config.LOCAL_ANNOTATION_DB),
+ (config.IBOOKS_ANNOTATION_SHM, config.LOCAL_ANNOTATION_SHM),
+ (config.IBOOKS_ANNOTATION_WAL, config.LOCAL_ANNOTATION_WAL),
+ (config.IBOOKS_LIBRARY_DB, config.LOCAL_LIBRARY_DB),
+ (config.IBOOKS_BOOKS_PLIST, config.LOCAL_BOOKS_PLIST)
]
for src, dst in src_files:
if os.path.exists(src):
@@ -165,7 +170,7 @@ if __name__ == '__main__':
from InquirerPy import inquirer # type: ignore
# 先获取所有书籍元数据
- booksinfo = parse_books_plist('data/Books.plist')
+ booksinfo = parse_books_plist(config.LOCAL_BOOKS_PLIST)
# 构建书名列表(优先displayname, 其次itemname, 否则assetid),按parse_books_plist中的date字段排序
assetid2name = {}
@@ -173,7 +178,7 @@ if __name__ == '__main__':
from booklist_parse import get_books_last_open
# 获取所有书籍的最后打开时间(字典,值为{'last_open': 时间戳})
- last_open_times = get_books_last_open('data/BKLibrary.sqlite')
+ last_open_times = get_books_last_open(config.LOCAL_LIBRARY_DB)
for assetid, info in booksinfo.items():
name = info.get('displayname') or info.get('itemname') or assetid
diff --git a/icons/.DS_Store b/icons/.DS_Store
new file mode 100644
index 0000000..5008ddf
Binary files /dev/null and b/icons/.DS_Store differ
diff --git a/icons/Cbb20.png b/icons/Cbb20.png
new file mode 100644
index 0000000..0cf0a51
Binary files /dev/null and b/icons/Cbb20.png differ
diff --git a/icons/Drop Stuff.png b/icons/Drop Stuff.png
new file mode 100644
index 0000000..ad42125
Binary files /dev/null and b/icons/Drop Stuff.png differ
diff --git a/icons/Pixadex.png b/icons/Pixadex.png
new file mode 100644
index 0000000..4082bd1
Binary files /dev/null and b/icons/Pixadex.png differ
diff --git a/icons/Safari.png b/icons/Safari.png
new file mode 100644
index 0000000..a7dcd9d
Binary files /dev/null and b/icons/Safari.png differ
diff --git a/icons/add.png b/icons/add.png
new file mode 100644
index 0000000..d8d2d8e
Binary files /dev/null and b/icons/add.png differ
diff --git a/icons/addbook.png b/icons/addbook.png
new file mode 100644
index 0000000..4ef20b0
Binary files /dev/null and b/icons/addbook.png differ
diff --git a/icons/amazon.png b/icons/amazon.png
new file mode 100644
index 0000000..68fbac8
Binary files /dev/null and b/icons/amazon.png differ
diff --git a/icons/book.png b/icons/book.png
new file mode 100644
index 0000000..b9f2327
Binary files /dev/null and b/icons/book.png differ
diff --git a/icons/book3.png b/icons/book3.png
new file mode 100644
index 0000000..eef99a5
Binary files /dev/null and b/icons/book3.png differ
diff --git a/icons/book_open.png b/icons/book_open.png
new file mode 100644
index 0000000..42c334c
Binary files /dev/null and b/icons/book_open.png differ
diff --git a/icons/book_open_bookmark.png b/icons/book_open_bookmark.png
new file mode 100644
index 0000000..dd029ba
Binary files /dev/null and b/icons/book_open_bookmark.png differ
diff --git a/icons/books.png b/icons/books.png
new file mode 100644
index 0000000..db7853f
Binary files /dev/null and b/icons/books.png differ
diff --git a/icons/booksicon.png b/icons/booksicon.png
new file mode 100644
index 0000000..c171b8b
Binary files /dev/null and b/icons/booksicon.png differ
diff --git a/icons/conf.png b/icons/conf.png
new file mode 100644
index 0000000..b2d094b
Binary files /dev/null and b/icons/conf.png differ
diff --git a/icons/config.png b/icons/config.png
new file mode 100644
index 0000000..689a818
Binary files /dev/null and b/icons/config.png differ
diff --git a/icons/direction.png b/icons/direction.png
new file mode 100644
index 0000000..8460cf3
Binary files /dev/null and b/icons/direction.png differ
diff --git a/icons/down.png b/icons/down.png
new file mode 100644
index 0000000..3081a20
Binary files /dev/null and b/icons/down.png differ
diff --git a/icons/downr.png b/icons/downr.png
new file mode 100644
index 0000000..7254572
Binary files /dev/null and b/icons/downr.png differ
diff --git a/icons/dustbin.png b/icons/dustbin.png
new file mode 100644
index 0000000..75fd80d
Binary files /dev/null and b/icons/dustbin.png differ
diff --git a/icons/emblem_library.png b/icons/emblem_library.png
new file mode 100644
index 0000000..6ef62b9
Binary files /dev/null and b/icons/emblem_library.png differ
diff --git a/icons/fav.png b/icons/fav.png
new file mode 100644
index 0000000..5e0308d
Binary files /dev/null and b/icons/fav.png differ
diff --git a/icons/file18.png b/icons/file18.png
new file mode 100644
index 0000000..c192d20
Binary files /dev/null and b/icons/file18.png differ
diff --git a/icons/flower.png b/icons/flower.png
new file mode 100644
index 0000000..e2da493
Binary files /dev/null and b/icons/flower.png differ
diff --git a/icons/flush.png b/icons/flush.png
new file mode 100644
index 0000000..9aa353f
Binary files /dev/null and b/icons/flush.png differ
diff --git a/icons/folder.png b/icons/folder.png
new file mode 100644
index 0000000..337de10
Binary files /dev/null and b/icons/folder.png differ
diff --git a/icons/foldup.png b/icons/foldup.png
new file mode 100644
index 0000000..ef3426a
Binary files /dev/null and b/icons/foldup.png differ
diff --git a/icons/home.png b/icons/home.png
new file mode 100644
index 0000000..780ab2e
Binary files /dev/null and b/icons/home.png differ
diff --git a/icons/homepage.png b/icons/homepage.png
new file mode 100644
index 0000000..9a87277
Binary files /dev/null and b/icons/homepage.png differ
diff --git a/icons/import.png b/icons/import.png
new file mode 100644
index 0000000..d99edc5
Binary files /dev/null and b/icons/import.png differ
diff --git a/icons/kindle.png b/icons/kindle.png
new file mode 100644
index 0000000..3236e25
Binary files /dev/null and b/icons/kindle.png differ
diff --git a/icons/list.png b/icons/list.png
new file mode 100644
index 0000000..4a712a2
Binary files /dev/null and b/icons/list.png differ
diff --git a/icons/mail.png b/icons/mail.png
new file mode 100644
index 0000000..b68b2cd
Binary files /dev/null and b/icons/mail.png differ
diff --git a/icons/md.jpeg b/icons/md.jpeg
new file mode 100644
index 0000000..8acde41
Binary files /dev/null and b/icons/md.jpeg differ
diff --git a/icons/md2.png b/icons/md2.png
new file mode 100644
index 0000000..3401788
Binary files /dev/null and b/icons/md2.png differ
diff --git a/icons/money.png b/icons/money.png
new file mode 100644
index 0000000..19b0519
Binary files /dev/null and b/icons/money.png differ
diff --git a/icons/money2.png b/icons/money2.png
new file mode 100644
index 0000000..26ba465
Binary files /dev/null and b/icons/money2.png differ
diff --git a/icons/money3.png b/icons/money3.png
new file mode 100644
index 0000000..5b8f84f
Binary files /dev/null and b/icons/money3.png differ
diff --git a/icons/person.png b/icons/person.png
new file mode 100644
index 0000000..8e0ea24
Binary files /dev/null and b/icons/person.png differ
diff --git a/icons/qq.png b/icons/qq.png
new file mode 100644
index 0000000..53576ca
Binary files /dev/null and b/icons/qq.png differ
diff --git a/icons/question.png b/icons/question.png
new file mode 100644
index 0000000..d3bb69c
Binary files /dev/null and b/icons/question.png differ
diff --git a/icons/refresh.png b/icons/refresh.png
new file mode 100644
index 0000000..78d9802
Binary files /dev/null and b/icons/refresh.png differ
diff --git a/icons/refresh2.png b/icons/refresh2.png
new file mode 100644
index 0000000..f0e9672
Binary files /dev/null and b/icons/refresh2.png differ
diff --git a/icons/register.png b/icons/register.png
new file mode 100644
index 0000000..730c89b
Binary files /dev/null and b/icons/register.png differ
diff --git a/icons/search.jpeg b/icons/search.jpeg
new file mode 100644
index 0000000..720a19e
Binary files /dev/null and b/icons/search.jpeg differ
diff --git a/icons/share.png b/icons/share.png
new file mode 100644
index 0000000..813b8c1
Binary files /dev/null and b/icons/share.png differ
diff --git a/icons/statistics.png b/icons/statistics.png
new file mode 100644
index 0000000..8657ed7
Binary files /dev/null and b/icons/statistics.png differ
diff --git a/icons/txt.png b/icons/txt.png
new file mode 100644
index 0000000..f014a63
Binary files /dev/null and b/icons/txt.png differ
diff --git a/icons/upgreen.png b/icons/upgreen.png
new file mode 100644
index 0000000..586fd8d
Binary files /dev/null and b/icons/upgreen.png differ
diff --git a/icons/user.png b/icons/user.png
new file mode 100644
index 0000000..559636c
Binary files /dev/null and b/icons/user.png differ
diff --git a/icons/web.png b/icons/web.png
new file mode 100644
index 0000000..f4f1d08
Binary files /dev/null and b/icons/web.png differ
diff --git a/icons/webchat.png b/icons/webchat.png
new file mode 100644
index 0000000..7e7c3d3
Binary files /dev/null and b/icons/webchat.png differ
diff --git a/icons/write.png b/icons/write.png
new file mode 100644
index 0000000..7840793
Binary files /dev/null and b/icons/write.png differ
diff --git a/icons/yes.png b/icons/yes.png
new file mode 100644
index 0000000..68fcd82
Binary files /dev/null and b/icons/yes.png differ
diff --git a/kmanapp.png b/kmanapp.png
new file mode 100644
index 0000000..6786cc1
Binary files /dev/null and b/kmanapp.png differ
diff --git a/kmanapp.qrc b/kmanapp.qrc
new file mode 100644
index 0000000..2796b3e
--- /dev/null
+++ b/kmanapp.qrc
@@ -0,0 +1,58 @@
+
+
+ icons/add.png
+ icons/books.png
+ icons/Cbb20.png
+ icons/config.png
+ icons/direction.png
+ icons/down.png
+ icons/downr.png
+ icons/dustbin.png
+ icons/fav.png
+ icons/file18.png
+ icons/folder.png
+ icons/home.png
+ icons/list.png
+ icons/mail.png
+ icons/md2.png
+ icons/money.png
+ icons/money2.png
+ icons/money3.png
+ icons/qq.png
+ icons/refresh2.png
+ icons/Safari.png
+ icons/search.jpeg
+ icons/share.png
+ icons/txt.png
+ icons/upgreen.png
+ icons/web.png
+ icons/webchat.png
+ icons/write.png
+ icons/yes.png
+ icons/addbook.png
+ icons/conf.png
+ icons/Drop Stuff.png
+ icons/flush.png
+ icons/foldup.png
+ icons/md.jpeg
+ icons/Pixadex.png
+ icons/question.png
+ icons/refresh.png
+ icons/statistics.png
+ mainwindow.ui
+ icons/booksicon.png
+ icons/book_open.png
+ icons/book_open_bookmark.png
+ icons/emblem_library.png
+ icons/book3.png
+ icons/register.png
+ icons/person.png
+ icons/user.png
+ icons/kindle.png
+ icons/homepage.png
+ icons/import.png
+ icons/book.png
+ icons/amazon.png
+ icons/flower.png
+
+
diff --git a/mainwindow.ui b/mainwindow.ui
new file mode 100644
index 0000000..7fd0cfa
--- /dev/null
+++ b/mainwindow.ui
@@ -0,0 +1,257 @@
+
+
+ MainWindow
+
+
+
+ 0
+ 0
+ 837
+ 622
+
+
+
+ Kindle Management
+
+
+
+ :/icons/Cbb20.png:/icons/Cbb20.png
+
+
+
+ 40
+ 40
+
+
+
+
+ -
+
+
+ Qt::Orientation::Horizontal
+
+
+
+
+ 0
+ 0
+
+
+
+
+ 401
+ 16777215
+
+
+
+ false
+
+
+
+
+ Qt::Orientation::Vertical
+
+
+
+
+
+
+ -
+
+
-
+
+
+ Search
+
+
+
+ -
+
+
+ 可按书名、作者、内容搜索笔记
+
+
+
+ -
+
+
+
+
+
+
+ -
+
+
+ ...
+
+
+
+ :/icons/search.jpeg:/icons/search.jpeg
+
+
+
+
+
+
+
+
+
+
+
+ toolBar
+
+
+ TopToolBarArea
+
+
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ :/icons/downr.png:/icons/downr.png
+
+
+ importlocal
+
+
+ import clipping file from local clipping file
+
+
+
+
+
+ :/icons/kindle.png:/icons/kindle.png
+
+
+ importkindle
+
+
+ import clipping file from kindle
+
+
+
+
+
+ :/icons/config.png:/icons/config.png
+
+
+ config
+
+
+ configuration
+
+
+
+
+
+ :/icons/refresh.png:/icons/refresh.png
+
+
+ refresh
+
+
+ refresh import file/quick import from kindle
+
+
+
+
+
+ :/icons/books.png:/icons/books.png
+
+
+ words
+
+
+ words
+
+
+
+
+
+ :/icons/statistics.png:/icons/statistics.png
+
+
+ statistic
+
+
+ statistics reading habbit
+
+
+
+
+
+ :/icons/web.png:/icons/web.png
+
+
+ homepage
+
+
+ redirect to my homepage
+
+
+
+
+
+ :/icons/question.png:/icons/question.png
+
+
+ about
+
+
+ open about dialog
+
+
+
+
+
+ :/icons/Pixadex.png:/icons/Pixadex.png
+
+
+ search
+
+
+ search note
+
+
+
+
+
+ :/icons/md2.png:/icons/md2.png
+
+
+ export
+
+
+ export to file
+
+
+
+
+
+
+
+
diff --git a/push.sh b/push.sh
index a27b393..1e680b9 100755
--- a/push.sh
+++ b/push.sh
@@ -1,3 +1,11 @@
+#!/bin/bash
+# push.sh
+# -----------
+# 用途:一键提交并推送当前目录下所有git更改。
+# 用法:
+# ./push.sh "commit message"
+# # 若不传参数,默认commit message为'update'
+
#!/bin/bash
git add .
msg="${1:-'update'}"
diff --git a/test.ui b/test.ui
new file mode 100644
index 0000000..08e2ac4
--- /dev/null
+++ b/test.ui
@@ -0,0 +1,123 @@
+
+
+ MainWindow
+
+
+
+ 0
+ 0
+ 800
+ 600
+
+
+
+ MainWindow
+
+
+
+
+
+
+ toolBar
+
+
+ TopToolBarArea
+
+
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+ test1
+
+
+ QAction::MenuRole::NoRole
+
+
+
+
+
+
+
+ test2
+
+
+ QAction::MenuRole::NoRole
+
+
+
+
+
+
+
+ test3
+
+
+ QAction::MenuRole::NoRole
+
+
+
+
+
+
+
+ testre4
+
+
+ QAction::MenuRole::NoRole
+
+
+
+
+
+
+
+ test5
+
+
+ QAction::MenuRole::NoRole
+
+
+
+
+
+
+
+
diff --git a/toc_parse.py b/toc_parse.py
index 0bd5256..426e619 100644
--- a/toc_parse.py
+++ b/toc_parse.py
@@ -1,9 +1,21 @@
-# parsetoc.py
-# -----------------------------
-# 用于解析EPUB电子书的toc.ncx目录文件,递归构建章节树结构,支持通过ref和filepos查找完整label路径。
-# 支持多种EPUB格式的toc.ncx,包含批量测试用例。
-# 依赖:BeautifulSoup4
-# -----------------------------
+"""
+toc_parse.py
+------------
+功能:
+ - 解析EPUB电子书的toc.ncx目录文件,递归构建章节树结构。
+ - 支持通过ref和filepos查找完整label路径。
+ - 支持通过selectedtext在html文件中定位章节标题。
+ - 兼容多种EPUB格式,支持批量测试。
+
+依赖:config.py 统一管理路径和配置项。
+主要接口:
+ parse_navpoints(navpoints) # 递归解析navPoint节点,返回章节树结构。
+ find_label_path(node, ref, filepos, path) # 查找指定ref和filepos的章节label路径。
+ find_section_by_selectedtext(html_path, selectedtext) # 通过选中文本定位章节标题。
+ parse_html_title(html_path) # 解析html文件标题。
+依赖:BeautifulSoup4, pprint, os, typing
+"""
+import config
from bs4 import BeautifulSoup
@@ -160,14 +172,14 @@ def find_label_path(
if __name__ == "__main__":
# ==== 批量测试指定toc/html/filepos列表 ====
test_cases = [
- ["examples/epub_format_1", "index_split_015.html", "filepos684970"],
- ["examples/epub_format_2", "Text/8c7276f38ead4738ee19249418898c18_split_006.html", "sigil_toc_id_12"],
- ["examples/epub_format_3", "Text/011.xhtml", ""],
- ["examples/epub_format_4", "xhtml/p-006.xhtml", ""],
- ["examples/变宋", "text/part0005.html", ""],
- ["examples/变宋", "text/part0002_split_003.html", ""],
- ["examples/规训与惩罚", "index_split_006.html", ""],
- ["examples/政治哲學的12堂Podcast", "ch1.xhtml#_idParaDest-4", ""],
+ [config.EXAMPLES_DIR + "/epub_format_1", "index_split_015.html", "filepos684970"],
+ [config.EXAMPLES_DIR + "/epub_format_2", "Text/8c7276f38ead4738ee19249418898c18_split_006.html", "sigil_toc_id_12"],
+ [config.EXAMPLES_DIR + "/epub_format_3", "Text/011.xhtml", ""],
+ [config.EXAMPLES_DIR + "/epub_format_4", "xhtml/p-006.xhtml", ""],
+ [config.EXAMPLES_DIR + "/变宋", "text/part0005.html", ""],
+ [config.EXAMPLES_DIR + "/变宋", "text/part0002_split_003.html", ""],
+ [config.EXAMPLES_DIR + "/规训与惩罚", "index_split_006.html", ""],
+ [config.EXAMPLES_DIR + "/政治哲學的12堂Podcast", "ch1.xhtml#_idParaDest-4", ""],
]
for epub_dir, html_file, filepos in test_cases:
# 自动查找epub目录下的toc.ncx
@@ -212,7 +224,7 @@ if __name__ == "__main__":
note_idref = 'text/part0002_split_003.html'
note_filepos = None
# 变宋toc.ncx路径
- bian_song_toc = "examples/变宋/toc.ncx"
+ bian_song_toc = config.EXAMPLES_DIR + "/变宋/toc.ncx"
import os
if os.path.exists(bian_song_toc):
with open(bian_song_toc, "r", encoding="utf-8") as f:
diff --git a/x b/x
deleted file mode 100644
index 8abab92..0000000
--- a/x
+++ /dev/null
@@ -1,11158 +0,0 @@
-{
- "Books" => [
- 0 => {
- "BKAllocatedSize" => 5709824
- "BKBookType" => "pdf"
- "BKDisplayName" => " 新见邓石如致黄易信札及其相关印学解读"
- "BKGeneratedItemId" => "47C58631A7E8832390452B3DF38CA46F"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424264
- "BKIsLocked" => 0
- "itemName" => " 新见邓石如致黄易信札及其相关印学解读"
- "pageCount" => 24
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/ 新见邓石如致黄易信札及其相关印学解读.pdf"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/ 新见邓石如致黄易信札及其相关印学解读.pdf"
- }
- 1 => {
- "BKAllocatedSize" => 59457536
- "BKBookType" => "pdf"
- "BKDisplayName" => "01中国篆刻聚珍战国玺"
- "BKGeneratedItemId" => "330E1882A766342702C90C8B97EEC865"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424264
- "BKIsLocked" => 0
- "itemName" => "01中国篆刻聚珍:战国玺"
- "modificationDate" => 2024-08-08 14:32:30 +0000
- "pageCount" => 129
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/01中国篆刻聚珍战国玺.pdf"
- "releaseDate" => 2020-03-29 15:14:39 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/01中国篆刻聚珍战国玺.pdf"
- }
- 2 => {
- "BKAllocatedSize" => 63311872
- "BKBookType" => "pdf"
- "BKDisplayName" => "02中国篆刻聚珍秦印"
- "BKGeneratedItemId" => "EC46C721FD66EDE2E23660397EBECB62"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424264
- "BKIsLocked" => 0
- "itemName" => "02中国篆刻聚珍:秦印"
- "modificationDate" => 2020-03-29 13:23:32 +0000
- "pageCount" => 163
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/02中国篆刻聚珍秦印.pdf"
- "releaseDate" => 2020-03-29 13:23:32 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/02中国篆刻聚珍秦印.pdf"
- }
- 3 => {
- "BKAllocatedSize" => 79970304
- "BKBookType" => "pdf"
- "BKDisplayName" => "03中国篆刻聚珍汉官印"
- "BKGeneratedItemId" => "376FC8D8ECBC0CD44AE64B5B68115D7E"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424264
- "BKIsLocked" => 0
- "itemName" => "03中国篆刻聚珍:汉官印"
- "modificationDate" => 2024-07-21 09:57:03 +0000
- "pageCount" => 151
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/03中国篆刻聚珍汉官印.pdf"
- "releaseDate" => 2020-03-29 12:36:57 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/03中国篆刻聚珍汉官印.pdf"
- }
- 4 => {
- "BKAllocatedSize" => 70549504
- "BKBookType" => "pdf"
- "BKDisplayName" => "05中国篆刻聚珍魏晋南北朝印"
- "BKGeneratedItemId" => "117E08148C6B64639B78B70CF6BCE666"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424265
- "BKIsLocked" => 0
- "itemName" => "05中国篆刻聚珍:魏晋南北朝印"
- "modificationDate" => 2020-03-29 14:22:04 +0000
- "pageCount" => 143
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/05中国篆刻聚珍魏晋南北朝印.pdf"
- "releaseDate" => 2020-03-29 14:22:04 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/05中国篆刻聚珍魏晋南北朝印.pdf"
- }
- 5 => {
- "BKAllocatedSize" => 109805568
- "BKBookType" => "pdf"
- "BKDisplayName" => "06中国篆刻聚珍隋唐宋印"
- "BKGeneratedItemId" => "42DBB3BA2912F84201ED040410AC699B"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424265
- "BKIsLocked" => 0
- "itemName" => "06中国篆刻聚珍:隋唐宋印"
- "modificationDate" => 2020-03-29 14:12:37 +0000
- "pageCount" => 207
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/06中国篆刻聚珍隋唐宋印.pdf"
- "releaseDate" => 2020-03-29 14:12:37 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/06中国篆刻聚珍隋唐宋印.pdf"
- }
- 6 => {
- "BKAllocatedSize" => 31686656
- "BKBookType" => "pdf"
- "BKDisplayName" => "07中国篆刻聚珍元印"
- "BKGeneratedItemId" => "5804E895FED3A12FB299792371654D20"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424265
- "BKIsLocked" => 0
- "itemName" => "07中国篆刻聚珍:元印"
- "modificationDate" => 2020-03-29 15:09:29 +0000
- "pageCount" => 75
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/07中国篆刻聚珍元印.pdf"
- "releaseDate" => 2020-03-29 15:09:29 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/07中国篆刻聚珍元印.pdf"
- }
- 7 => {
- "BKAllocatedSize" => 43687936
- "BKBookType" => "pdf"
- "BKDisplayName" => "08中国篆刻聚珍文彭 何震 苏宣"
- "BKGeneratedItemId" => "0985927EA5F6A34AD5FC3A15997C0AB7"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424265
- "BKIsLocked" => 0
- "itemName" => "08中国篆刻聚珍:文彭 何震 苏宣"
- "modificationDate" => 2020-03-29 14:21:49 +0000
- "pageCount" => 105
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/08中国篆刻聚珍文彭 何震 苏宣.pdf"
- "releaseDate" => 2020-03-29 14:21:49 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/08中国篆刻聚珍文彭 何震 苏宣.pdf"
- }
- 8 => {
- "BKAllocatedSize" => 74276864
- "BKBookType" => "pdf"
- "BKDisplayName" => "09中国篆刻聚珍汪关汪泓"
- "BKGeneratedItemId" => "3A2D660CC2205BF670805AB150CB062E"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424265
- "BKIsLocked" => 0
- "itemName" => "09中国篆刻聚珍:汪关汪泓"
- "modificationDate" => 2020-03-29 14:02:56 +0000
- "pageCount" => 175
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/09中国篆刻聚珍汪关汪泓.pdf"
- "releaseDate" => 2020-03-29 14:02:56 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/09中国篆刻聚珍汪关汪泓.pdf"
- }
- 9 => {
- "BKAllocatedSize" => 87363584
- "BKBookType" => "pdf"
- "BKDisplayName" => "10中国篆刻聚珍林皋"
- "BKGeneratedItemId" => "4697E6D6F0FE68C922E645743657F957"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424265
- "BKIsLocked" => 0
- "itemName" => "10中国篆刻聚珍:林皋"
- "modificationDate" => 2020-03-29 12:25:04 +0000
- "pageCount" => 193
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/10中国篆刻聚珍林皋.pdf"
- "releaseDate" => 2020-03-29 12:25:04 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/10中国篆刻聚珍林皋.pdf"
- }
- 10 => {
- "BKAllocatedSize" => 102846464
- "BKBookType" => "pdf"
- "BKDisplayName" => "11中国篆刻聚珍明名家印"
- "BKGeneratedItemId" => "4FCBD8B201A248663B7EF537B64C36AE"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424265
- "BKIsLocked" => 0
- "itemName" => "11中国篆刻聚珍:明名家印"
- "modificationDate" => 2020-03-29 12:38:57 +0000
- "pageCount" => 237
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/11中国篆刻聚珍明名家印.pdf"
- "releaseDate" => 2020-03-29 12:38:57 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/11中国篆刻聚珍明名家印.pdf"
- }
- 11 => {
- "BKAllocatedSize" => 63361024
- "BKBookType" => "pdf"
- "BKDisplayName" => "12中国篆刻聚珍程邃巴慰祖董洵胡唐"
- "BKGeneratedItemId" => "37546869604D430EC69001589EFAA638"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424265
- "BKIsLocked" => 0
- "itemName" => "12中国篆刻聚珍:程邃巴慰祖董洵胡唐"
- "modificationDate" => 2020-03-29 11:39:34 +0000
- "pageCount" => 153
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/12中国篆刻聚珍程邃巴慰祖董洵胡唐.pdf"
- "releaseDate" => 2020-03-29 11:39:34 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/12中国篆刻聚珍程邃巴慰祖董洵胡唐.pdf"
- }
- 12 => {
- "BKAllocatedSize" => 8744960
- "BKBookType" => "pdf"
- "BKDisplayName" => "13708798_穿越百年中东rvkdh - Notebook"
- "BKGeneratedItemId" => "10903859582C55DEDA584004FD81F8EB"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424265
- "BKIsLocked" => 0
- "itemName" => "穿越百年中东note"
- "modificationDate" => 2023-12-28 03:42:16 +0000
- "pageCount" => 32
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/13708798_穿越百年中东rvkdh - Notebook.pdf"
- "releaseDate" => 2023-12-28 03:27:27 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/13708798_穿越百年中东rvkdh - Notebook.pdf"
- }
- 13 => {
- "artistName" => "郭建龙"
- "BKAllocatedSize" => 5779456
- "BKBookType" => "epub"
- "BKDisplayName" => "13708798_穿越百年中东rvkdh"
- "BKGeneratedItemId" => "9505C864F0EBD9BAE42DE7D16E9BAECE"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424265
- "book-info" => {
- "package-file-hash" => "9505C864F0EBD9BAE42DE7D16E9BAECE"
- }
- "isPreview" => 0
- "itemName" => "13708798_穿越百年中东rvkdh"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/13708798_穿越百年中东rvkdh.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/13708798_穿越百年中东rvkdh.epub"
- }
- 14 => {
- "BKAllocatedSize" => 81051648
- "BKBookType" => "pdf"
- "BKDisplayName" => "13中国篆刻聚珍丁敬"
- "BKGeneratedItemId" => "713B119ECF818DC4E10840F78797F927"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424265
- "BKIsLocked" => 0
- "itemName" => "13中国篆刻聚珍:丁敬"
- "modificationDate" => 2020-03-29 11:54:39 +0000
- "pageCount" => 185
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/13中国篆刻聚珍丁敬.pdf"
- "releaseDate" => 2020-03-29 11:54:39 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/13中国篆刻聚珍丁敬.pdf"
- }
- 15 => {
- "BKAllocatedSize" => 35913728
- "BKBookType" => "pdf"
- "BKDisplayName" => "14中国篆刻聚珍蒋仁"
- "BKGeneratedItemId" => "366C54E9A7319B9602EDFE48D2D6898E"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424265
- "BKIsLocked" => 0
- "itemName" => "14中国篆刻聚珍:蒋仁"
- "modificationDate" => 2020-03-29 12:24:39 +0000
- "pageCount" => 73
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/14中国篆刻聚珍蒋仁.pdf"
- "releaseDate" => 2020-03-29 12:24:39 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/14中国篆刻聚珍蒋仁.pdf"
- }
- 16 => {
- "BKAllocatedSize" => 37670912
- "BKBookType" => "pdf"
- "BKDisplayName" => "15中国篆刻聚珍黄易"
- "BKGeneratedItemId" => "A125ACF5A86FE754AA754311CED273C4"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424265
- "BKIsLocked" => 0
- "itemName" => "15中国篆刻聚珍:黄易"
- "modificationDate" => 2020-03-29 12:07:58 +0000
- "pageCount" => 85
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/15中国篆刻聚珍黄易.pdf"
- "releaseDate" => 2020-03-29 12:07:58 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/15中国篆刻聚珍黄易.pdf"
- }
- 17 => {
- "BKAllocatedSize" => 21737472
- "BKBookType" => "pdf"
- "BKDisplayName" => "16中国篆刻聚珍奚冈"
- "BKGeneratedItemId" => "8C82067E6261EB02F5D15EC962C6FF75"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424265
- "BKIsLocked" => 0
- "itemName" => "16中国篆刻聚珍:奚冈"
- "modificationDate" => 2020-03-29 14:59:56 +0000
- "pageCount" => 57
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/16中国篆刻聚珍奚冈.pdf"
- "releaseDate" => 2020-03-29 14:59:56 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/16中国篆刻聚珍奚冈.pdf"
- }
- 18 => {
- "BKAllocatedSize" => 29634560
- "BKBookType" => "pdf"
- "BKDisplayName" => "17中国篆刻聚珍陈豫钟"
- "BKGeneratedItemId" => "6586A60A40CB42406461605D948F1519"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424265
- "BKIsLocked" => 0
- "itemName" => "17中国篆刻聚珍:陈豫钟"
- "modificationDate" => 2020-03-29 11:12:56 +0000
- "pageCount" => 73
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/17中国篆刻聚珍陈豫钟.pdf"
- "releaseDate" => 2020-03-29 11:12:56 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/17中国篆刻聚珍陈豫钟.pdf"
- }
- 19 => {
- "BKAllocatedSize" => 93761536
- "BKBookType" => "pdf"
- "BKDisplayName" => "18中国篆刻聚珍陈鸿寿"
- "BKGeneratedItemId" => "6C973A815FC546F5C03EFA4BE563A3DE"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424266
- "BKIsLocked" => 0
- "itemName" => "18中国篆刻聚珍:陈鸿寿"
- "modificationDate" => 2020-03-29 11:12:33 +0000
- "pageCount" => 221
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/18中国篆刻聚珍陈鸿寿.pdf"
- "releaseDate" => 2020-03-29 11:12:33 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/18中国篆刻聚珍陈鸿寿.pdf"
- }
- 20 => {
- "BKAllocatedSize" => 56696832
- "BKBookType" => "pdf"
- "BKDisplayName" => "19中国篆刻聚珍赵之琛"
- "BKGeneratedItemId" => "C81CADFAA935154F12213B07987DE78F"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424266
- "BKIsLocked" => 0
- "itemName" => "19中国篆刻聚珍:赵之琛"
- "modificationDate" => 2020-03-29 15:32:21 +0000
- "pageCount" => 139
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/19中国篆刻聚珍赵之琛.pdf"
- "releaseDate" => 2020-03-29 15:32:21 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/19中国篆刻聚珍赵之琛.pdf"
- }
- 21 => {
- "BKAllocatedSize" => 122494976
- "BKBookType" => "pdf"
- "BKDisplayName" => "20中国篆刻聚珍钱松 胡震"
- "BKGeneratedItemId" => "5AAF88CB73B647968EFD10D1FF25CDE4"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424266
- "BKIsLocked" => 0
- "itemName" => "20中国篆刻聚珍:钱松 胡震"
- "modificationDate" => 2020-03-29 13:24:24 +0000
- "pageCount" => 279
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/20中国篆刻聚珍钱松 胡震.pdf"
- "releaseDate" => 2020-03-29 13:24:24 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/20中国篆刻聚珍钱松 胡震.pdf"
- }
- 22 => {
- "BKAllocatedSize" => 63987712
- "BKBookType" => "pdf"
- "BKDisplayName" => "21中国篆刻聚珍邓石如"
- "BKGeneratedItemId" => "58DF39196735CCE7EEE2CEE773A1F7EE"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424266
- "BKIsLocked" => 0
- "itemName" => "21中国篆刻聚珍:邓石如"
- "modificationDate" => 2020-03-29 11:39:13 +0000
- "pageCount" => 149
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/21中国篆刻聚珍邓石如.pdf"
- "releaseDate" => 2020-03-29 11:39:13 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/21中国篆刻聚珍邓石如.pdf"
- }
- 23 => {
- "BKAllocatedSize" => 96112640
- "BKBookType" => "pdf"
- "BKDisplayName" => "22中国篆刻聚珍吴让之"
- "BKGeneratedItemId" => "121AC745D624C2746EAF274D6B724B85"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424266
- "BKIsLocked" => 0
- "itemName" => "22中国篆刻聚珍:吴让之"
- "modificationDate" => 2020-03-29 14:42:29 +0000
- "pageCount" => 243
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/22中国篆刻聚珍吴让之.pdf"
- "releaseDate" => 2020-03-29 14:42:29 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/22中国篆刻聚珍吴让之.pdf"
- }
- 24 => {
- "BKAllocatedSize" => 127397888
- "BKBookType" => "pdf"
- "BKDisplayName" => "23中国篆刻聚珍赵之谦"
- "BKGeneratedItemId" => "6BBFBBBF0230EC8E5BBEA91CCCF62684"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424266
- "BKIsLocked" => 0
- "itemName" => "23中国篆刻聚珍:赵之谦"
- "modificationDate" => 2020-03-17 14:08:03 +0000
- "pageCount" => 301
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/23中国篆刻聚珍赵之谦.pdf"
- "releaseDate" => 2020-03-17 14:08:03 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/23中国篆刻聚珍赵之谦.pdf"
- }
- 25 => {
- "BKAllocatedSize" => 96419840
- "BKBookType" => "pdf"
- "BKDisplayName" => "24中国篆刻聚珍徐三庚"
- "BKGeneratedItemId" => "0C3CEC60A47083C769841EFCE12FE838"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424266
- "BKIsLocked" => 0
- "itemName" => "24中国篆刻聚珍:徐三庚"
- "modificationDate" => 2020-03-29 14:56:52 +0000
- "pageCount" => 247
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/24中国篆刻聚珍徐三庚.pdf"
- "releaseDate" => 2020-03-29 14:56:52 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/24中国篆刻聚珍徐三庚.pdf"
- }
- 26 => {
- "BKAllocatedSize" => 94720000
- "BKBookType" => "pdf"
- "BKDisplayName" => "25中国篆刻聚珍胡钁"
- "BKGeneratedItemId" => "444E982D85C024AA872883EA6662112C"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424266
- "BKIsLocked" => 0
- "itemName" => "25中国篆刻聚珍:胡钁"
- "modificationDate" => 2020-03-29 11:55:36 +0000
- "pageCount" => 239
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/25中国篆刻聚珍胡钁.pdf"
- "releaseDate" => 2020-03-29 11:55:36 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/25中国篆刻聚珍胡钁.pdf"
- }
- 27 => {
- "BKAllocatedSize" => 66904064
- "BKBookType" => "pdf"
- "BKDisplayName" => "26中国篆刻聚珍清名家印上"
- "BKGeneratedItemId" => "0F2C1D2CCE2E054C7E939584F82EB7D8"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424266
- "BKIsLocked" => 0
- "itemName" => "26中国篆刻聚珍:清名家印上"
- "modificationDate" => 2020-03-29 13:53:21 +0000
- "pageCount" => 157
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/26中国篆刻聚珍清名家印上.pdf"
- "releaseDate" => 2020-03-29 13:53:21 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/26中国篆刻聚珍清名家印上.pdf"
- }
- 28 => {
- "BKAllocatedSize" => 65859584
- "BKBookType" => "pdf"
- "BKDisplayName" => "27中国篆刻聚珍清名家印下"
- "BKGeneratedItemId" => "711B189EEFE91F8E7F00EAB5D41BC80E"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424266
- "BKIsLocked" => 0
- "itemName" => "27中国篆刻聚珍:清名家印下"
- "modificationDate" => 2020-03-29 13:47:36 +0000
- "pageCount" => 161
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/27中国篆刻聚珍清名家印下.pdf"
- "releaseDate" => 2020-03-29 13:47:36 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/27中国篆刻聚珍清名家印下.pdf"
- }
- 29 => {
- "BKAllocatedSize" => 108576768
- "BKBookType" => "pdf"
- "BKDisplayName" => "28中国篆刻聚珍吴昌硕"
- "BKGeneratedItemId" => "09A288062540BF6082F4ECEFC4E3E656"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "BKIsLocked" => 0
- "itemName" => "28中国篆刻聚珍:吴昌硕"
- "modificationDate" => 2020-03-29 14:45:40 +0000
- "pageCount" => 249
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/28中国篆刻聚珍吴昌硕.pdf"
- "releaseDate" => 2020-03-29 14:45:40 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/28中国篆刻聚珍吴昌硕.pdf"
- }
- 30 => {
- "BKAllocatedSize" => 77033472
- "BKBookType" => "pdf"
- "BKDisplayName" => "29中国篆刻聚珍黄士陵"
- "BKGeneratedItemId" => "D18FFBC71A4853723B8F0B3BF133FA9C"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "BKIsLocked" => 0
- "itemName" => "29中国篆刻聚珍:黄士陵"
- "modificationDate" => 2020-03-29 12:11:01 +0000
- "pageCount" => 185
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/29中国篆刻聚珍黄士陵.pdf"
- "releaseDate" => 2020-03-29 12:11:01 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/29中国篆刻聚珍黄士陵.pdf"
- }
- 31 => {
- "BKAllocatedSize" => 93716480
- "BKBookType" => "pdf"
- "BKDisplayName" => "30中国篆刻聚珍齐白石"
- "BKGeneratedItemId" => "F83F3A2FB4D7E8C3245D13571D083AD8"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "BKIsLocked" => 0
- "itemName" => "30中国篆刻聚珍:齐白石"
- "modificationDate" => 2020-03-29 13:08:02 +0000
- "pageCount" => 225
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/30中国篆刻聚珍齐白石.pdf"
- "releaseDate" => 2020-03-29 13:08:02 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/30中国篆刻聚珍齐白石.pdf"
- }
- 32 => {
- "artistName" => "作者"
- "BKAllocatedSize" => 6778880
- "BKBookType" => "pdf"
- "BKDisplayName" => "4950f966-1293-4396-85ab-4c063c9dec08"
- "BKGeneratedItemId" => "DE5F5009F518997A97850B09EAC959AB"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "BKIsLocked" => 0
- "genre" => "科目"
- "itemName" => "穆斯林兄弟会与沙特关系的演变及影响"
- "modificationDate" => 2023-11-20 14:42:59 +0000
- "pageCount" => 21
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/4950f966-1293-4396-85ab-4c063c9dec08.pdf"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/4950f966-1293-4396-85ab-4c063c9dec08.pdf"
- }
- 33 => {
- "artistName" => "陈翾"
- "BKAllocatedSize" => 33558528
- "BKBookType" => "pdf"
- "BKDisplayName" => "644be5bdd2314bd493ea348c6f79d447"
- "BKGeneratedItemId" => "FB122DEAE81721BEA2B8ECEB428693EA"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "BKIsLocked" => 0
- "itemName" => "智算时代的容器技术演进与实践"
- "modificationDate" => 2024-01-17 13:19:29 +0000
- "pageCount" => 244
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/644be5bdd2314bd493ea348c6f79d447.pdf"
- "releaseDate" => 2023-12-14 08:00:14 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/644be5bdd2314bd493ea348c6f79d447.pdf"
- }
- 34 => {
- "artistName" => "宫下洋一(Yoichi Miyashita)"
- "BKAllocatedSize" => 4935680
- "BKBookType" => "epub"
- "BKDisplayName" => "安乐死现场上海译文出品人为何活着人为何想死我们永远无法获得唯一答案但却在永不止步的思考中探寻生命的意义以及什么才是幸福的死法 译文纪实"
- "BKGeneratedItemId" => "DC655D26DA46D6EB7EBFC07082EA9A79"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "book-info" => {
- "package-file-hash" => "DC655D26DA46D6EB7EBFC07082EA9A79"
- }
- "isPreview" => 0
- "itemName" => "安乐死现场【上海译文出品!“人为何活着”?“人为何想死”?我们永远无法获得唯一答案,但却在永不止步的思考中,探寻生命的意义以及什么才是幸福的死法】 (译文纪实)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/安乐死现场上海译文出品人为何活着人为何想死我们永远无法获得唯一答案但却在永不止步的思考中探寻生命的意义以及什么才是幸福的死法 译文纪实.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/安乐死现场上海译文出品人为何活着人为何想死我们永远无法获得唯一答案但却在永不止步的思考中探寻生命的意义以及什么才是幸福的死法 译文纪实.epub"
- }
- 35 => {
- "artistName" => "温铁军"
- "BKAllocatedSize" => 6471680
- "BKBookType" => "epub"
- "BKDisplayName" => "八次危机"
- "BKGeneratedItemId" => "44B5CBD9CEEC5932FE0CC1A6226F1853"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "book-info" => {
- "package-file-hash" => "44B5CBD9CEEC5932FE0CC1A6226F1853"
- }
- "genre" => "经济学"
- "isPreview" => 0
- "itemName" => "八次危机"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/八次危机.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/八次危机.epub"
- }
- 36 => {
- "artistName" => "凯文·凯利"
- "BKAllocatedSize" => 274432
- "BKBookType" => "epub"
- "BKDisplayName" => "宝贵的人生建议-凯文凯利-zhrmi"
- "BKGeneratedItemId" => "52D2F4017C6A907E1C0493B7E5D4971C"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "book-info" => {
- "package-file-hash" => "52D2F4017C6A907E1C0493B7E5D4971C"
- }
- "isPreview" => 0
- "itemName" => "宝贵的人生建议-凯文·凯利-zhrmi"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/宝贵的人生建议-凯文凯利-zhrmi.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/宝贵的人生建议-凯文凯利-zhrmi.epub"
- }
- 37 => {
- "artistName" => "里德·哈斯廷斯"
- "BKAllocatedSize" => 2244608
- "BKBookType" => "epub"
- "BKDisplayName" => "不拘一格网飞的自由与责任工作法网飞官方图书创始人兼CEO哈斯廷斯重磅作品一家市值超2000亿美元全球付费订阅用户超1"
- "BKGeneratedItemId" => "8501F14CB7719ACDF5C22EAC535877FE"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "book-info" => {
- "package-file-hash" => "8501F14CB7719ACDF5C22EAC535877FE"
- }
- "isPreview" => 0
- "itemName" => "不拘一格:网飞的自由与责任工作法(网飞官方图书,创始人兼CEO哈斯廷斯重磅作品。一家市值超2000亿美元,全球付费订阅用户超1.9亿,业务版图遍布近200个国家的商业巨头如何培养创意人才?完整还原网飞成功背后的管理原则)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/不拘一格网飞的自由与责任工作法网飞官方图书创始人兼CEO哈斯廷斯重磅作品一家市值超2000亿美元全球付费订阅用户超1.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/不拘一格网飞的自由与责任工作法网飞官方图书创始人兼CEO哈斯廷斯重磅作品一家市值超2000亿美元全球付费订阅用户超1.epub"
- }
- 38 => {
- "artistName" => "左亦鲁"
- "BKAllocatedSize" => 1093632
- "BKBookType" => "epub"
- "BKDisplayName" => "超越街角发言者表达权的边缘与中心"
- "BKGeneratedItemId" => "B4EDD1416A767683D75A84E9D41587A8"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "book-info" => {
- "package-file-hash" => "B4EDD1416A767683D75A84E9D41587A8"
- }
- "isPreview" => 0
- "itemName" => "超越“街角发言者”:表达权的边缘与中心"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/超越街角发言者表达权的边缘与中心.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/超越街角发言者表达权的边缘与中心.epub"
- }
- 39 => {
- "artistName" => "多萝西娅·布兰德(Dorothea Brande)"
- "BKAllocatedSize" => 3772416
- "BKBookType" => "epub"
- "BKDisplayName" => "成为作家创意写作书系"
- "BKGeneratedItemId" => "17D53DBD00587841335C1B1AC1F70C86"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "book-info" => {
- "package-file-hash" => "17D53DBD00587841335C1B1AC1F70C86"
- }
- "isPreview" => 0
- "itemName" => "成为作家(创意写作书系)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/成为作家创意写作书系.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/成为作家创意写作书系.epub"
- }
- 40 => {
- "artistName" => "杰克·康菲尔德"
- "BKAllocatedSize" => 229376
- "BKBookType" => "epub"
- "BKDisplayName" => "初学者的冥想书"
- "BKGeneratedItemId" => "E9AE990CB15B710F7B9E9D3E897766C3"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "book-info" => {
- "package-file-hash" => "E9AE990CB15B710F7B9E9D3E897766C3"
- }
- "isPreview" => 0
- "itemName" => "初学者的冥想书"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/初学者的冥想书.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/初学者的冥想书.epub"
- }
- 41 => {
- "artistName" => "麥克‧貝特尼克"
- "BKAllocatedSize" => 2334720
- "BKBookType" => "epub"
- "BKDisplayName" => "從本能交易到紀律交易巴菲特葛拉漢李佛摩16位當代投資大師敗中求勝的祕密"
- "BKGeneratedItemId" => "4B3850C5EB170AA8E0CD4456ACC5A072"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "book-info" => {
- "package-file-hash" => "4B3850C5EB170AA8E0CD4456ACC5A072"
- }
- "isPreview" => 0
- "itemName" => "從本能交易到紀律交易:巴菲特、葛拉漢、李佛摩,16位當代投資大師敗中求勝的祕密"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/從本能交易到紀律交易巴菲特葛拉漢李佛摩16位當代投資大師敗中求勝的祕密.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/從本能交易到紀律交易巴菲特葛拉漢李佛摩16位當代投資大師敗中求勝的祕密.epub"
- }
- 42 => {
- "artistName" => "Administrator"
- "BKAllocatedSize" => 1536000
- "BKBookType" => "pdf"
- "BKDisplayName" => "存在论革命人工智能神话与人性论悲歌"
- "BKGeneratedItemId" => "5C9C572403AF47EBDAFBA6FF41133F32"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "BKIsLocked" => 0
- "itemName" => "存在论革命:人工智能神话与人性论悲歌"
- "modificationDate" => 2023-01-03 03:37:59 +0000
- "pageCount" => 14
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/存在论革命人工智能神话与人性论悲歌.pdf"
- "releaseDate" => 2023-01-03 11:35:40 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/存在论革命人工智能神话与人性论悲歌.pdf"
- }
- 43 => {
- "artistName" => "巫怀宇"
- "BKAllocatedSize" => 647168
- "BKBookType" => "epub"
- "BKDisplayName" => "大地上的尺规历史科学与艺术的现代哲学剖析-bc7gz"
- "BKGeneratedItemId" => "611117F9CF1AA58342A94EECB7700C17"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "book-info" => {
- "package-file-hash" => "611117F9CF1AA58342A94EECB7700C17"
- }
- "isPreview" => 0
- "itemName" => "大地上的尺规——历史、科学与艺术的现代哲学剖析-bc7gz"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/大地上的尺规历史科学与艺术的现代哲学剖析-bc7gz.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/大地上的尺规历史科学与艺术的现代哲学剖析-bc7gz.epub"
- }
- 44 => {
- "artistName" => "费孝通"
- "BKAllocatedSize" => 2875392
- "BKBookType" => "epub"
- "BKDisplayName" => "大家小书乡土中国-t2984"
- "BKGeneratedItemId" => "BEEAFE3FD09981E595D6D9687626520F"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "book-info" => {
- "package-file-hash" => "BEEAFE3FD09981E595D6D9687626520F"
- }
- "isPreview" => 0
- "itemName" => "大家小书:乡土中国-t2984"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/大家小书乡土中国-t2984.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/大家小书乡土中国-t2984.epub"
- }
- 45 => {
- "artistName" => "赫伯特 马尔库塞 (Herbert Marcuse)"
- "BKAllocatedSize" => 675840
- "BKBookType" => "epub"
- "BKDisplayName" => "单向度的人"
- "BKGeneratedItemId" => "80D2C719B3A3BDD3DCDAABCF6E312FB4"
- "BKGenerationCount" => 3
- "BKHasPendingUpdate" => 0
- "BKInsertionDate" => 774348925
- "BKPercentComplete" => 1
- "book-info" => {
- "publication-version" => 0
- }
- "isPreview" => 0
- "itemName" => "单向度的人"
- "pageCount" => 1
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/单向度的人-c56pig.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/单向度的人-c56pig.epub"
- "updateDate" => 2024-07-27 14:00:03 +0000
- }
- 46 => {
- "artistName" => "(美)佐治•k.西蒙 斯坦威出品"
- "BKAllocatedSize" => 356352
- "BKBookType" => "epub"
- "BKDisplayName" => "当爱变成了情感操纵-uw3td"
- "BKGeneratedItemId" => "810204DD8A858382A89A21B65F3D2100"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "book-info" => {
- "package-file-hash" => "810204DD8A858382A89A21B65F3D2100"
- }
- "bookDescription" => "
在生活中,很多所谓的“爱”和“关心”,其实只是一种情感操纵。
主管声称会支持你的工作,实际上却阻挠你获得成功的一切机会;伴侣自称爱护你、关心你,实际上却是在实施以爱为名的操纵;包括你的父母、孩子,好像也一直知道如何如愿以偿地控制你……
你可能早就在这样的关系中感到痛苦、纠结、厌倦,却又不知道该从何下手。而本书将会为你指明改变的方向:
首先,本书会介绍情感操纵者的典型特征;其次,你会了解到他们是如何不动声色地欺骗、操纵和控制他人的;最后,你还会知道应对情感操纵的有效手段。
本书将会帮助你重新定义自己的人际关系,并在人际交往中变得更有力量!
"
- "genre" => "情感"
- "isPreview" => 0
- "itemName" => "当爱变成了情感操纵-uw3td"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/当爱变成了情感操纵-uw3td.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/当爱变成了情感操纵-uw3td.epub"
- }
- 47 => {
- "artistName" => "[美国]约瑟夫·海勒"
- "BKAllocatedSize" => 1384448
- "BKBookType" => "epub"
- "BKDisplayName" => "第二十二条军规纪念版"
- "BKGeneratedItemId" => "CA8E5F8B37172229801F9F7ED284D874"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "book-info" => {
- "package-file-hash" => "CA8E5F8B37172229801F9F7ED284D874"
- }
- "isPreview" => 0
- "itemName" => "第二十二条军规:纪念版"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/第二十二条军规纪念版.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/第二十二条军规纪念版.epub"
- }
- 48 => {
- "artistName" => "罗伯特•赖特"
- "BKAllocatedSize" => 786432
- "BKBookType" => "epub"
- "BKDisplayName" => "洞见从科学到哲学打开人类的认知真相-kmjb9"
- "BKGeneratedItemId" => "FFAE95395C562324F9D6EB4442020F4F"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "book-info" => {
- "package-file-hash" => "FFAE95395C562324F9D6EB4442020F4F"
- }
- "isPreview" => 0
- "itemName" => "洞见:从科学到哲学,打开人类的认知真相"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/洞见从科学到哲学打开人类的认知真相-kmjb9.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/洞见从科学到哲学打开人类的认知真相-kmjb9.epub"
- }
- 49 => {
- "artistName" => "[西班牙]梅尔塞·罗多雷达 ,元柳(译)"
- "BKAllocatedSize" => 1540096
- "BKBookType" => "epub"
- "BKDisplayName" => "短经典第五辑29沉吟"
- "BKGeneratedItemId" => "6A795075B9A74441F7872FA011DD9B10"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "book-info" => {
- "package-file-hash" => "6A795075B9A74441F7872FA011DD9B10"
- }
- "isPreview" => 0
- "itemName" => "短经典·第五辑29:沉吟"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/短经典第五辑29沉吟.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/短经典第五辑29沉吟.epub"
- }
- 50 => {
- "artistName" => "古倫姆斯"
- "BKAllocatedSize" => 4661248
- "BKBookType" => "epub"
- "BKDisplayName" => "反智不願說理的人是偏執 不會說理的人是愚蠢 不敢說理的人是奴隸"
- "BKGeneratedItemId" => "4BEFFA7DD234B9DB5FE30A80B43343DD"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "book-info" => {
- "package-file-hash" => "4BEFFA7DD234B9DB5FE30A80B43343DD"
- }
- "isPreview" => 0
- "itemName" => "反智:不願說理的人是偏執 不會說理的人是愚蠢 不敢說理的人是奴隸"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/反智不願說理的人是偏執 不會說理的人是愚蠢 不敢說理的人是奴隸.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/反智不願說理的人是偏執 不會說理的人是愚蠢 不敢說理的人是奴隸.epub"
- }
- 51 => {
- "BKAllocatedSize" => 9719808
- "BKBookType" => "pdf"
- "BKDisplayName" => "疯狂的尿酸-xqtky - Notebook"
- "BKGeneratedItemId" => "D957D6DBC6E8B48C4C7FF662B8A41110"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "BKIsLocked" => 0
- "itemName" => "疯狂的尿酸- note"
- "modificationDate" => 2024-01-16 13:09:19 +0000
- "pageCount" => 20
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/疯狂的尿酸-xqtky - Notebook.pdf"
- "releaseDate" => 2024-01-15 00:19:27 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/疯狂的尿酸-xqtky - Notebook.pdf"
- }
- 52 => {
- "artistName" => "托马斯·曼 (Thomas Mann)"
- "BKAllocatedSize" => 2035712
- "BKBookType" => "epub"
- "BKDisplayName" => "浮士德博士-wvas0"
- "BKGeneratedItemId" => "A21608ECDA4CE3E8396881164A66A8B4"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "book-info" => {
- "package-file-hash" => "A21608ECDA4CE3E8396881164A66A8B4"
- }
- "isPreview" => 0
- "itemName" => "浮士德博士-wvas0"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/浮士德博士-wvas0.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/浮士德博士-wvas0.epub"
- }
- 53 => {
- "artistName" => "菲利普·A.费雪"
- "BKAllocatedSize" => 331776
- "BKBookType" => "epub"
- "BKDisplayName" => "股市投资致富之道"
- "BKGeneratedItemId" => "0F358C0A1DC78F467C80F17D3D1C4527"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "book-info" => {
- "package-file-hash" => "0F358C0A1DC78F467C80F17D3D1C4527"
- }
- "bookDescription" => "股市投资致富之道"
- "isPreview" => 0
- "itemName" => "股市投资致富之道"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/股市投资致富之道.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/股市投资致富之道.epub"
- }
- 54 => {
- "artistName" => "施爱东"
- "BKAllocatedSize" => 3772416
- "BKBookType" => "epub"
- "BKDisplayName" => "故事法则-gwa89"
- "BKGeneratedItemId" => "C107D55CB9D1AF8506C17E5310212EBF"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "book-info" => {
- "package-file-hash" => "C107D55CB9D1AF8506C17E5310212EBF"
- }
- "bookDescription" => "
-
民间故事是一种结构稳定的功能组合、一个自组织系统,一棵生命树。故事一旦开始其生命进程,就会自己生长、自己嫁接、自己开花、自己结果,也会随时空的改变而变异,随生命熵的增加而消亡。在故事中,英雄具备什么样的性格、离开家乡时需要哪些装备、神奇助手会在什么时候出现、叛徒为什么总是英雄的叔父、误会为什么总是不能避免,所有情节都有一套相对稳定的结构或套路,而所有的套路,都是特定功能相互制约的最优结果。故事的结构既是稳定的,又是生长的,貌似无序的生长中,总是有一些最优配置、最优结局。特定的难题,总是对应着特定的解题方式。每一则脍炙人口的民间故事,都是特定语言游戏中的最优玩法。
"
- "genre" => "-SanQiu.mobi"
- "isPreview" => 0
- "itemName" => "故事法则-gwa89"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/故事法则-gwa89.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/故事法则-gwa89.epub"
- }
- 55 => {
- "artistName" => "菲利普·费尔南多·阿梅斯托"
- "BKAllocatedSize" => 1675264
- "BKBookType" => "epub"
- "BKDisplayName" => "观念的跃升-wvueu"
- "BKGeneratedItemId" => "4B833BBE79E1893F2A411182B2896F09"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "book-info" => {
- "package-file-hash" => "4B833BBE79E1893F2A411182B2896F09"
- }
- "genre" => "-SanQiu.mobi"
- "isPreview" => 0
- "itemName" => "观念的跃升-wvueu"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/观念的跃升-wvueu.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/观念的跃升-wvueu.epub"
- }
- 56 => {
- "artistName" => "福柯"
- "BKAllocatedSize" => 864256
- "BKBookType" => "epub"
- "BKDisplayName" => "规训与惩罚"
- "BKGeneratedItemId" => "E9A6786FC2F03EBBFAB1208179465361"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "book-info" => {
- "package-file-hash" => "E9A6786FC2F03EBBFAB1208179465361"
- }
- "genre" => "哲学"
- "isPreview" => 0
- "itemName" => "规训与惩罚"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/规训与惩罚.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/规训与惩罚.epub"
- }
- 57 => {
- "artistName" => "森迪爾.穆蘭納珊"
- "BKAllocatedSize" => 1724416
- "BKBookType" => "epub"
- "BKDisplayName" => "匱乏經濟學_森迪爾穆蘭納珊-cyrg5"
- "BKGeneratedItemId" => "05B97E7C7DE17FE202A19735C4EA8EC4"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "book-info" => {
- "package-file-hash" => "05B97E7C7DE17FE202A19735C4EA8EC4"
- }
- "isPreview" => 0
- "itemName" => "《匱乏經濟學》_森迪爾.穆蘭納珊-cyrg5"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/匱乏經濟學_森迪爾穆蘭納珊-cyrg5.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/匱乏經濟學_森迪爾穆蘭納珊-cyrg5.epub"
- }
- 58 => {
- "artistName" => "张一清"
- "BKAllocatedSize" => 13524992
- "BKBookType" => "epub"
- "BKDisplayName" => "汉字精气神一笔一划中的家国天下横竖撇捺里的中国智慧图文演绎132个汉字的历史底色在有趣的汉字讲解中体味中国精气神"
- "BKGeneratedItemId" => "8096DB6C5DE1D73DC100DE697C0FA637"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "book-info" => {
- "package-file-hash" => "8096DB6C5DE1D73DC100DE697C0FA637"
- }
- "isPreview" => 0
- "itemName" => "汉字精气神【一笔一划中的家国天下,横竖撇捺里的中国智慧。图文演绎132个汉字的历史底色,在有趣的汉字讲解中体味中国“精气神”】"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/汉字精气神一笔一划中的家国天下横竖撇捺里的中国智慧图文演绎132个汉字的历史底色在有趣的汉字讲解中体味中国精气神.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/汉字精气神一笔一划中的家国天下横竖撇捺里的中国智慧图文演绎132个汉字的历史底色在有趣的汉字讲解中体味中国精气神.epub"
- }
- 59 => {
- "artistName" => "米泽穗信"
- "BKAllocatedSize" => 913408
- "BKBookType" => "epub"
- "BKDisplayName" => "黑牢城--米泽穗信"
- "BKGeneratedItemId" => "0A0D9676D0CFF86610B3E7BD67FEA580"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "book-info" => {
- "package-file-hash" => "0A0D9676D0CFF86610B3E7BD67FEA580"
- }
- "isPreview" => 0
- "itemName" => "《黑牢城》--米泽穗信"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/黑牢城--米泽穗信.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/黑牢城--米泽穗信.epub"
- }
- 60 => {
- "artistName" => "席拉.寇哈特卡(Sheelah Kolhatkar)"
- "BKAllocatedSize" => 1548288
- "BKBookType" => "epub"
- "BKDisplayName" => "黑色優勢比狼更狡詐揭開華爾街不為人知的黑錢流動內線交易以及FBI與頂級掠食者的鬥智競賽"
- "BKGeneratedItemId" => "4CFF96320D2D17ABF9755EB468EECE62"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "book-info" => {
- "package-file-hash" => "4CFF96320D2D17ABF9755EB468EECE62"
- }
- "isPreview" => 0
- "itemName" => "黑色優勢:比狼更狡詐!揭開華爾街不為人知的黑錢流動、內線交易,以及FBI與頂級掠食者的鬥智競賽"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/黑色優勢比狼更狡詐揭開華爾街不為人知的黑錢流動內線交易以及FBI與頂級掠食者的鬥智競賽.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/黑色優勢比狼更狡詐揭開華爾街不為人知的黑錢流動內線交易以及FBI與頂級掠食者的鬥智競賽.epub"
- }
- 61 => {
- "artistName" => "曹雪芹"
- "BKAllocatedSize" => 6930432
- "BKBookType" => "epub"
- "BKDisplayName" => "红楼梦人文社权威定本彩皮版国务院文化组批准红研所校注豆瓣读书TOP250首位评论上万条出版四十年三次修订 中国古典文学读本丛书 1"
- "BKGeneratedItemId" => "86BEA2177E8A17ED0ACC588E5CF92557"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "book-info" => {
- "package-file-hash" => "86BEA2177E8A17ED0ACC588E5CF92557"
- }
- "isPreview" => 0
- "itemName" => "红楼梦(人文社权威定本彩皮版;国务院文化组批准,红研所校注;豆瓣读书TOP250首位,评论上万条;出版四十年,三次修订) (中国古典文学读本丛书 1)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/红楼梦人文社权威定本彩皮版国务院文化组批准红研所校注豆瓣读书TOP250首位评论上万条出版四十年三次修订 中国古典文学读本丛书 1.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/红楼梦人文社权威定本彩皮版国务院文化组批准红研所校注豆瓣读书TOP250首位评论上万条出版四十年三次修订 中国古典文学读本丛书 1.epub"
- }
- 62 => {
- "artistName" => "赵剑英 主编"
- "BKAllocatedSize" => 1630208
- "BKBookType" => "epub"
- "BKDisplayName" => "后疫情时代的全球经济与世界秩序傅莹蔡昉江小娟李扬余永定郑永年迟福林赵汀阳等20位学者合力打造"
- "BKGeneratedItemId" => "191B394FB2895BEFB09C1EED5F224E0C"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "book-info" => {
- "package-file-hash" => "191B394FB2895BEFB09C1EED5F224E0C"
- }
- "isPreview" => 0
- "itemName" => "后疫情时代的全球经济与世界秩序(傅莹、蔡昉、江小娟、李扬、余永定、郑永年、迟福林、赵汀阳等20位学者合力打造)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/后疫情时代的全球经济与世界秩序傅莹蔡昉江小娟李扬余永定郑永年迟福林赵汀阳等20位学者合力打造.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/后疫情时代的全球经济与世界秩序傅莹蔡昉江小娟李扬余永定郑永年迟福林赵汀阳等20位学者合力打造.epub"
- }
- 63 => {
- "artistName" => "[美]唐纳德·A.克罗斯比(Donald A. Crosby)"
- "BKAllocatedSize" => 1757184
- "BKBookType" => "epub"
- "BKDisplayName" => "荒诞的幽灵-wy5gs"
- "BKGeneratedItemId" => "262249F14C595063EAA09A9DF0132F01"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "book-info" => {
- "package-file-hash" => "262249F14C595063EAA09A9DF0132F01"
- }
- "isPreview" => 0
- "itemName" => "荒诞的幽灵-wy5gs"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/荒诞的幽灵-wy5gs.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/荒诞的幽灵-wy5gs.epub"
- }
- 64 => {
- "artistName" => "王小波"
- "BKAllocatedSize" => 892928
- "BKBookType" => "epub"
- "BKDisplayName" => "黄金时代"
- "BKGeneratedItemId" => "6A6E24FA3E2002DC1729901103E87546"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "book-info" => {
- "package-file-hash" => "6A6E24FA3E2002DC1729901103E87546"
- }
- "bookDescription" => " 这是以文革时期为背景的系列作品构成的长篇。发生“文化大革命”的二十世纪六七十年代,正是我们国家和民族的灾难年代。那时,知识分子群体无能为力而极“左”政治泛滥横行。作为倍受歧视的知识分子,往往丧失了自我意志和个人尊严。在这组系列作品里面,名叫“王二”的男主人公处于恐怖和荒谬的环境,遭到各种不公正待遇,但他却摆脱了传统文化人的悲愤心态,创造出一种反抗和超越的方式:既然不能证明自己无辜,便倾向于证明自己不无辜。于是他以性爱作为对抗外部世界的最后据点,将性爱表现得既放浪形骸又纯净无邪,不但不觉羞耻,还轰轰烈烈地进行到底,对陈规陋习和政治偏见展开了极其尖锐而又饱含幽默的挑战。一次次被斗、挨整,他都处之坦然,乐观为本,获得了价值境界上的全线胜利。作者用一种机智的光辉烛照当年那种无处不在的压抑,使人的精神世界从悲惨暗淡的历史阴影中超拔出来。
"
- "isPreview" => 0
- "itemName" => "黄金时代"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/黄金时代.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/黄金时代.epub"
- }
- 65 => {
- "artistName" => "斯坦尼斯瓦夫·莱姆"
- "BKAllocatedSize" => 4689920
- "BKBookType" => "epub"
- "BKDisplayName" => "机器人大师波兰科幻名家莱姆高口碑代表作20个天马行空的爆笑哲理脑洞故事银河系搭车客指南瑞克和莫蒂精神先驱全译本无删节"
- "BKGeneratedItemId" => "B981BFBB5E33377CEAC78F2B12B5E300"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "book-info" => {
- "package-file-hash" => "B981BFBB5E33377CEAC78F2B12B5E300"
- }
- "isPreview" => 0
- "itemName" => "机器人大师(波兰科幻名家莱姆高口碑代表作,20个天马行空的爆笑哲理脑洞故事,《银河系搭车客指南》《瑞克和莫蒂》精神先驱,全译本无删节)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/机器人大师波兰科幻名家莱姆高口碑代表作20个天马行空的爆笑哲理脑洞故事银河系搭车客指南瑞克和莫蒂精神先驱全译本无删节.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/机器人大师波兰科幻名家莱姆高口碑代表作20个天马行空的爆笑哲理脑洞故事银河系搭车客指南瑞克和莫蒂精神先驱全译本无删节.epub"
- }
- 66 => {
- "artistName" => "(加)斯坦诺维奇(Stanovich,K.E.) 著"
- "BKAllocatedSize" => 2367488
- "BKBookType" => "epub"
- "BKDisplayName" => "机器人叛乱在达尔文时代找到意义"
- "BKGeneratedItemId" => "6220A02E57018CEA9F586FFBF6608313"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424267
- "book-info" => {
- "package-file-hash" => "6220A02E57018CEA9F586FFBF6608313"
- }
- "isPreview" => 0
- "itemName" => "机器人叛乱:在达尔文时代找到意义"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/机器人叛乱在达尔文时代找到意义.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/机器人叛乱在达尔文时代找到意义.epub"
- }
- 67 => {
- "BKAllocatedSize" => 3874816
- "BKBookType" => "epub"
- "BKDisplayName" => "揭開穆斯林世界"
- "BKGeneratedItemId" => "13E8BBD9491AA4DC6F75A95DF459C3F4"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "13E8BBD9491AA4DC6F75A95DF459C3F4"
- }
- "bookDescription" => "揭開15億人口「單一穆斯林共同體」的面紗
-
-以全球史視角解構,去歐洲中心論,重新省視伊斯蘭
-
-如今多數人都認為,全球有一個統一的穆斯林共同體,共享單一的價值觀與宗教文化但是,秉持伊斯蘭湖主義的土耳其裔學者女丁提出了一個極為挑的說法:他認為,所謂全世界十五億穆斯林構成的一個單一的宗教政治實體,是一種誤解。這種觀念如何產生,以及為何如此普?本書追溯了這樣一個錯誤觀念的思想根源,並解釋為何這個概念對非穆斯林和穆斯林都深具吸引力。
-
-穆斯林共同體的理念,對十九世紀後期哈里發的統治發揮了關鍵作用,更在去殖民化和冷戰中存下來,於二十世紀末產生新的力量。站在仇視伊斯蘭和泛伊斯蘭意識形態的立場,穆斯林共同體的觀念也繼續控制著全球。為了更有效討論當今穆斯林社會的政治實況,這樣的觀念需要被打破。"
- "isPreview" => 0
- "itemName" => "揭開穆斯林世界"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/揭開穆斯林世界.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/揭開穆斯林世界.epub"
- }
- 68 => {
- "artistName" => "黄奇帆"
- "BKAllocatedSize" => 1622016
- "BKBookType" => "epub"
- "BKDisplayName" => "结构性改革"
- "BKGeneratedItemId" => "B251162BDF51D58CED768CC8AAEF9F6F"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "B251162BDF51D58CED768CC8AAEF9F6F"
- }
- "isPreview" => 0
- "itemName" => "结构性改革"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/结构性改革.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/结构性改革.epub"
- }
- 69 => {
- "artistName" => "陈赣"
- "BKAllocatedSize" => 7389184
- "BKBookType" => "pdf"
- "BKDisplayName" => "进取的长安与持家的洛阳深度对比两大千年古都的特点与定位"
- "BKGeneratedItemId" => "B8FA0838FC95B7A6D6D7B9A053384D40"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "BKIsLocked" => 0
- "itemName" => "进取的长安与持家的洛阳,深度对比两大千年古都的特点与定位"
- "modificationDate" => 2024-04-29 13:25:40 +0000
- "pageCount" => 16
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/进取的长安与持家的洛阳深度对比两大千年古都的特点与定位.pdf"
- "releaseDate" => 2024-04-29 13:25:40 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/进取的长安与持家的洛阳深度对比两大千年古都的特点与定位.pdf"
- }
- 70 => {
- "artistName" => "【日】内藤湖南"
- "BKAllocatedSize" => 3563520
- "BKBookType" => "epub"
- "BKDisplayName" => "京都中国通史-dyyfq"
- "BKGeneratedItemId" => "3279284F8847C04B337548C62AE64008"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "3279284F8847C04B337548C62AE64008"
- }
- "genre" => "天浪书屋"
- "isPreview" => 0
- "itemName" => "京都中国通史-dyyfq"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/京都中国通史-dyyfq.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/京都中国通史-dyyfq.epub"
- }
- 71 => {
- "artistName" => ""
- "BKAllocatedSize" => 163840
- "BKBookType" => "pdf"
- "BKDisplayName" => "经验论与唯理论生活德育的哲学之争"
- "BKGeneratedItemId" => "9C306AF0C8729FB6290C533EB9281B9A"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "BKIsLocked" => 0
- "itemName" => "经验论与唯理论:生活德育的哲学之争"
- "modificationDate" => 2012-03-26 02:29:43 +0000
- "pageCount" => 8
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/经验论与唯理论生活德育的哲学之争.pdf"
- "releaseDate" => 2012-03-26 02:29:43 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/经验论与唯理论生活德育的哲学之争.pdf"
- }
- 72 => {
- "artistName" => "湯姆.斯丹迪奇(Tom Standage)"
- "BKAllocatedSize" => 4669440
- "BKBookType" => "epub"
- "BKDisplayName" => "經濟學人104個大解惑從紙鈔面額廣告祕辛到航空公司如何節省成本的全面揭密"
- "BKGeneratedItemId" => "7DDB551C24344EE17FFF42452847A2E7"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "7DDB551C24344EE17FFF42452847A2E7"
- }
- "bookDescription" => "為什麼經濟不好的時候人們喜歡吃披薩?
哪國政府最愛向臉書討資料?
哪些國家是賭場的大輸家?……
你曾經好奇過這些問題嗎?
面對敘利亞烽煙四起的新聞,你是否好奇過中東的複雜形勢?
面對北韓飛彈連發的新聞時,你是否好奇過「平壤時間」為什麼比較慢?
當眾多資訊從你眼前一閃即逝,
你頭上剛冒出的問號,真的獲得解決了嗎?"
- "genre" => "趨勢"
- "isPreview" => 0
- "itemName" => "經濟學人104個大解惑:從紙鈔面額、廣告祕辛,到航空公司如何節省成本的全面揭密"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/經濟學人104個大解惑從紙鈔面額廣告祕辛到航空公司如何節省成本的全面揭密.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/經濟學人104個大解惑從紙鈔面額廣告祕辛到航空公司如何節省成本的全面揭密.epub"
- }
- 73 => {
- "artistName" => "Unknown"
- "BKAllocatedSize" => 6152192
- "BKBookType" => "epub"
- "BKDisplayName" => "菌群大脑肠道微生物影响大脑和身心健康的惊人真相-jbwei"
- "BKGeneratedItemId" => "0334D206C2788A4ED64C2014BFABC8E1"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "0334D206C2788A4ED64C2014BFABC8E1"
- }
- "isPreview" => 0
- "itemName" => "菌群大脑:肠道微生物影响大脑和身心健康的惊人真相-jbwei"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/菌群大脑肠道微生物影响大脑和身心健康的惊人真相-jbwei.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/菌群大脑肠道微生物影响大脑和身心健康的惊人真相-jbwei.epub"
- }
- 74 => {
- "artistName" => "gavin"
- "BKAllocatedSize" => 135168
- "BKBookType" => "pdf"
- "BKDisplayName" => "凯末尔"
- "BKGeneratedItemId" => "C7F2C5C9C2190526891F4C55A22EE2F2"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "BKIsLocked" => 0
- "itemName" => "凯末尔"
- "modificationDate" => 2024-04-28 01:07:10 +0000
- "pageCount" => 4
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/凯末尔.pdf"
- "releaseDate" => 2023-12-29 06:39:38 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/凯末尔.pdf"
- }
- 75 => {
- "artistName" => "刘瑜"
- "BKAllocatedSize" => 4485120
- "BKBookType" => "epub"
- "BKDisplayName" => "可能性的艺术比较政治学30讲学者刘瑜比较政治学新著跳出现象通过比较洞察政治突破认知偏见在浩瀚的可能性中理解我们自身 理想国出品"
- "BKGeneratedItemId" => "4F4D706DCA1A250CFCC280CBF99694CA"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "4F4D706DCA1A250CFCC280CBF99694CA"
- }
- "isPreview" => 0
- "itemName" => "可能性的艺术:比较政治学30讲(学者刘瑜比较政治学新著,跳出现象,通过比较洞察政治,突破认知偏见,在浩瀚的可能性中理解我们自身 理想国出品)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/可能性的艺术比较政治学30讲学者刘瑜比较政治学新著跳出现象通过比较洞察政治突破认知偏见在浩瀚的可能性中理解我们自身 理想国出品.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/可能性的艺术比较政治学30讲学者刘瑜比较政治学新著跳出现象通过比较洞察政治突破认知偏见在浩瀚的可能性中理解我们自身 理想国出品.epub"
- }
- 76 => {
- "artistName" => "安德斯·艾利克森(Anders Ericsson)"
- "BKAllocatedSize" => 7671808
- "BKBookType" => "epub"
- "BKDisplayName" => "刻意练习-qr8c3b"
- "BKGeneratedItemId" => "D7E15423A9017D0BA4D8162F599BDD41"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "D7E15423A9017D0BA4D8162F599BDD41"
- }
- "isPreview" => 0
- "itemName" => "刻意练习-qr8c3b"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/刻意练习-qr8c3b.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/刻意练习-qr8c3b.epub"
- }
- 77 => {
- "artistName" => "罗希特·巴尔加瓦"
- "BKAllocatedSize" => 450560
- "BKBookType" => "epub"
- "BKDisplayName" => "刻意选择-6rf18"
- "BKGeneratedItemId" => "7849965A12BEA9BE7942CA707A0B7C5F"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "7849965A12BEA9BE7942CA707A0B7C5F"
- }
- "isPreview" => 0
- "itemName" => "刻意选择-6rf18"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/刻意选择-6rf18.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/刻意选择-6rf18.epub"
- }
- 78 => {
- "artistName" => "SoBooKs.cc 卡尔·波普尔(Karl R. Popper)"
- "BKAllocatedSize" => 2600960
- "BKBookType" => "epub"
- "BKDisplayName" => "客观知识一个进化论的研究"
- "BKGeneratedItemId" => "7D13B25E89F8FA6F46644320A3898CCB"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "7D13B25E89F8FA6F46644320A3898CCB"
- }
- "isPreview" => 0
- "itemName" => "客观知识:一个进化论的研究"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/客观知识一个进化论的研究.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/客观知识一个进化论的研究.epub"
- }
- 79 => {
- "artistName" => "欧内斯特·海明威(Ernest Hemingway)"
- "BKAllocatedSize" => 708608
- "BKBookType" => "epub"
- "BKDisplayName" => "老人与海-0v0vw"
- "BKGeneratedItemId" => "0D7E0CA438AB2FAAE14DD1A5BDAAA277"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "0D7E0CA438AB2FAAE14DD1A5BDAAA277"
- }
- "isPreview" => 0
- "itemName" => "老人与海-0v0vw"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/老人与海-0v0vw.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/老人与海-0v0vw.epub"
- }
- 80 => {
- "artistName" => "乐天无极"
- "BKAllocatedSize" => 9060352
- "BKBookType" => "epub"
- "BKDisplayName" => "歷史學家寫給所有人的中國史從環境氣候到貿易網絡全球視野下的中國史-auuih"
- "BKGeneratedItemId" => "A5769903C166111F5B687664365DCC18"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "A5769903C166111F5B687664365DCC18"
- }
- "isPreview" => 0
- "itemName" => "歷史學家寫給所有人的中國史:從環境、氣候到貿易網絡,全球視野下的中國史-auuih"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/歷史學家寫給所有人的中國史從環境氣候到貿易網絡全球視野下的中國史-auuih.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/歷史學家寫給所有人的中國史從環境氣候到貿易網絡全球視野下的中國史-auuih.epub"
- }
- 81 => {
- "artistName" => "押沙龙"
- "BKAllocatedSize" => 692224
- "BKBookType" => "epub"
- "BKDisplayName" => "鹿隐之野"
- "BKGeneratedItemId" => "A01CAF22213028AA91A65ADB73767D14"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "A01CAF22213028AA91A65ADB73767D14"
- }
- "bookDescription" => "本书是一部短篇小说集,也是一部历史寓言集。作者押沙龙将历史、神话、传说熔炼于作品中,创作了七个脑洞大开的故事。
-
-这些故事有的奇幻,比如开篇从上古时期讲起,流落人间的天人发现了一个孩子,教会他建立文明的秘密;有的伤感,比如讲人牲的逃亡,在保护爱人和自己苟活之间做出选择;有的则很荒诞,比如闯入桃花源的军官发现,原来那里的原住民都只是自己痛苦的回忆……这些故事指向人和权力的关系,以及复杂人性的弱点在这种关系里的反应。比如贪婪、软弱、冷漠、自私、暴力等等。
-
-鹿隐之野是一个梦幻之地,它既见证过王朝的倾覆,也见证过文明的兴起。太阳底下没有新鲜事,历史总是不停重演。在押沙龙笔下,这些故事提供一种启示,触发人们对历史以及展现出的人性作出思考。"
- "isPreview" => 0
- "itemName" => "鹿隐之野"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/鹿隐之野.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/鹿隐之野.epub"
- }
- 82 => {
- "BKAllocatedSize" => 319488
- "BKBookType" => "pdf"
- "BKDisplayName" => "论哈贝马斯后世俗社会的宗教观"
- "BKGeneratedItemId" => "6897CD3A9AE8AA32ACDFFA963FE60A93"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "BKIsLocked" => 0
- "itemName" => "论哈贝马斯后世俗社会的宗教观"
- "modificationDate" => 2024-05-09 02:24:47 +0000
- "pageCount" => 13
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/论哈贝马斯后世俗社会的宗教观.pdf"
- "releaseDate" => 2024-05-09 00:55:24 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/论哈贝马斯后世俗社会的宗教观.pdf"
- }
- 83 => {
- "artistName" => "启功"
- "BKAllocatedSize" => 2129920
- "BKBookType" => "epub"
- "BKDisplayName" => "论书随笔著名大师启功先生亲授高台层累循循善诱师古不泥剖析全方面之书法问题教你如何步步学好书法是每一位书法入门者的不可不读的指导书 湖山艺丛"
- "BKGeneratedItemId" => "1A676702EAEBA088BF2D37BFB6DC476F"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "1A676702EAEBA088BF2D37BFB6DC476F"
- }
- "genre" => "天浪书屋"
- "isPreview" => 0
- "itemName" => "论书随笔【著名大师启功先生亲授,高台层累,循循善诱,师古不泥,剖析全方面之书法问题,教你如何步步学好书法,是每一位书法入门者的不可不读的指导书!】 (湖山艺丛)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/论书随笔著名大师启功先生亲授高台层累循循善诱师古不泥剖析全方面之书法问题教你如何步步学好书法是每一位书法入门者的不可不读的指导书 湖山艺丛.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/论书随笔著名大师启功先生亲授高台层累循循善诱师古不泥剖析全方面之书法问题教你如何步步学好书法是每一位书法入门者的不可不读的指导书 湖山艺丛.epub"
- }
- 84 => {
- "artistName" => "陈赣"
- "BKAllocatedSize" => 3330048
- "BKBookType" => "pdf"
- "BKDisplayName" => "洛阳城被称为“四战之地”,可为何有那么多朝代在洛阳建都?"
- "BKGeneratedItemId" => "AB8A3D2EF8868334C88B75655F21D585"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "BKIsLocked" => 0
- "itemName" => "洛阳城被称为“四战之地”,可为何有那么多朝代在洛阳建都?"
- "modificationDate" => 2024-04-29 12:58:36 +0000
- "pageCount" => 8
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/洛阳城被称为“四战之地”,可为何有那么多朝代在洛阳建都?.pdf"
- "releaseDate" => 2024-04-29 12:58:36 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/洛阳城被称为“四战之地”,可为何有那么多朝代在洛阳建都?.pdf"
- }
- 85 => {
- "artistName" => "克萝尔·弗来明"
- "BKAllocatedSize" => 561152
- "BKBookType" => "epub"
- "BKDisplayName" => "没话找话指南给社交别扭人的破冰实操话术_克萝尔弗来明著_袁婧译-0b2xl"
- "BKGeneratedItemId" => "4CC389A79FD2468E852765C28A606979"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "4CC389A79FD2468E852765C28A606979"
- }
- "genre" => "-SanQiu.mobi"
- "isPreview" => 0
- "itemName" => "“没话找话”指南:给社交别扭人的破冰实操话术_(克萝尔·弗来明著_袁婧译)-0b2xl"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/没话找话指南给社交别扭人的破冰实操话术_克萝尔弗来明著_袁婧译-0b2xl.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/没话找话指南给社交别扭人的破冰实操话术_克萝尔弗来明著_袁婧译-0b2xl.epub"
- }
- 86 => {
- "artistName" => "Unknown"
- "BKAllocatedSize" => 1478656
- "BKBookType" => "epub"
- "BKDisplayName" => "美国医疗的社会变迁-xedn4"
- "BKGeneratedItemId" => "0D0297944DE527A45257464A5070EFBA"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "0D0297944DE527A45257464A5070EFBA"
- }
- "genre" => "天浪书屋"
- "isPreview" => 0
- "itemName" => "美国医疗的社会变迁-xedn4"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/美国医疗的社会变迁-xedn4.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/美国医疗的社会变迁-xedn4.epub"
- }
- 87 => {
- "BKAllocatedSize" => 192512
- "BKBookType" => "pdf"
- "BKDisplayName" => "美国宗教政治的基本经验"
- "BKGeneratedItemId" => "D9CC35D6B88A1686797E14A05017EAF0"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "BKIsLocked" => 0
- "itemName" => "美国宗教政治的基本经验"
- "pageCount" => 5
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/美国宗教政治的基本经验.pdf"
- "releaseDate" => 2016-06-17 13:42:38 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/美国宗教政治的基本经验.pdf"
- }
- 88 => {
- "artistName" => "黄大慧"
- "BKAllocatedSize" => 3751936
- "BKBookType" => "epub"
- "BKDisplayName" => "民主与爱国战后日本的民族主义与公共性全2册-zuhaa"
- "BKGeneratedItemId" => "B5E44E16082573295D977C0DA0159DEB"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "B5E44E16082573295D977C0DA0159DEB"
- }
- "isPreview" => 0
- "itemName" => "“民主”与“爱国”:战后日本的民族主义与公共性(全2册)-zuhaa"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/民主与爱国战后日本的民族主义与公共性全2册-zuhaa.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/民主与爱国战后日本的民族主义与公共性全2册-zuhaa.epub"
- }
- 89 => {
- "artistName" => "[美] 里克·汉森"
- "BKAllocatedSize" => 1880064
- "BKBookType" => "epub"
- "BKDisplayName" => "冥想5分钟等于熟睡一小时"
- "BKGeneratedItemId" => "DFF96F62232839B053C7C783994CA673"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "DFF96F62232839B053C7C783994CA673"
- }
- "bookDescription" => "冥想其实极为简单易学,最初级的冥想,只需几分钟时间,就能让您放松大脑和心情,解除焦虑、疲惫,回到精神饱满、思维清晰的状态,就像从熟睡中自然醒来一样充满活力。
本书教会您由浅入深的冥想法:开会累了冥想一会儿,伏案久了冥想一会儿,精神紧张的时候冥想一会儿,睡不着觉、休息不好的时候冥想一会儿,只需要几分钟的时间,把大脑清空,整个人松弛下来,迅速进入沉静、忘我的状态,精神很快就像是被饱饱地充满电一样,整个人就像从熟睡中自然醒来一样充满活力。
对于初学者而言,第一次冥想练习,往往只能持续5分钟,但这短短的5分钟,就能让您发现自己身体潜藏的活力。
当您完全掌握了冥想,您将会发现一个全新的自己:清晰的思维,超强的注意力,准确的判断力,平静而放松的内心,浑身散发出活力与智慧,让您自己也会吓一跳!
翻开本书,随时随地,随你喜欢的方式,从简单的一呼一吸中,开始您的冥想练习吧。
"
- "genre" => "养生"
- "isPreview" => 0
- "itemName" => "冥想5分钟,等于熟睡一小时"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/冥想5分钟等于熟睡一小时.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/冥想5分钟等于熟睡一小时.epub"
- }
- 90 => {
- "artistName" => "Unknown"
- "BKAllocatedSize" => 901120
- "BKBookType" => "epub"
- "BKDisplayName" => "命运蔡崇达-226wc"
- "BKGeneratedItemId" => "02FAE8251AC4970ABBF60EABD22EBE1C"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "02FAE8251AC4970ABBF60EABD22EBE1C"
- }
- "bookDescription" => "
-
《命运》是蔡崇达继《皮囊》之后,时隔八年潜心创作的长篇小说。
-
《皮囊》里的那句“皮囊是拿来用的,不是拿来伺候的。”正是出自《命运》的主人公,阿太之口。《命运》以九十九岁的她一生的故事为主线,串联起福建闽南沿海小镇几代人的人生故事、命运选择与时代浮沉。
"
- "genre" => "散文小说"
- "isPreview" => 0
- "itemName" => "《命运》蔡崇达-226wc"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/命运蔡崇达-226wc.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/命运蔡崇达-226wc.epub"
- }
- 91 => {
- "artistName" => "大衛.巴哈(David Bach)、約翰.大衛.曼恩(John David Mann)"
- "BKAllocatedSize" => 2641920
- "BKBookType" => "epub"
- "BKDisplayName" => "拿鐵因子最小又最強的致富習慣-xot4n"
- "BKGeneratedItemId" => "73D5425F7F55EC9B3D85B0245F16C1CD"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "73D5425F7F55EC9B3D85B0245F16C1CD"
- }
- "isPreview" => 0
- "itemName" => "拿鐵因子:最小又最強的致富習慣-xot4n"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/拿鐵因子最小又最強的致富習慣-xot4n.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/拿鐵因子最小又最強的致富習慣-xot4n.epub"
- }
- 92 => {
- "BKAllocatedSize" => 6115328
- "BKBookType" => "pdf"
- "BKDisplayName" => "朴学影响下的陈鸿寿书法"
- "BKGeneratedItemId" => "1A13A6FA8D93997218729CBD4EE302A2"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "BKIsLocked" => 0
- "itemName" => "朴学影响下的陈鸿寿书法"
- "modificationDate" => 2024-07-17 01:03:47 +0000
- "pageCount" => 17
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/朴学影响下的陈鸿寿书法.pdf"
- "releaseDate" => 2024-07-17 01:03:47 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/朴学影响下的陈鸿寿书法.pdf"
- }
- 93 => {
- "artistName" => "伊莎贝尔·威尔克森"
- "BKAllocatedSize" => 17387520
- "BKBookType" => "epub"
- "BKDisplayName" => "浦睿文化历史社科精选合集共5册不平等的美国到三千年的耶路撒冷棉花到善恶的人性特别的角度看见浓缩的历史真相拿来吧你浦睿文化出品"
- "BKGeneratedItemId" => "1DFA5D2C854609B5D63D89BE327DAB4E"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "1DFA5D2C854609B5D63D89BE327DAB4E"
- }
- "isPreview" => 0
- "itemName" => "浦睿文化历史社科精选合集(共5册)【不平等的美国到三千年的耶路撒冷;棉花到善恶的人性……特别的角度,看见浓缩的历史真相,拿来吧你!】浦睿文化出品"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/浦睿文化历史社科精选合集共5册不平等的美国到三千年的耶路撒冷棉花到善恶的人性特别的角度看见浓缩的历史真相拿来吧你浦睿文化出品.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/浦睿文化历史社科精选合集共5册不平等的美国到三千年的耶路撒冷棉花到善恶的人性特别的角度看见浓缩的历史真相拿来吧你浦睿文化出品.epub"
- }
- 94 => {
- "artistName" => "[德]理查德·大卫·普莱希特"
- "BKAllocatedSize" => 5574656
- "BKBookType" => "epub"
- "BKDisplayName" => "普莱希特哲学史套装共2册-8uju2"
- "BKGeneratedItemId" => "3112EB7649D2DCB36E5EC9C5D60AB68F"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "3112EB7649D2DCB36E5EC9C5D60AB68F"
- }
- "isPreview" => 0
- "itemName" => "普莱希特哲学史(套装共2册)-8uju2"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/普莱希特哲学史套装共2册-8uju2.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/普莱希特哲学史套装共2册-8uju2.epub"
- }
- 95 => {
- "artistName" => "[英] A.C.格雷林"
- "BKAllocatedSize" => 2998272
- "BKBookType" => "epub"
- "BKDisplayName" => "企鹅哲学史上下-sun4y"
- "BKGeneratedItemId" => "F5C05290EF6979CAF9A86898B87BE982"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "F5C05290EF6979CAF9A86898B87BE982"
- }
- "genre" => "天浪书屋"
- "isPreview" => 0
- "itemName" => "企鹅哲学史(上下)-sun4y"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/企鹅哲学史上下-sun4y.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/企鹅哲学史上下-sun4y.epub"
- }
- 96 => {
- "artistName" => "张远山"
- "BKAllocatedSize" => 15695872
- "BKBookType" => "epub"
- "BKDisplayName" => "青铜之道解密华夏天帝饕餮纹-svf7t"
- "BKGeneratedItemId" => "D013D8662B8D3DEAE68D02F0A87F45CC"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "D013D8662B8D3DEAE68D02F0A87F45CC"
- }
- "bookDescription" => "青铜之道:解密华夏天帝饕餮纹"
- "isPreview" => 0
- "itemName" => "青铜之道:解密华夏天帝饕餮纹-svf7t"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/青铜之道解密华夏天帝饕餮纹-svf7t.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/青铜之道解密华夏天帝饕餮纹-svf7t.epub"
- }
- 97 => {
- "artistName" => "刘永升"
- "BKAllocatedSize" => 3067904
- "BKBookType" => "epub"
- "BKDisplayName" => "全本黄帝内经大全集珍藏本超值白金版"
- "BKGeneratedItemId" => "A93F7953BCCF9E435DBE7A7F53D6CDFB"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "A93F7953BCCF9E435DBE7A7F53D6CDFB"
- }
- "isPreview" => 0
- "itemName" => "全本黄帝内经(大全集)(珍藏本)(超值白金版)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/全本黄帝内经大全集珍藏本超值白金版.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/全本黄帝内经大全集珍藏本超值白金版.epub"
- }
- 98 => {
- "artistName" => "大卫祁"
- "BKAllocatedSize" => 1556480
- "BKBookType" => "epub"
- "BKDisplayName" => "全脑演讲左脑逻辑右脑情商"
- "BKGeneratedItemId" => "0FBF85BB572029534255259FB8C66605"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "0FBF85BB572029534255259FB8C66605"
- }
- "isPreview" => 0
- "itemName" => "全脑演讲:左脑逻辑,右脑情商"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/全脑演讲左脑逻辑右脑情商.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/全脑演讲左脑逻辑右脑情商.epub"
- }
- 99 => {
- "artistName" => "Yuval Noah Harari"
- "BKAllocatedSize" => 3059712
- "BKBookType" => "epub"
- "BKDisplayName" => "人类简史-从动物到上帝-2fgnwy"
- "BKGeneratedItemId" => "F288602EDCF4610743DF92ACAEF4369A"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "F288602EDCF4610743DF92ACAEF4369A"
- }
- "isPreview" => 0
- "itemName" => "人类简史-从动物到上帝"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/人类简史-从动物到上帝-2fgnwy.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/人类简史-从动物到上帝-2fgnwy.epub"
- }
- 100 => {
- "artistName" => "克里斯·英庇"
- "BKAllocatedSize" => 6045696
- "BKBookType" => "epub"
- "BKDisplayName" => "人类为什么要探索太空"
- "BKGeneratedItemId" => "FE3D3502514B66F899CC78B76236F7F1"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "FE3D3502514B66F899CC78B76236F7F1"
- }
- "isPreview" => 0
- "itemName" => "人类为什么要探索太空"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/人类为什么要探索太空.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/人类为什么要探索太空.epub"
- }
- 101 => {
- "artistName" => "戴从容"
- "BKAllocatedSize" => 4358144
- "BKBookType" => "epub"
- "BKDisplayName" => "人类真的是耶胡吗欧洲文学十四讲"
- "BKGeneratedItemId" => "506D8304DF6B0749672912D8DDED6C3A"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "506D8304DF6B0749672912D8DDED6C3A"
- }
- "isPreview" => 0
- "itemName" => "人类真的是耶胡吗:欧洲文学十四讲"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/人类真的是耶胡吗欧洲文学十四讲.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/人类真的是耶胡吗欧洲文学十四讲.epub"
- }
- 102 => {
- "artistName" => "乔丹·彼得森"
- "BKAllocatedSize" => 3776512
- "BKBookType" => "epub"
- "BKDisplayName" => "人生十二法则2-kloty"
- "BKGeneratedItemId" => "6244197BC947EE856BC14327BD52735B"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "6244197BC947EE856BC14327BD52735B"
- }
- "isPreview" => 0
- "itemName" => "人生十二法则2-kloty"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/人生十二法则2-kloty.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/人生十二法则2-kloty.epub"
- }
- 103 => {
- "artistName" => "汪曾祺"
- "BKAllocatedSize" => 2469888
- "BKBookType" => "epub"
- "BKDisplayName" => "人生有趣"
- "BKGeneratedItemId" => "52E624E9C5B51D13F842000E393ABE72"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "52E624E9C5B51D13F842000E393ABE72"
- }
- "bookDescription" => "Split from:
-
汪曾祺经典典藏文集:人间草木+人间有味+人间小暖+人生有趣(套装共4册)
-
"
- "genre" => "公众号:幸福的味道"
- "isPreview" => 0
- "itemName" => "人生有趣"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/人生有趣.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/人生有趣.epub"
- }
- 104 => {
- "artistName" => "斯科特·扬"
- "BKAllocatedSize" => 327680
- "BKBookType" => "epub"
- "BKDisplayName" => "如何提升专注力手把手教你用7项改变打造10倍速效率人生"
- "BKGeneratedItemId" => "6258A6597B2CEDF1B851935790262581"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "6258A6597B2CEDF1B851935790262581"
- }
- "bookDescription" => "
-
【享誉全球的超级学霸、时间管理达人、畅销书作家斯科特·扬倾囊传授!专注力学习者必备零起点、易上手的“葵花宝典”!中英文双语对照!】
"
- "genre" => "单本图书"
- "isPreview" => 0
- "itemName" => "如何提升专注力:手把手教你用7项改变打造10倍速效率人生"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/如何提升专注力手把手教你用7项改变打造10倍速效率人生.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/如何提升专注力手把手教你用7项改变打造10倍速效率人生.epub"
- }
- 105 => {
- "artistName" => "P63"
- "BKAllocatedSize" => 614400
- "BKBookType" => "pdf"
- "BKDisplayName" => "儒道兩家對墨家思想之去取"
- "BKGeneratedItemId" => "C899440BDA7A6715C9AADA814E8C3185"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "BKIsLocked" => 0
- "itemName" => "儒道兩家對墨家思想之去取"
- "modificationDate" => 2024-04-28 04:34:52 +0000
- "pageCount" => 20
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/儒道兩家對墨家思想之去取.pdf"
- "releaseDate" => 2016-07-04 08:28:11 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/儒道兩家對墨家思想之去取.pdf"
- }
- 106 => {
- "artistName" => "马修·利伯曼"
- "BKAllocatedSize" => 3121152
- "BKBookType" => "epub"
- "BKDisplayName" => "社交天性-ha6sz"
- "BKGeneratedItemId" => "72B03426FCCD8E8EB6BC6B92271A47FB"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "72B03426FCCD8E8EB6BC6B92271A47FB"
- }
- "isPreview" => 0
- "itemName" => "社交天性-ha6sz"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/社交天性-ha6sz.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/社交天性-ha6sz.epub"
- }
- 107 => {
- "artistName" => "程乐松"
- "BKAllocatedSize" => 1523712
- "BKBookType" => "epub"
- "BKDisplayName" => "身体不死与神秘主义道教信仰的观念史视角"
- "BKGeneratedItemId" => "A644DD41A055D4A83C1E2CC71C7B9055"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "A644DD41A055D4A83C1E2CC71C7B9055"
- }
- "isPreview" => 0
- "itemName" => "身体、不死与神秘主义——道教信仰的观念史视角"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/身体不死与神秘主义道教信仰的观念史视角.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/身体不死与神秘主义道教信仰的观念史视角.epub"
- }
- 108 => {
- "artistName" => "【美】米尔恰·伊利亚德, 晏可佳, 姚蓓琴"
- "BKAllocatedSize" => 2482176
- "BKBookType" => "epub"
- "BKDisplayName" => "神圣的存在比较宗教的范型"
- "BKGeneratedItemId" => "1ECEBA2EE59D9B110787365E39729168"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "1ECEBA2EE59D9B110787365E39729168"
- }
- "isPreview" => 0
- "itemName" => "神圣的存在:比较宗教的范型"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/神圣的存在比较宗教的范型.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/神圣的存在比较宗教的范型.epub"
- }
- 109 => {
- "artistName" => "郑也夫"
- "BKAllocatedSize" => 1060864
- "BKBookType" => "epub"
- "BKDisplayName" => "神似祖先 视点文丛"
- "BKGeneratedItemId" => "D1443F0734E2F6CD0CBD96C1F95FBF77"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "D1443F0734E2F6CD0CBD96C1F95FBF77"
- }
- "isPreview" => 0
- "itemName" => "神似祖先 (视点文丛)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/神似祖先 视点文丛.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/神似祖先 视点文丛.epub"
- }
- 110 => {
- "artistName" => "喬登.彼得森"
- "BKAllocatedSize" => 1204224
- "BKBookType" => "epub"
- "BKDisplayName" => "生存的12條法則-p01hn"
- "BKGeneratedItemId" => "0F9063EAE83ABF9325522B241234E20F"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "0F9063EAE83ABF9325522B241234E20F"
- }
- "isPreview" => 0
- "itemName" => "生存的12條法則-p01hn"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/生存的12條法則-p01hn.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/生存的12條法則-p01hn.epub"
- }
- 111 => {
- "artistName" => "埃尔温•薛定谔"
- "BKAllocatedSize" => 266240
- "BKBookType" => "epub"
- "BKDisplayName" => "生命是什么-活细胞的物理观"
- "BKGeneratedItemId" => "0FAE0781BEBB3B08EC9519F58858EEF4"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "0FAE0781BEBB3B08EC9519F58858EEF4"
- }
- "isPreview" => 0
- "itemName" => "生命是什么-活细胞的物理观"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/生命是什么-活细胞的物理观.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/生命是什么-活细胞的物理观.epub"
- }
- 112 => {
- "artistName" => "小林亚津子"
- "BKAllocatedSize" => 925696
- "BKBookType" => "epub"
- "BKDisplayName" => "生育的选择-2btaf"
- "BKGeneratedItemId" => "746B1387F4AB34E3A88CE7AC19456B56"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424268
- "book-info" => {
- "package-file-hash" => "746B1387F4AB34E3A88CE7AC19456B56"
- }
- "genre" => "-SanQiu.mobi"
- "isPreview" => 0
- "itemName" => "生育的选择-2btaf"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/生育的选择-2btaf.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/生育的选择-2btaf.epub"
- }
- 113 => {
- "artistName" => "熊十力"
- "BKAllocatedSize" => 18264064
- "BKBookType" => "epub"
- "BKDisplayName" => "十力丛书全14册豆瓣评分91看现代新儒学思潮的哲学奠基人一代开宗大师熊十力如何让传统儒家思想焕发新生 十力丛书 上海古籍"
- "BKGeneratedItemId" => "3B6CBF80A8348CE54EEE5B7E205C4550"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "3B6CBF80A8348CE54EEE5B7E205C4550"
- }
- "isPreview" => 0
- "itemName" => "十力丛书(全14册)【豆瓣评分9.1!看现代新儒学思潮的哲学奠基人、一代开宗大师熊十力如何让传统儒家思想焕发新生】 (十力丛书 上海古籍)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/十力丛书全14册豆瓣评分91看现代新儒学思潮的哲学奠基人一代开宗大师熊十力如何让传统儒家思想焕发新生 十力丛书 上海古籍.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/十力丛书全14册豆瓣评分91看现代新儒学思潮的哲学奠基人一代开宗大师熊十力如何让传统儒家思想焕发新生 十力丛书 上海古籍.epub"
- }
- 114 => {
- "artistName" => "卜伽丘(Giovanni Boccaccio)"
- "BKAllocatedSize" => 2113536
- "BKBookType" => "epub"
- "BKDisplayName" => "十日谈xnetv"
- "BKGeneratedItemId" => "CC1AC0B7F2896EF972F9C7501F65C37C"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "CC1AC0B7F2896EF972F9C7501F65C37C"
- }
- "isPreview" => 0
- "itemName" => "十日谈xnetv"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/十日谈xnetv.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/十日谈xnetv.epub"
- }
- 115 => {
- "artistName" => "理查德·德威特(Richard DeWitt)"
- "BKAllocatedSize" => 3129344
- "BKBookType" => "epub"
- "BKDisplayName" => "世界观现代人必须要懂的科学哲学和科学史原书第3版"
- "BKGeneratedItemId" => "797867E6B372A54F4C69B29DF16B9D4B"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "797867E6B372A54F4C69B29DF16B9D4B"
- }
- "isPreview" => 0
- "itemName" => "世界观:现代人必须要懂的科学哲学和科学史(原书第3版)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/世界观现代人必须要懂的科学哲学和科学史原书第3版.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/世界观现代人必须要懂的科学哲学和科学史原书第3版.epub"
- }
- 116 => {
- "artistName" => "[美] 罗伯特·谢克里"
- "BKAllocatedSize" => 1191936
- "BKBookType" => "epub"
- "BKDisplayName" => "世界杂货店罗伯特谢克里科幻小说集____美罗伯特谢克里__-5i8cm"
- "BKGeneratedItemId" => "B745D7BC6A69A150EDD1D2CA81E9A3CC"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "B745D7BC6A69A150EDD1D2CA81E9A3CC"
- }
- "genre" => "书聚EBOOKG.COM"
- "isPreview" => 0
- "itemName" => "世界杂货店:罗伯特·谢克里科幻小说集____[美]罗伯特·谢克里__-5i8cm"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/世界杂货店罗伯特谢克里科幻小说集____美罗伯特谢克里__-5i8cm.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/世界杂货店罗伯特谢克里科幻小说集____美罗伯特谢克里__-5i8cm.epub"
- }
- 117 => {
- "artistName" => "周勋君"
- "BKAllocatedSize" => 6012928
- "BKBookType" => "epub"
- "BKDisplayName" => "书法18个关键词-4jui9"
- "BKGeneratedItemId" => "CEC3F5CCE3309F4CBFE4BEEE14D674AF"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "CEC3F5CCE3309F4CBFE4BEEE14D674AF"
- }
- "isPreview" => 0
- "itemName" => "书法:18个关键词-4jui9"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/书法18个关键词-4jui9.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/书法18个关键词-4jui9.epub"
- }
- 118 => {
- "artistName" => "萨提亚·纳德拉"
- "BKAllocatedSize" => 1363968
- "BKBookType" => "epub"
- "BKDisplayName" => "刷新重新发现商业与未来"
- "BKGeneratedItemId" => "C1BEA2ED2C1875CFA8EE80E08212472F"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "C1BEA2ED2C1875CFA8EE80E08212472F"
- }
- "isPreview" => 0
- "itemName" => "刷新:重新发现商业与未来"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/刷新重新发现商业与未来.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/刷新重新发现商业与未来.epub"
- }
- 119 => {
- "artistName" => "孙歌"
- "BKAllocatedSize" => 1081344
- "BKBookType" => "epub"
- "BKDisplayName" => "思想史中的日本与中国"
- "BKGeneratedItemId" => "C022874A96BF7394EBB96C3F84699AC6"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "C022874A96BF7394EBB96C3F84699AC6"
- }
- "isPreview" => 0
- "itemName" => "思想史中的日本与中国"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/思想史中的日本与中国.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/思想史中的日本与中国.epub"
- }
- 120 => {
- "artistName" => "刘瑜"
- "BKAllocatedSize" => 1060864
- "BKBookType" => "epub"
- "BKDisplayName" => "送你一颗子弹"
- "BKGeneratedItemId" => "E2CE5BD89A1D9ED0A440C35F03A2E742"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "E2CE5BD89A1D9ED0A440C35F03A2E742"
- }
- "genre" => "散文随笔"
- "isPreview" => 0
- "itemName" => "送你一颗子弹"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/送你一颗子弹.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/送你一颗子弹.epub"
- }
- 121 => {
- "artistName" => "[挪威]乔斯坦·贾德"
- "BKAllocatedSize" => 1359872
- "BKBookType" => "epub"
- "BKDisplayName" => "苏菲的世界"
- "BKGeneratedItemId" => "FE051FFF3ECADD114DD07E219D5A7CC6"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "FE051FFF3ECADD114DD07E219D5A7CC6"
- }
- "isPreview" => 0
- "itemName" => "苏菲的世界"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/苏菲的世界.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/苏菲的世界.epub"
- }
- 122 => {
- "artistName" => "柏拉图 (Plato)"
- "BKAllocatedSize" => 1683456
- "BKBookType" => "epub"
- "BKDisplayName" => "苏格拉底的申辩-3b7zf"
- "BKGeneratedItemId" => "3345DA1FF9C378929280685A678B84B8"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "3345DA1FF9C378929280685A678B84B8"
- }
- "isPreview" => 0
- "itemName" => "苏格拉底的申辩-3b7zf"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/苏格拉底的申辩-3b7zf.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/苏格拉底的申辩-3b7zf.epub"
- }
- 123 => {
- "artistName" => "李一冰"
- "BKAllocatedSize" => 10809344
- "BKBookType" => "epub"
- "BKDisplayName" => "蘇東坡新傳上下合併冊"
- "BKGeneratedItemId" => "E9CE407321CFA3C568C68C084EA3E5E8"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "E9CE407321CFA3C568C68C084EA3E5E8"
- }
- "isPreview" => 0
- "itemName" => "蘇東坡新傳(上下合併冊)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/蘇東坡新傳上下合併冊.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/蘇東坡新傳上下合併冊.epub"
- }
- 124 => {
- "artistName" => "纳西姆·尼古拉斯·塔勒布"
- "BKAllocatedSize" => 757760
- "BKBookType" => "epub"
- "BKDisplayName" => "随机漫步的傻瓜"
- "BKGeneratedItemId" => "A25842EE481B7BE3BFEAAFB1A60CC653"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "A25842EE481B7BE3BFEAAFB1A60CC653"
- }
- "isPreview" => 0
- "itemName" => "随机漫步的傻瓜"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/随机漫步的傻瓜.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/随机漫步的傻瓜.epub"
- }
- 125 => {
- "artistName" => "[美]亚当·萨维奇"
- "BKAllocatedSize" => 9707520
- "BKBookType" => "epub"
- "BKDisplayName" => "所有工具都是锤子-bw2f0"
- "BKGeneratedItemId" => "672DA86AA0567A8B995D9D9D598D597D"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "672DA86AA0567A8B995D9D9D598D597D"
- }
- "isPreview" => 0
- "itemName" => "所有工具都是锤子-bw2f0"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/所有工具都是锤子-bw2f0.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/所有工具都是锤子-bw2f0.epub"
- }
- 126 => {
- "BKAllocatedSize" => 933888
- "BKBookType" => "pdf"
- "BKDisplayName" => "天台智顗教觀思想體系"
- "BKGeneratedItemId" => "5BE27FFD08236CBAD9BD17C24D4F9FB4"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "BKIsLocked" => 0
- "itemName" => "天台智顗教觀思想體系"
- "modificationDate" => 2024-04-17 05:31:26 +0000
- "pageCount" => 2
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/天台智顗教觀思想體系.pdf"
- "releaseDate" => 2024-04-17 05:31:26 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/天台智顗教觀思想體系.pdf"
- }
- 127 => {
- "artistName" => "静逸投资"
- "BKAllocatedSize" => 2445312
- "BKBookType" => "epub"
- "BKDisplayName" => "投资至简从原点出发构建价值投资体系"
- "BKGeneratedItemId" => "7FA6151D31FE9C32603607636F3E52B0"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "7FA6151D31FE9C32603607636F3E52B0"
- }
- "isPreview" => 0
- "itemName" => "投资至简:从原点出发构建价值投资体系"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/投资至简从原点出发构建价值投资体系.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/投资至简从原点出发构建价值投资体系.epub"
- }
- 128 => {
- "artistName" => "亦舒"
- "BKAllocatedSize" => 380928
- "BKBookType" => "epub"
- "BKDisplayName" => "推荐书-axtay"
- "BKGeneratedItemId" => "D49F54F77E6851A0CE5E4903D0EEA010"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "D49F54F77E6851A0CE5E4903D0EEA010"
- }
- "genre" => "都市·言情"
- "isPreview" => 0
- "itemName" => "推荐书-axtay"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/推荐书-axtay.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/推荐书-axtay.epub"
- }
- 129 => {
- "artistName" => "Chris Xia"
- "BKAllocatedSize" => 847872
- "BKBookType" => "epub"
- "BKDisplayName" => "外语听与说为什么你的大脑会慢半拍双语者的自我提升手册知乎 Chris Xia 作品 知乎一小时系列"
- "BKGeneratedItemId" => "D467ADEC30567710C16E270EE0A170E8"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 730106983
- "book-info" => {
- "cover-image-hash" => "447A5DCB2EAA0ABEC9118B168AB191FA"
- "cover-image-path" => "OEBPS/Image00010.jpg"
- "mime-type" => "application/epub+zip"
- "package-file-hash" => "D467ADEC30567710C16E270EE0A170E8"
- "publisher-unique-id" => "urn:uuid:273fd756-62f2-4858-8d67-99e08f24bba9"
- "unique-id" => -4972255650375584712
- "update-level" => 2
- }
- "isPreview" => 0
- "itemName" => "外语听与说,为什么你的大脑会慢半拍:双语者的自我提升手册(知乎 Chris Xia 作品) (知乎「一小时」系列)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/外语听与说为什么你的大脑会慢半拍双语者的自我提升手册知乎 Chris Xia 作品 知乎一小时系列.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/外语听与说为什么你的大脑会慢半拍双语者的自我提升手册知乎 Chris Xia 作品 知乎一小时系列.epub"
- "updateDate" => 2024-02-20 07:29:43 +0000
- }
- 130 => {
- "artistName" => "万维钢(同人于野)"
- "BKAllocatedSize" => 1900544
- "BKBookType" => "epub"
- "BKDisplayName" => "万万没想到用理工科思维理解世界"
- "BKGeneratedItemId" => "D8E61D384FD6B3EE5D795E0BEE73F920"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "D8E61D384FD6B3EE5D795E0BEE73F920"
- }
- "isPreview" => 0
- "itemName" => "万万没想到:用理工科思维理解世界"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/万万没想到用理工科思维理解世界.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/万万没想到用理工科思维理解世界.epub"
- }
- 131 => {
- "artistName" => "汉娜·弗赖伊"
- "BKAllocatedSize" => 1437696
- "BKBookType" => "epub"
- "BKDisplayName" => "万物认知指南-1uo62"
- "BKGeneratedItemId" => "3152594AC063AC775D4F397179A2DEBE"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "3152594AC063AC775D4F397179A2DEBE"
- }
- "genre" => "天浪书屋"
- "isPreview" => 0
- "itemName" => "万物认知指南-1uo62"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/万物认知指南-1uo62.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/万物认知指南-1uo62.epub"
- }
- 132 => {
- "BKAllocatedSize" => 18243584
- "BKBookType" => "pdf"
- "BKDisplayName" => "为什么伟大不能被计划-x1u2i - Notebook"
- "BKGeneratedItemId" => "9B8D4124D86145C8007FAF83C54E7843"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "BKIsLocked" => 0
- "itemName" => "为什么伟大不能被计划-x1u2i - Notebook"
- "modificationDate" => 2024-01-24 14:02:42 +0000
- "pageCount" => 19
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/为什么伟大不能被计划-x1u2i - Notebook.pdf"
- "releaseDate" => 2024-01-24 04:18:29 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/为什么伟大不能被计划-x1u2i - Notebook.pdf"
- }
- 133 => {
- "artistName" => "肯尼斯·斯坦利"
- "BKAllocatedSize" => 1007616
- "BKBookType" => "epub"
- "BKDisplayName" => "为什么伟大不能被计划-x1u2i"
- "BKGeneratedItemId" => "3A2EDA606D757CDCEDD846A39F50E0C8"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "3A2EDA606D757CDCEDD846A39F50E0C8"
- }
- "bookDescription" => "两位作者持续多年扎根人工智能前沿领域,这本书是他们在科学研究的过程中蹦出的意外火花。因为这一全新发现并不是直接回馈于他们本身所处的人工智能领域,而是“无心插柳”收获了对人类约定俗成的思维方式的全新颠覆。这一研究打破了人类世界延续多年、难以撼动的、依靠目标和计划成事的文化基因,真正开启了人类伟大创新的惊喜之旅。 他们在学校、TED、科研论坛等场合公开演讲,让这一新思维方式影响并激励了许多人。他们自身也凭借写入本书的“寻宝者思维”“踏脚石模型”“新奇性探索”等具体思维方法,在人工智能研发领域取得了飞跃式的突破和进展,产生了一系列惠及人类的伟大创造。"
- "isPreview" => 0
- "itemName" => "为什么伟大不能被计划-x1u2i"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/为什么伟大不能被计划-x1u2i.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/为什么伟大不能被计划-x1u2i.epub"
- }
- 134 => {
- "BKAllocatedSize" => 10936320
- "BKBookType" => "pdf"
- "BKDisplayName" => "为往圣继心学的副本"
- "BKGeneratedItemId" => "F50AB43DB92DCBC2BD089DFB9CF46685"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "BKIsLocked" => 0
- "itemName" => "为往圣继心学"
- "modificationDate" => 2024-04-27 06:00:52 +0000
- "pageCount" => 9
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/为往圣继心学的副本.pdf"
- "releaseDate" => 2023-12-29 01:00:36 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/为往圣继心学的副本.pdf"
- }
- 135 => {
- "artistName" => "陈赣"
- "BKAllocatedSize" => 3018752
- "BKBookType" => "pdf"
- "BKDisplayName" => "道教术语"
- "BKGeneratedItemId" => "9AD8F4224FF5DC903FB0F46DF464EDD0"
- "BKGenerationCount" => 3
- "BKInsertionDate" => 748424269
- "BKIsLocked" => 0
- "BKItemPreviousPath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/未命名 1.pdf"
- "book-info" => {
- "publication-version" => 0
- }
- "isPreview" => 0
- "itemName" => "道教术语"
- "modificationDate" => 2024-06-02 13:58:17 +0000
- "pageCount" => 19
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/道教术语.pdf"
- "releaseDate" => 2024-04-27 00:09:55 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/未命名 1.pdf"
- "updateDate" => 2024-06-02 13:58:17 +0000
- }
- 136 => {
- "artistName" => "陈赣"
- "BKAllocatedSize" => 163840
- "BKBookType" => "pdf"
- "BKDisplayName" => "东京旅行流水账"
- "BKGeneratedItemId" => "B8738555436EBF1EEDFADF6AC4BD5FF3"
- "BKGenerationCount" => 3
- "BKInsertionDate" => 748424269
- "BKIsLocked" => 0
- "BKItemPreviousPath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/未命名 2.pdf"
- "book-info" => {
- "publication-version" => 0
- }
- "isPreview" => 0
- "itemName" => "东京旅行流水账"
- "modificationDate" => 2024-01-16 10:28:35 +0000
- "pageCount" => 5
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/东京旅行流水账.pdf"
- "releaseDate" => 2024-01-16 10:28:35 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/未命名 2.pdf"
- "updateDate" => 2024-01-16 10:28:35 +0000
- }
- 137 => {
- "artistName" => "陈赣"
- "BKAllocatedSize" => 3080192
- "BKBookType" => "pdf"
- "BKDisplayName" => "何为启蒙"
- "BKGeneratedItemId" => "61A312552CE2A3D090E4E0430845D055"
- "BKGenerationCount" => 3
- "BKInsertionDate" => 748424269
- "BKIsLocked" => 0
- "BKItemPreviousPath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/未命名 3.pdf"
- "book-info" => {
- "publication-version" => 0
- }
- "isPreview" => 0
- "itemName" => "何为启蒙"
- "modificationDate" => 2024-06-10 07:21:43 +0000
- "pageCount" => 14
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/何为启蒙.pdf"
- "releaseDate" => 2024-06-10 06:41:42 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/未命名 3.pdf"
- "updateDate" => 2024-06-10 07:21:43 +0000
- }
- 138 => {
- "artistName" => "陈赣"
- "BKAllocatedSize" => 16363520
- "BKBookType" => "pdf"
- "BKDisplayName" => "渔樵问对"
- "BKGeneratedItemId" => "38F2D7A87D12B72F41F961B4DBA42FC1"
- "BKGenerationCount" => 3
- "BKInsertionDate" => 748424269
- "BKIsLocked" => 0
- "BKItemPreviousPath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/未命名 5.pdf"
- "book-info" => {
- "publication-version" => 0
- }
- "isPreview" => 0
- "itemName" => "渔樵问对"
- "modificationDate" => 2024-07-25 14:46:22 +0000
- "pageCount" => 37
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/渔樵问对.pdf"
- "releaseDate" => 2024-07-24 04:13:24 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/未命名 5.pdf"
- "updateDate" => 2024-07-25 14:46:22 +0000
- }
- 139 => {
- "artistName" => "陈赣"
- "BKAllocatedSize" => 4333568
- "BKBookType" => "pdf"
- "BKDisplayName" => "邵雍·《渔樵问对》原文"
- "BKGeneratedItemId" => "05DC2A7B6AD0B3D6DCB25DF302EFA6D6"
- "BKGenerationCount" => 3
- "BKInsertionDate" => 748424269
- "BKIsLocked" => 0
- "BKItemPreviousPath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/未命名 6.pdf"
- "book-info" => {
- "publication-version" => 0
- }
- "isPreview" => 0
- "itemName" => "邵雍·《渔樵问对》原文"
- "modificationDate" => 2024-07-24 12:29:26 +0000
- "pageCount" => 21
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/邵雍·《渔樵问对》原文.pdf"
- "releaseDate" => 2024-07-24 05:14:42 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/未命名 6.pdf"
- "updateDate" => 2024-07-24 12:29:26 +0000
- }
- 140 => {
- "artistName" => "网络"
- "BKAllocatedSize" => 3469312
- "BKBookType" => "pdf"
- "BKDisplayName" => "对比11国意外发现中国的运气与软肋"
- "BKGeneratedItemId" => "33136998C3261028FB766F473F45AF4C"
- "BKGenerationCount" => 3
- "BKInsertionDate" => 748424269
- "BKIsLocked" => 0
- "BKItemPreviousPath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/未命名.pdf"
- "book-info" => {
- "publication-version" => 0
- }
- "isPreview" => 0
- "itemName" => "对比11国意外发现中国的运气与软肋"
- "modificationDate" => 2023-12-27 11:47:23 +0000
- "pageCount" => 22
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/对比11国意外发现中国的运气与软肋.pdf"
- "releaseDate" => 2023-12-26 14:42:21 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/未命名.pdf"
- "updateDate" => 2023-12-27 11:47:23 +0000
- }
- 141 => {
- "artistName" => "[丹麦] 索伦·奥碧·克尔凯郭尔"
- "BKAllocatedSize" => 2781184
- "BKBookType" => "epub"
- "BKDisplayName" => "畏惧与颤栗恐惧的概念致死的疾病____丹克尔凯郭尔__-r2cah"
- "BKGeneratedItemId" => "E023663E7628B8C05CF6849EDEB7F6A8"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "E023663E7628B8C05CF6849EDEB7F6A8"
- }
- "bookDescription" => "1"
- "genre" => "EBOOKG.COM书聚"
- "isPreview" => 0
- "itemName" => "畏惧与颤栗、恐惧的概念、致死的疾病____[丹]克尔凯郭尔__-r2cah"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/畏惧与颤栗恐惧的概念致死的疾病____丹克尔凯郭尔__-r2cah.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/畏惧与颤栗恐惧的概念致死的疾病____丹克尔凯郭尔__-r2cah.epub"
- }
- 142 => {
- "artistName" => "塞缪尔·亨廷顿"
- "BKAllocatedSize" => 3129344
- "BKBookType" => "epub"
- "BKDisplayName" => "文明的冲突与世界秩序的重建"
- "BKGeneratedItemId" => "F73F83DCABE0AA42E465E3CF1499AF37"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "F73F83DCABE0AA42E465E3CF1499AF37"
- }
- "isPreview" => 0
- "itemName" => "文明的冲突与世界秩序的重建"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/文明的冲突与世界秩序的重建.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/文明的冲突与世界秩序的重建.epub"
- }
- 143 => {
- "artistName" => "莱考夫"
- "BKAllocatedSize" => 602112
- "BKBookType" => "epub"
- "BKDisplayName" => "我们赖以生存的隐喻-z708g"
- "BKGeneratedItemId" => "1B14A96085DE60DA19B67506E243400F"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "1B14A96085DE60DA19B67506E243400F"
- }
- "isPreview" => 0
- "itemName" => "我们赖以生存的隐喻-z708g"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/我们赖以生存的隐喻-z708g.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/我们赖以生存的隐喻-z708g.epub"
- }
- 144 => {
- "artistName" => "[美]侯世达"
- "BKAllocatedSize" => 3624960
- "BKBookType" => "epub"
- "BKDisplayName" => "我是谁或什么一部心与自我的辩证奇想集关于我的终极哲学问题嬉皮年代的思想群峰 本书可能烧掉你的脑子但有办法帮你复活无数个 理想国出品"
- "BKGeneratedItemId" => "D40B8F087D5C568C7A5FB1778B2BC5F6"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "D40B8F087D5C568C7A5FB1778B2BC5F6"
- }
- "isPreview" => 0
- "itemName" => "我是谁,或什么:一部心与自我的辩证奇想集(关于“我”的终极哲学问题,嬉皮年代的思想群峰 本书可能烧掉你的脑子,但有办法帮你复活(无数个)…… 理想国出品)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/我是谁或什么一部心与自我的辩证奇想集关于我的终极哲学问题嬉皮年代的思想群峰 本书可能烧掉你的脑子但有办法帮你复活无数个 理想国出品.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/我是谁或什么一部心与自我的辩证奇想集关于我的终极哲学问题嬉皮年代的思想群峰 本书可能烧掉你的脑子但有办法帮你复活无数个 理想国出品.epub"
- }
- 145 => {
- "artistName" => "[美]塔米姆·安萨利"
- "BKAllocatedSize" => 2183168
- "BKBookType" => "epub"
- "BKDisplayName" => "无规则游戏阿富汗屡被中断的历史本书获美国北加州图书奖提名"
- "BKGeneratedItemId" => "1D56DDBF92F1170B65B8A74A47033E07"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "1D56DDBF92F1170B65B8A74A47033E07"
- }
- "isPreview" => 0
- "itemName" => "无规则游戏:阿富汗屡被中断的历史(本书获“美国北加州图书奖”提名)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/无规则游戏阿富汗屡被中断的历史本书获美国北加州图书奖提名.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/无规则游戏阿富汗屡被中断的历史本书获美国北加州图书奖提名.epub"
- }
- 146 => {
- "artistName" => "以各书作者为准 ·上亚马逊网站查找(Kostiantyn)"
- "BKAllocatedSize" => 1257472
- "BKBookType" => "epub"
- "BKDisplayName" => "无限记忆力如何在两周内记住更多知识改善注意力并培养出过目不忘的记忆力 +附21种实用的记忆力提升练习和技巧"
- "BKGeneratedItemId" => "261C4CEA8E9AE783DF5EFC48DA52824B"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "261C4CEA8E9AE783DF5EFC48DA52824B"
- }
- "isPreview" => 0
- "itemName" => "无限记忆力(如何在两周内记住更多知识,改善注意力,并培养出过目不忘的记忆力。 +附:21种实用的记忆力提升练习和技巧)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/无限记忆力如何在两周内记住更多知识改善注意力并培养出过目不忘的记忆力 +附21种实用的记忆力提升练习和技巧.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/无限记忆力如何在两周内记住更多知识改善注意力并培养出过目不忘的记忆力 +附21种实用的记忆力提升练习和技巧.epub"
- }
- 147 => {
- "BKAllocatedSize" => 2736128
- "BKBookType" => "pdf"
- "BKDisplayName" => "五百年来第一人冯友兰谈王阳明"
- "BKGeneratedItemId" => "4E43AB091094BB079D87414BBF7836DB"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "BKIsLocked" => 0
- "itemName" => "五百年来第一人:冯友兰谈王阳明"
- "modificationDate" => 2023-12-29 10:47:25 +0000
- "pageCount" => 5
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/五百年来第一人冯友兰谈王阳明.pdf"
- "releaseDate" => 2023-12-29 00:58:19 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/五百年来第一人冯友兰谈王阳明.pdf"
- }
- 148 => {
- "artistName" => "稻垣惠美子(Emiko Inagaki)"
- "BKAllocatedSize" => 606208
- "BKBookType" => "epub"
- "BKDisplayName" => "五十岁我辞职了-88280"
- "BKGeneratedItemId" => "759FCB229C2E416D2DE03C6E727359B2"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "759FCB229C2E416D2DE03C6E727359B2"
- }
- "genre" => "-SanQiu.mobi"
- "isPreview" => 0
- "itemName" => "五十岁,我辞职了-88280"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/五十岁我辞职了-88280.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/五十岁我辞职了-88280.epub"
- }
- 149 => {
- "artistName" => "喬納.戈德堡(Jonah Goldberg)"
- "BKAllocatedSize" => 3887104
- "BKBookType" => "epub"
- "BKDisplayName" => "西方的自殺人性本能如何反噬西方文明-7hbhl"
- "BKGeneratedItemId" => "19634A4AA52E6CD4D02FB3EEB28D255E"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "19634A4AA52E6CD4D02FB3EEB28D255E"
- }
- "isPreview" => 0
- "itemName" => "西方的自殺:人性本能如何反噬西方文明?-7hbhl"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/西方的自殺人性本能如何反噬西方文明-7hbhl.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/西方的自殺人性本能如何反噬西方文明-7hbhl.epub"
- }
- 150 => {
- "artistName" => "(美)布里特·本尼特"
- "BKAllocatedSize" => 782336
- "BKBookType" => "epub"
- "BKDisplayName" => "消失的另一半-xser9"
- "BKGeneratedItemId" => "BF0B285153EE8C52BEAB355A54D01A33"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "BF0B285153EE8C52BEAB355A54D01A33"
- }
- "isPreview" => 0
- "itemName" => "消失的另一半-xser9"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/消失的另一半-xser9.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/消失的另一半-xser9.epub"
- }
- 151 => {
- "BKAllocatedSize" => 118784
- "BKBookType" => "pdf"
- "BKDisplayName" => "小窗幽记 - Notebook"
- "BKGeneratedItemId" => "9388DDA76C3358F61BAA001BB39B742A"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "BKIsLocked" => 0
- "itemName" => "小窗幽记 - Notebook"
- "modificationDate" => 2024-01-26 01:07:54 +0000
- "pageCount" => 1
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/小窗幽记 - Notebook.pdf"
- "releaseDate" => 2024-01-26 01:07:54 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/小窗幽记 - Notebook.pdf"
- }
- 152 => {
- "artistName" => "俞剑华 著"
- "BKAllocatedSize" => 4775936
- "BKBookType" => "epub"
- "BKDisplayName" => "小书馆书法指南"
- "BKGeneratedItemId" => "0871F1C38E30EACA3761321C7E58F5E0"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "0871F1C38E30EACA3761321C7E58F5E0"
- }
- "isPreview" => 0
- "itemName" => "小书馆:书法指南"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/小书馆书法指南.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/小书馆书法指南.epub"
- }
- 153 => {
- "artistName" => "Unknown"
- "BKAllocatedSize" => 1785856
- "BKBookType" => "epub"
- "BKDisplayName" => "心理学讲义"
- "BKGeneratedItemId" => "913F0579AB9745002DF157438557C4EC"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "913F0579AB9745002DF157438557C4EC"
- }
- "genre" => "微foufoushus"
- "isPreview" => 0
- "itemName" => "心理学讲义"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/心理学讲义.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/心理学讲义.epub"
- }
- 154 => {
- "artistName" => "熊逸"
- "BKAllocatedSize" => 8880128
- "BKBookType" => "epub"
- "BKDisplayName" => "熊逸书院套装共8册"
- "BKGeneratedItemId" => "3A6D09CD1E0A0CA07C663CB74A2893C8"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "3A6D09CD1E0A0CA07C663CB74A2893C8"
- }
- "bookDescription" => "熊逸书院(套装共8册)(周易江湖)
"
- "isPreview" => 0
- "itemName" => "熊逸书院(套装共8册)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/熊逸书院套装共8册.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/熊逸书院套装共8册.epub"
- }
- 155 => {
- "artistName" => "乐天无极"
- "BKAllocatedSize" => 2428928
- "BKBookType" => "epub"
- "BKDisplayName" => "修辭的陷阱為何政治包裝讓民主社會無法正確理解世界"
- "BKGeneratedItemId" => "CB9A605DCD687C4FA544DD4BCCD00D43"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "CB9A605DCD687C4FA544DD4BCCD00D43"
- }
- "isPreview" => 0
- "itemName" => "修辭的陷阱:為何政治包裝讓民主社會無法正確理解世界?"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/修辭的陷阱為何政治包裝讓民主社會無法正確理解世界.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/修辭的陷阱為何政治包裝讓民主社會無法正確理解世界.epub"
- }
- 156 => {
- "artistName" => "徐远"
- "BKAllocatedSize" => 12775424
- "BKBookType" => "epub"
- "BKDisplayName" => "徐远的投资课投资原则与实战方法"
- "BKGeneratedItemId" => "80C6D9C00F75CE609862BFD225CA6156"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "80C6D9C00F75CE609862BFD225CA6156"
- }
- "isPreview" => 0
- "itemName" => "徐远的投资课:投资原则与实战方法"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/徐远的投资课投资原则与实战方法.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/徐远的投资课投资原则与实战方法.epub"
- }
- 157 => {
- "artistName" => "薛兆丰"
- "BKAllocatedSize" => 6959104
- "BKBookType" => "epub"
- "BKDisplayName" => "薛兆丰经济学讲义"
- "BKGeneratedItemId" => "852EE2AF5C1664BC0FB20BAB21BB99EB"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "852EE2AF5C1664BC0FB20BAB21BB99EB"
- }
- "isPreview" => 0
- "itemName" => "薛兆丰经济学讲义"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/薛兆丰经济学讲义.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/薛兆丰经济学讲义.epub"
- }
- 158 => {
- "artistName" => "王安忆"
- "BKAllocatedSize" => 1351680
- "BKBookType" => "epub"
- "BKDisplayName" => "一把刀千个字茅盾文学奖获奖作家王安忆全新长篇登顶收获长篇小说榜人民文学出版社倾力打造"
- "BKGeneratedItemId" => "B08C41B0848A7ADD102B7DD63FCFF1FD"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "B08C41B0848A7ADD102B7DD63FCFF1FD"
- }
- "isPreview" => 0
- "itemName" => "一把刀,千个字(茅盾文学奖获奖作家王安忆全新长篇;登顶《收获》长篇小说榜;人民文学出版社倾力打造)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/一把刀千个字茅盾文学奖获奖作家王安忆全新长篇登顶收获长篇小说榜人民文学出版社倾力打造.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/一把刀千个字茅盾文学奖获奖作家王安忆全新长篇登顶收获长篇小说榜人民文学出版社倾力打造.epub"
- }
- 159 => {
- "artistName" => "约瑟夫•海勒"
- "BKAllocatedSize" => 1495040
- "BKBookType" => "epub"
- "BKDisplayName" => "一个中年男子的苦闷____美约瑟夫海勒__-yynot"
- "BKGeneratedItemId" => "689DF68654C2789F3C967B246B791460"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "689DF68654C2789F3C967B246B791460"
- }
- "isPreview" => 0
- "itemName" => "一个中年男子的苦闷____[美]约瑟夫·海勒__-yynot"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/一个中年男子的苦闷____美约瑟夫海勒__-yynot.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/一个中年男子的苦闷____美约瑟夫海勒__-yynot.epub"
- }
- 160 => {
- "artistName" => "瑪那熊(陳家維)"
- "BKAllocatedSize" => 4255744
- "BKBookType" => "epub"
- "BKDisplayName" => "一開口撩人又聊心-s75f7"
- "BKGeneratedItemId" => "4944B72FAD747BAC2CB936F82C287D61"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "4944B72FAD747BAC2CB936F82C287D61"
- }
- "isPreview" => 0
- "itemName" => "一開口撩人又聊心-s75f7"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/一開口撩人又聊心-s75f7.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/一開口撩人又聊心-s75f7.epub"
- }
- 161 => {
- "artistName" => "莫提默·J.艾德勒"
- "BKAllocatedSize" => 1236992
- "BKBookType" => "epub"
- "BKDisplayName" => "一堂终身哲学课回答一生必然遇到的20个人生难题"
- "BKGeneratedItemId" => "6381E983671F8E49E9A6F15D75F224C4"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "6381E983671F8E49E9A6F15D75F224C4"
- }
- "genre" => "一堂终身哲学课:回答一生必然遇到的20个人生难题"
- "isPreview" => 0
- "itemName" => "一堂终身哲学课:回答一生必然遇到的20个人生难题"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/一堂终身哲学课回答一生必然遇到的20个人生难题.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/一堂终身哲学课回答一生必然遇到的20个人生难题.epub"
- }
- 162 => {
- "artistName" => "勞拉.席科爾(Laura Secor)"
- "BKAllocatedSize" => 1794048
- "BKBookType" => "epub"
- "BKDisplayName" => "伊朗的靈魂-yk1vy"
- "BKGeneratedItemId" => "096D9219E9935811CE24C7CA0752FC11"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "096D9219E9935811CE24C7CA0752FC11"
- }
- "isPreview" => 0
- "itemName" => "伊朗的靈魂-yk1vy"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/伊朗的靈魂-yk1vy.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/伊朗的靈魂-yk1vy.epub"
- }
- 163 => {
- "artistName" => "查爾斯.麥凱"
- "BKAllocatedSize" => 1945600
- "BKBookType" => "epub"
- "BKDisplayName" => "異常流行幻象與群眾瘋狂"
- "BKGeneratedItemId" => "087B61D7959723CFAA5FE375D5E987CB"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "087B61D7959723CFAA5FE375D5E987CB"
- }
- "isPreview" => 0
- "itemName" => "異常流行幻象與群眾瘋狂"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/異常流行幻象與群眾瘋狂.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/異常流行幻象與群眾瘋狂.epub"
- }
- 164 => {
- "artistName" => "安東尼歐.達馬吉歐(Antonio Damasio)"
- "BKAllocatedSize" => 2330624
- "BKBookType" => "epub"
- "BKDisplayName" => "意識究竟從何而來改版從神經科學看人類心智與自我的演化"
- "BKGeneratedItemId" => "4806CD8B75AB7DDDFABC78EB12060C0A"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "4806CD8B75AB7DDDFABC78EB12060C0A"
- }
- "bookDescription" => "你知道動物、昆蟲,甚或肉眼瞧不見的細菌也擁有意識?
是什麼讓人類意識與其他生物的意識有所不同?
且看神經科學家達馬吉歐從演化的角度,切入這一科學界尚爭議不休的神祕課題!
日本科學大獎本田獎得主達馬吉歐從事與腦部運作相關的研究及寫作已有三十餘年,其作品向以融合科學及人文主義著稱。長久以來,科學家一直認為「意識與身體某程度是分離的」,但他對此觀點提出質疑,並以令人信服的科學證據,指出意識乃始於生物體所創造出的一種生物過程。
除了從內省觀、行為觀及神經觀等三種傳統觀點研究人類心智,達馬吉歐也引進演化觀,為看待及講述意識心智史的方式帶來根本變革。他也提出與感覺的起源和多樣性有關的大膽假設,此假設在其所提出的意識之生物學建構的架構中,扮演了關鍵角色:感覺是以身體和腦部網絡的幾近融合為基礎,最先浮現於由來已久、功能簡要的腦幹,而非近代發現的大腦皮質。"
- "genre" => "應用科學"
- "isPreview" => 0
- "itemName" => "意識究竟從何而來?(改版):從神經科學看人類心智與自我的演化"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/意識究竟從何而來改版從神經科學看人類心智與自我的演化.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/意識究竟從何而來改版從神經科學看人類心智與自我的演化.epub"
- }
- 165 => {
- "artistName" => "舒梦兰"
- "BKAllocatedSize" => 1036288
- "BKBookType" => "epub"
- "BKDisplayName" => "游山日记精 林语堂推许为日记模范看古代文人如何在庐山度过一百天中华书局出品"
- "BKGeneratedItemId" => "39D92C790D94B6F5E08EFE614C8DCDB7"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "39D92C790D94B6F5E08EFE614C8DCDB7"
- }
- "genre" => "-SanQiu.CC"
- "isPreview" => 0
- "itemName" => "游山日记(精) 林语堂推许为“日记模范”,看古代文人如何在庐山度过一百天【中华书局出品】"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/游山日记精 林语堂推许为日记模范看古代文人如何在庐山度过一百天中华书局出品.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/游山日记精 林语堂推许为日记模范看古代文人如何在庐山度过一百天中华书局出品.epub"
- }
- 166 => {
- "artistName" => "白谦慎"
- "BKAllocatedSize" => 10702848
- "BKBookType" => "epub"
- "BKDisplayName" => "与古为徒和娟娟发屋-5cx29"
- "BKGeneratedItemId" => "2AE3E237D59AE81935C8AC37F261EE91"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "2AE3E237D59AE81935C8AC37F261EE91"
- }
- "isPreview" => 0
- "itemName" => "与古为徒和娟娟发屋-5cx29"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/与古为徒和娟娟发屋-5cx29.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/与古为徒和娟娟发屋-5cx29.epub"
- }
- 167 => {
- "artistName" => "[英]蒂姆·惠特马"
- "BKAllocatedSize" => 1363968
- "BKBookType" => "epub"
- "BKDisplayName" => "与神作战古代世界的无神论"
- "BKGeneratedItemId" => "31AD622E4741F895F8CEDBA0F0A28CF9"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "31AD622E4741F895F8CEDBA0F0A28CF9"
- }
- "isPreview" => 0
- "itemName" => "与神作战:古代世界的无神论"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/与神作战古代世界的无神论.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/与神作战古代世界的无神论.epub"
- }
- 168 => {
- "artistName" => "瑞·达利欧"
- "BKAllocatedSize" => 3051520
- "BKBookType" => "epub"
- "BKDisplayName" => "原则实践版-ff1qv"
- "BKGeneratedItemId" => "92D8FF36FFCF959CAB2AA2E921F56827"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "92D8FF36FFCF959CAB2AA2E921F56827"
- }
- "genre" => "天浪书屋"
- "isPreview" => 0
- "itemName" => "原则(实践版)-ff1qv"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/原则实践版-ff1qv.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/原则实践版-ff1qv.epub"
- }
- 169 => {
- "artistName" => "瑞·达利欧"
- "BKAllocatedSize" => 16093184
- "BKBookType" => "epub"
- "BKDisplayName" => "原则系列共2册-xuurn"
- "BKGeneratedItemId" => "A12DBEFA1A05844837B765C102607DF9"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "A12DBEFA1A05844837B765C102607DF9"
- }
- "isPreview" => 0
- "itemName" => "原则系列(共2册)-xuurn"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/原则系列共2册-xuurn.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/原则系列共2册-xuurn.epub"
- }
- 170 => {
- "artistName" => "六神磊磊·读金庸团队著"
- "BKAllocatedSize" => 7299072
- "BKBookType" => "epub"
- "BKDisplayName" => "越过人生的刀锋-yuiae"
- "BKGeneratedItemId" => "CB4C80738A7C277C6C8859C39B323D18"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "CB4C80738A7C277C6C8859C39B323D18"
- }
- "genre" => "天浪书屋"
- "isPreview" => 0
- "itemName" => "越过人生的刀锋-yuiae"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/越过人生的刀锋-yuiae.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/越过人生的刀锋-yuiae.epub"
- }
- 171 => {
- "artistName" => "Unknown"
- "BKAllocatedSize" => 544768
- "BKBookType" => "epub"
- "BKDisplayName" => "再审洞穴奇案-9qkzh"
- "BKGeneratedItemId" => "502F2450B66A1B39D94B577C9A20783E"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "502F2450B66A1B39D94B577C9A20783E"
- }
- "isPreview" => 0
- "itemName" => "再审洞穴奇案-9qkzh"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/再审洞穴奇案-9qkzh.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/再审洞穴奇案-9qkzh.epub"
- }
- 172 => {
- "artistName" => "玛丽安娜·马祖卡托"
- "BKAllocatedSize" => 1609728
- "BKBookType" => "epub"
- "BKDisplayName" => "增长的悖论"
- "BKGeneratedItemId" => "62F17F2821ECF6406CBF7ECA6EA908C8"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "62F17F2821ECF6406CBF7ECA6EA908C8"
- }
- "isPreview" => 0
- "itemName" => "增长的悖论"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/增长的悖论.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/增长的悖论.epub"
- }
- 173 => {
- "artistName" => "陈赣"
- "BKAllocatedSize" => 3719168
- "BKBookType" => "pdf"
- "BKDisplayName" => "长安和洛阳在经济地形上有许多相似之处哪个更适合做首都"
- "BKGeneratedItemId" => "CC5171D869FF630C8305EF083790F23E"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "BKIsLocked" => 0
- "itemName" => "长安和洛阳在经济、地形上有许多相似之处,哪个更适合做首都"
- "modificationDate" => 2024-04-29 13:03:31 +0000
- "pageCount" => 8
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/长安和洛阳在经济地形上有许多相似之处哪个更适合做首都.pdf"
- "releaseDate" => 2024-04-29 13:03:31 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/长安和洛阳在经济地形上有许多相似之处哪个更适合做首都.pdf"
- }
- 174 => {
- "artistName" => "林欣浩"
- "BKAllocatedSize" => 1019904
- "BKBookType" => "epub"
- "BKDisplayName" => "哲学家们都干了些什么2015年全新修订版"
- "BKGeneratedItemId" => "EA0DFFFCE105C0DB68C2C070EBD7197A"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "EA0DFFFCE105C0DB68C2C070EBD7197A"
- }
- "isPreview" => 0
- "itemName" => "哲学家们都干了些什么?(2015年全新修订版)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/哲学家们都干了些什么2015年全新修订版.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/哲学家们都干了些什么2015年全新修订版.epub"
- }
- 175 => {
- "artistName" => "安德烈·孔特—斯蓬维尔"
- "BKAllocatedSize" => 475136
- "BKBookType" => "epub"
- "BKDisplayName" => "哲学小引"
- "BKGeneratedItemId" => "7E2FCA1B910E175AFE8B0E40A9E7785D"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "7E2FCA1B910E175AFE8B0E40A9E7785D"
- }
- "isPreview" => 0
- "itemName" => "哲学小引"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/哲学小引.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/哲学小引.epub"
- }
- 176 => {
- "artistName" => "让-保罗·萨特(Jean-Paul Sartre)"
- "BKAllocatedSize" => 5763072
- "BKBookType" => "epub"
- "BKDisplayName" => "哲学与人20世纪西方哲学精选套装共5本"
- "BKGeneratedItemId" => "C196DF8EFB8CAFFA44A263CC7EB620C1"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "C196DF8EFB8CAFFA44A263CC7EB620C1"
- }
- "isPreview" => 0
- "itemName" => "哲学与人:20世纪西方哲学精选(套装共5本)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/哲学与人20世纪西方哲学精选套装共5本.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/哲学与人20世纪西方哲学精选套装共5本.epub"
- }
- 177 => {
- "artistName" => "刘浦江"
- "BKAllocatedSize" => 3174400
- "BKBookType" => "epub"
- "BKDisplayName" => "正统与华夷中国传统政治文化研究--北京大学中国古代史研究中心丛刊"
- "BKGeneratedItemId" => "5CEBFED8383FF3F6FBF35A973FA4E841"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "5CEBFED8383FF3F6FBF35A973FA4E841"
- }
- "isPreview" => 0
- "itemName" => "正统与华夷:中国传统政治文化研究--北京大学中国古代史研究中心丛刊"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/正统与华夷中国传统政治文化研究--北京大学中国古代史研究中心丛刊.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/正统与华夷中国传统政治文化研究--北京大学中国古代史研究中心丛刊.epub"
- }
- 178 => {
- "artistName" => "李石"
- "BKAllocatedSize" => 913408
- "BKBookType" => "epub"
- "BKDisplayName" => "正义论讲义"
- "BKGeneratedItemId" => "C490B6A43896FBE0B0043B5BAD884D91"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "C490B6A43896FBE0B0043B5BAD884D91"
- }
- "bookDescription" => "
-
2021年是美国当代最著名的哲学家罗尔斯之最著名的著作《正义论》出版50周年。自出版以来,《正义论》不仅在西方学界引发了巨大的反响,而且在世界范围内广泛传播。《正义论》一版再版,并被不断地翻译成世界各国的语言,长效树本书中文版由我社出版,出版以来也受到广大读者的追捧。《正义论》是罗尔斯最著名也是最重要的著作。然而,这本书非常难懂,即使对于专业的哲学研究者,阅读此书也并非一件轻松愉快的事。《导读》一书的作者李石副教授从2012年开始在中国人民大学开设全校选修的“《正义论》原典选读”课程。此课程一经开设便吸引了各专业许多学生,年年爆满。2020年3月,疫情肆虐,李老师将“《正义论》原典选读课程”搬到网络讲授,引发各方关注,在学界产生了巨大影响。在罗尔斯《正义论》出版50周年之际,对于一本世人并不完全理解的、活着的经典,一部导读性的著作显得尤为必要,《正义论》原著一直由我社出版,这本导论如果由我社出版,与原著可以相得益彰。
"
- "genre" => "天浪书屋"
- "isPreview" => 0
- "itemName" => "《正义论》讲义"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/正义论讲义.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/正义论讲义.epub"
- }
- 179 => {
- "artistName" => "郑国威"
- "BKAllocatedSize" => 1146880
- "BKBookType" => "epub"
- "BKDisplayName" => "知识内容写作课"
- "BKGeneratedItemId" => "D8F7F321F098F8C95C52E01E8A1A3C86"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "D8F7F321F098F8C95C52E01E8A1A3C86"
- }
- "isPreview" => 0
- "itemName" => "知识内容写作课"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/知识内容写作课.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/知识内容写作课.epub"
- }
- 180 => {
- "artistName" => "郑永年"
- "BKAllocatedSize" => 2883584
- "BKBookType" => "epub"
- "BKDisplayName" => "制内市场中国国家主导型政治经济学中国问题专家高层智库郑永年权威解读中国经济2020年如何实现超预期增长突破百万亿元大关"
- "BKGeneratedItemId" => "E3A1C67B26E2BE6382F0808C4F77E13C"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "E3A1C67B26E2BE6382F0808C4F77E13C"
- }
- "isPreview" => 0
- "itemName" => "制内市场:中国国家主导型政治经济学(中国问题专家、高层智库郑永年权威解读,中国经济2020年如何实现超预期增长,突破百万亿元大关)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/制内市场中国国家主导型政治经济学中国问题专家高层智库郑永年权威解读中国经济2020年如何实现超预期增长突破百万亿元大关.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/制内市场中国国家主导型政治经济学中国问题专家高层智库郑永年权威解读中国经济2020年如何实现超预期增长突破百万亿元大关.epub"
- }
- 181 => {
- "artistName" => "兰小欢"
- "BKAllocatedSize" => 3452928
- "BKBookType" => "epub"
- "BKDisplayName" => "置身事内-0jr94"
- "BKGeneratedItemId" => "BC40818E4FFAF5FADDBE4937C1B2DEE0"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "BC40818E4FFAF5FADDBE4937C1B2DEE0"
- }
- "isPreview" => 0
- "itemName" => "置身事内-0jr94"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/置身事内-0jr94.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/置身事内-0jr94.epub"
- }
- 182 => {
- "artistName" => "郑永年"
- "BKAllocatedSize" => 954368
- "BKBookType" => "epub"
- "BKDisplayName" => "中国改革三步走"
- "BKGeneratedItemId" => "D720F12A26399CB3805CFE81F71CF5B3"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424269
- "book-info" => {
- "package-file-hash" => "D720F12A26399CB3805CFE81F71CF5B3"
- }
- "isPreview" => 0
- "itemName" => "中国改革三步走"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国改革三步走.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国改革三步走.epub"
- }
- 183 => {
- "artistName" => "彭信威"
- "BKAllocatedSize" => 18718720
- "BKBookType" => "epub"
- "BKDisplayName" => "中国货币史校订版豆瓣9"
- "BKGeneratedItemId" => "617334E00C1AC68DD712E0900161ECC0"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "617334E00C1AC68DD712E0900161ECC0"
- }
- "isPreview" => 0
- "itemName" => "中国货币史(校订版)豆瓣9.5分,好评如潮!"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国货币史校订版豆瓣9.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国货币史校订版豆瓣9.epub"
- }
- 184 => {
- "artistName" => "陈桂棣 春桃"
- "BKAllocatedSize" => 708608
- "BKBookType" => "epub"
- "BKDisplayName" => "中国农民调查"
- "BKGeneratedItemId" => "74E9F428D3DC18CEE5DDD76C2A26CA53"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "74E9F428D3DC18CEE5DDD76C2A26CA53"
- }
- "isPreview" => 0
- "itemName" => "中国农民调查"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国农民调查.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国农民调查.epub"
- }
- 185 => {
- "artistName" => "胡小石"
- "BKAllocatedSize" => 1241088
- "BKBookType" => "epub"
- "BKDisplayName" => "中国文学史讲稿学苑奇峰胡小石先生中国文学史力作曾昭燏罗常培周勋初程章灿等一致推荐的一代宗师"
- "BKGeneratedItemId" => "2C3FD7785740C51382BCFA71912E1A10"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "2C3FD7785740C51382BCFA71912E1A10"
- }
- "bookDescription" => "中国虽说是一个富有文学宝藏的古国,文学作品的数量颇不在少数,而且各体皆称完备。每代都有新文体产生,但是将历代文学的源流变迁,明白地公正地叙述出来,而能具有文学史价值一类 的书,中国人自己所出的,反在日本人及西洋人之后。"
- "genre" => "-SanQiu.CC"
- "isPreview" => 0
- "itemName" => "中国文学史讲稿(学苑奇峰胡小石先生中国文学史力作,曾昭燏、罗常培、周勋初、程章灿等一致推荐的一代宗师)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国文学史讲稿学苑奇峰胡小石先生中国文学史力作曾昭燏罗常培周勋初程章灿等一致推荐的一代宗师.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国文学史讲稿学苑奇峰胡小石先生中国文学史力作曾昭燏罗常培周勋初程章灿等一致推荐的一代宗师.epub"
- }
- 186 => {
- "BKAllocatedSize" => 5812224
- "BKBookType" => "pdf"
- "BKDisplayName" => "中国哲学简史 - Notebook"
- "BKGeneratedItemId" => "61C2FBA28B26FF48A7509820E2F3A588"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "BKIsLocked" => 0
- "itemName" => "中国哲学简史 - Notebook"
- "modificationDate" => 2024-01-08 10:41:08 +0000
- "pageCount" => 26
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国哲学简史 - Notebook.pdf"
- "releaseDate" => 2024-01-08 10:41:08 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国哲学简史 - Notebook.pdf"
- }
- 187 => {
- "artistName" => "戴维·弗罗姆金"
- "BKAllocatedSize" => 6131712
- "BKBookType" => "epub"
- "BKDisplayName" => "终结所有和平的和平--奥斯曼帝国的衰亡与现代中东的形成-onka3"
- "BKGeneratedItemId" => "FA5357DA58D9A5F6EEA9DA16F33FB420"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "FA5357DA58D9A5F6EEA9DA16F33FB420"
- }
- "isPreview" => 0
- "itemName" => "终结所有和平的和平--奥斯曼帝国的衰亡与现代中东的形成-onka3"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/终结所有和平的和平--奥斯曼帝国的衰亡与现代中东的形成-onka3.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/终结所有和平的和平--奥斯曼帝国的衰亡与现代中东的形成-onka3.epub"
- }
- 188 => {
- "artistName" => "陆林叶"
- "BKAllocatedSize" => 1425408
- "BKBookType" => "epub"
- "BKDisplayName" => "终身写作让人生有更多可能"
- "BKGeneratedItemId" => "48B87DB94C2DA002E96F8C5701CB1880"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 735958488
- "book-info" => {
- "cover-image-hash" => "F794C518E07A43A905B86493DD04444F"
- "cover-image-path" => "OEBPS/Images/cover.jpg"
- "mime-type" => "application/epub+zip"
- "package-file-hash" => "48B87DB94C2DA002E96F8C5701CB1880"
- "publisher-unique-id" => "9787302567868"
- "unique-id" => 7931834237449148785
- "update-level" => 2
- }
- "isPreview" => 0
- "itemName" => "终身写作:让人生有更多可能"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/终身写作让人生有更多可能.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/终身写作让人生有更多可能.epub"
- "updateDate" => 2024-04-28 00:54:48 +0000
- }
- 189 => {
- "artistName" => "熊逸"
- "BKAllocatedSize" => 7114752
- "BKBookType" => "epub"
- "BKDisplayName" => "周易江湖"
- "BKGeneratedItemId" => "50F8404D998D28A7DDEF62B8A7A2F60F"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "50F8404D998D28A7DDEF62B8A7A2F60F"
- }
- "isPreview" => 0
- "itemName" => "周易江湖"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/周易江湖.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/周易江湖.epub"
- }
- 190 => {
- "artistName" => "南怀瑾、徐芹庭"
- "BKAllocatedSize" => 643072
- "BKBookType" => "epub"
- "BKDisplayName" => "周易今注今译-qex17"
- "BKGeneratedItemId" => "9952411FC214B43CBDEAEFF55B7BB43E"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "9952411FC214B43CBDEAEFF55B7BB43E"
- }
- "isPreview" => 0
- "itemName" => "周易今注今译-qex17"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/周易今注今译-qex17.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/周易今注今译-qex17.epub"
- }
- 191 => {
- "artistName" => "林欣浩"
- "BKAllocatedSize" => 3493888
- "BKBookType" => "epub"
- "BKDisplayName" => "诸子百家闪耀时 豆瓣大神林欣浩首部中国哲学史力作"
- "BKGeneratedItemId" => "BE20C5B60C69A3C9CD7432B4664011A4"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "BE20C5B60C69A3C9CD7432B4664011A4"
- }
- "isPreview" => 0
- "itemName" => "诸子百家闪耀时 (豆瓣“大神”林欣浩首部中国哲学史力作)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/诸子百家闪耀时 豆瓣大神林欣浩首部中国哲学史力作.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/诸子百家闪耀时 豆瓣大神林欣浩首部中国哲学史力作.epub"
- }
- 192 => {
- "artistName" => "彼得·霍林斯"
- "BKAllocatedSize" => 675840
- "BKBookType" => "epub"
- "BKDisplayName" => "自律一种可以养成的习惯-zfof9"
- "BKGeneratedItemId" => "A96310EFF8F2B058EAB6DDD83F4FF1D2"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "A96310EFF8F2B058EAB6DDD83F4FF1D2"
- }
- "genre" => "-SanQiu.mobi"
- "isPreview" => 0
- "itemName" => "自律,一种可以养成的习惯-zfof9"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/自律一种可以养成的习惯-zfof9.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/自律一种可以养成的习惯-zfof9.epub"
- }
- 193 => {
- "artistName" => "[英国]以赛亚·伯林"
- "BKAllocatedSize" => 589824
- "BKBookType" => "epub"
- "BKDisplayName" => "自由及其背叛人类自由的六个敌人-3188y"
- "BKGeneratedItemId" => "4D74BE8F26103A1D49372DFCF04605B1"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "4D74BE8F26103A1D49372DFCF04605B1"
- }
- "isPreview" => 0
- "itemName" => "自由及其背叛:人类自由的六个敌人"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/自由及其背叛人类自由的六个敌人-3188y.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/自由及其背叛人类自由的六个敌人-3188y.epub"
- }
- 194 => {
- "artistName" => "CNKI"
- "BKAllocatedSize" => 540672
- "BKBookType" => "pdf"
- "BKDisplayName" => "宗教与2020年美国大选"
- "BKGeneratedItemId" => "F7C7A3646E41499403AB804A56A19D55"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "BKIsLocked" => 0
- "itemName" => "宗教与2020年美国大选"
- "pageCount" => 9
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/宗教与2020年美国大选.pdf"
- "releaseDate" => 2021-09-30 21:05:18 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/宗教与2020年美国大选.pdf"
- }
- 195 => {
- "BKAllocatedSize" => 18087936
- "BKBookType" => "pdf"
- "BKDisplayName" => "足球经济学英"
- "BKGeneratedItemId" => "8F0E8A3BE62C3BB50F65E55E7E6B4D50"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "BKIsLocked" => 0
- "itemName" => "足球经济学(英)"
- "modificationDate" => 2024-03-24 14:25:44 +0000
- "pageCount" => 252
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/足球经济学英.pdf"
- "releaseDate" => 2012-06-16 16:56:17 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/足球经济学英.pdf"
- }
- 196 => {
- "artistName" => "陀思妥耶夫斯基"
- "BKAllocatedSize" => 1871872
- "BKBookType" => "epub"
- "BKDisplayName" => "罪与罚"
- "BKGeneratedItemId" => "CB8A42554E8AA86839B1FB7188464F13"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "CB8A42554E8AA86839B1FB7188464F13"
- }
- "isPreview" => 0
- "itemName" => "罪与罚"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/罪与罚.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/罪与罚.epub"
- }
- 197 => {
- "artistName" => "克利斯.瑪慕拉"
- "BKAllocatedSize" => 1449984
- "BKBookType" => "epub"
- "BKDisplayName" => "fire致富實踐-n1lnp"
- "BKGeneratedItemId" => "B1CC90B5ADD95DBF033B5272CD051DFE"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "B1CC90B5ADD95DBF033B5272CD051DFE"
- }
- "bookDescription" => "
-
要將人生複利化,你需要掌握致富三大因素── 時間、本金與報酬率 本書從消費儲蓄、理財投資、人生增值技巧著手, Step by Step教你提高本金、強化報酬,加速打造源源不絕的現金流! ★第十屆普洛托斯獎(Plutus Awards)「最佳FIRE podcast」得主 ★全球財務自由者不藏私傳授加速致富的祕訣, 影響全美超過10,000,000人的實戰理財指南! 你是社畜、月光族、小資族、窮忙族或三明治世代嗎? -口袋空空存不到錢? -拼死拼活上班,覺得被工作綁架? -背學貸、車貸、房貸好辛苦? -完全不懂投資,該怎麼開始? -嚮往早早退休享受自由人生,卻不知從何著手? 2016 年,35 歲就成功財務自由的布萊德・巴瑞特,和努力追尋財務自由的喬納森.曼德沙聯手製播「選擇財務自由」podcast,討論如何從不同面向(如投資、節稅、日常消費等等)實踐財務自由,也採訪多位理財達人。該節目在世界各地獲得極大迴響,更創下破千萬下載數的好成績。本書由兩人和另一位財務自由者克利斯.瑪慕拉合著,濃縮podcast的精華成簡單好懂的行動步驟,教你擺脫財務困擾,擁抱理想的富足生活! 透過本書,你將學會創造富足、實踐財務自由的複利心法: .建立終身受用的金錢哲學 .跨領域學習、多方涉獵,投資自己 .成為價值論者,過自己真正想要的生活 .「微FIRE」vs「豐FIRE」的儲蓄心法 .稅務、保險規劃,兼顧理財和保障 .降低花費的80 / 20 法則 .聰明理財的4%法則 .打造穩健獲利的投資組合 實踐財務自由、成為FIRE理財族不代表要極度節儉、擁有超高收入,或有天才般的投資眼光,書中由儲蓄原則、投資心法到加值人生的技巧等,一步一步地幫助讀者打穩FIRE基本功,樂享資產累積的碩果。 作者簡介 克利斯.瑪慕拉 克利斯擔任物理治療師16年半,最後在2017年、41歲時實現財務自由。他撰寫許多關於財務自由、退休議題等文章,請見:CanIRetireYet.com。他的文章也可見於「MarketWatch」、「The Dough Roller」和「Business Insider」等商業網站。 布萊德.巴瑞特 布萊德曾擔任會計師,並於35歲離開公司,展開創業之途,並在不久後便達到財務自由。布萊德對一切都充滿熱情,無論是儲蓄、過得更健康、經營人際關係,或擁有成長心態等。布萊德為「ChooseFI」podcast的共同主持人。 喬納森.曼德沙 「ChooseFI」podcast的共同主持人、熱切的財務自由實踐者。布萊德和喬納森曾受《時代雜誌》、《富比世》、《BBC》、《華爾街日報》等知名媒體報導。 譯者簡介 李靜怡 紐約州立大學媒體相關系所畢業,主要翻譯著作有《超速贏利》、《財富的幾何學》、《重新想像印度:亞洲下一個超級強國的潛力解碼》、《英國下一步:後脫歐之境》、《勞工自主企業:創造經濟民主,挽救崩壞的資本主義與政治民主》、《不流血的革命:素食主義文化史》等。
"
- "genre" => "Investments & Securities"
- "isPreview" => 0
- "itemName" => "fire.致富實踐-n1lnp"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/fire致富實踐-n1lnp.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/fire致富實踐-n1lnp.epub"
- }
- 198 => {
- "artistName" => "朱利安•巴恩斯"
- "BKAllocatedSize" => 823296
- "BKBookType" => "epub"
- "BKDisplayName" => "10½章世界史 巴恩斯作品"
- "BKGeneratedItemId" => "A0B158ADCBAC050A3760D123850C9070"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "A0B158ADCBAC050A3760D123850C9070"
- }
- "isPreview" => 0
- "itemName" => "10½章世界史 (巴恩斯作品)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/10½章世界史 巴恩斯作品.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/10½章世界史 巴恩斯作品.epub"
- }
- 199 => {
- "artistName" => "麦肯齐·沃克"
- "BKAllocatedSize" => 872448
- "BKBookType" => "epub"
- "BKDisplayName" => "21世纪的21位思想家-g703h"
- "BKGeneratedItemId" => "4B3C4B24DB8FD022CA33E606ACEF59E1"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "4B3C4B24DB8FD022CA33E606ACEF59E1"
- }
- "isPreview" => 0
- "itemName" => "21世纪的21位思想家-g703h"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/21世纪的21位思想家-g703h.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/21世纪的21位思想家-g703h.epub"
- }
- 200 => {
- "artistName" => "【英】乔尼·汤姆森;申晨译"
- "BKAllocatedSize" => 1781760
- "BKBookType" => "epub"
- "BKDisplayName" => "3分钟哲学一本关于伟大想法的小书-nqjmr"
- "BKGeneratedItemId" => "8F475E3961E578D8E333B09F0B56D0FC"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "8F475E3961E578D8E333B09F0B56D0FC"
- }
- "isPreview" => 0
- "itemName" => "3分钟哲学:一本关于伟大想法的小书-nqjmr"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/3分钟哲学一本关于伟大想法的小书-nqjmr.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/3分钟哲学一本关于伟大想法的小书-nqjmr.epub"
- }
- 201 => {
- "artistName" => "果麦"
- "BKAllocatedSize" => 1425408
- "BKBookType" => "epub"
- "BKDisplayName" => "50伟大的短篇小说们-2yyi8"
- "BKGeneratedItemId" => "7B9F18C164543FC9BE76EBA95CC745D9"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "7B9F18C164543FC9BE76EBA95CC745D9"
- }
- "isPreview" => 0
- "itemName" => "50:伟大的短篇小说们-2yyi8"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/50伟大的短篇小说们-2yyi8.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/50伟大的短篇小说们-2yyi8.epub"
- }
- 202 => {
- "artistName" => "秦波"
- "BKAllocatedSize" => 823296
- "BKBookType" => "epub"
- "BKDisplayName" => "60问读懂道德经-nvvct"
- "BKGeneratedItemId" => "0B2C157FD5C437FE5D833A517BD38F83"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "0B2C157FD5C437FE5D833A517BD38F83"
- }
- "bookDescription" => "
-
老子的《道德经》被誉为“万经”,是道家、道教的优选经典。从古到今,注解它的书层出不穷,不同的人都能从中得出不同的见解。《道德经》就像一个总纲,虽只有五千言,然微言而大义,似容。 本书旨在探索《道德经》之精微深义。作者从道行于天地,行于社会,行于人三方面入手解读剖析,以当下为背景,纵横古今,以问答形式通解《道德经》全文。全书用60个问题将《道德经》蕴含的哲理融会贯通,同时以独到的解读方式,用直白朴素的语言,并结合《庄子》,提炼出一套完整明了的老庄道学理论体系,贯穿全文始终。
"
- "genre" => "-SanQiu.CC"
- "isPreview" => 0
- "itemName" => "60问读懂道德经-nvvct"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/60问读懂道德经-nvvct.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/60问读懂道德经-nvvct.epub"
- }
- 203 => {
- "artistName" => "阿瑟·米勒(Arthur Miller)"
- "BKAllocatedSize" => 2936832
- "BKBookType" => "epub"
- "BKDisplayName" => "阿瑟米勒戏剧经典-z3usb"
- "BKGeneratedItemId" => "8E77EBD0D0660BB08393B73D38B1EF43"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "8E77EBD0D0660BB08393B73D38B1EF43"
- }
- "isPreview" => 0
- "itemName" => "阿瑟·米勒戏剧经典-z3usb"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/阿瑟米勒戏剧经典-z3usb.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/阿瑟米勒戏剧经典-z3usb.epub"
- }
- 204 => {
- "artistName" => "(美)兰德"
- "BKAllocatedSize" => 4796416
- "BKBookType" => "epub"
- "BKDisplayName" => "阿特拉斯耸耸肩-eymv42"
- "BKGeneratedItemId" => "4D2A63AB99E631B0650873E4370E6EC1"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "4D2A63AB99E631B0650873E4370E6EC1"
- }
- "bookDescription" => "1957年,《阿特拉斯耸耸肩》首次由兰登书屋出版。据说,这部小说当时已被12家出版社退稿,出版以后,恶评如潮但畅销无比,对美国大众的影响仅次于《圣经》,作者也因该书几乎激怒了整个成人世界:父亲、母亲、左派知识分子、自由主义者和保守主义者。他们贬低她:“只有十几岁的青少年醉心于她的学说。”咒骂她:“她患上癌症完全是她在哲学上和精神上犯错的结果。”在政治上,兰德是一个失败者,自由主义者不喜欢她摆出的自我为中心的姿态;保守派不喜欢她的无神论;双方同时都反对她的个人主义。
然而,与青年马克思一样,兰德也是“不怕闪电、不怕霹雳、不怕天空中的惊雷”——或许,安·兰德是美国文学史上最具争议的作家之一,她提倡自私的美德,公开为资本家辩护,而且毫不掩饰她对庞大政府的憎恶。《阿特拉斯耸耸肩》在美国的销售已达千万,被称为“自私圣经”——在书中,与《资本论》对资本的批判一样,她对空想社会主义进行了批驳:在20世纪发动机公司,实行了各尽所能、按需分配的制度,开始人们都欢欣鼓舞,觉得这样就可以人尽其才物尽其用,结果能干的人工作越来越多,懒惰的人的需求越来越多,工厂很快就倒闭了。看来,在对人性的缺点没有充分的了解时,在财富还没有达到无限充裕的时候,空想社会主义的乌托邦显然会给社会带来灾难。
在《阿特拉斯耸耸肩》中,兰德试图解决这个矛盾,在她看来,财富是人类思想力的结晶,妨碍竞争、扼杀创意、执意维护既得垄断利益的资本家是可耻的;而通过自己的创造性劳动赚取的金钱则值得尊重。
作为一部乌托邦小说,《阿特拉斯耸耸肩》描绘了一个由自私而精明的商人、科学家、艺术家等社会精英组成的世外桃源,有着田园诗般的诗意和现实社会中的欲望的满足。在这里,维系着一切的不是道德而是金钱,金钱被视作为崇拜的偶像,是自由交换和公平正义的象征,每个人都是独立的创造者和思考者。小说结尾,由于强者罢工、抛弃了弱者,世界陷入了无边的黑暗,而乌托邦里则是一片和谐幸福。同时,兰德借书中主人公约翰·高尔特之口来说明了她的客观主义哲学:
财富观——财富是人类生活的一种工具,是人类思想力的结晶。当你判断某人德性的时候,请听他对金钱的理解:诅咒金钱的人通过不正当的手段获取金钱,尊敬金钱的人则依自己的本事赚取金钱。金钱是社会美德的气压计,远离告诉你钱是万恶之源的人。
历史观——文明就是一个逐步将个人解放出来的过程。人天生便会思考,让那些叫嚣说人的思想自由在创建工业文明后便毫无用处的吃人者从大学的经济系主任的位置上退下来,让他们拿起弓箭,穿起兽皮。每个独裁者都是神秘论者,每个神秘论者都是潜在的独裁者。
道德观——你生命中的道德的唯一目的是去获得幸福,让自己得到快乐便是他的最高道德目标。“牺牲”就是为了你并不在乎的东西而放弃你所看重的。人的生命是道德的标准,在生命里,快乐是成功的状态,痛苦则通向死亡。正如你不能对大自然进行伪装一样,你同样也不能对人的品格进行假造。武力与头脑是截然对立的;枪声一响,道德无存。
价值观——人类是真正的英雄:以自己的幸福作为生活的道德准则,以实质性的成就作为最高贵的行动,以理性为自己唯一的主宰。人不应该为他人而活,也不应该要求他人为自己而活。思考是人的唯一最根本的美德,其它的一切皆因它而生。自豪就是承认你是自己的最高价值,这和一个人所有的价值一样,需要去赢得。
哲学观——A就是A,一个东西就是它本身。存在是特性,意识是鉴明。存在是存在着的。每个问题都有两面,一面是正确,一面是错误,夹在对与错中间的则是邪恶。
2006年,好莱坞明星安吉妮亚·朱莉爆出希望出演即将拍摄的影片《阿特拉斯耸耸肩》(atlas shrugged),并自称是安·兰德(Ayn Rand,1905-1982)的粉丝,还希望男友布莱恩·匹特出演男主角,顿时吸引了不少眼球,也使得这部在半个世纪前出版的小说又一次回到了公众的视线之中,2007年,这条消息已经得到证实,影片《阿特拉斯耸耸肩》最后确定的男、女主角为布莱恩·匹特、安吉妮亚·朱莉。
对于所有发现了《源泉》,并且就进一步扩展它的思想向我提出许多问题的读者们,我想说,我是在这部小说中对这些问题做出回答,《源泉》只是《耸肩的阿特拉斯神》的序曲而已。
—— 安· 兰德
"
- "genre" => "外国小说"
- "isPreview" => 0
- "itemName" => "阿特拉斯耸耸肩-eymv42"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/阿特拉斯耸耸肩-eymv42.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/阿特拉斯耸耸肩-eymv42.epub"
- }
- 205 => {
- "artistName" => "宋娀 【德】韩炳哲"
- "BKAllocatedSize" => 188416
- "BKBookType" => "epub"
- "BKDisplayName" => "爱欲之死-l3o2v"
- "BKGeneratedItemId" => "17AF0AC3898118ADC24670BE96EA7ED3"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "17AF0AC3898118ADC24670BE96EA7ED3"
- }
- "isPreview" => 0
- "itemName" => "爱欲之死-l3o2v"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/爱欲之死-l3o2v.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/爱欲之死-l3o2v.epub"
- }
- 206 => {
- "artistName" => "熊逸"
- "BKAllocatedSize" => 745472
- "BKBookType" => "epub"
- "BKDisplayName" => "八戒说禅"
- "BKGeneratedItemId" => "F279F3A5834D881A6E51356D78D358E8"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "F279F3A5834D881A6E51356D78D358E8"
- }
- "bookDescription" => " 本文从《坛经》入手,在梳理禅宗思想渊源的时候难免会由禅及佛,涉及印度佛教的学理纷争与中国佛教的传承演变——许多人认为禅宗是完全中国本土化的佛教,其实并不尽然,禅宗的许多思想都可以在印度佛教、乃至印度外道那里找到源头的。连带对一些许多人都知其然的东西——比如“风动幡动”、“空即是色”,也会尽量讲出个所以然来,毕竟这些说法既不是故弄玄虚的文字游戏,也不是不合逻辑的信口空谈,而是有着一些比较复杂的佛学背景的。"
- "isPreview" => 0
- "itemName" => "八戒说禅"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/八戒说禅.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/八戒说禅.epub"
- }
- 207 => {
- "artistName" => "[美]爱德华·阿什福德·李"
- "BKAllocatedSize" => 3354624
- "BKBookType" => "epub"
- "BKDisplayName" => "柏拉图与技术呆子人类与技术的创造性伙伴关系_美爱德华阿什福德-7kdp1"
- "BKGeneratedItemId" => "C9618EB2E9F118ECDEF51921B8018694"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "C9618EB2E9F118ECDEF51921B8018694"
- }
- "isPreview" => 0
- "itemName" => "柏拉图与技术呆子:人类与技术的创造性伙伴关系_([美]爱德华·阿什福德"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/柏拉图与技术呆子人类与技术的创造性伙伴关系_美爱德华阿什福德-7kdp1.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/柏拉图与技术呆子人类与技术的创造性伙伴关系_美爱德华阿什福德-7kdp1.epub"
- }
- 208 => {
- "artistName" => "葛洪"
- "BKAllocatedSize" => 946176
- "BKBookType" => "epub"
- "BKDisplayName" => "抱朴子共三册"
- "BKGeneratedItemId" => "D994B425AA925456C05B46329059A7B7"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "D994B425AA925456C05B46329059A7B7"
- }
- "isPreview" => 0
- "itemName" => "抱朴子(共三册)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/抱朴子共三册.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/抱朴子共三册.epub"
- }
- 209 => {
- "artistName" => "罗伊·索伦森"
- "BKAllocatedSize" => 9404416
- "BKBookType" => "epub"
- "BKDisplayName" => "悖论简史哲学与心灵的迷宫____美罗伊索伦森__-xoj0y"
- "BKGeneratedItemId" => "A7CFF6EE0C825CFAD28BBC67705EAE78"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "A7CFF6EE0C825CFAD28BBC67705EAE78"
- }
- "genre" => "书聚EBOOKG.COM"
- "isPreview" => 0
- "itemName" => "悖论简史:哲学与心灵的迷宫____[美]罗伊·索伦森__-xoj0y"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/悖论简史哲学与心灵的迷宫____美罗伊索伦森__-xoj0y.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/悖论简史哲学与心灵的迷宫____美罗伊索伦森__-xoj0y.epub"
- }
- 210 => {
- "artistName" => "修昔底德"
- "BKAllocatedSize" => 1511424
- "BKBookType" => "epub"
- "BKDisplayName" => "伯罗奔尼撒战争史"
- "BKGeneratedItemId" => "24C9405131DA6BDEC029F6A480D244B2"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "24C9405131DA6BDEC029F6A480D244B2"
- }
- "bookDescription" => "伯罗奔尼撒战争(Peloponnesian War)是以雅典为首的提洛同盟与以斯巴达为首的伯罗奔尼撒联盟之间的一场战争。这场战争从前431年一直持续到前404年,其中双方几度停战,最后斯巴达获胜。这场战争结束了雅典的经典时代,结束了希腊的民主时代,强烈地改变了希腊的国家。几乎所有希腊的城邦参加了这场战争,其战场几乎涉及了整个当时希腊语世界。在现代研究中也有人称这场战争为古代世界大战。 这场战争不但对古代希腊而且对历史学本身有重要的意义。它本身是第一次科学地、历史学地被记录下来的史实:希腊历史学家修昔底德在他的《伯罗奔尼撒战争史》中详细地记录了当时的事件。这个纪录到前411年冬中止,修昔底德分析了这场战争的原因和背景,他的分析对欧洲的历史学是有先驱作用的。修昔底德后色诺芬在他的《希厄洛》中继续了修昔底德的工作,记录了前411年后的事件。值得注意的是古希腊人并不称这场战争为伯罗奔尼撒战争,这个名称是后来的人起的。修昔底德本人称之为伯罗奔尼撒人与雅典人之间的战争:“雅典的修昔底德纪录了伯罗奔尼撒人与雅典人之间的战争。他在战争爆发时开始了他的纪录,他当时想到这场战争可能是非常重要的,可能比此前的战争都有历史意义。他这样想因为战争双方使用了它们所有的手段,而其它的希腊城市迟早参加了这场战争。这场战争深刻地影响了希腊和一部分野蛮人,可以说这场战争影响了整个人类社会。”"
- "genre" => "古代 战争 历史 斯巴达 雅典"
- "isPreview" => 0
- "itemName" => "伯罗奔尼撒战争史"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/伯罗奔尼撒战争史.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/伯罗奔尼撒战争史.epub"
- }
- 211 => {
- "artistName" => "彼得.柏克(Peter Burke)"
- "BKAllocatedSize" => 4247552
- "BKBookType" => "epub"
- "BKDisplayName" => "博學者與他們的時代-djc3k"
- "BKGeneratedItemId" => "9FC6AC912DC3F015DF44B1028BB8DB2F"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "9FC6AC912DC3F015DF44B1028BB8DB2F"
- }
- "bookDescription" => "500位西方博學者群像X新文化史權威學者
-彼得.柏克以古觀今書寫這些「知道太多」的博學者"
- "genre" => "人文藝術"
- "isPreview" => 0
- "itemName" => "博學者與他們的時代-djc3k"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/博學者與他們的時代-djc3k.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/博學者與他們的時代-djc3k.epub"
- }
- 212 => {
- "artistName" => "葛剑雄"
- "BKAllocatedSize" => 786432
- "BKBookType" => "epub"
- "BKDisplayName" => "不变与万变葛剑雄说国史中国当代历史学家复旦大学教授葛剑雄重磅新作全面勾勒中国历史发展的源与流"
- "BKGeneratedItemId" => "6E8643D1E0D5225417C47398B55D2566"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "6E8643D1E0D5225417C47398B55D2566"
- }
- "isPreview" => 0
- "itemName" => "不变与万变:葛剑雄说国史(中国当代历史学家、复旦大学教授葛剑雄重磅新作!全面勾勒中国历史发展的源与流!)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/不变与万变葛剑雄说国史中国当代历史学家复旦大学教授葛剑雄重磅新作全面勾勒中国历史发展的源与流.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/不变与万变葛剑雄说国史中国当代历史学家复旦大学教授葛剑雄重磅新作全面勾勒中国历史发展的源与流.epub"
- }
- 213 => {
- "artistName" => "陈梅 陈仁政"
- "BKAllocatedSize" => 11972608
- "BKBookType" => "epub"
- "BKDisplayName" => "不可思议的自然对数 探秘数学常数"
- "BKGeneratedItemId" => "6CD8612D977693B271E311BAABBFE0E4"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "6CD8612D977693B271E311BAABBFE0E4"
- }
- "isPreview" => 0
- "itemName" => "不可思议的自然对数 (探秘数学常数)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/不可思议的自然对数 探秘数学常数.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/不可思议的自然对数 探秘数学常数.epub"
- }
- 214 => {
- "artistName" => "米兰·昆德拉"
- "BKAllocatedSize" => 696320
- "BKBookType" => "epub"
- "BKDisplayName" => "不能承受的生命之轻-dkj7c"
- "BKGeneratedItemId" => "02D5F21E8458AEEB52C609BEEFEACEB6"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "02D5F21E8458AEEB52C609BEEFEACEB6"
- }
- "isPreview" => 0
- "itemName" => "不能承受的生命之轻-dkj7c"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/不能承受的生命之轻-dkj7c.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/不能承受的生命之轻-dkj7c.epub"
- }
- 215 => {
- "artistName" => "托马斯·曼 (Thomas Mann)"
- "BKAllocatedSize" => 2068480
- "BKBookType" => "epub"
- "BKDisplayName" => "布登勃洛克一家-gzoxr3"
- "BKGeneratedItemId" => "95F9D541D1A594979708771CE636F98D"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "95F9D541D1A594979708771CE636F98D"
- }
- "genre" => "长篇小说-德国-近代"
- "isPreview" => 0
- "itemName" => "布登勃洛克一家-gzoxr3"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/布登勃洛克一家-gzoxr3.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/布登勃洛克一家-gzoxr3.epub"
- }
- 216 => {
- "artistName" => "皮埃尔·布尔迪厄"
- "BKAllocatedSize" => 6799360
- "BKBookType" => "epub"
- "BKDisplayName" => "布尔迪厄作品套装共5册"
- "BKGeneratedItemId" => "5A5A87E4D596C31A4E7DCA055587192F"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "5A5A87E4D596C31A4E7DCA055587192F"
- }
- "isPreview" => 0
- "itemName" => "布尔迪厄作品(套装共5册)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/布尔迪厄作品套装共5册.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/布尔迪厄作品套装共5册.epub"
- }
- 217 => {
- "artistName" => "卡尔.波普尔"
- "BKAllocatedSize" => 1290240
- "BKBookType" => "epub"
- "BKDisplayName" => "猜想与反驳"
- "BKGeneratedItemId" => "77E3CD348A12FD4D60F7D86B06A73F67"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "77E3CD348A12FD4D60F7D86B06A73F67"
- }
- "isPreview" => 0
- "itemName" => "猜想与反驳"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/猜想与反驳.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/猜想与反驳.epub"
- }
- 218 => {
- "artistName" => "(德)德默尔(Richard Dehmel)"
- "BKAllocatedSize" => 3207168
- "BKBookType" => "epub"
- "BKDisplayName" => "草叶集枫叶集-jsgny"
- "BKGeneratedItemId" => "1A1F55659BF8A09BD0D4F78C4FE7B700"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "1A1F55659BF8A09BD0D4F78C4FE7B700"
- }
- "genre" => "公众号:古德猫宁李"
- "isPreview" => 0
- "itemName" => "草叶集·枫叶集-jsgny"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/草叶集枫叶集-jsgny.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/草叶集枫叶集-jsgny.epub"
- }
- 219 => {
- "artistName" => "[美] 比尔·波特"
- "BKAllocatedSize" => 2383872
- "BKBookType" => "epub"
- "BKDisplayName" => "禅的行囊-a3jgm"
- "BKGeneratedItemId" => "FB0FC16A0D42F17A43629051CBF99A4B"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "FB0FC16A0D42F17A43629051CBF99A4B"
- }
- "bookDescription" => "我们每个人都从自己生命的起点一路跋涉而来,途中难免患得患失,背上的行囊也一日重似一日,令我们无法看清前面的方向。在这场漫长的旅行之中,有些包袱一念之间便可放下,有些则或许背负经年,更有些竟至令人终其一生无法割舍。但所有这些,都不过是我们自己捏造出来的幻象罢了。"
- "genre" => "禅"
- "isPreview" => 0
- "itemName" => "禅的行囊-a3jgm"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/禅的行囊-a3jgm.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/禅的行囊-a3jgm.epub"
- }
- 220 => {
- "artistName" => "胡适"
- "BKAllocatedSize" => 1163264
- "BKBookType" => "epub"
- "BKDisplayName" => "禅宗是什么胡适谈禅说佛"
- "BKGeneratedItemId" => "B692641E3CA8C14D06A141216C2B71BB"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "B692641E3CA8C14D06A141216C2B71BB"
- }
- "bookDescription" => "《禅宗是什么:胡适谈禅说佛》是“聆听大师”丛书胡适系列的第四本,以胡适谈禅说佛为线索,遴选其综述禅宗历史、考证禅宗代表人物、以及谈禅说佛杂记等文章汇编而成。全书共分为三大部分,虽然不能说全面完整地反映了胡适对于禅宗和佛教的思考和主张,但基本上反映了他在这方面的代表性观点。尤其是胡适谈禅宗历史的文章,深入浅出,学理清晰,趣味横生,凸显大师小书的品位,可读性极强。"
- "genre" => "历史"
- "isPreview" => 0
- "itemName" => "禅宗是什么:胡适谈禅说佛"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/禅宗是什么胡适谈禅说佛.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/禅宗是什么胡适谈禅说佛.epub"
- }
- 221 => {
- "artistName" => "陈建伟"
- "BKAllocatedSize" => 1175552
- "BKBookType" => "epub"
- "BKDisplayName" => "超级聊天学为中国人量身定制的口才实操指南会聊天瞬间提升你的魅力指数和任何人都能说上话和任何人都能成为朋友"
- "BKGeneratedItemId" => "2F75D186670106DF89903C38AE92D549"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "2F75D186670106DF89903C38AE92D549"
- }
- "isPreview" => 0
- "itemName" => "超级聊天学:为中国人量身定制的口才实操指南(会聊天,瞬间提升你的魅力指数,和任何人都能说上话,和任何人都能成为朋友)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/超级聊天学为中国人量身定制的口才实操指南会聊天瞬间提升你的魅力指数和任何人都能说上话和任何人都能成为朋友.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/超级聊天学为中国人量身定制的口才实操指南会聊天瞬间提升你的魅力指数和任何人都能说上话和任何人都能成为朋友.epub"
- }
- 222 => {
- "artistName" => "Unknown"
- "BKAllocatedSize" => 7221248
- "BKBookType" => "epub"
- "BKDisplayName" => "超图解中国哲学简史_by_王宇琨董志道-jlep7"
- "BKGeneratedItemId" => "6213770C491A5D87AC100574B10B91D0"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "6213770C491A5D87AC100574B10B91D0"
- }
- "isPreview" => 0
- "itemName" => "超图解中国哲学简史_by_王宇琨董志道-jlep7"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/超图解中国哲学简史_by_王宇琨董志道-jlep7.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/超图解中国哲学简史_by_王宇琨董志道-jlep7.epub"
- }
- 223 => {
- "artistName" => "安德烈·布勒东"
- "BKAllocatedSize" => 933888
- "BKBookType" => "epub"
- "BKDisplayName" => "超现实主义宣言____法安德烈布勒东__-9akas"
- "BKGeneratedItemId" => "A85B6AE1F3CB501271E7A0B11000AA8A"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "A85B6AE1F3CB501271E7A0B11000AA8A"
- }
- "genre" => "书聚EBOOKG.COM"
- "isPreview" => 0
- "itemName" => "超现实主义宣言____[法]安德烈·布勒东__-9akas"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/超现实主义宣言____法安德烈布勒东__-9akas.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/超现实主义宣言____法安德烈布勒东__-9akas.epub"
- }
- 224 => {
- "artistName" => "陈嘉映"
- "BKAllocatedSize" => 3522560
- "BKBookType" => "epub"
- "BKDisplayName" => "陈嘉映经典著作选读套装共3册-u89he"
- "BKGeneratedItemId" => "6264BB424503EE40C0B3E0209A89A3E5"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424270
- "book-info" => {
- "package-file-hash" => "6264BB424503EE40C0B3E0209A89A3E5"
- }
- "isPreview" => 0
- "itemName" => "陈嘉映经典著作选读(套装共3册)-u89he"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/陈嘉映经典著作选读套装共3册-u89he.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/陈嘉映经典著作选读套装共3册-u89he.epub"
- }
- 225 => {
- "artistName" => "培根君"
- "BKAllocatedSize" => 3338240
- "BKBookType" => "epub"
- "BKDisplayName" => "吃货的孤单心事"
- "BKGeneratedItemId" => "DADC1D075BC4BA6D1CF812FFF473106C"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424271
- "book-info" => {
- "package-file-hash" => "DADC1D075BC4BA6D1CF812FFF473106C"
- }
- "isPreview" => 0
- "itemName" => "吃货的孤单心事"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/吃货的孤单心事.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/吃货的孤单心事.epub"
- }
- 226 => {
- "artistName" => "张宏杰"
- "BKAllocatedSize" => 3256320
- "BKBookType" => "epub"
- "BKDisplayName" => "楚国兴亡史华夏文明的开拓与融合-张宏杰-ar905"
- "BKGeneratedItemId" => "1143B6344A1B693627DF439ACE5BF5D8"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424271
- "book-info" => {
- "package-file-hash" => "1143B6344A1B693627DF439ACE5BF5D8"
- }
- "isPreview" => 0
- "itemName" => "楚国兴亡史:华夏文明的开拓与融合-张宏杰-ar905"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/楚国兴亡史华夏文明的开拓与融合-张宏杰-ar905.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/楚国兴亡史华夏文明的开拓与融合-张宏杰-ar905.epub"
- }
- 227 => {
- "artistName" => "郭建龙"
- "BKAllocatedSize" => 1617920
- "BKBookType" => "epub"
- "BKDisplayName" => "穿越非洲两百年_郭建龙-oo9lg"
- "BKGeneratedItemId" => "CD6ACF0241AFB5BF93AA642646E800A7"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424271
- "book-info" => {
- "package-file-hash" => "CD6ACF0241AFB5BF93AA642646E800A7"
- }
- "bookDescription" => "穿越非洲两百年"
- "genre" => "穿越非洲两百年"
- "isPreview" => 0
- "itemName" => "穿越非洲两百年_郭建龙-oo9lg"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/穿越非洲两百年_郭建龙-oo9lg.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/穿越非洲两百年_郭建龙-oo9lg.epub"
- }
- 228 => {
- "artistName" => "王阳明"
- "BKAllocatedSize" => 5558272
- "BKBookType" => "epub"
- "BKDisplayName" => "传习录叶圣陶点校版著名作家学者叶圣陶亲自点校读懂全能圣人王阳明一定要从这本公认入门经典传习录开始"
- "BKGeneratedItemId" => "825BF1A811648D9E90F24C5BC2B98443"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424271
- "book-info" => {
- "package-file-hash" => "825BF1A811648D9E90F24C5BC2B98443"
- }
- "isPreview" => 0
- "itemName" => "传习录:叶圣陶点校版(著名作家学者叶圣陶亲自点校,读懂全能圣人王阳明,一定要从这本公认入门经典《传习录》开始!)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/传习录叶圣陶点校版著名作家学者叶圣陶亲自点校读懂全能圣人王阳明一定要从这本公认入门经典传习录开始.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/传习录叶圣陶点校版著名作家学者叶圣陶亲自点校读懂全能圣人王阳明一定要从这本公认入门经典传习录开始.epub"
- }
- 229 => {
- "artistName" => "奥兰多·费吉斯"
- "BKAllocatedSize" => 13369344
- "BKBookType" => "epub"
- "BKDisplayName" => "创造欧洲人-mm60x"
- "BKGeneratedItemId" => "42894E4A45E311001260DD230B0F2CA8"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424271
- "book-info" => {
- "package-file-hash" => "42894E4A45E311001260DD230B0F2CA8"
- }
- "genre" => "天浪书屋"
- "isPreview" => 0
- "itemName" => "创造欧洲人-mm60x"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/创造欧洲人-mm60x.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/创造欧洲人-mm60x.epub"
- }
- 230 => {
- "artistName" => "[澳]萨蒂亚吉特·达斯(Satyajit Das)"
- "BKAllocatedSize" => 1343488
- "BKBookType" => "epub"
- "BKDisplayName" => "从大衰退到大停滞全球经济危机剧变与后果-pu1xa"
- "BKGeneratedItemId" => "FC37AC61A93C3A4B463E7C74BA0726CD"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424271
- "book-info" => {
- "package-file-hash" => "FC37AC61A93C3A4B463E7C74BA0726CD"
- }
- "isPreview" => 0
- "itemName" => "从大衰退到大停滞:全球经济危机剧变与后果-pu1xa"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/从大衰退到大停滞全球经济危机剧变与后果-pu1xa.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/从大衰退到大停滞全球经济危机剧变与后果-pu1xa.epub"
- }
- 231 => {
- "artistName" => "袁一泓"
- "BKAllocatedSize" => 1069056
- "BKBookType" => "epub"
- "BKDisplayName" => "从沸腾到癫狂泡沫背后的中国房地产真相"
- "BKGeneratedItemId" => "1D65DD0A43473955CD1A0F6771341FEC"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424271
- "book-info" => {
- "package-file-hash" => "1D65DD0A43473955CD1A0F6771341FEC"
- }
- "isPreview" => 0
- "itemName" => "从沸腾到癫狂:泡沫背后的中国房地产真相"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/从沸腾到癫狂泡沫背后的中国房地产真相.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/从沸腾到癫狂泡沫背后的中国房地产真相.epub"
- }
- 232 => {
- "artistName" => "杨鸣"
- "BKAllocatedSize" => 3080192
- "BKBookType" => "epub"
- "BKDisplayName" => "从内耗到心流复杂时代下的熵减行动指南_杨鸣-90rbt"
- "BKGeneratedItemId" => "21BFC73C023B5626E2685ED1DADB638D"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424271
- "book-info" => {
- "package-file-hash" => "21BFC73C023B5626E2685ED1DADB638D"
- }
- "bookDescription" => "这是一个复杂的时代,它激起了人们无止境的欲望,却也带来了更多的噪声,不断在你我内心制造着精神熵,使我们的判断力、情绪力、行动力全面走向失控。对抗熵,是每个人一生的功课,它的最优解便是重构一个更精巧、简洁、节能的思维行动框架,将认知能量只集中在成长性的目标上,重获人生掌控权。
-
-本书以熵减为主轴探讨底层思维逻辑,并基于经典认知心理学理论和最新心流研究,提供一套完整的实用工具,帮助实现自我提升,从而收获真正的幸福感。
-
-本书不是一本美文读物,而是一张向你郑重发出的邀请函——邀请你真正付出时间和注意力,借力心流向熵宣战,开启一场从思维到行动的自我改变之旅。"
- "genre" => "天浪书屋"
- "isPreview" => 0
- "itemName" => "从内耗到心流:复杂时代下的熵减行动指南_(杨鸣)-90rbt"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/从内耗到心流复杂时代下的熵减行动指南_杨鸣-90rbt.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/从内耗到心流复杂时代下的熵减行动指南_杨鸣-90rbt.epub"
- }
- 233 => {
- "artistName" => "G.伽莫夫"
- "BKAllocatedSize" => 4890624
- "BKBookType" => "epub"
- "BKDisplayName" => "从一到无穷大"
- "BKGeneratedItemId" => "674DC4D564E21E8BD58776E035AD912F"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424271
- "book-info" => {
- "package-file-hash" => "674DC4D564E21E8BD58776E035AD912F"
- }
- "bookDescription" => "《从一到无穷大:科学中的事实和臆测》是当今世界最有影响的科普经典名著之一,1970年代末由科学出版社引进出版后,曾在国内引起很大反响,直接影响了众多的科普工作者。
作品以生动的语言介绍了20世纪以来科学中的一些重大进展。先漫谈一些基本的数学知识,然后用一些有趣的比喻,阐述了爱因斯坦的相对论和四维时空结构,并讨论了人类在认识微观世界(如基本粒子、基因)和宏观世界(如太阳系、星系等)方面的成就。
"
- "genre" => "科普书籍"
- "isPreview" => 0
- "itemName" => "从一到无穷大"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/从一到无穷大.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/从一到无穷大.epub"
- }
- 234 => {
- "artistName" => "鲁特格尔·布雷格曼"
- "BKAllocatedSize" => 21577728
- "BKBookType" => "epub"
- "BKDisplayName" => "从哲学的角度看问题-t233t"
- "BKGeneratedItemId" => "51BF627C295DC86B22BC7BAA63A6B446"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424271
- "book-info" => {
- "package-file-hash" => "51BF627C295DC86B22BC7BAA63A6B446"
- }
- "isPreview" => 0
- "itemName" => "从哲学的角度看问题-t233t"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/从哲学的角度看问题-t233t.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/从哲学的角度看问题-t233t.epub"
- }
- 235 => {
- "artistName" => "亚伯拉罕·H. 马斯洛"
- "BKAllocatedSize" => 622592
- "BKBookType" => "epub"
- "BKDisplayName" => "存在心理学探索-8rt46"
- "BKGeneratedItemId" => "E21B1783B510A7A3FB4F68C726FEE63C"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424271
- "book-info" => {
- "package-file-hash" => "E21B1783B510A7A3FB4F68C726FEE63C"
- }
- "genre" => "-SanQiu.mobi"
- "isPreview" => 0
- "itemName" => "存在心理学探索-8rt46"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/存在心理学探索-8rt46.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/存在心理学探索-8rt46.epub"
- }
- 236 => {
- "artistName" => "周濂"
- "BKAllocatedSize" => 7815168
- "BKBookType" => "epub"
- "BKDisplayName" => "打开周濂的100堂西方哲学课一部有营养有态度读得懂读得动的西方哲学史"
- "BKGeneratedItemId" => "652AF77A93BBC1A7F316163B5FC2987F"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424271
- "book-info" => {
- "package-file-hash" => "652AF77A93BBC1A7F316163B5FC2987F"
- }
- "isPreview" => 0
- "itemName" => "打开:周濂的100堂西方哲学课(一部有营养、有态度,读得懂、读得动的西方哲学史)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/打开周濂的100堂西方哲学课一部有营养有态度读得懂读得动的西方哲学史.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/打开周濂的100堂西方哲学课一部有营养有态度读得懂读得动的西方哲学史.epub"
- }
- 237 => {
- "artistName" => "彼得·沃森"
- "BKAllocatedSize" => 2547712
- "BKBookType" => "epub"
- "BKDisplayName" => "大分离新旧大陆的命运-rpkov"
- "BKGeneratedItemId" => "5C653D69556CCDAF2050785333184DA7"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424271
- "book-info" => {
- "package-file-hash" => "5C653D69556CCDAF2050785333184DA7"
- }
- "genre" => "天浪书屋"
- "isPreview" => 0
- "itemName" => "大分离:新旧大陆的命运-rpkov"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/大分离新旧大陆的命运-rpkov.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/大分离新旧大陆的命运-rpkov.epub"
- }
- 238 => {
- "artistName" => "约翰·米尔斯海默"
- "BKAllocatedSize" => 1232896
- "BKBookType" => "epub"
- "BKDisplayName" => "大幻想自由主义之梦与国际现实"
- "BKGeneratedItemId" => "4548F5EA0177304EC2BB18730B579376"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424271
- "book-info" => {
- "package-file-hash" => "4548F5EA0177304EC2BB18730B579376"
- }
- "isPreview" => 0
- "itemName" => "大幻想:自由主义之梦与国际现实"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/大幻想自由主义之梦与国际现实.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/大幻想自由主义之梦与国际现实.epub"
- }
- 239 => {
- "artistName" => "[美]罗伯特•所罗门"
- "BKAllocatedSize" => 1253376
- "BKBookType" => "epub"
- "BKDisplayName" => "大问题 简明哲学导论"
- "BKGeneratedItemId" => "673F24BB79F727D343B87EFFF72EC5D7"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424271
- "book-info" => {
- "package-file-hash" => "673F24BB79F727D343B87EFFF72EC5D7"
- }
- "isPreview" => 0
- "itemName" => "大问题: 简明哲学导论"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/大问题 简明哲学导论.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/大问题 简明哲学导论.epub"
- }
- 240 => {
- "artistName" => "欧阳灿灿"
- "BKAllocatedSize" => 1372160
- "BKBookType" => "epub"
- "BKDisplayName" => "当代欧美身体研究批评-5cikc"
- "BKGeneratedItemId" => "51D741AB9391154485675CF7E06FA92C"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424271
- "book-info" => {
- "package-file-hash" => "51D741AB9391154485675CF7E06FA92C"
- }
- "bookDescription" => "1"
- "isPreview" => 0
- "itemName" => "当代欧美身体研究批评-5cikc"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/当代欧美身体研究批评-5cikc.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/当代欧美身体研究批评-5cikc.epub"
- }
- 241 => {
- "artistName" => "安东尼奥·达马西奥"
- "BKAllocatedSize" => 3473408
- "BKBookType" => "epub"
- "BKDisplayName" => "当感受涌现时-e3zcf"
- "BKGeneratedItemId" => "0B0804F379FD6D0707B71A75EA7E223B"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424271
- "book-info" => {
- "package-file-hash" => "0B0804F379FD6D0707B71A75EA7E223B"
- }
- "isPreview" => 0
- "itemName" => "当感受涌现时-e3zcf"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/当感受涌现时-e3zcf.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/当感受涌现时-e3zcf.epub"
- }
- 242 => {
- "artistName" => "刘擎"
- "BKAllocatedSize" => 12029952
- "BKBookType" => "epub"
- "BKDisplayName" => "得到精英日课做高段位的学习者全6册如何做大国国民认清中国现实预测中国未来"
- "BKGeneratedItemId" => "B18F04D96741DC6BA0705146AB8A6DB7"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424271
- "book-info" => {
- "package-file-hash" => "B18F04D96741DC6BA0705146AB8A6DB7"
- }
- "isPreview" => 0
- "itemName" => "“得到”精英日课:做高段位的学习者(全6册)(如何做大国国民,认清中国现实,预测中国未来。)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/得到精英日课做高段位的学习者全6册如何做大国国民认清中国现实预测中国未来.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/得到精英日课做高段位的学习者全6册如何做大国国民认清中国现实预测中国未来.epub"
- }
- 243 => {
- "artistName" => "陀思妥耶夫斯基"
- "BKAllocatedSize" => 679936
- "BKBookType" => "epub"
- "BKDisplayName" => "地下室手记-uv4o8"
- "BKGeneratedItemId" => "AD15C0F8E5EFDB251ED0E8F010769A8C"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424271
- "book-info" => {
- "package-file-hash" => "AD15C0F8E5EFDB251ED0E8F010769A8C"
- }
- "isPreview" => 0
- "itemName" => "地下室手记-uv4o8"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/地下室手记-uv4o8.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/地下室手记-uv4o8.epub"
- }
- 244 => {
- "artistName" => "罗杰·克劳利(Roger Crowley)"
- "BKAllocatedSize" => 22659072
- "BKBookType" => "epub"
- "BKDisplayName" => "地中海史诗三部曲珍藏版全三册甲骨文系列"
- "BKGeneratedItemId" => "56EABA3DDDBD8D674D26E15EAA883344"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "56EABA3DDDBD8D674D26E15EAA883344"
- }
- "isPreview" => 0
- "itemName" => "地中海史诗三部曲(珍藏版全三册)(甲骨文系列)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/地中海史诗三部曲珍藏版全三册甲骨文系列.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/地中海史诗三部曲珍藏版全三册甲骨文系列.epub"
- }
- 245 => {
- "artistName" => "梁启超"
- "BKAllocatedSize" => 786432
- "BKBookType" => "epub"
- "BKDisplayName" => "读书指南国学经典精校版-vg1m8"
- "BKGeneratedItemId" => "DB4AF1409FFEE4592828CEBB0B67CA7E"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "DB4AF1409FFEE4592828CEBB0B67CA7E"
- }
- "isPreview" => 0
- "itemName" => "读书指南(国学经典精校版)-vg1m8"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/读书指南国学经典精校版-vg1m8.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/读书指南国学经典精校版-vg1m8.epub"
- }
- 246 => {
- "artistName" => "卡罗尔·希尔兹"
- "BKAllocatedSize" => 544768
- "BKBookType" => "epub"
- "BKDisplayName" => "顿悟与启迪-vhhor"
- "BKGeneratedItemId" => "73816E83B2DABEBD5190B7179BAA220A"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "73816E83B2DABEBD5190B7179BAA220A"
- }
- "genre" => "-SanQiu.CC"
- "isPreview" => 0
- "itemName" => "顿悟与启迪-vhhor"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/顿悟与启迪-vhhor.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/顿悟与启迪-vhhor.epub"
- }
- 247 => {
- "artistName" => "尼古拉·别尔嘉耶夫"
- "BKAllocatedSize" => 708608
- "BKBookType" => "epub"
- "BKDisplayName" => "俄罗斯的命运____俄尼古拉别尔嘉耶夫__-v7yv2"
- "BKGeneratedItemId" => "7469E05C52BCD41C1262F677F981C7BA"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "7469E05C52BCD41C1262F677F981C7BA"
- }
- "genre" => "一博书库ebookcn.com"
- "isPreview" => 0
- "itemName" => "俄罗斯的命运____[俄]尼古拉·别尔嘉耶夫__-v7yv2"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/俄罗斯的命运____俄尼古拉别尔嘉耶夫__-v7yv2.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/俄罗斯的命运____俄尼古拉别尔嘉耶夫__-v7yv2.epub"
- }
- 248 => {
- "artistName" => "大卫·贝尔"
- "BKAllocatedSize" => 2932736
- "BKBookType" => "epub"
- "BKDisplayName" => "发明民族主义法国的民族崇拜1680-1800____英大卫a"
- "BKGeneratedItemId" => "C0851584398AD73C57DA1694BDF29EDE"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "C0851584398AD73C57DA1694BDF29EDE"
- }
- "bookDescription" => "
-
现代民族是如何诞生的?它是自然形成的还是人为建构的?民族主义究竟意义何在?
在现代世界,民族主义作为一种主流的政治意识形态在各个不同的国家扮演着不同的角色。有时候,它是争取独立、自由的思想,有时候它又是排外、保守的观念。这种矛盾的意识形态究竟从何而来,究竟是福是祸?
本书通过对具有代表性的法国民族主义的来龙去脉进行深入剖析,探讨了民族主义在现代民族国家中的崛起过程。通过对民族主义与宗教、文化的关系的讨论,作者提出了颇多发人深省的观点:当一个民族处于宗教失范的境地时,“民族”就会被推上神坛。而各个民族的文化背景则早就了各国不同的民族主义生态。
本书尽管论述的是法国的民族主义,但其观点适用于世界各民族和各种民族主义的讨论。因而对于任何思考民族与民族主义问题的人都有着莫大的启发。
作者简介
"
- "genre" => "书聚EBOOKG.COM"
- "isPreview" => 0
- "itemName" => "发明民族主义:法国的民族崇拜,1680-1800____[英]大卫·a.-jk9ar"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/发明民族主义法国的民族崇拜1680-1800____英大卫a.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/发明民族主义法国的民族崇拜1680-1800____英大卫a.epub"
- }
- 249 => {
- "artistName" => "伊藤隆敏"
- "BKAllocatedSize" => 17408000
- "BKBookType" => "epub"
- "BKDisplayName" => "繁荣与停滞-q5mqx"
- "BKGeneratedItemId" => "034C216BB3483D1B0B1F1F888C0BE62A"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "034C216BB3483D1B0B1F1F888C0BE62A"
- }
- "genre" => "-SanQiu.mobi"
- "isPreview" => 0
- "itemName" => "繁荣与停滞-q5mqx"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/繁荣与停滞-q5mqx.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/繁荣与停滞-q5mqx.epub"
- }
- 250 => {
- "artistName" => "余世存"
- "BKAllocatedSize" => 806912
- "BKBookType" => "epub"
- "BKDisplayName" => "非常道1_1840-1999-v4z5yp"
- "BKGeneratedItemId" => "FC06D881F86448652E3A9507804FAC16"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "FC06D881F86448652E3A9507804FAC16"
- }
- "isPreview" => 0
- "itemName" => "非常道1_1840-1999-v4z5yp"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/非常道1_1840-1999-v4z5yp.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/非常道1_1840-1999-v4z5yp.epub"
- }
- 251 => {
- "artistName" => "飞利浦.费雪"
- "BKAllocatedSize" => 667648
- "BKBookType" => "epub"
- "BKDisplayName" => "非常潜力股"
- "BKGeneratedItemId" => "19180B140FEAD4784F53AF06E3662012"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "19180B140FEAD4784F53AF06E3662012"
- }
- "isPreview" => 0
- "itemName" => "非常潜力股"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/非常潜力股.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/非常潜力股.epub"
- }
- 252 => {
- "artistName" => "索耳"
- "BKAllocatedSize" => 1277952
- "BKBookType" => "epub"
- "BKDisplayName" => "非亲非故-vkejh"
- "BKGeneratedItemId" => "316D580997169E255A8FEBD036A94C09"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "316D580997169E255A8FEBD036A94C09"
- }
- "genre" => "天浪书屋"
- "isPreview" => 0
- "itemName" => "非亲非故-vkejh"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/非亲非故-vkejh.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/非亲非故-vkejh.epub"
- }
- 253 => {
- "artistName" => "菲比斯"
- "BKAllocatedSize" => 7475200
- "BKBookType" => "epub"
- "BKDisplayName" => "菲式思考從22k到頂尖一個交易員逆轉人生的關鍵思維-edcss"
- "BKGeneratedItemId" => "C56D21A307214432594B2AF4CCCEE10D"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "C56D21A307214432594B2AF4CCCEE10D"
- }
- "bookDescription" => "菲式思考——
從邏輯推理與歸納出發,結合關聯式思考,推導結論;
從生活中擷取關鍵資料,讓交易「事件化」;
不斷除錯,最終用正確的機率與時間,換取成果。
投資不受多空影響,屢創勝率新高的菲比斯,鉅細靡遺地詳述十年投資歷程、全面拆解其思維模式與修正式投資哲學,從作者人生出發,全面剖析菲比斯成為成功投資人的祕訣,本書分為五大部分:
.自一段戲劇人生窺知奠定正確知識與觀念的點滴歷程
.從交易心理學切入,擴及提升績效穩定性、降低回檔
.全面且深入地剖析個人投資邏輯,如何立於不敗
.打造個人交易室,詳述交易系統設備的建置與改善
.量化投資,透過策略回測,驗證獲利模式
藉由此一完整分享,從心態、策略到實作,助你建構適合你的投資方式。"
- "genre" => "商管理財"
- "isPreview" => 0
- "itemName" => "菲式思考:從22k到頂尖,一個交易員逆轉人生的關鍵思維-edcss"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/菲式思考從22k到頂尖一個交易員逆轉人生的關鍵思維-edcss.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/菲式思考從22k到頂尖一個交易員逆轉人生的關鍵思維-edcss.epub"
- }
- 254 => {
- "artistName" => "詹姆斯·格雷克"
- "BKAllocatedSize" => 2387968
- "BKBookType" => "epub"
- "BKDisplayName" => "费曼传天才的人生与思想世界-c0al6"
- "BKGeneratedItemId" => "2881B5AA8186790CCC0177006022468D"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "2881B5AA8186790CCC0177006022468D"
- }
- "bookDescription" => "他是天才,更是众人难以企及的“魔法师”,总有新点子来解决难题; 他凭着一股“超能力”,在游戏的精神和探索的智慧之间自如穿梭; 令人目眩的人生经历、率真的态度、永不枯竭的热情,他是科学家们的偶像; …… 这就是费曼——好奇的大男孩、多情的爱人、诺贝尔奖得主、原子弹制造者、“挑战者号”事故调查委员、邦戈鼓手、开锁大师……他为20世纪的物理学开辟了一条非凡的道路。从顶级科学家到满怀好奇的大众,在他参与的每一件事和接触过的每一个人身上,费曼都留下了非凡的印记。 在格雷克的笔下,费曼的思想世界与他的人生一样精彩。这位天才留给世人的璀璨遗产不仅是知识的,更是思想的:在这个不确定的世界里,我们真正需要了解什么?我们该如何去了解?了解世界的意义何在?"
- "genre" => "汇书网"
- "isPreview" => 0
- "itemName" => "费曼传:天才的人生与思想世界-c0al6"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/费曼传天才的人生与思想世界-c0al6.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/费曼传天才的人生与思想世界-c0al6.epub"
- }
- 255 => {
- "artistName" => "菲利普·A. 费雪(Philips.A.Fisher)"
- "BKAllocatedSize" => 811008
- "BKBookType" => "epub"
- "BKDisplayName" => "费雪论成长股获利投资大师80年投资致富的选股方法 深受普通投资者欢迎与推荐的投资经典巴菲特之师近半世纪以来杰出的投资顾问费雪经典力作斯坦福商学院投资课程教材80年家族成功投"
- "BKGeneratedItemId" => "B6573C519FF3C57E5E26B9556FEDAC72"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "B6573C519FF3C57E5E26B9556FEDAC72"
- }
- "isPreview" => 0
- "itemName" => "费雪论成长股获利:投资大师80年投资致富的选股方法 (深受普通投资者欢迎与推荐的投资经典,巴菲特之师、“近半世纪以来杰出的投资顾问”费雪经典力作,斯坦福商学院投资课程教材,80年家族成功投资秘诀!)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/费雪论成长股获利投资大师80年投资致富的选股方法 深受普通投资者欢迎与推荐的投资经典巴菲特之师近半世纪以来杰出的投资顾问费雪经典力作斯坦福商学院投资课程教材80年家族成功投.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/费雪论成长股获利投资大师80年投资致富的选股方法 深受普通投资者欢迎与推荐的投资经典巴菲特之师近半世纪以来杰出的投资顾问费雪经典力作斯坦福商学院投资课程教材80年家族成功投.epub"
- }
- 256 => {
- "artistName" => "玛格丽特·阿特伍德(Margaret Atwood)"
- "BKAllocatedSize" => 3665920
- "BKBookType" => "epub"
- "BKDisplayName" => "疯癫亚当三部曲套装共3册上海译文出品布克奖得主使女的故事作者玛格丽特阿特伍德自我超越之作历时十年恢弘叙事呈现反乌托邦的后天启世界"
- "BKGeneratedItemId" => "20FD80436B8B1486A824F90A3CFAA811"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "20FD80436B8B1486A824F90A3CFAA811"
- }
- "isPreview" => 0
- "itemName" => "疯癫亚当三部曲(套装共3册)【上海译文出品!布克奖得主《使女的故事》作者玛格丽特·阿特伍德自我超越之作,历时十年恢弘叙事呈现反乌托邦的“后天启”世界】"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/疯癫亚当三部曲套装共3册上海译文出品布克奖得主使女的故事作者玛格丽特阿特伍德自我超越之作历时十年恢弘叙事呈现反乌托邦的后天启世界.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/疯癫亚当三部曲套装共3册上海译文出品布克奖得主使女的故事作者玛格丽特阿特伍德自我超越之作历时十年恢弘叙事呈现反乌托邦的后天启世界.epub"
- }
- 257 => {
- "artistName" => "赵朴初"
- "BKAllocatedSize" => 1277952
- "BKBookType" => "epub"
- "BKDisplayName" => "佛教常识答问汉英对照图文版-gx9ik"
- "BKGeneratedItemId" => "2E1E404F5C2CB5A2B0A4E51146A22240"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "2E1E404F5C2CB5A2B0A4E51146A22240"
- }
- "bookDescription" => "技术和制作支持:北京桑里德文化发展有限公司Technical and production support: Beijing. Sunlit Culture Development Co., Ltd."
- "isPreview" => 0
- "itemName" => "佛教常识答问(汉英对照)(图文版)-gx9ik"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/佛教常识答问汉英对照图文版-gx9ik.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/佛教常识答问汉英对照图文版-gx9ik.epub"
- }
- 258 => {
- "artistName" => "Unknown"
- "BKAllocatedSize" => 2187264
- "BKBookType" => "epub"
- "BKDisplayName" => "佛教十三经-1f5kqu"
- "BKGeneratedItemId" => "B03B9D1B0759626DB2DC0471E042456F"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "B03B9D1B0759626DB2DC0471E042456F"
- }
- "isPreview" => 0
- "itemName" => "佛教十三经-1f5kqu"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/佛教十三经-1f5kqu.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/佛教十三经-1f5kqu.epub"
- }
- 259 => {
- "artistName" => "Unknown"
- "BKAllocatedSize" => 16113664
- "BKBookType" => "epub"
- "BKDisplayName" => "佛教十三经-2juv9"
- "BKGeneratedItemId" => "9E95E98FB0E7379ACF13225C2711780E"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "9E95E98FB0E7379ACF13225C2711780E"
- }
- "isPreview" => 0
- "itemName" => "佛教十三经-2juv9"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/佛教十三经-2juv9.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/佛教十三经-2juv9.epub"
- }
- 260 => {
- "artistName" => "太虚"
- "BKAllocatedSize" => 1368064
- "BKBookType" => "epub"
- "BKDisplayName" => "佛学常识 佛学界公认的入门必读经典"
- "BKGeneratedItemId" => "219FA6893AEB0A70F346A5B8F3FC6BF5"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "219FA6893AEB0A70F346A5B8F3FC6BF5"
- }
- "isPreview" => 0
- "itemName" => "佛学常识 (佛学界公认的入门必读经典)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/佛学常识 佛学界公认的入门必读经典.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/佛学常识 佛学界公认的入门必读经典.epub"
- }
- 261 => {
- "artistName" => "歌德"
- "BKAllocatedSize" => 1015808
- "BKBookType" => "epub"
- "BKDisplayName" => "浮士德-董问樵-0xjhj"
- "BKGeneratedItemId" => "5A516154B1B31DF5F3075385819C7BA8"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "5A516154B1B31DF5F3075385819C7BA8"
- }
- "bookDescription" => "《浮士德》是一部长达一万二千一百一十一行的诗剧,第一部二十五场,不分幕。第二部分五幕,二十七常全剧没有首尾连贯的情节,而是以浮士德思想的发展变化为线索。 《浮士德》的第一部完成于1808年法军入侵的时候,第二部则完成于1831年8月31日,是时他已83岁高龄。这部不朽的诗剧。以德国民间传说为题材,以文艺复兴以来的德国和欧洲社会为背景,写一个新兴资产阶级先进知识分子不满现实,竭力探索人生意义和社会理想的生。
"
- "genre" => "文学名著"
- "isPreview" => 0
- "itemName" => "浮士德-董问樵-0xjhj"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/浮士德-董问樵-0xjhj.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/浮士德-董问樵-0xjhj.epub"
- }
- 262 => {
- "artistName" => "威廉·福克纳"
- "BKAllocatedSize" => 7512064
- "BKBookType" => "epub"
- "BKDisplayName" => "福克纳作品精选系列共9册-j5zsm"
- "BKGeneratedItemId" => "DEEE7C003D411B2D030359095D2DEAFF"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "DEEE7C003D411B2D030359095D2DEAFF"
- }
- "isPreview" => 0
- "itemName" => "福克纳作品精选系列(共9册)-j5zsm"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/福克纳作品精选系列共9册-j5zsm.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/福克纳作品精选系列共9册-j5zsm.epub"
- }
- 263 => {
- "artistName" => "[美]辜朝明"
- "BKAllocatedSize" => 8044544
- "BKBookType" => "epub"
- "BKDisplayName" => "复盘一个经济学家对宏观经济的另类解读-huow7"
- "BKGeneratedItemId" => "5B11623B67642661DDAE0E7AD9AABBF4"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "5B11623B67642661DDAE0E7AD9AABBF4"
- }
- "isPreview" => 0
- "itemName" => "复盘:一个经济学家对宏观经济的另类解读-huow7"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/复盘一个经济学家对宏观经济的另类解读-huow7.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/复盘一个经济学家对宏观经济的另类解读-huow7.epub"
- }
- 264 => {
- "artistName" => "大卫•莫罗"
- "BKAllocatedSize" => 1687552
- "BKBookType" => "epub"
- "BKDisplayName" => "高效论证美国大学最实用的逻辑训练课全美大学批判性思维经典教材美国哲学学会重磅推荐"
- "BKGeneratedItemId" => "48D0B91015EF591BD790C06AE77C7190"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "48D0B91015EF591BD790C06AE77C7190"
- }
- "isPreview" => 0
- "itemName" => "高效论证:美国大学最实用的逻辑训练课(全美大学批判性思维经典教材,美国哲学学会重磅推荐)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/高效论证美国大学最实用的逻辑训练课全美大学批判性思维经典教材美国哲学学会重磅推荐.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/高效论证美国大学最实用的逻辑训练课全美大学批判性思维经典教材美国哲学学会重磅推荐.epub"
- }
- 265 => {
- "artistName" => "(英)齐格蒙特·鲍曼"
- "BKAllocatedSize" => 716800
- "BKBookType" => "epub"
- "BKDisplayName" => "工作消费主义和新穷人"
- "BKGeneratedItemId" => "A8C19129284DA25DB518D1E5CC2AA2BD"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "A8C19129284DA25DB518D1E5CC2AA2BD"
- }
- "isPreview" => 0
- "itemName" => "工作、消费主义和新穷人"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/工作消费主义和新穷人.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/工作消费主义和新穷人.epub"
- }
- 266 => {
- "artistName" => "量子学派"
- "BKAllocatedSize" => 7323648
- "BKBookType" => "epub"
- "BKDisplayName" => "公式之美 中国好书人类最美的23个公式"
- "BKGeneratedItemId" => "F5D11A75310E3726825465D0D65AE8B2"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "F5D11A75310E3726825465D0D65AE8B2"
- }
- "isPreview" => 0
- "itemName" => "公式之美 (中国好书,人类最美的23个公式)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/公式之美 中国好书人类最美的23个公式.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/公式之美 中国好书人类最美的23个公式.epub"
- }
- 267 => {
- "artistName" => "宋杰"
- "BKAllocatedSize" => 4907008
- "BKBookType" => "epub"
- "BKDisplayName" => "古代战争地理枢纽"
- "BKGeneratedItemId" => "546D6E25ED6DB785C821B98CD92A3E53"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "546D6E25ED6DB785C821B98CD92A3E53"
- }
- "isPreview" => 0
- "itemName" => "古代战争地理枢纽"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/古代战争地理枢纽.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/古代战争地理枢纽.epub"
- }
- 268 => {
- "artistName" => "乔尔·格林布拉特"
- "BKAllocatedSize" => 1011712
- "BKBookType" => "epub"
- "BKDisplayName" => "股市稳赚"
- "BKGeneratedItemId" => "0090ED1B96231462A5465E15FD27945E"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "0090ED1B96231462A5465E15FD27945E"
- }
- "isPreview" => 0
- "itemName" => "股市稳赚"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/股市稳赚.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/股市稳赚.epub"
- }
- 269 => {
- "artistName" => "[美]丽萨·克龙"
- "BKAllocatedSize" => 1036288
- "BKBookType" => "epub"
- "BKDisplayName" => "故事魔力"
- "BKGeneratedItemId" => "36A92F852EBCC454E573895D49914F26"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "36A92F852EBCC454E573895D49914F26"
- }
- "genre" => "天浪书屋"
- "isPreview" => 0
- "itemName" => "故事魔力"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/故事魔力.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/故事魔力.epub"
- }
- 270 => {
- "artistName" => "韩松落"
- "BKAllocatedSize" => 667648
- "BKBookType" => "epub"
- "BKDisplayName" => "故事是这个世界的解药"
- "BKGeneratedItemId" => "DC0DA7FF4E09625DC2A08C1A6561A332"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "DC0DA7FF4E09625DC2A08C1A6561A332"
- }
- "isPreview" => 0
- "itemName" => "故事是这个世界的解药"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/故事是这个世界的解药.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/故事是这个世界的解药.epub"
- }
- 271 => {
- "artistName" => "顾准"
- "BKAllocatedSize" => 1671168
- "BKBookType" => "epub"
- "BKDisplayName" => "顾准历史笔记"
- "BKGeneratedItemId" => "C98548AAA3E0C31824BFB4E64728699A"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "C98548AAA3E0C31824BFB4E64728699A"
- }
- "bookDescription" => "历史的探索,对于立志为人类服务的人来说,从来都是服务于改革当前显示和规划出未来方向的。
-——顾准
-在一个全然封闭的意识形态铁桶里,能够抬起思想者的头颅,向希腊城邦的民主制度致敬并且表达其衷心向往,不啻叛逆,几近先知。顾准的《希腊城邦制度》不仅以此标画出了中国知识分子的良知,而且还籍此突破了三、四十年代中国自由主义知识分子的局限:不再受制于欧洲的左翼思潮,而是直承古希腊史学家和思想家的自由精神。
-——李劼
-有几人能超出此种由中国宫廷史知识背景熏陶出来的认识惯性,像顾准这样破壁而出,将此与一个更为悠远阔大的历史运动相联,上溯柏拉图,下抵斯大林,上下两千年,旁及古中西,如此穷根极底的大范围搜索? ——朱学勤
-在“十年动乱”期间,顾准先生曾拟订过一个宏大的计划,准备用十年的时间彻底地研究西方和中国的历史,包括哲学、政治、经济、文化史等。为此,他阅读了大量的历史作品,写下了《希腊城邦制度》等不少较长的历史研究杰作,同时也写了大量的读史笔记。顾准先生说:“历史的探索,对于立志为人类服务的人来说,从来都是服务于改革当前显示和规划出未来方向的。”可见他在读历史时所抱有的拳拳之心和赤子情怀。而无论是他所怀抱的感情,还是他所写就的历史,在今日都值得人们一读再读。"
- "genre" => "经典"
- "isPreview" => 0
- "itemName" => "顾准历史笔记"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/顾准历史笔记.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/顾准历史笔记.epub"
- }
- 272 => {
- "artistName" => "狼医生"
- "BKAllocatedSize" => 1310720
- "BKBookType" => "epub"
- "BKDisplayName" => "怪医笔记薄世宁李治中菠萝姬十三刘润于莺 真诚力荐期待值100的医学题材小说胸外科医生亲自执笔会开刀的医生里面写小说最好玩的写小说的里面开刀最好的讲述真实的医生世界伟大而隐秘"
- "BKGeneratedItemId" => "1EA6FDF6B938C4C94228C64A9D2C1A3D"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "1EA6FDF6B938C4C94228C64A9D2C1A3D"
- }
- "isPreview" => 0
- "itemName" => "怪医笔记【薄世宁、李治中(菠萝)、姬十三、刘润、于莺 真诚力荐!期待值100%的医学题材小说,胸外科医生亲自执笔,会开刀的医生里面写小说最好玩的,写小说的里面开刀最好的!讲述「真实的医生世界」,伟大而隐秘,渺小而荣耀!】"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/怪医笔记薄世宁李治中菠萝姬十三刘润于莺 真诚力荐期待值100的医学题材小说胸外科医生亲自执笔会开刀的医生里面写小说最好玩的写小说的里面开刀最好的讲述真实的医生世界伟大而隐秘.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/怪医笔记薄世宁李治中菠萝姬十三刘润于莺 真诚力荐期待值100的医学题材小说胸外科医生亲自执笔会开刀的医生里面写小说最好玩的写小说的里面开刀最好的讲述真实的医生世界伟大而隐秘.epub"
- }
- 273 => {
- "artistName" => "伊恩·麦克雷"
- "BKAllocatedSize" => 962560
- "BKBookType" => "epub"
- "BKDisplayName" => "关键选择帮助起底27个赚钱的逻辑经济下行趋势下的个人财富增长方案"
- "BKGeneratedItemId" => "2EB5523769242CEBCB14726F1A738F79"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "2EB5523769242CEBCB14726F1A738F79"
- }
- "isPreview" => 0
- "itemName" => "关键选择【帮助起底27个赚钱的逻辑,经济下行趋势下的个人财富增长方案】"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/关键选择帮助起底27个赚钱的逻辑经济下行趋势下的个人财富增长方案.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/关键选择帮助起底27个赚钱的逻辑经济下行趋势下的个人财富增长方案.epub"
- }
- 274 => {
- "artistName" => "路内"
- "BKAllocatedSize" => 1335296
- "BKBookType" => "epub"
- "BKDisplayName" => "关于告别的一切-x29xr"
- "BKGeneratedItemId" => "EF1516BD8F27B6696A55E6170DD7BBA2"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "EF1516BD8F27B6696A55E6170DD7BBA2"
- }
- "genre" => "天浪书屋"
- "isPreview" => 0
- "itemName" => "关于告别的一切-x29xr"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/关于告别的一切-x29xr.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/关于告别的一切-x29xr.epub"
- }
- 275 => {
- "artistName" => "小林泰三"
- "BKAllocatedSize" => 688128
- "BKBookType" => "epub"
- "BKDisplayName" => "关于那个人的备忘录"
- "BKGeneratedItemId" => "22D050322D6EF9FF2DA70FAD2F9205FC"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "22D050322D6EF9FF2DA70FAD2F9205FC"
- }
- "isPreview" => 0
- "itemName" => "关于那个人的备忘录"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/关于那个人的备忘录.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/关于那个人的备忘录.epub"
- }
- 276 => {
- "artistName" => "辜朝明"
- "BKAllocatedSize" => 507904
- "BKBookType" => "epub"
- "BKDisplayName" => "官场商战-大衰退-3ft1f"
- "BKGeneratedItemId" => "599C02ED68CB03C20F8CD44F14440879"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "599C02ED68CB03C20F8CD44F14440879"
- }
- "bookDescription" => "大衰退"
- "genre" => "大衰退"
- "isPreview" => 0
- "itemName" => "官场商战-大衰退-3ft1f"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/官场商战-大衰退-3ft1f.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/官场商战-大衰退-3ft1f.epub"
- }
- 277 => {
- "artistName" => "福柯"
- "BKAllocatedSize" => 733184
- "BKBookType" => "epub"
- "BKDisplayName" => "规训与惩罚g4pd5"
- "BKGeneratedItemId" => "8D3510C02820CA54E2BD50E7557C21DC"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "8D3510C02820CA54E2BD50E7557C21DC"
- }
- "genre" => "哲学"
- "isPreview" => 0
- "itemName" => "规训与惩罚g4pd5"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/规训与惩罚g4pd5.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/规训与惩罚g4pd5.epub"
- }
- 278 => {
- "artistName" => "大卫·格雷伯"
- "BKAllocatedSize" => 929792
- "BKBookType" => "epub"
- "BKDisplayName" => "规则的悖论-6hx1g"
- "BKGeneratedItemId" => "B64D63E803BCCC785F72C4DCA3F278E4"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "B64D63E803BCCC785F72C4DCA3F278E4"
- }
- "isPreview" => 0
- "itemName" => "规则的悖论-6hx1g"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/规则的悖论-6hx1g.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/规则的悖论-6hx1g.epub"
- }
- 279 => {
- "artistName" => "井島由佳"
- "BKAllocatedSize" => 1056768
- "BKBookType" => "epub"
- "BKDisplayName" => "鬼滅之刃心理學 打造強韌內在的38個法則"
- "BKGeneratedItemId" => "17BFD7220BC287CC7EC63D2D066CB59A"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "17BFD7220BC287CC7EC63D2D066CB59A"
- }
- "bookDescription" => "
-
★【全集中呼吸.心理之型!】 成就動機、同理心、利社會行為……從心理學切入,帶你了解推動角色不斷成長的動力核心,探究強者之所以能不斷變強的真正理由。 ★【全集中呼吸.強者之型!】 開放心態、重視同伴、不逃避、不利己……38個鍛鍊心理韌性的法則,讓你培養不易受挫的思考與精神! ★張輝誠(學思達教育基金會創辦人)、李崇建(親子作家)、海苔熊(心理學作家)、冒牌生(青年作家) 一致按讚 跟懦弱不中用的自己說再見! 今天開始,擁有真強者的堅韌心志! 你不必像炭治郎一樣,過著每天與鬼搏鬥的日子; 但可向他們汲取知識與勇氣,靠自己的雙手突破僵局、面對障礙, 朝夢想踏出新的一步。 你是這樣的人嗎? 或者,你覺得自己不該這樣,現在卻只能這樣? ◎缺乏明確的目標,很容易出現負面思考。 ◎覺得眼前障礙難以跨越,自己就快撐不下去。 ◎不擅長與他人溝通,常常誤會╱被誤會。 ◎為了不被別人討厭,總是看人臉色、隱藏自己的真實想法。 ◎常常有種孤立無援的感覺,不知道究竟有誰值得信任。 很多人都知道,只要「變強」,就能持續前進,卻很難拍胸脯保證「只要這麼做,一定能變強」。 針對這一點,《鬼滅之刃》說得相當清楚明白:真誠無偽、正視現實、尊重他人、持續挑戰,這就是培養出真強者的祕訣。 毫無疑問的,這部作品裡的許多角色都是強者,但他們的強大並非體現在肉體與戰鬥技巧,而是心理韌性與思考模式。本書從心理學角度切入,剖析這些角色得以不斷成長的相關原理、應具備的態度,並進一步告訴讀者如何應用在日常生活中,培養出更強韌、更不易受挫的心志。 各界推薦 李崇建(親子作家) 張輝誠(學思達教育基金會創辦人) 海苔熊(心理學作家) 冒牌生(青年作家) ──一致好評 《鬼滅之刃》不僅是一本漫畫、一段故事,更是人存於世的各種情狀。外顯之行為與內在幽微的心靈,透過漫畫人物和情節深刻而豐富地呈現出來,真叫人驚呼、嘆為觀止。然尋常讀者也許自能隱隱約約、模模糊糊感受到這些,但又未必真能深入其中知其然又知其所以然,能有如此專業的社會學教授、心理諮商師願意深入漫畫中,闡微發幽,探賾索隱,寫出這樣一本闡述《鬼滅之刃》相關心理學的書,鉤深以致遠,真是太美好了。──張輝誠(學思達教育基金會創辦人) 各年齡層讀者 ★★★★★ 大心推薦: 「不只是心理學讀物,更是職場勵志書!」 「適合親子共讀,能向孩子傳達人生重要之事!」 ★在充滿煩惱、迷惘與灰心喪志的每一天,本書讓我再次鼓起勇氣前進。 ★本書不但說明了累積的重要性,還包括如同理心、正向思考、團隊合作、不進則退的道理。推薦給忘記努力而厭世度日的上班族們。 ★本書是我買來和念國中的兒子共讀的,之後才把整套漫畫看完。這種閱讀順序讓我對角色們的言行舉止更有感,也期許自己能像炭治郎一樣擁有強韌的內在,不至於被周遭的負面思考牽著鼻子走。 ★本書除了透過心理學解析《鬼滅之刃》如何能打造強韌的內在,對於不熟悉這部作品的人來說,也很適合拿來當成掌握原作梗概的讀物。 ★在環境越來越不穩定的情況下,本書告訴我們,儘管失去了重要的東西,仍要勇往直前;即使遇到危機,也不失去應對的彈性,並與夥伴一起跨越難關。 ★本書其實是念小學的兒子買回家的,但畢竟有他不容易理解的部分,沒想到竟因此成為父子共讀與傳達重要理念的媒介。 ★本書不但能補足並提升我們的思維層次,並以嶄新的方式詮釋原作裡特有的概念。如果只是把本書當成動漫作品解析,未免太可惜了。 ★文字與概念簡潔易懂,推薦給不擅長閱讀的青少年,相信對他們的現在和未來都會很有幫助。 作者簡介 井島由佳 大東文化大學社會學部社會學科助理教授、心理諮商師與職涯顧問。 1970年出生於東京,東京家政大學人類生活學博士,專長領域為教育心理學、職涯心理學。曾任生涯發展諮詢師、產業顧問等職務,多年來負責職涯設計的教科書編寫、教職員研習及相關顧問培訓課程,並開發職涯設計相關課程所需的程式。 經常活用《鬼滅之刃》《航海王》《火影忍者》等知名漫畫進行授課、研習,以及心理與職涯方面的研究,所開設的講座也頗受好評。 譯者簡介 林詠純 臺灣大學物理系、地質系雙學士,日本九州大學藝術工學府碩士,曾在民間研究機構擔任日文研究助理,現為專職日文譯者。譯有《理智斷線》《未來年表》《民粹時代》等書。
"
- "genre" => "Self-Help"
- "isPreview" => 0
- "itemName" => "鬼滅之刃心理學: 打造強韌內在的38個法則"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/鬼滅之刃心理學 打造強韌內在的38個法則.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/鬼滅之刃心理學 打造強韌內在的38個法則.epub"
- }
- 280 => {
- "artistName" => "钱穆"
- "BKAllocatedSize" => 7168000
- "BKBookType" => "epub"
- "BKDisplayName" => "国史大纲钱穆-s3z9k"
- "BKGeneratedItemId" => "517B5D099230EA302EEACEBB910EE863"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "517B5D099230EA302EEACEBB910EE863"
- }
- "isPreview" => 0
- "itemName" => "《国史大纲》钱穆-s3z9k"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/国史大纲钱穆-s3z9k.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/国史大纲钱穆-s3z9k.epub"
- }
- 281 => {
- "artistName" => "瓦茨拉夫·哈维尔"
- "BKAllocatedSize" => 1052672
- "BKBookType" => "epub"
- "BKDisplayName" => "哈维尔文集-n77u3"
- "BKGeneratedItemId" => "66A25F3D6594D40E7BEFA81E7546B6CB"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "66A25F3D6594D40E7BEFA81E7546B6CB"
- }
- "isPreview" => 0
- "itemName" => "哈维尔文集-n77u3"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/哈维尔文集-n77u3.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/哈维尔文集-n77u3.epub"
- }
- 282 => {
- "artistName" => "(英)罗伯特•戴博德"
- "BKAllocatedSize" => 638976
- "BKBookType" => "epub"
- "BKDisplayName" => "蛤蟆先生去看心理医生"
- "BKGeneratedItemId" => "9D5A23D4E904C6EC6BA99BEDB4059319"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "9D5A23D4E904C6EC6BA99BEDB4059319"
- }
- "isPreview" => 0
- "itemName" => "蛤蟆先生去看心理医生"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/蛤蟆先生去看心理医生.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/蛤蟆先生去看心理医生.epub"
- }
- 283 => {
- "artistName" => "李慎明 李捷 主编"
- "BKAllocatedSize" => 6750208
- "BKBookType" => "epub"
- "BKDisplayName" => "还历史的本原-李慎明_李捷-99c7h"
- "BKGeneratedItemId" => "3367454099E377949449928BE5420738"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "3367454099E377949449928BE5420738"
- }
- "isPreview" => 0
- "itemName" => "还历史的本原-李慎明_李捷-99c7h"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/还历史的本原-李慎明_李捷-99c7h.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/还历史的本原-李慎明_李捷-99c7h.epub"
- }
- 284 => {
- "artistName" => "安德鲁·兰伯特"
- "BKAllocatedSize" => 6610944
- "BKBookType" => "epub"
- "BKDisplayName" => "海洋与权力一部新文明史"
- "BKGeneratedItemId" => "32EB66C829E8ADBF3C91B5DB44E5A91F"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "32EB66C829E8ADBF3C91B5DB44E5A91F"
- }
- "isPreview" => 0
- "itemName" => "海洋与权力:一部新文明史"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/海洋与权力一部新文明史.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/海洋与权力一部新文明史.epub"
- }
- 285 => {
- "artistName" => "韩炳哲"
- "BKAllocatedSize" => 2641920
- "BKBookType" => "epub"
- "BKDisplayName" => "韩炳哲作品系列套装共9册"
- "BKGeneratedItemId" => "7A2D7A24C4DF3A15BC7F857CF2D08869"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "7A2D7A24C4DF3A15BC7F857CF2D08869"
- }
- "isPreview" => 0
- "itemName" => "韩炳哲作品系列(套装共9册)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/韩炳哲作品系列套装共9册.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/韩炳哲作品系列套装共9册.epub"
- }
- 286 => {
- "artistName" => "陈嘉映"
- "BKAllocatedSize" => 823296
- "BKBookType" => "epub"
- "BKDisplayName" => "何为良好生活行之于途而应于心"
- "BKGeneratedItemId" => "F43509EA84CB00ACD718582C765BA6FA"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "F43509EA84CB00ACD718582C765BA6FA"
- }
- "bookDescription" => "编辑推荐
陈嘉映先生有个流传甚广的哲学时间表:一步是做语言哲学和本体论;二步是知识论或曰科学哲学;最后抵达伦理哲学和政治哲学。前两步,成果卓著,有目共睹;本书正是这第三步。书中讨论的问题,他都有不下三十年的思考。而这些问题,恰是我们每个人都关心的最切身的问题,与我们的真实困惑相联系。“我们都希望过上合情合理的生活,理性时代人凡事要明个道理,德性重要,我们就想弄清楚德性之理。”在写作风格上,本书一如作者之前的著作,既面向专业读者,也面向一般大众,它向一切有教养、寻求理解的心智敞开。“用现代汉语写出优秀的哲学,自然就有了中国哲学”,在此意义上说,这本书是真正的中国伦理学著作。
内容简介
《何为良好生活:行之于途而应于心》是陈嘉映先生对哲学中与我们生活最切近的伦理学诸问题的深入思考和清晰论述。
《何为良好生活:行之于途而应于心》从伦理学与自然科学的区别写起,续之讨论善恶问题、知行关系、行动理论,从亚里士多德到麦金太尔的实践概念,以及何为良好生活。其中,作者对功效主义提出了批评,对人生之目的、利益最大化等议题做了鞭辟入里的分析,同时以分析哲学家特有的敏锐和现象学家特有的绵密,对快乐、幸福等基本概念做了深刻细致的辨析。
作者简介
陈嘉映,1952年生,被认为是“中国最可能接近哲学家称呼的人”。先后任教北京大学哲学系、华东师范大学哲学系,现为首都师范大学哲学系特聘教授。其学术贯通欧陆现象学与英美分析哲学,著有《海德格尔哲学概论》《从感觉开始》《无法还原的象》《哲学·科学·常识》《说理》《价值的理由》《简明语言哲学》等;译有《存在与时间》《哲学研究》《哲学中的语言学》《感觉与可感物》等。
"
- "isPreview" => 0
- "itemName" => "何为良好生活:行之于途而应于心"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/何为良好生活行之于途而应于心.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/何为良好生活行之于途而应于心.epub"
- }
- 287 => {
- "artistName" => "赫尔曼·黑塞(Hermann Hesse)"
- "BKAllocatedSize" => 3969024
- "BKBookType" => "epub"
- "BKDisplayName" => "赫尔曼黑塞与托马斯曼书信集____德赫尔曼黑塞___德托马-mcp0e"
- "BKGeneratedItemId" => "C40C6804336D203DB8D0F178EFFDC663"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "C40C6804336D203DB8D0F178EFFDC663"
- }
- "bookDescription" => "
-
本书收录了德国两位文学巨匠托马斯•曼与赫尔曼•黑塞在1910年至1955年间的通信往来。黑塞与托马斯•曼的出身、艺术趣味和读者群体都不尽相同,但两人追求真理的渴望却如出一辙,通过与传统的联系,致力于道德与精神、伦理与美学的互动,这在他们不时相互呼应的创作主题中得以呈现。黑塞很早就开始关注托马斯•曼的创作,后者则称黑塞是“同代作家中很早就选定的最亲近之人”。对托马斯•曼而言,文学创作是他实现入世雄心、建立个人风格的途径,对黑塞则是忏悔和灵魂的自疗。他们借由文字和图画交换创作灵感、分享阅读体验和日常生活。两次世界大战前后,两位高尚的写作者就战争的愚蠢、纳粹的野蛮行径和战时的国内外文学图景多次通信交换彼此的意见,也为战后德国和欧洲未来的命运感到担忧。他们生活在一个可怖的时代,但他们从未向绝望妥协。两人借由书信相互安慰扶持,在对方遭到外界诋毁时为其辩护。这对旗鼓相当又坚定而独立的伙伴充分精妙地表达了出身、气质和生活态度的差异,但又表现出殊途同归的艺术旨趣,这让他们的对话具有特殊的吸引力,为读者提供了一份从文化和当代史角度来看都极为丰厚的文学遗产。
"
- "genre" => "书聚EBOOKG.COM"
- "isPreview" => 0
- "itemName" => "赫尔曼·黑塞与托马斯·曼书信集____[德]赫尔曼·黑塞___[德]托马-mcp0e"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/赫尔曼黑塞与托马斯曼书信集____德赫尔曼黑塞___德托马-mcp0e.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/赫尔曼黑塞与托马斯曼书信集____德赫尔曼黑塞___德托马-mcp0e.epub"
- }
- 288 => {
- "artistName" => "青柳碧人"
- "BKAllocatedSize" => 868352
- "BKBookType" => "epub"
- "BKDisplayName" => "很久很久以前在某一个地方豆瓣8"
- "BKGeneratedItemId" => "A0F660E3E03583BC0978BB754BD2E1F5"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "A0F660E3E03583BC0978BB754BD2E1F5"
- }
- "isPreview" => 0
- "itemName" => "很久很久以前,在某一个地方……【豆瓣8.8分诚意之作!日本畅销30万册!颠覆年度各大推理榜单!5个民间故事X5个杀人谜案=5种脑洞大开的阅读乐趣!】"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/很久很久以前在某一个地方豆瓣8.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/很久很久以前在某一个地方豆瓣8.epub"
- }
- 289 => {
- "artistName" => "赫尔曼•黑塞 (Hermann Hesse)"
- "BKAllocatedSize" => 679936
- "BKBookType" => "epub"
- "BKDisplayName" => "荒原狼"
- "BKGeneratedItemId" => "C7F28569F5CD3B66B0DC9A27D90F6F45"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "C7F28569F5CD3B66B0DC9A27D90F6F45"
- }
- "isPreview" => 0
- "itemName" => "荒原狼"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/荒原狼.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/荒原狼.epub"
- }
- 290 => {
- "artistName" => "Felix Martin"
- "BKAllocatedSize" => 3006464
- "BKBookType" => "epub"
- "BKDisplayName" => "货币野史"
- "BKGeneratedItemId" => "F337830A97795E27F3DDFD99D5CB7418"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "F337830A97795E27F3DDFD99D5CB7418"
- }
- "genre" => "来秀营(www.laixoo.com)"
- "isPreview" => 0
- "itemName" => "货币野史"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/货币野史.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/货币野史.epub"
- }
- 291 => {
- "artistName" => "许进雄"
- "BKAllocatedSize" => 7602176
- "BKBookType" => "epub"
- "BKDisplayName" => "甲骨文有故事-kmltq"
- "BKGeneratedItemId" => "A556272E34344FDA7E8C0055EB836A78"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "A556272E34344FDA7E8C0055EB836A78"
- }
- "genre" => "文字研究 考古 历史 汉字"
- "isPreview" => 0
- "itemName" => "甲骨文有故事-kmltq"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/甲骨文有故事-kmltq.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/甲骨文有故事-kmltq.epub"
- }
- 292 => {
- "artistName" => "(挪威)乔斯坦·贾德著;叶宗琪译"
- "BKAllocatedSize" => 512000
- "BKBookType" => "epub"
- "BKDisplayName" => "贾德谈人生"
- "BKGeneratedItemId" => "C91C9C1591CE8B67306205F5E33E425A"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424272
- "book-info" => {
- "package-file-hash" => "C91C9C1591CE8B67306205F5E33E425A"
- }
- "isPreview" => 0
- "itemName" => "贾德谈人生"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/贾德谈人生.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/贾德谈人生.epub"
- }
- 293 => {
- "artistName" => "Unknown"
- "BKAllocatedSize" => 4259840
- "BKBookType" => "epub"
- "BKDisplayName" => "假病江南地区一个村落的疾病观念-jmhws"
- "BKGeneratedItemId" => "75BA34D58CE6927240A7147687571146"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "75BA34D58CE6927240A7147687571146"
- }
- "genre" => "汇书网"
- "isPreview" => 0
- "itemName" => "假病:江南地区一个村落的疾病观念-jmhws"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/假病江南地区一个村落的疾病观念-jmhws.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/假病江南地区一个村落的疾病观念-jmhws.epub"
- }
- 294 => {
- "artistName" => "锋云"
- "BKAllocatedSize" => 1392640
- "BKBookType" => "epub"
- "BKDisplayName" => "建安十三年后汉三国的历史大转折与大变局"
- "BKGeneratedItemId" => "1B3822589265688EC33CF245E9BD1CC5"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "1B3822589265688EC33CF245E9BD1CC5"
- }
- "isPreview" => 0
- "itemName" => "建安十三年:后汉三国的历史大转折与大变局"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/建安十三年后汉三国的历史大转折与大变局.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/建安十三年后汉三国的历史大转折与大变局.epub"
- }
- 295 => {
- "artistName" => "杨照"
- "BKAllocatedSize" => 1081344
- "BKBookType" => "epub"
- "BKDisplayName" => "讲给大家的中国历史11-7ym0m"
- "BKGeneratedItemId" => "60957F4876411CB4BCA934905D09949E"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "60957F4876411CB4BCA934905D09949E"
- }
- "genre" => "-SanQiu.mobi"
- "isPreview" => 0
- "itemName" => "讲给大家的中国历史11-7ym0m"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/讲给大家的中国历史11-7ym0m.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/讲给大家的中国历史11-7ym0m.epub"
- }
- 296 => {
- "artistName" => "[美] 丹尼尔·耶金"
- "BKAllocatedSize" => 1961984
- "BKBookType" => "epub"
- "BKDisplayName" => "奖赏-070xx"
- "BKGeneratedItemId" => "A1BE92F747ED498FF1E143C88C3DA917"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "A1BE92F747ED498FF1E143C88C3DA917"
- }
- "isPreview" => 0
- "itemName" => "奖赏-070xx"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/奖赏-070xx.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/奖赏-070xx.epub"
- }
- 297 => {
- "artistName" => "Unknown"
- "BKAllocatedSize" => 724992
- "BKBookType" => "epub"
- "BKDisplayName" => "解体概要-uesn12"
- "BKGeneratedItemId" => "552D72A6193FE05F397EB9FFEB6E3C33"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "552D72A6193FE05F397EB9FFEB6E3C33"
- }
- "bookDescription" => "本书是萧沆的代表作,以片段写作的方式,呈现了真实的人生经验,它会破坏你我所有的信念,从心灵到肉体、从宗教到哲学、从出生到终结,任何既定想法,都会在这本书的阅读过程中,全面解体。本书是萧沆的第一部法文作品,被认为“足令法文增辉”,并获法国里瓦罗尔(RIVAROL)奖。"
- "isPreview" => 0
- "itemName" => "解体概要-uesn12"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/解体概要-uesn12.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/解体概要-uesn12.epub"
- }
- 298 => {
- "artistName" => "陈秋平,尚荣译注"
- "BKAllocatedSize" => 987136
- "BKBookType" => "epub"
- "BKDisplayName" => "金刚经 心经 坛经中华经典藏书升级版"
- "BKGeneratedItemId" => "522C4A676AB4464404DCBC4A535C9D87"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "522C4A676AB4464404DCBC4A535C9D87"
- }
- "isPreview" => 0
- "itemName" => "金刚经 心经 坛经——中华经典藏书(升级版)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/金刚经 心经 坛经中华经典藏书升级版.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/金刚经 心经 坛经中华经典藏书升级版.epub"
- }
- 299 => {
- "artistName" => "肖恩·B.卡罗尔"
- "BKAllocatedSize" => 6156288
- "BKBookType" => "epub"
- "BKDisplayName" => "进化的偶然-美肖恩b"
- "BKGeneratedItemId" => "1B3AA2662970ADAF9579F3AEB7B7636D"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "1B3AA2662970ADAF9579F3AEB7B7636D"
- }
- "genre" => "天浪书屋"
- "isPreview" => 0
- "itemName" => "进化的偶然-[美]肖恩·b._卡罗尔-j2neh"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/进化的偶然-美肖恩b.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/进化的偶然-美肖恩b.epub"
- }
- 300 => {
- "artistName" => "托马斯·索维尔"
- "BKAllocatedSize" => 1642496
- "BKBookType" => "epub"
- "BKDisplayName" => "经济学的思维方式-yvxfc"
- "BKGeneratedItemId" => "D32037C05D247284383C5C394EA82F9B"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "D32037C05D247284383C5C394EA82F9B"
- }
- "isPreview" => 0
- "itemName" => "经济学的思维方式-yvxfc"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/经济学的思维方式-yvxfc.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/经济学的思维方式-yvxfc.epub"
- }
- 301 => {
- "artistName" => "许倬云"
- "BKAllocatedSize" => 4014080
- "BKBookType" => "epub"
- "BKDisplayName" => "经纬华夏-许倬云-dqz4x"
- "BKGeneratedItemId" => "BA35E4FCFE1906E88704AE9EC698F7FC"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "BA35E4FCFE1906E88704AE9EC698F7FC"
- }
- "genre" => "天浪书屋"
- "isPreview" => 0
- "itemName" => "经纬华夏-许倬云-dqz4x"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/经纬华夏-许倬云-dqz4x.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/经纬华夏-许倬云-dqz4x.epub"
- }
- 302 => {
- "artistName" => "黑格尔"
- "BKAllocatedSize" => 1527808
- "BKBookType" => "epub"
- "BKDisplayName" => "精神现象学k8f4g"
- "BKGeneratedItemId" => "DEAFA5ECACA3C65A070ED6D012231EC1"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "DEAFA5ECACA3C65A070ED6D012231EC1"
- }
- "genre" => "哲学"
- "isPreview" => 0
- "itemName" => "精神现象学k8f4g"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/精神现象学k8f4g.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/精神现象学k8f4g.epub"
- }
- 303 => {
- "artistName" => "[英]罗宾·贝克"
- "BKAllocatedSize" => 1073152
- "BKBookType" => "epub"
- "BKDisplayName" => "精子战争w3nnz"
- "BKGeneratedItemId" => "D651CB42F3BC3EB31893B045FED48157"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "D651CB42F3BC3EB31893B045FED48157"
- }
- "bookDescription" => "每个人都曾经有自己的“史前社会” 每个人都是精子战争中的“王中王”不仅是在子宫内 在大千世界的性爱行为 也造就了精子战争的广阔战场
"
- "isPreview" => 0
- "itemName" => "精子战争w3nnz"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/精子战争w3nnz.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/精子战争w3nnz.epub"
- }
- 304 => {
- "artistName" => "三联生活周刊"
- "BKAllocatedSize" => 6103040
- "BKBookType" => "epub"
- "BKDisplayName" => "酒的中国地理-y5a39"
- "BKGeneratedItemId" => "7D770C10768BBED9C6580E479BEEE4E7"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "7D770C10768BBED9C6580E479BEEE4E7"
- }
- "bookDescription" => "20年中国白酒市场化的道路,在微观经济学的分析结构里,其动力关键是1%香气成分认识的深入。关注中国经济的发展模式选择,比较优势是主体界定,那么,竞争优势如何产生?或许中国白酒,以及它所具有的1%香气成分可以提供部分解释。至少,工业化未必是惟一导向。
● 寻访佳酿生成的时空奥秘
● 赤水河:60公里的酱香传奇
● 酒的中国地理
● 杏花村里汾酒香
● 鉴湖水与绍兴酒
● 湘西寻酒记
● 川西平原的美酒带
● 45年求解神秘茅台
● 茅台型酱香酒是怎样酿成的
"
- "isPreview" => 0
- "itemName" => "酒的中国地理-y5a39"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/酒的中国地理-y5a39.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/酒的中国地理-y5a39.epub"
- }
- 305 => {
- "artistName" => "布莱克·斯奈德"
- "BKAllocatedSize" => 5943296
- "BKBookType" => "epub"
- "BKDisplayName" => "救猫咪合集"
- "BKGeneratedItemId" => "AD7DAE867151CB743868825A3F48A8FB"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "AD7DAE867151CB743868825A3F48A8FB"
- }
- "isPreview" => 0
- "itemName" => "救猫咪合集"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/救猫咪合集.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/救猫咪合集.epub"
- }
- 306 => {
- "artistName" => "安田理央"
- "BKAllocatedSize" => 630784
- "BKBookType" => "epub"
- "BKDisplayName" => "巨乳研究室-zhrc8"
- "BKGeneratedItemId" => "186FD975D92A8C9DCF739FA2D1AC6CB9"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "186FD975D92A8C9DCF739FA2D1AC6CB9"
- }
- "bookDescription" => "在日本地位有如台灣AV巨擘的成人研究作家安田理央,
先是縱觀古今,橫亙東西,爬梳大量通俗史料,看看人們心中最性感的乳房尺寸,怎麼隨著時代潮流起伏,再追溯戰後的日本成人影視出版文化,觀察這些傲人雙峰的主人,怎麼從讓人羞於啟齒的小黃本主角,搖身一變成為橫掃主流綜藝節目、戲劇的性感偶像。"
- "genre" => "人文藝術"
- "isPreview" => 0
- "itemName" => "巨乳研究室-zhrc8"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/巨乳研究室-zhrc8.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/巨乳研究室-zhrc8.epub"
- }
- 307 => {
- "artistName" => "锺叔河"
- "BKAllocatedSize" => 1990656
- "BKBookType" => "epub"
- "BKDisplayName" => "绝妙好文念楼学短选读-sjx0a"
- "BKGeneratedItemId" => "3AB1E9F133746026EE8A1F3AA5223961"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "3AB1E9F133746026EE8A1F3AA5223961"
- }
- "genre" => "天浪书屋"
- "isPreview" => 0
- "itemName" => "绝妙好文:念楼学短选读-sjx0a"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/绝妙好文念楼学短选读-sjx0a.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/绝妙好文念楼学短选读-sjx0a.epub"
- }
- 308 => {
- "artistName" => "ouyushu.com 尼科洛·马基雅维里(Machiavelli.N.)"
- "BKAllocatedSize" => 528384
- "BKBookType" => "epub"
- "BKDisplayName" => "君主论-汉译学术名著系列-zh0x1"
- "BKGeneratedItemId" => "DBD91D8B55921C4F4C83913D8C39DE13"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "DBD91D8B55921C4F4C83913D8C39DE13"
- }
- "genre" => "意大利"
- "isPreview" => 0
- "itemName" => "君主论-汉译学术名著系列-zh0x1"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/君主论-汉译学术名著系列-zh0x1.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/君主论-汉译学术名著系列-zh0x1.epub"
- }
- 309 => {
- "artistName" => "奧古斯丁‧塞奇威克"
- "BKAllocatedSize" => 1806336
- "BKBookType" => "epub"
- "BKDisplayName" => "咖啡帝國-vkrlb"
- "BKGeneratedItemId" => "337E65FA05D65C24883C1A70C5C89274"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "337E65FA05D65C24883C1A70C5C89274"
- }
- "isPreview" => 0
- "itemName" => "咖啡帝國-vkrlb"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/咖啡帝國-vkrlb.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/咖啡帝國-vkrlb.epub"
- }
- 310 => {
- "artistName" => "陀思妥耶夫斯基"
- "BKAllocatedSize" => 2834432
- "BKBookType" => "epub"
- "BKDisplayName" => "卡拉马佐夫兄弟 陀思妥耶夫斯基精选集"
- "BKGeneratedItemId" => "0D10B7E92002A73C7315480715855DEF"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "0D10B7E92002A73C7315480715855DEF"
- }
- "isPreview" => 0
- "itemName" => "卡拉马佐夫兄弟 (陀思妥耶夫斯基精选集)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/卡拉马佐夫兄弟 陀思妥耶夫斯基精选集.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/卡拉马佐夫兄弟 陀思妥耶夫斯基精选集.epub"
- }
- 311 => {
- "artistName" => "申克·阿伦斯"
- "BKAllocatedSize" => 1376256
- "BKBookType" => "epub"
- "BKDisplayName" => "卡片笔记写作法如何实现从阅读到写作聪明人如何记笔记高效记笔记-1j4tv"
- "BKGeneratedItemId" => "BD9BBAB963F0A8F7A0E5DEEE438DF424"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "BD9BBAB963F0A8F7A0E5DEEE438DF424"
- }
- "isPreview" => 0
- "itemName" => "卡片笔记写作法:如何实现从阅读到写作(聪明人如何记笔记,高效记笔记)-1j4tv"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/卡片笔记写作法如何实现从阅读到写作聪明人如何记笔记高效记笔记-1j4tv.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/卡片笔记写作法如何实现从阅读到写作聪明人如何记笔记高效记笔记-1j4tv.epub"
- }
- 312 => {
- "artistName" => "陈婕君"
- "BKAllocatedSize" => 671744
- "BKBookType" => "epub"
- "BKDisplayName" => "可塑的我自我发展心理学的35堂必修课自我发展心理学的35堂必修课"
- "BKGeneratedItemId" => "C0020ED428C2F58F65AE344C9358BC64"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "C0020ED428C2F58F65AE344C9358BC64"
- }
- "isPreview" => 0
- "itemName" => "可塑的我:自我发展心理学的35堂必修课(自我发展心理学的35堂必修课)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/可塑的我自我发展心理学的35堂必修课自我发展心理学的35堂必修课.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/可塑的我自我发展心理学的35堂必修课自我发展心理学的35堂必修课.epub"
- }
- 313 => {
- "artistName" => "石黑一雄"
- "BKAllocatedSize" => 991232
- "BKBookType" => "epub"
- "BKDisplayName" => "克拉拉与太阳"
- "BKGeneratedItemId" => "233673438EBF09A1E8EF090390BAB488"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "233673438EBF09A1E8EF090390BAB488"
- }
- "isPreview" => 0
- "itemName" => "克拉拉与太阳"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/克拉拉与太阳.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/克拉拉与太阳.epub"
- }
- 314 => {
- "artistName" => "[丹麦] 索伦·奥碧·克尔凯郭尔"
- "BKAllocatedSize" => 2441216
- "BKBookType" => "epub"
- "BKDisplayName" => "恐惧与颤栗-azkck"
- "BKGeneratedItemId" => "3E48C75014C38509DC7D6279686442DF"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "3E48C75014C38509DC7D6279686442DF"
- }
- "bookDescription" => "1"
- "isPreview" => 0
- "itemName" => "恐惧与颤栗-azkck"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/恐惧与颤栗-azkck.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/恐惧与颤栗-azkck.epub"
- }
- 315 => {
- "artistName" => "康纳曼"
- "BKAllocatedSize" => 1667072
- "BKBookType" => "epub"
- "BKDisplayName" => "快思慢想"
- "BKGeneratedItemId" => "F903EE78618FBE9A6C953CCD0747AD72"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "F903EE78618FBE9A6C953CCD0747AD72"
- }
- "isPreview" => 0
- "itemName" => "快思慢想"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/快思慢想.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/快思慢想.epub"
- }
- 316 => {
- "artistName" => "高瑞东"
- "BKAllocatedSize" => 8179712
- "BKBookType" => "epub"
- "BKDisplayName" => "框架中国经济政策路径与金融市场-pap7n"
- "BKGeneratedItemId" => "871678A49360D1C038EB4BF730243888"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "871678A49360D1C038EB4BF730243888"
- }
- "isPreview" => 0
- "itemName" => "框架:中国经济、政策路径与金融市场-pap7n"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/框架中国经济政策路径与金融市场-pap7n.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/框架中国经济政策路径与金融市场-pap7n.epub"
- }
- 317 => {
- "artistName" => "凤歌"
- "BKAllocatedSize" => 4743168
- "BKBookType" => "epub"
- "BKDisplayName" => "昆仑"
- "BKGeneratedItemId" => "4013413D93B1FA19A02C0B0B3AAEF73D"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "4013413D93B1FA19A02C0B0B3AAEF73D"
- }
- "genre" => "武侠小说"
- "isPreview" => 0
- "itemName" => "昆仑"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/昆仑.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/昆仑.epub"
- }
- 318 => {
- "artistName" => "刘鹗"
- "BKAllocatedSize" => 2592768
- "BKBookType" => "epub"
- "BKDisplayName" => "老残游记"
- "BKGeneratedItemId" => "0D059A88DF7A13753726E2D301ABA8E9"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "0D059A88DF7A13753726E2D301ABA8E9"
- }
- "bookDescription" => "一部讲透中国官场规则、潜规则的传世经典小说
本书主人公老残,不入仕途,浪迹江湖,凭借医术糊口,游走中华大地,看似跌宕曲折的游历,实则是潜入官场内部的冒险。
老残一路走,一路看,茫茫官场,芸芸百官,玉贤、刚弼等“清官”的真实面目、官场晋升的手段和细节,一一浮出水面,读来不寒而栗;中国传统官场文化中的规则与潜规则,再无任何遮掩!
本书问世百年,赢得“中国近一百年内无此小说”之盛赞,更被联合国教科文组织认定为世界文学名著。
"
- "isPreview" => 0
- "itemName" => "老残游记"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/老残游记.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/老残游记.epub"
- }
- 319 => {
- "artistName" => "(日)冈本加乃子"
- "BKAllocatedSize" => 741376
- "BKBookType" => "epub"
- "BKDisplayName" => "老妓抄-4ygu6"
- "BKGeneratedItemId" => "637BA0ADD12373545C2895E9CF21EB72"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "637BA0ADD12373545C2895E9CF21EB72"
- }
- "isPreview" => 0
- "itemName" => "老妓抄-4ygu6"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/老妓抄-4ygu6.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/老妓抄-4ygu6.epub"
- }
- 320 => {
- "artistName" => "Unknown"
- "BKAllocatedSize" => 851968
- "BKBookType" => "epub"
- "BKDisplayName" => "了凡四训白话译注版-brww0d"
- "BKGeneratedItemId" => "5E8E6633123598CF6BDA77046EBB279C"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "5E8E6633123598CF6BDA77046EBB279C"
- }
- "isPreview" => 0
- "itemName" => "《了凡四训》白话译注版-brww0d"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/了凡四训白话译注版-brww0d.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/了凡四训白话译注版-brww0d.epub"
- }
- 321 => {
- "artistName" => "haifeng0130@126.com"
- "BKAllocatedSize" => 1880064
- "BKBookType" => "epub"
- "BKDisplayName" => "楞严经圆通疏"
- "BKGeneratedItemId" => "E785EAE4D1BAB2410ED16FF5A4E22E8E"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "E785EAE4D1BAB2410ED16FF5A4E22E8E"
- }
- "isPreview" => 0
- "itemName" => "楞严经圆通疏"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/楞严经圆通疏.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/楞严经圆通疏.epub"
- }
- 322 => {
- "artistName" => "李大钊 著"
- "BKAllocatedSize" => 3067904
- "BKBookType" => "epub"
- "BKDisplayName" => "李大钊选集"
- "BKGeneratedItemId" => "1983F3B5E3024996AB3A7A486F587342"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "1983F3B5E3024996AB3A7A486F587342"
- }
- "isPreview" => 0
- "itemName" => "李大钊选集"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/李大钊选集.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/李大钊选集.epub"
- }
- 323 => {
- "artistName" => "李硕"
- "BKAllocatedSize" => 5918720
- "BKBookType" => "epub"
- "BKDisplayName" => "李硕_-_翦商殷周之变与华夏新生-b2png"
- "BKGeneratedItemId" => "4E0F3E9ADAE8D53617E93A75A637E073"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "4E0F3E9ADAE8D53617E93A75A637E073"
- }
- "isPreview" => 0
- "itemName" => "李硕_-_翦商:殷周之变与华夏新生-b2png"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/李硕_-_翦商殷周之变与华夏新生-b2png.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/李硕_-_翦商殷周之变与华夏新生-b2png.epub"
- }
- 324 => {
- "artistName" => "柏拉图 (Plato)"
- "BKAllocatedSize" => 4329472
- "BKBookType" => "epub"
- "BKDisplayName" => "理想国-a4r22"
- "BKGeneratedItemId" => "F6EEC0A712209187B532C9FCFEE8C1C3"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "F6EEC0A712209187B532C9FCFEE8C1C3"
- }
- "isPreview" => 0
- "itemName" => "理想国-a4r22"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/理想国-a4r22.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/理想国-a4r22.epub"
- }
- 325 => {
- "artistName" => "陈春成"
- "BKAllocatedSize" => 19169280
- "BKBookType" => "epub"
- "BKDisplayName" => "理想国2020年豆瓣高分文学作品集理想国2020年度最受好评新书"
- "BKGeneratedItemId" => "EF062B46C8815AADA11904CDB983D793"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "EF062B46C8815AADA11904CDB983D793"
- }
- "isPreview" => 0
- "itemName" => "理想国2020年豆瓣高分文学作品集【理想国2020年度最受好评新书】"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/理想国2020年豆瓣高分文学作品集理想国2020年度最受好评新书.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/理想国2020年豆瓣高分文学作品集理想国2020年度最受好评新书.epub"
- }
- 326 => {
- "artistName" => "[美]弗朗西斯·福山(著)"
- "BKAllocatedSize" => 7323648
- "BKBookType" => "epub"
- "BKDisplayName" => "理想国译丛005 政治秩序的起源从前人类时代到法国大革命"
- "BKGeneratedItemId" => "B4A06F6A8E80D699061A68741F23B0B8"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "B4A06F6A8E80D699061A68741F23B0B8"
- }
- "isPreview" => 0
- "itemName" => "理想国译丛005 · 政治秩序的起源:从前人类时代到法国大革命"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/理想国译丛005 政治秩序的起源从前人类时代到法国大革命.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/理想国译丛005 政治秩序的起源从前人类时代到法国大革命.epub"
- }
- 327 => {
- "artistName" => "B.K.Kuiper"
- "BKAllocatedSize" => 937984
- "BKBookType" => "epub"
- "BKDisplayName" => "历史的轨迹二千年教会史"
- "BKGeneratedItemId" => "39D9746FB3BF05944BEA2CFBDF4B0E12"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "39D9746FB3BF05944BEA2CFBDF4B0E12"
- }
- "isPreview" => 0
- "itemName" => "历史的轨迹——二千年教会史"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/历史的轨迹二千年教会史.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/历史的轨迹二千年教会史.epub"
- }
- 328 => {
- "artistName" => "国家人文历史团队"
- "BKAllocatedSize" => 1159168
- "BKBookType" => "epub"
- "BKDisplayName" => "历史的棋局-oucow"
- "BKGeneratedItemId" => "9383A6628F8D1D43FA2DFF55442D635E"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "9383A6628F8D1D43FA2DFF55442D635E"
- }
- "genre" => "天浪书屋"
- "isPreview" => 0
- "itemName" => "历史的棋局-oucow"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/历史的棋局-oucow.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/历史的棋局-oucow.epub"
- }
- 329 => {
- "artistName" => "王笛"
- "BKAllocatedSize" => 3928064
- "BKBookType" => "epub"
- "BKDisplayName" => "历史的微声-jf8ub"
- "BKGeneratedItemId" => "B0832EBE940F101877D7CE00A6B34DC0"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "B0832EBE940F101877D7CE00A6B34DC0"
- }
- "genre" => "-SanQiu.mobi"
- "isPreview" => 0
- "itemName" => "历史的微声-jf8ub"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/历史的微声-jf8ub.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/历史的微声-jf8ub.epub"
- }
- 330 => {
- "artistName" => "杜君立"
- "BKAllocatedSize" => 1138688
- "BKBookType" => "epub"
- "BKDisplayName" => "历史的细节马镫轮子和机器如何重构中国与世界-2lv8o"
- "BKGeneratedItemId" => "334332C8DBA49E621928EC5AFE20AEE2"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "334332C8DBA49E621928EC5AFE20AEE2"
- }
- "bookDescription" => "]]>
"
- "isPreview" => 0
- "itemName" => "历史的细节:马镫、轮子和机器如何重构中国与世界-2lv8o"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/历史的细节马镫轮子和机器如何重构中国与世界-2lv8o.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/历史的细节马镫轮子和机器如何重构中国与世界-2lv8o.epub"
- }
- 331 => {
- "artistName" => "[英]霍布斯"
- "BKAllocatedSize" => 1413120
- "BKBookType" => "epub"
- "BKDisplayName" => "利维坦"
- "BKGeneratedItemId" => "4F5F8749CD3D9729DB42502CE6421595"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "4F5F8749CD3D9729DB42502CE6421595"
- }
- "isPreview" => 0
- "itemName" => "利维坦"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/利维坦.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/利维坦.epub"
- }
- 332 => {
- "artistName" => "[美]海伦·米尔纳"
- "BKAllocatedSize" => 2969600
- "BKBookType" => "epub"
- "BKDisplayName" => "利益制度与信息国内政治与国际关系 东方编译所译丛"
- "BKGeneratedItemId" => "DADBA765919F8DA8B618219D772A4466"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "DADBA765919F8DA8B618219D772A4466"
- }
- "isPreview" => 0
- "itemName" => "利益、制度与信息:国内政治与国际关系 (东方编译所译丛)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/利益制度与信息国内政治与国际关系 东方编译所译丛.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/利益制度与信息国内政治与国际关系 东方编译所译丛.epub"
- }
- 333 => {
- "artistName" => "刘擎"
- "BKAllocatedSize" => 1232896
- "BKBookType" => "epub"
- "BKDisplayName" => "刘擎西方现代思想讲义"
- "BKGeneratedItemId" => "8D19E4736F1C2BCCC8462E2FF98255DC"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "8D19E4736F1C2BCCC8462E2FF98255DC"
- }
- "bookDescription" => "
-
人生的意义,人们向往的自由和公平的价值,人类文明的复杂冲突与未来趋势……这些让你困惑的大小问题,过去也困扰过韦伯、尼采、萨特等杰出的头脑。他们尽最大努力做出阐释,为后人提供了宝贵的思想标识。
-
在这部讲义里,刘擎介绍了现代视域下的19位思想大家,广泛而系统地讨论工具理性的利弊,如何面对虚无主义,消费主义对人的异化,财富分配的公平正义和全球化等议题。
-
思想不惑,精神明亮。你将在这19位大家的生平故事中,理解他们建构思想大厦的地基与框架。你还会在思想大厦之上,直面个人生活和社会公共领域的诸多难题,收获审慎而真诚的回答。
"
- "isPreview" => 0
- "itemName" => "刘擎西方现代思想讲义"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/刘擎西方现代思想讲义.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/刘擎西方现代思想讲义.epub"
- }
- 334 => {
- "artistName" => "黎紫書"
- "BKAllocatedSize" => 1318912
- "BKBookType" => "epub"
- "BKDisplayName" => "流俗地-mejux"
- "BKGeneratedItemId" => "81EAF4B02C57F7C4463D984A8B062E69"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424273
- "book-info" => {
- "package-file-hash" => "81EAF4B02C57F7C4463D984A8B062E69"
- }
- "bookDescription" => "《流俗地》以跳接時空的敘事手法,為各個角色穿針引線,每一短篇看似獨立卻又連續,這些小城人物在生命狂流裡載浮載沉,薄涼活著,無聲老去。他們冷眼、坎坷、孤寂、擁有短暫歡樂,卻都像電光石火,剎那間便走到時間盡頭,看俗世的風吹透灼熱的倉皇人生。"
- "genre" => "文學小說"
- "isPreview" => 0
- "itemName" => "流俗地-mejux"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/流俗地-mejux.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/流俗地-mejux.epub"
- }
- 335 => {
- "artistName" => "[德]马克斯·韦伯"
- "BKAllocatedSize" => 8491008
- "BKBookType" => "epub"
- "BKDisplayName" => "马克斯韦伯作品集套装6册现代社会学奠基人余英时苏国勋推荐译本 理想国出品"
- "BKGeneratedItemId" => "02266FDDF11A1823BF0C55B2FD732FB4"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "02266FDDF11A1823BF0C55B2FD732FB4"
- }
- "isPreview" => 0
- "itemName" => "马克斯·韦伯作品集(套装6册)【现代社会学奠基人,余英时、苏国勋推荐译本 理想国出品】"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/马克斯韦伯作品集套装6册现代社会学奠基人余英时苏国勋推荐译本 理想国出品.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/马克斯韦伯作品集套装6册现代社会学奠基人余英时苏国勋推荐译本 理想国出品.epub"
- }
- 336 => {
- "artistName" => "yixingxingde"
- "BKAllocatedSize" => 4816896
- "BKBookType" => "epub"
- "BKDisplayName" => "码农翻身用故事给技术加点料好玩有趣的编程知识"
- "BKGeneratedItemId" => "746808B0813D199DA22C3A22F9FCF825"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "746808B0813D199DA22C3A22F9FCF825"
- }
- "bookDescription" => "A book created by yixingxingde on doocer."
- "genre" => "Book"
- "isPreview" => 0
- "itemName" => "码农翻身:用故事给技术加点料(好玩有趣的编程知识)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/码农翻身用故事给技术加点料好玩有趣的编程知识.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/码农翻身用故事给技术加点料好玩有趣的编程知识.epub"
- }
- 337 => {
- "artistName" => "李泽厚"
- "BKAllocatedSize" => 5562368
- "BKBookType" => "epub"
- "BKDisplayName" => "美的历程"
- "BKGeneratedItemId" => "2A3082AF3BA4B4D227BDB4965B96A744"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "2A3082AF3BA4B4D227BDB4965B96A744"
- }
- "genre" => "益书网www.kindbook.cn"
- "isPreview" => 0
- "itemName" => "美的历程"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/美的历程.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/美的历程.epub"
- }
- 338 => {
- "artistName" => "Wei Zhi"
- "BKAllocatedSize" => 2060288
- "BKBookType" => "epub"
- "BKDisplayName" => "门阀-8a1n2"
- "BKGeneratedItemId" => "B618B9D57403CB54F04AB599FA130E7F"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "B618B9D57403CB54F04AB599FA130E7F"
- }
- "genre" => "天浪书屋"
- "isPreview" => 0
- "itemName" => "门阀-8a1n2"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/门阀-8a1n2.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/门阀-8a1n2.epub"
- }
- 339 => {
- "artistName" => "【英】罗斯·金"
- "BKAllocatedSize" => 1630208
- "BKBookType" => "epub"
- "BKDisplayName" => "米开朗琪罗与教皇的天花板甲骨文系列"
- "BKGeneratedItemId" => "594AABD4D0E180144C1778773B7E6506"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "594AABD4D0E180144C1778773B7E6506"
- }
- "isPreview" => 0
- "itemName" => "米开朗琪罗与教皇的天花板(甲骨文系列)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/米开朗琪罗与教皇的天花板甲骨文系列.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/米开朗琪罗与教皇的天花板甲骨文系列.epub"
- }
- 340 => {
- "artistName" => "安格斯·班克罗夫特"
- "BKAllocatedSize" => 2473984
- "BKBookType" => "epub"
- "BKDisplayName" => "米拉的猜想社会学版苏菲的世界30位社会学巨擘80个社会学大观念透射社会本质从平凡中发现不平凡让日常决策更理性后浪出品"
- "BKGeneratedItemId" => "1B9B044A216360D74F56C9BE85E9BCA6"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "1B9B044A216360D74F56C9BE85E9BCA6"
- }
- "isPreview" => 0
- "itemName" => "米拉的猜想(社会学版《苏菲的世界》,30位社会学巨擘,80个社会学大观念透射社会本质,从平凡中发现不平凡,让日常决策更理性!后浪出品)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/米拉的猜想社会学版苏菲的世界30位社会学巨擘80个社会学大观念透射社会本质从平凡中发现不平凡让日常决策更理性后浪出品.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/米拉的猜想社会学版苏菲的世界30位社会学巨擘80个社会学大观念透射社会本质从平凡中发现不平凡让日常决策更理性后浪出品.epub"
- }
- 341 => {
- "artistName" => "朗达·拜恩"
- "BKAllocatedSize" => 7237632
- "BKBookType" => "epub"
- "BKDisplayName" => "秘密+力量+魔力+秘密实践版+英雄"
- "BKGeneratedItemId" => "7B0A9982DD9A16224C493FF18F57F2E3"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "7B0A9982DD9A16224C493FF18F57F2E3"
- }
- "isPreview" => 0
- "itemName" => "秘密+力量+魔力+秘密实践版+英雄"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/秘密+力量+魔力+秘密实践版+英雄.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/秘密+力量+魔力+秘密实践版+英雄.epub"
- }
- 342 => {
- "artistName" => "斯文·贝克特"
- "BKAllocatedSize" => 7786496
- "BKBookType" => "epub"
- "BKDisplayName" => "棉花帝国一部资本主义全球史以棉花工业历史描述资本主义全球化进程用战争资本主义概念颠覆自由资本主义的神话"
- "BKGeneratedItemId" => "891BB6F497C7E3F9DC440D2272ABCD85"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "891BB6F497C7E3F9DC440D2272ABCD85"
- }
- "isPreview" => 0
- "itemName" => "棉花帝国:一部资本主义全球史(以棉花工业历史描述资本主义全球化进程,用“战争资本主义”概念颠覆“自由资本主义”的神话。)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/棉花帝国一部资本主义全球史以棉花工业历史描述资本主义全球化进程用战争资本主义概念颠覆自由资本主义的神话.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/棉花帝国一部资本主义全球史以棉花工业历史描述资本主义全球化进程用战争资本主义概念颠覆自由资本主义的神话.epub"
- }
- 343 => {
- "artistName" => "梁羽生"
- "BKAllocatedSize" => 4169728
- "BKBookType" => "epub"
- "BKDisplayName" => "名联观止____梁羽生__-xcyra"
- "BKGeneratedItemId" => "0C1F3641EB48CDBB14546115EF16CBB0"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "0C1F3641EB48CDBB14546115EF16CBB0"
- }
- "bookDescription" => "梁羽生痴迷对联,自认为在“资料的收集和研究方面,则所花的时间和精力,恐怕还在武侠小说之上”。本书由他在《大公报》所作近千篇“联趣”专栏整理修订而成,并首次增补《香港商报》的“联之趣”专栏内容,是其“联话”著作的完整版本。所涉均为古今名联,既谈对联的“内学”,涵括各类联体与各式对法;又论对联的“外学”,涉及历史用典、民俗掌故、月旦人物、名士轶闻等。梁羽生笔下的“联话”有趣、有料、有味,可视为一部联话体的文史百科。"
- "genre" => "对联-文学欣赏-中国"
- "isPreview" => 0
- "itemName" => "名联观止____梁羽生__-xcyra"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/名联观止____梁羽生__-xcyra.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/名联观止____梁羽生__-xcyra.epub"
- }
- 344 => {
- "artistName" => "(印)克里希那穆提"
- "BKAllocatedSize" => 647168
- "BKBookType" => "epub"
- "BKDisplayName" => "内在的重生-pzwcf"
- "BKGeneratedItemId" => "7AC1B5FCE3ADB3030ADC32BBCFBA67DA"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "7AC1B5FCE3ADB3030ADC32BBCFBA67DA"
- }
- "isPreview" => 0
- "itemName" => "内在的重生-pzwcf"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/内在的重生-pzwcf.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/内在的重生-pzwcf.epub"
- }
- 345 => {
- "artistName" => "休·麦凯(Hugh Mackay)"
- "BKAllocatedSize" => 700416
- "BKBookType" => "epub"
- "BKDisplayName" => "内在自我发现真实自我的乐趣"
- "BKGeneratedItemId" => "A2060AD511C032A32A916CF27C221EC7"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "A2060AD511C032A32A916CF27C221EC7"
- }
- "genre" => "天浪书屋"
- "isPreview" => 0
- "itemName" => "内在自我:发现真实自我的乐趣"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/内在自我发现真实自我的乐趣.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/内在自我发现真实自我的乐趣.epub"
- }
- 346 => {
- "artistName" => "尼采"
- "BKAllocatedSize" => 13352960
- "BKBookType" => "epub"
- "BKDisplayName" => "尼采哲学经典套装共5册 李敖力荐台湾经典译本"
- "BKGeneratedItemId" => "8A23324996A4E0084C3E762E008FACCE"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "8A23324996A4E0084C3E762E008FACCE"
- }
- "isPreview" => 0
- "itemName" => "尼采哲学经典(套装共5册) (李敖力荐台湾经典译本)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/尼采哲学经典套装共5册 李敖力荐台湾经典译本.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/尼采哲学经典套装共5册 李敖力荐台湾经典译本.epub"
- }
- 347 => {
- "artistName" => "安卓雅.布蘭特博士(Andrea Brandt, PhD, MFT)"
- "BKAllocatedSize" => 3289088
- "BKBookType" => "epub"
- "BKDisplayName" => "你不爽為什麼不明說-8d4mw"
- "BKGeneratedItemId" => "01A66674E7FAABEC000ECB9AFE9C7EAD"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "01A66674E7FAABEC000ECB9AFE9C7EAD"
- }
- "isPreview" => 0
- "itemName" => "你不爽,為什麼不明說?-8d4mw"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/你不爽為什麼不明說-8d4mw.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/你不爽為什麼不明說-8d4mw.epub"
- }
- 348 => {
- "artistName" => "唐纳德·米勒"
- "BKAllocatedSize" => 1306624
- "BKBookType" => "epub"
- "BKDisplayName" => "你的顾客需要一个好故事-xkybm"
- "BKGeneratedItemId" => "2ABB3851F3510719A7E8DBBD9BC9DE5F"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "2ABB3851F3510719A7E8DBBD9BC9DE5F"
- }
- "isPreview" => 0
- "itemName" => "你的顾客需要一个好故事-xkybm"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/你的顾客需要一个好故事-xkybm.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/你的顾客需要一个好故事-xkybm.epub"
- }
- 349 => {
- "artistName" => "费曼"
- "BKAllocatedSize" => 2969600
- "BKBookType" => "epub"
- "BKDisplayName" => "你干吗在乎别人怎么想 - 费曼ud6sl"
- "BKGeneratedItemId" => "4A8F11474523DDBD11B6350B9FC6CAD9"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "4A8F11474523DDBD11B6350B9FC6CAD9"
- }
- "isPreview" => 0
- "itemName" => "你干吗在乎别人怎么想? - 费曼ud6sl"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/你干吗在乎别人怎么想 - 费曼ud6sl.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/你干吗在乎别人怎么想 - 费曼ud6sl.epub"
- }
- 350 => {
- "artistName" => "关大眠 (Keown D.)"
- "BKAllocatedSize" => 1298432
- "BKBookType" => "epub"
- "BKDisplayName" => "牛津通识读本佛学概论中文版"
- "BKGeneratedItemId" => "AFBA7781144E12747B5DFC11A0BFA367"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "AFBA7781144E12747B5DFC11A0BFA367"
- }
- "genre" => "①佛教-概论"
- "isPreview" => 0
- "itemName" => "牛津通识读本:佛学概论(中文版)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/牛津通识读本佛学概论中文版.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/牛津通识读本佛学概论中文版.epub"
- }
- 351 => {
- "artistName" => "阿比吉特·班纳吉"
- "BKAllocatedSize" => 9965568
- "BKBookType" => "epub"
- "BKDisplayName" => "诺贝尔奖经济学合集套装共5册经济学领域的集大成作品"
- "BKGeneratedItemId" => "CD9F0127AA13797E35F3BCC37D7634FC"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "CD9F0127AA13797E35F3BCC37D7634FC"
- }
- "isPreview" => 0
- "itemName" => "诺贝尔奖经济学合集(套装共5册)(经济学领域的集大成作品)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/诺贝尔奖经济学合集套装共5册经济学领域的集大成作品.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/诺贝尔奖经济学合集套装共5册经济学领域的集大成作品.epub"
- }
- 352 => {
- "artistName" => "倪墨炎著"
- "BKAllocatedSize" => 1724416
- "BKBookType" => "epub"
- "BKDisplayName" => "叛徒与隐士周作人"
- "BKGeneratedItemId" => "7CC202A46BE22096645884AA70B67DB1"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "7CC202A46BE22096645884AA70B67DB1"
- }
- "isPreview" => 0
- "itemName" => "叛徒与隐士:周作人"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/叛徒与隐士周作人.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/叛徒与隐士周作人.epub"
- }
- 353 => {
- "artistName" => "〔加〕扬·马特尔(Yann Martel)"
- "BKAllocatedSize" => 933888
- "BKBookType" => "epub"
- "BKDisplayName" => "葡萄牙的高山-0qq75y"
- "BKGeneratedItemId" => "AD5CB647A69453F1DC61BC659D09BF0A"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "AD5CB647A69453F1DC61BC659D09BF0A"
- }
- "isPreview" => 0
- "itemName" => "葡萄牙的高山-0qq75y"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/葡萄牙的高山-0qq75y.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/葡萄牙的高山-0qq75y.epub"
- }
- 354 => {
- "artistName" => "张宏杰"
- "BKAllocatedSize" => 819200
- "BKBookType" => "epub"
- "BKDisplayName" => "千年悖论人性的历史实验记录_张宏杰-onv08"
- "BKGeneratedItemId" => "15548168B9F68CFDE73BD27836F93800"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "15548168B9F68CFDE73BD27836F93800"
- }
- "isPreview" => 0
- "itemName" => "千年悖论:人性的历史实验记录_(张宏杰)-onv08"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/千年悖论人性的历史实验记录_张宏杰-onv08.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/千年悖论人性的历史实验记录_张宏杰-onv08.epub"
- }
- 355 => {
- "artistName" => "彭波"
- "BKAllocatedSize" => 8658944
- "BKBookType" => "epub"
- "BKDisplayName" => "千年贸易战争史贸易冲突与大国兴衰"
- "BKGeneratedItemId" => "0BB76B93CF097D5070AE283F2795D6D2"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "0BB76B93CF097D5070AE283F2795D6D2"
- }
- "bookDescription" => "历史发展到今天,人们发现:对外贸易不但比过去人们认为的要
-复杂得多,而且也要重要得多。是到了重新认识对外贸易的时候了!"
- "isPreview" => 0
- "itemName" => "千年贸易战争史——贸易冲突与大国兴衰"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/千年贸易战争史贸易冲突与大国兴衰.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/千年贸易战争史贸易冲突与大国兴衰.epub"
- }
- 356 => {
- "artistName" => "香帅"
- "BKAllocatedSize" => 786432
- "BKBookType" => "epub"
- "BKDisplayName" => "钱从哪里来4岛链化经济-香帅新星版2023-uws7w"
- "BKGeneratedItemId" => "767D0B308F0FAD835514EDEB153F5B2A"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "767D0B308F0FAD835514EDEB153F5B2A"
- }
- "isPreview" => 0
- "itemName" => "钱从哪里来4(岛链化经济)-香帅[新星版2023]-uws7w"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/钱从哪里来4岛链化经济-香帅新星版2023-uws7w.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/钱从哪里来4岛链化经济-香帅新星版2023-uws7w.epub"
- }
- 357 => {
- "artistName" => "沈诱冰"
- "BKAllocatedSize" => 466944
- "BKBookType" => "epub"
- "BKDisplayName" => "钱意识聊一聊99的人都忽视的秘密"
- "BKGeneratedItemId" => "AF0BD7E8296D78474604F7DE98682129"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "AF0BD7E8296D78474604F7DE98682129"
- }
- "isPreview" => 0
- "itemName" => "钱意识:聊一聊99%的人都忽视的秘密"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/钱意识聊一聊99的人都忽视的秘密.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/钱意识聊一聊99的人都忽视的秘密.epub"
- }
- 358 => {
- "artistName" => "安德烈亚斯·安东诺普洛斯"
- "BKAllocatedSize" => 9392128
- "BKBookType" => "epub"
- "BKDisplayName" => "区块链通往资产数字化之路"
- "BKGeneratedItemId" => "920873E36B93F3D2DB11D0C54B530B5B"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "920873E36B93F3D2DB11D0C54B530B5B"
- }
- "isPreview" => 0
- "itemName" => "区块链:通往资产数字化之路"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/区块链通往资产数字化之路.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/区块链通往资产数字化之路.epub"
- }
- 359 => {
- "artistName" => "比尔·布莱森"
- "BKAllocatedSize" => 1150976
- "BKBookType" => "epub"
- "BKDisplayName" => "全民自黑的英国其实是一本全面的英国文化观察笔记读客熊猫君出品英国BBC全民调查将此书评为尤其能代表英国的图书畅销科普巨著万物简史作者成名作"
- "BKGeneratedItemId" => "A45107970D0D6D1F7199E9680F203BA9"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "A45107970D0D6D1F7199E9680F203BA9"
- }
- "isPreview" => 0
- "itemName" => "全民自黑的英国:其实是一本全面的英国文化观察笔记(读客熊猫君出品,英国BBC全民调查将此书评为“尤其能代表英国的图书”!畅销科普巨著《万物简史》作者成名作。)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/全民自黑的英国其实是一本全面的英国文化观察笔记读客熊猫君出品英国BBC全民调查将此书评为尤其能代表英国的图书畅销科普巨著万物简史作者成名作.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/全民自黑的英国其实是一本全面的英国文化观察笔记读客熊猫君出品英国BBC全民调查将此书评为尤其能代表英国的图书畅销科普巨著万物简史作者成名作.epub"
- }
- 360 => {
- "artistName" => "温铁军"
- "BKAllocatedSize" => 9908224
- "BKBookType" => "epub"
- "BKDisplayName" => "全球化与国家竞争新兴七国比较研究温铁军教授团队历时十年成果揭示金融全球化的本质探寻发展中国家的突围之路继八次危机去依附解构现代化后重磅力作"
- "BKGeneratedItemId" => "E378EDBBF1E2FB1EF063EDCA2E732D6C"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "E378EDBBF1E2FB1EF063EDCA2E732D6C"
- }
- "isPreview" => 0
- "itemName" => "全球化与国家竞争:新兴七国比较研究(温铁军教授团队历时十年成果,揭示金融全球化的本质,探寻发展中国家的突围之路,继八次危机、去依附、解构现代化后重磅力作。)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/全球化与国家竞争新兴七国比较研究温铁军教授团队历时十年成果揭示金融全球化的本质探寻发展中国家的突围之路继八次危机去依附解构现代化后重磅力作.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/全球化与国家竞争新兴七国比较研究温铁军教授团队历时十年成果揭示金融全球化的本质探寻发展中国家的突围之路继八次危机去依附解构现代化后重磅力作.epub"
- }
- 361 => {
- "artistName" => "查尔斯·古德哈特"
- "BKAllocatedSize" => 10534912
- "BKBookType" => "epub"
- "BKDisplayName" => "人口大逆转全景式解读人口结构逆转对全球实体经济和投资的影响"
- "BKGeneratedItemId" => "0558BC1083173E2733CBB7B0D2CFEDB6"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "0558BC1083173E2733CBB7B0D2CFEDB6"
- }
- "isPreview" => 0
- "itemName" => "人口大逆转(全景式解读人口结构逆转对全球实体经济和投资的影响)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/人口大逆转全景式解读人口结构逆转对全球实体经济和投资的影响.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/人口大逆转全景式解读人口结构逆转对全球实体经济和投资的影响.epub"
- }
- 362 => {
- "artistName" => "奥戴德·盖勒"
- "BKAllocatedSize" => 2478080
- "BKBookType" => "epub"
- "BKDisplayName" => "人类之旅-17jk0"
- "BKGeneratedItemId" => "54903FAF48A197C565D30ACF5C112268"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "54903FAF48A197C565D30ACF5C112268"
- }
- "isPreview" => 0
- "itemName" => "人类之旅"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/人类之旅-17jk0.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/人类之旅-17jk0.epub"
- }
- 363 => {
- "artistName" => "[英] 尼古拉斯•库克"
- "BKAllocatedSize" => 3112960
- "BKBookType" => "epub"
- "BKDisplayName" => "人为何需要音乐-o5oxc"
- "BKGeneratedItemId" => "7584DB63FFC4DA4C37327305BB6235BA"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "7584DB63FFC4DA4C37327305BB6235BA"
- }
- "genre" => "-SanQiu.mobi"
- "isPreview" => 0
- "itemName" => "人为何需要音乐-o5oxc"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/人为何需要音乐-o5oxc.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/人为何需要音乐-o5oxc.epub"
- }
- 364 => {
- "artistName" => "查尔斯·凯罗米里斯,史蒂芬·哈伯"
- "BKAllocatedSize" => 8634368
- "BKBookType" => "epub"
- "BKDisplayName" => "人为制造的脆弱性0hgwb"
- "BKGeneratedItemId" => "BA0F7F14EF98D551B79871D0F28245B0"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "BA0F7F14EF98D551B79871D0F28245B0"
- }
- "isPreview" => 0
- "itemName" => "人为制造的脆弱性0hgwb"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/人为制造的脆弱性0hgwb.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/人为制造的脆弱性0hgwb.epub"
- }
- 365 => {
- "artistName" => "[德]理查德·大卫·普莱希特"
- "BKAllocatedSize" => 3182592
- "BKBookType" => "epub"
- "BKDisplayName" => "认识你自己近代哲学四百年-qu9pi"
- "BKGeneratedItemId" => "E7DEF8D4610152A6CE4EC0396B754998"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "E7DEF8D4610152A6CE4EC0396B754998"
- }
- "isPreview" => 0
- "itemName" => "认识你自己:近代哲学四百年-qu9pi"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/认识你自己近代哲学四百年-qu9pi.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/认识你自己近代哲学四百年-qu9pi.epub"
- }
- 366 => {
- "artistName" => "安东尼·普拉卡尼斯"
- "BKAllocatedSize" => 3129344
- "BKBookType" => "epub"
- "BKDisplayName" => "认知操纵-m0pyq"
- "BKGeneratedItemId" => "01A4F65208254372E550056C587EE9B8"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "01A4F65208254372E550056C587EE9B8"
- }
- "genre" => "天浪书屋"
- "isPreview" => 0
- "itemName" => "认知操纵-m0pyq"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/认知操纵-m0pyq.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/认知操纵-m0pyq.epub"
- }
- 367 => {
- "artistName" => "周岭"
- "BKAllocatedSize" => 2396160
- "BKBookType" => "epub"
- "BKDisplayName" => "认知驱动做成一件对他人很有用的事认知觉醒姊妹篇有效行动用实践-vc45b"
- "BKGeneratedItemId" => "3F26EF5BB241111211FDDB2B404D1530"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "3F26EF5BB241111211FDDB2B404D1530"
- }
- "bookDescription" => "Downloaded from z-lib.org"
- "isPreview" => 0
- "itemName" => "认知驱动:做成一件对他人很有用的事(《认知觉醒》姊妹篇!有效行动,用实践-vc45b"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/认知驱动做成一件对他人很有用的事认知觉醒姊妹篇有效行动用实践-vc45b.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/认知驱动做成一件对他人很有用的事认知觉醒姊妹篇有效行动用实践-vc45b.epub"
- }
- 368 => {
- "artistName" => "渡边康弘"
- "BKAllocatedSize" => 1241088
- "BKBookType" => "epub"
- "BKDisplayName" => "如何成为一个会读书的人-ec6a6"
- "BKGeneratedItemId" => "1916404B973A3DCF9E33037B4FA3A671"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "1916404B973A3DCF9E33037B4FA3A671"
- }
- "isPreview" => 0
- "itemName" => "如何成为一个会读书的人-ec6a6"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/如何成为一个会读书的人-ec6a6.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/如何成为一个会读书的人-ec6a6.epub"
- }
- 369 => {
- "artistName" => "【美】卡罗尔·克肖 【美】比尔·韦德"
- "BKAllocatedSize" => 577536
- "BKBookType" => "epub"
- "BKDisplayName" => "如何停止胡思乱想-a0hqa"
- "BKGeneratedItemId" => "F57256415ED0C5C479E2FAD13094AF7D"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "F57256415ED0C5C479E2FAD13094AF7D"
- }
- "isPreview" => 0
- "itemName" => "如何停止胡思乱想-a0hqa"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/如何停止胡思乱想-a0hqa.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/如何停止胡思乱想-a0hqa.epub"
- }
- 370 => {
- "artistName" => "罗伯特·格林"
- "BKAllocatedSize" => 1245184
- "BKBookType" => "epub"
- "BKDisplayName" => "如何在自己感兴趣的领域出类拔萃-u5adw"
- "BKGeneratedItemId" => "FD90B8E3EE382835B875FDDCA7B1BC27"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "FD90B8E3EE382835B875FDDCA7B1BC27"
- }
- "genre" => "-SanQiu.mobi"
- "isPreview" => 0
- "itemName" => "如何在自己感兴趣的领域出类拔萃-u5adw"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/如何在自己感兴趣的领域出类拔萃-u5adw.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/如何在自己感兴趣的领域出类拔萃-u5adw.epub"
- }
- 371 => {
- "artistName" => "克里斯托弗•迈耶"
- "BKAllocatedSize" => 5300224
- "BKBookType" => "epub"
- "BKDisplayName" => "如何找到100倍回报的股票基于365只100倍股的研究成果"
- "BKGeneratedItemId" => "498B2B678AC72E3A3E3A60373DEB6EC1"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "498B2B678AC72E3A3E3A60373DEB6EC1"
- }
- "isPreview" => 0
- "itemName" => "如何找到100倍回报的股票:基于365只100倍股的研究成果"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/如何找到100倍回报的股票基于365只100倍股的研究成果.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/如何找到100倍回报的股票基于365只100倍股的研究成果.epub"
- }
- 372 => {
- "artistName" => "胡发云"
- "BKAllocatedSize" => 1417216
- "BKBookType" => "epub"
- "BKDisplayName" => "如焉"
- "BKGeneratedItemId" => "9CBACB96673348EA0D70FBBCA11B4A46"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "9CBACB96673348EA0D70FBBCA11B4A46"
- }
- "genre" => "书聚EBOOKG.COM"
- "isPreview" => 0
- "itemName" => "如焉"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/如焉.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/如焉.epub"
- }
- 373 => {
- "artistName" => "刘擎(等)"
- "BKAllocatedSize" => 1478656
- "BKBookType" => "epub"
- "BKDisplayName" => "软技能-2kx1d"
- "BKGeneratedItemId" => "E2133765C85E50687CB68E8454DC99C9"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424274
- "book-info" => {
- "package-file-hash" => "E2133765C85E50687CB68E8454DC99C9"
- }
- "genre" => "天浪书屋"
- "isPreview" => 0
- "itemName" => "软技能-2kx1d"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/软技能-2kx1d.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/软技能-2kx1d.epub"
- }
- 374 => {
- "artistName" => "三岛由纪夫"
- "BKAllocatedSize" => 6311936
- "BKBookType" => "epub"
- "BKDisplayName" => "三岛由纪夫典藏作品九部两次入围诺贝尔奖的文学大师三岛由纪夫代表作日本文学翻译家陈德文先生译本人民文学重磅出品"
- "BKGeneratedItemId" => "65237D3D0536634294D99BFD7B038C5C"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424275
- "book-info" => {
- "package-file-hash" => "65237D3D0536634294D99BFD7B038C5C"
- }
- "isPreview" => 0
- "itemName" => "三岛由纪夫典藏作品九部(两次入围诺贝尔奖的文学大师三岛由纪夫代表作;日本文学翻译家陈德文先生译本;人民文学重磅出品)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/三岛由纪夫典藏作品九部两次入围诺贝尔奖的文学大师三岛由纪夫代表作日本文学翻译家陈德文先生译本人民文学重磅出品.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/三岛由纪夫典藏作品九部两次入围诺贝尔奖的文学大师三岛由纪夫代表作日本文学翻译家陈德文先生译本人民文学重磅出品.epub"
- }
- 375 => {
- "artistName" => "【美】哈珀·李"
- "BKAllocatedSize" => 872448
- "BKBookType" => "epub"
- "BKDisplayName" => "杀死一只知更鸟 哈珀李-3i19q"
- "BKGeneratedItemId" => "2E778E0BC31092A9A6F943BED17AB0C9"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424275
- "book-info" => {
- "package-file-hash" => "2E778E0BC31092A9A6F943BED17AB0C9"
- }
- "isPreview" => 0
- "itemName" => "杀死一只知更鸟 哈珀•李-3i19q"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/杀死一只知更鸟 哈珀李-3i19q.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/杀死一只知更鸟 哈珀李-3i19q.epub"
- }
- 376 => {
- "artistName" => "韩炳哲"
- "BKAllocatedSize" => 2371584
- "BKBookType" => "epub"
- "BKDisplayName" => "山寨中国式解构-di911"
- "BKGeneratedItemId" => "C3FB72DBA575A0D421DA1F3B9FC809DC"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424275
- "book-info" => {
- "package-file-hash" => "C3FB72DBA575A0D421DA1F3B9FC809DC"
- }
- "genre" => "-SanQiu.mobi"
- "isPreview" => 0
- "itemName" => "山寨:中国式解构-di911"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/山寨中国式解构-di911.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/山寨中国式解构-di911.epub"
- }
- 377 => {
- "artistName" => "郝舫"
- "BKAllocatedSize" => 7643136
- "BKBookType" => "epub"
- "BKDisplayName" => "伤花怒放摇滚的被缚与抗争"
- "BKGeneratedItemId" => "FBA1CE45137FEE0EBBD1C5451A4F2E42"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424275
- "book-info" => {
- "package-file-hash" => "FBA1CE45137FEE0EBBD1C5451A4F2E42"
- }
- "genre" => "艺术-音乐"
- "isPreview" => 0
- "itemName" => "伤花怒放:摇滚的被缚与抗争"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/伤花怒放摇滚的被缚与抗争.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/伤花怒放摇滚的被缚与抗争.epub"
- }
- 378 => {
- "artistName" => "陈凯歌"
- "BKAllocatedSize" => 335872
- "BKBookType" => "epub"
- "BKDisplayName" => "少年凯歌"
- "BKGeneratedItemId" => "67ABD0093E69D6AA8F3ACFEE44B0E7FF"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424275
- "book-info" => {
- "package-file-hash" => "67ABD0093E69D6AA8F3ACFEE44B0E7FF"
- }
- "isPreview" => 0
- "itemName" => "少年凯歌"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/少年凯歌.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/少年凯歌.epub"
- }
- 379 => {
- "artistName" => "熊逸"
- "BKAllocatedSize" => 8998912
- "BKBookType" => "epub"
- "BKDisplayName" => "少有人看见的美熊逸首部艺术作品运用哲学社会学等角度为写作角度复合型展示了艺术作品背后所隐秘包含的深刻文化意义"
- "BKGeneratedItemId" => "1052106BF0A17C2BADF2A823722DEC88"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424275
- "book-info" => {
- "package-file-hash" => "1052106BF0A17C2BADF2A823722DEC88"
- }
- "isPreview" => 0
- "itemName" => "少有人看见的美(熊逸首部艺术作品,运用哲学、社会学等角度为写作角度,复合型展示了艺术作品背后所隐秘包含的深刻文化意义)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/少有人看见的美熊逸首部艺术作品运用哲学社会学等角度为写作角度复合型展示了艺术作品背后所隐秘包含的深刻文化意义.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/少有人看见的美熊逸首部艺术作品运用哲学社会学等角度为写作角度复合型展示了艺术作品背后所隐秘包含的深刻文化意义.epub"
- }
- 380 => {
- "artistName" => "(法)Vincent Bastien"
- "BKAllocatedSize" => 3780608
- "BKBookType" => "epub"
- "BKDisplayName" => "奢侈品战略揭秘世界顶级奢侈品的品牌战略原书第2版"
- "BKGeneratedItemId" => "1951667627B72795BE53FBD09FC375C2"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424275
- "book-info" => {
- "package-file-hash" => "1951667627B72795BE53FBD09FC375C2"
- }
- "isPreview" => 0
- "itemName" => "奢侈品战略:揭秘世界顶级奢侈品的品牌战略(原书第2版)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/奢侈品战略揭秘世界顶级奢侈品的品牌战略原书第2版.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/奢侈品战略揭秘世界顶级奢侈品的品牌战略原书第2版.epub"
- }
- 381 => {
- "artistName" => "[日] 涌井良幸 涌井贞美"
- "BKAllocatedSize" => 13979648
- "BKBookType" => "epub"
- "BKDisplayName" => "深度学习的数学-hzuj3"
- "BKGeneratedItemId" => "A1D7197A7F88C0C033E882BF9EFA44BF"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424275
- "book-info" => {
- "package-file-hash" => "A1D7197A7F88C0C033E882BF9EFA44BF"
- }
- "isPreview" => 0
- "itemName" => "深度学习的数学-hzuj3"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/深度学习的数学-hzuj3.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/深度学习的数学-hzuj3.epub"
- }
- 382 => {
- "artistName" => "[英]本·威尔逊(Ben Wilson)"
- "BKAllocatedSize" => 8003584
- "BKBookType" => "epub"
- "BKDisplayName" => "深蓝帝国英国海军的兴衰全2册星期日泰晤士报年度最佳畅销书 甲骨文系列"
- "BKGeneratedItemId" => "5A43D8E9C00C4A747BAE7374FD045CE3"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424275
- "book-info" => {
- "package-file-hash" => "5A43D8E9C00C4A747BAE7374FD045CE3"
- }
- "isPreview" => 0
- "itemName" => "深蓝帝国:英国海军的兴衰(全2册)【《星期日泰晤士报》年度最佳畅销书】 (甲骨文系列)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/深蓝帝国英国海军的兴衰全2册星期日泰晤士报年度最佳畅销书 甲骨文系列.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/深蓝帝国英国海军的兴衰全2册星期日泰晤士报年度最佳畅销书 甲骨文系列.epub"
- }
- 383 => {
- "artistName" => "Unknown"
- "BKAllocatedSize" => 2306048
- "BKBookType" => "epub"
- "BKDisplayName" => "神话之城-t5vnn"
- "BKGeneratedItemId" => "873B04581F7CDDB64F1FE07058746126"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424275
- "book-info" => {
- "package-file-hash" => "873B04581F7CDDB64F1FE07058746126"
- }
- "genre" => "汇书网"
- "isPreview" => 0
- "itemName" => "神话之城-t5vnn"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/神话之城-t5vnn.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/神话之城-t5vnn.epub"
- }
- 384 => {
- "artistName" => "理安·艾斯勒"
- "BKAllocatedSize" => 2781184
- "BKBookType" => "epub"
- "BKDisplayName" => "神圣的欢爱性神话与女性肉体的政治学 一部百科全书式的文化人类学和性学经典著作 思想会"
- "BKGeneratedItemId" => "48DCE8D813420A4A4F433947DC32CC86"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424275
- "book-info" => {
- "package-file-hash" => "48DCE8D813420A4A4F433947DC32CC86"
- }
- "isPreview" => 0
- "itemName" => "神圣的欢爱:性、神话与女性肉体的政治学【 一部百科全书式的文化人类学和性学经典著作】 (思想会)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/神圣的欢爱性神话与女性肉体的政治学 一部百科全书式的文化人类学和性学经典著作 思想会.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/神圣的欢爱性神话与女性肉体的政治学 一部百科全书式的文化人类学和性学经典著作 思想会.epub"
- }
- 385 => {
- "artistName" => "汤志波"
- "BKAllocatedSize" => 7495680
- "BKBookType" => "epub"
- "BKDisplayName" => "沈周六记"
- "BKGeneratedItemId" => "2F0A433C4B72364C0B98C7DC1F2D7401"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424275
- "book-info" => {
- "package-file-hash" => "2F0A433C4B72364C0B98C7DC1F2D7401"
- }
- "isPreview" => 0
- "itemName" => "沈周六记"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/沈周六记.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/沈周六记.epub"
- }
- 386 => {
- "artistName" => "[意] 英格丽·罗西里尼 等"
- "BKAllocatedSize" => 16924672
- "BKBookType" => "epub"
- "BKDisplayName" => "审美与自我人之所以审美很大程度上是为了完善自己从古希腊到文艺复兴看人-84y49"
- "BKGeneratedItemId" => "3437884879917D7AECA8282736F086E4"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424275
- "book-info" => {
- "package-file-hash" => "3437884879917D7AECA8282736F086E4"
- }
- "isPreview" => 0
- "itemName" => "审美与自我(人之所以审美很大程度上是为了完善自己。从古希腊到文艺复兴看人-84y49"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/审美与自我人之所以审美很大程度上是为了完善自己从古希腊到文艺复兴看人-84y49.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/审美与自我人之所以审美很大程度上是为了完善自己从古希腊到文艺复兴看人-84y49.epub"
- }
- 387 => {
- "artistName" => "丁磊"
- "BKAllocatedSize" => 2760704
- "BKBookType" => "epub"
- "BKDisplayName" => "生成式人工智能-eaqm7"
- "BKGeneratedItemId" => "BD9B5E67E93DB9C8215EED948B113FAB"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424275
- "book-info" => {
- "package-file-hash" => "BD9B5E67E93DB9C8215EED948B113FAB"
- }
- "isPreview" => 0
- "itemName" => "生成式人工智能-eaqm7"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/生成式人工智能-eaqm7.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/生成式人工智能-eaqm7.epub"
- }
- 388 => {
- "artistName" => "尼克·莱恩"
- "BKAllocatedSize" => 3731456
- "BKBookType" => "epub"
- "BKDisplayName" => "生命进化的跃升-u9p1x"
- "BKGeneratedItemId" => "3F5D04320CFF8EB8E3380C848F5172B4"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424275
- "book-info" => {
- "package-file-hash" => "3F5D04320CFF8EB8E3380C848F5172B4"
- }
- "genre" => "lcsh: Novel"
- "isPreview" => 0
- "itemName" => "生命进化的跃升-u9p1x"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/生命进化的跃升-u9p1x.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/生命进化的跃升-u9p1x.epub"
- }
- 389 => {
- "artistName" => "克里希那穆提"
- "BKAllocatedSize" => 659456
- "BKBookType" => "epub"
- "BKDisplayName" => "生命之书365天的静心冥想"
- "BKGeneratedItemId" => "F364BD77EF4B83F66977A13C51F851CF"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424275
- "book-info" => {
- "package-file-hash" => "F364BD77EF4B83F66977A13C51F851CF"
- }
- "bookDescription" => "本书是克氏教诲的精选,诸多内容内地读者都不曾接触。对于尚未领略克氏智慧之光的人而言,它是最佳入门读物,深入浅出,完整详实。对于已经入门的读者而言,它是深化之书,厘清困惑,涤净烦忧。绝对值得再三阅读,细细品味。
你可曾安静地坐着,不专注于任何事物,也不费劲地集中注意力,而是非常安详地坐着?这时你会听到各式各样的声音,会听到远处的喧闹声以及近在咫尺的细微声响。这意味着你把所有的声音都听进去了。你会发现自己的心在不强求的情况下产生了惊人的转变。这份转变里自有美和深刻的洞识。
封底推荐
当他进入我的屋里时,我禁不住对自己说:“这绝对是菩萨无疑了!”
—— 纪伯伦(Kahlil Gibran)
在我人生中,克里希那穆提曾深深地影响我,帮助我突破了重重的自我设限。
—— 迪帕克?乔普拉(Deepak Chopra)
克里希那穆提的话带给人一种非比寻常的亲切感:优美、富有诗意,其博大精深犹如浩瀚的虚空一般。
—— 杰克?康菲尔德(Jack Kornfield)
克里希那穆提的语言赤裸而富有启发性,它替代了障碍竞赛和捕鼠器,令日常生活变成一种喜悦的过程。
—— 亨利?米勒(Henry Miller)
听克里希那穆提演讲,就像在听佛陀传法,如此的力道,如此原创的大家之言。
—— 赫胥黎(Aldous Huxley)
一种深奥而新颖的自我认识之道,为个人解脱及成熟之爱带来更深的洞识。
—— 罗洛?梅(Rollo May)
我认为克里希那穆提为我们这个时代所带来的意义就是:人必须为自己思考,而不是被外在的宗教或灵性上的权威所左右。
—— 范?莫里森(Van Morrison)
克里希那穆提带给我深思的机会,并促使我去追求自己几乎不理解的东西。
——约瑟夫?坎贝尔(Joseph Campbell)
"
- "isPreview" => 0
- "itemName" => "生命之书:365天的静心冥想"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/生命之书365天的静心冥想.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/生命之书365天的静心冥想.epub"
- }
- 390 => {
- "artistName" => "骆玉明"
- "BKAllocatedSize" => 1409024
- "BKBookType" => "epub"
- "BKDisplayName" => "世说新语精读 汉语言文学原典精读系列"
- "BKGeneratedItemId" => "B21E1D8BD5403E29731E86548FADE518"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424275
- "book-info" => {
- "package-file-hash" => "B21E1D8BD5403E29731E86548FADE518"
- }
- "isPreview" => 0
- "itemName" => "世说新语精读 (汉语言文学原典精读系列)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/世说新语精读 汉语言文学原典精读系列.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/世说新语精读 汉语言文学原典精读系列.epub"
- }
- 391 => {
- "artistName" => "Unknown"
- "BKAllocatedSize" => 3223552
- "BKBookType" => "epub"
- "BKDisplayName" => "天才引导的历程"
- "BKGeneratedItemId" => "328235C618F57778F2ABC3E0BF6AAFCC"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424275
- "book-info" => {
- "package-file-hash" => "328235C618F57778F2ABC3E0BF6AAFCC"
- }
- "isPreview" => 0
- "itemName" => "天才引导的历程"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/天才引导的历程.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/天才引导的历程.epub"
- }
- 392 => {
- "artistName" => "郭建龙"
- "BKAllocatedSize" => 880640
- "BKBookType" => "epub"
- "BKDisplayName" => "印度漂浮的次大陆"
- "BKGeneratedItemId" => "CBF536DE4A50FED339CCE7C74DAF84D1"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424275
- "book-info" => {
- "package-file-hash" => "CBF536DE4A50FED339CCE7C74DAF84D1"
- }
- "isPreview" => 0
- "itemName" => "印度,漂浮的次大陆"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/印度漂浮的次大陆.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/印度漂浮的次大陆.epub"
- }
- 393 => {
- "artistName" => "Unknown"
- "BKAllocatedSize" => 2732032
- "BKBookType" => "epub"
- "BKDisplayName" => "有序关于心智效率的认知科学-tp9tv"
- "BKGeneratedItemId" => "7CBBCE73B843780BFEB557CF60F459C8"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424275
- "book-info" => {
- "package-file-hash" => "7CBBCE73B843780BFEB557CF60F459C8"
- }
- "isPreview" => 0
- "itemName" => "有序:关于心智效率的认知科学-tp9tv"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/有序关于心智效率的认知科学-tp9tv.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/有序关于心智效率的认知科学-tp9tv.epub"
- }
- 394 => {
- "artistName" => "【美】普里特·巴拉拉"
- "BKAllocatedSize" => 937984
- "BKBookType" => "epub"
- "BKDisplayName" => "正义之殇美国检察官反思犯罪处罚与法治美普里特巴拉拉-x5umz"
- "BKGeneratedItemId" => "30AE3E4F1F6725D2A58249C4B0A1AE4B"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424275
- "book-info" => {
- "package-file-hash" => "30AE3E4F1F6725D2A58249C4B0A1AE4B"
- }
- "genre" => "-SanQiu.CC"
- "isPreview" => 0
- "itemName" => "《正义之殇:美国检察官反思犯罪、处罚与法治》[美]普里特•巴拉拉-x5umz"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/正义之殇美国检察官反思犯罪处罚与法治美普里特巴拉拉-x5umz.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/正义之殇美国检察官反思犯罪处罚与法治美普里特巴拉拉-x5umz.epub"
- }
- 395 => {
- "artistName" => "萧鼎"
- "BKAllocatedSize" => 5799936
- "BKBookType" => "epub"
- "BKDisplayName" => "诛仙"
- "BKGeneratedItemId" => "07E28AB01AA37DB886CF9C350F152F3F"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424275
- "book-info" => {
- "package-file-hash" => "07E28AB01AA37DB886CF9C350F152F3F"
- }
- "genre" => "玄幻"
- "isPreview" => 0
- "itemName" => "诛仙"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/诛仙.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/诛仙.epub"
- }
- 396 => {
- "artistName" => "张国刚"
- "BKAllocatedSize" => 4911104
- "BKBookType" => "epub"
- "BKDisplayName" => "资治通鉴通识-a4qjm"
- "BKGeneratedItemId" => "AA265761852601FC5CEA61537A056AE9"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424275
- "book-info" => {
- "package-file-hash" => "AA265761852601FC5CEA61537A056AE9"
- }
- "genre" => "-SanQiu.mobi"
- "isPreview" => 0
- "itemName" => "《资治通鉴》通识-a4qjm"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/资治通鉴通识-a4qjm.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/资治通鉴通识-a4qjm.epub"
- }
- 397 => {
- "BKAllocatedSize" => 116965376
- "BKBookType" => "pdf"
- "BKDisplayName" => "04中国篆刻聚珍汉私印"
- "BKGeneratedItemId" => "479D2C6296B01EFE8428A8B9DA19FA7A"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424275
- "BKIsLocked" => 0
- "itemName" => "04中国篆刻聚珍:汉私印"
- "modificationDate" => 2024-08-08 13:55:16 +0000
- "pageCount" => 165
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/04中国篆刻聚珍汉私印.pdf"
- "releaseDate" => 2020-03-29 13:07:36 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/04中国篆刻聚珍汉私印.pdf"
- }
- 398 => {
- "artistName" => "(曰)岸见一郎,(日)古贺史健"
- "BKAllocatedSize" => 1142784
- "BKBookType" => "epub"
- "BKDisplayName" => "被讨厌的勇气自我启发之父阿德勒的哲学课"
- "BKGeneratedItemId" => "5F2C1C40566C61A2267907E621A664A4"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424275
- "book-info" => {
- "package-file-hash" => "5F2C1C40566C61A2267907E621A664A4"
- }
- "isPreview" => 0
- "itemName" => "被讨厌的勇气:“自我启发之父”阿德勒的哲学课"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/被讨厌的勇气自我启发之父阿德勒的哲学课.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/被讨厌的勇气自我启发之父阿德勒的哲学课.epub"
- }
- 399 => {
- "BKAllocatedSize" => 5976064
- "BKBookType" => "pdf"
- "BKDisplayName" => "被讨厌的勇气自我启发之父阿德勒的哲学课的笔记作者曰岸见一郎日古贺史健"
- "BKGeneratedItemId" => "D5CACCA279EF3DF7C00A0318C7EAFFB5"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424275
- "BKIsLocked" => 0
- "itemName" => "《被讨厌的勇气:“自我启发之父”阿德勒的哲学课》的笔记(作者:(曰)岸见一郎,(日)古贺史健)"
- "modificationDate" => 2024-08-26 10:48:25 +0000
- "pageCount" => 28
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/被讨厌的勇气自我启发之父阿德勒的哲学课的笔记作者曰岸见一郎日古贺史健.pdf"
- "releaseDate" => 2024-08-26 09:48:54 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/被讨厌的勇气自我启发之父阿德勒的哲学课的笔记作者曰岸见一郎日古贺史健.pdf"
- }
- 400 => {
- "artistName" => "J.H.布雷斯特德"
- "BKAllocatedSize" => 21295104
- "BKBookType" => "epub"
- "BKDisplayName" => "地中海的衰落文明的征程美国国家科学院美国历史学会推荐作品埃及四千年耶路撒冷三千年的历史均源起这部书"
- "BKGeneratedItemId" => "D9EBDC79C0AF53A833989A45AA08D0E4"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424275
- "book-info" => {
- "package-file-hash" => "D9EBDC79C0AF53A833989A45AA08D0E4"
- }
- "isPreview" => 0
- "itemName" => "地中海的衰落:文明的征程【美国国家科学院、美国历史学会推荐作品!《埃及四千年》《耶路撒冷三千年》的历史均源起这部书】"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/地中海的衰落文明的征程美国国家科学院美国历史学会推荐作品埃及四千年耶路撒冷三千年的历史均源起这部书.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/地中海的衰落文明的征程美国国家科学院美国历史学会推荐作品埃及四千年耶路撒冷三千年的历史均源起这部书.epub"
- }
- 401 => {
- "artistName" => "向松祚"
- "BKAllocatedSize" => 1343488
- "BKBookType" => "epub"
- "BKDisplayName" => "读透经济学的8对关键词"
- "BKGeneratedItemId" => "AB00B10A20978A686B66F14F8C3F7C0F"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424275
- "book-info" => {
- "package-file-hash" => "AB00B10A20978A686B66F14F8C3F7C0F"
- }
- "isPreview" => 0
- "itemName" => "读透经济学的8对关键词"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/读透经济学的8对关键词.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/读透经济学的8对关键词.epub"
- }
- 402 => {
- "artistName" => "戴夫.亞斯普雷"
- "BKAllocatedSize" => 2105344
- "BKBookType" => "epub"
- "BKDisplayName" => "防彈成功法則"
- "BKGeneratedItemId" => "988CAA03E0CD605A6BA31CA1DC45BDB6"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424275
- "book-info" => {
- "package-file-hash" => "988CAA03E0CD605A6BA31CA1DC45BDB6"
- }
- "bookDescription" => "生物駭客結合各領域成功人士的智慧,教你駭入大腦、駭入恐懼、駭入身體細胞,讓你表現升級,開創破框人生2.0!
為了讓人生從A躍升A+,矽谷怪咖駭客亞斯普雷製作《防彈電台》播客,與來賓暢談成功的關鍵。他想知道:這些人如何影響世界,是什麼樣的信念和行為讓他們大獲成功?以及,他們究竟做了什麼,才能達到今日的成就?因此每集節目最後,他都提出相同的問題:「如果有人來請教你,希望在他所能企及的生活各面向擁有高水準的表現,你會建議他做哪三件事?」
這些來賓是橫跨各領域的佼佼者,他們的共通點是不受限於傳統,引領各種專業開拓全新的境界,包括在未知實驗埋頭苦幹的生化學家、顛覆競爭市場的創意領袖、探索人類潛意識的神經學家,以及運用靜坐呼吸全身保命的海豹部隊隊員。
身為一名徹頭徹尾的「駭客」,作者經過大量數據的統計分析,發現人要成功,必先達成三大原則:更聰明、更迅速與更快樂。本書詳述具科學背書、執行力高且立即見效的四十六條法則,從馴服恐懼到克服懷疑,從練習表達感激到找出作息規律,從鍛鍊意志力肌肉到活化大腦能量,從建立運動習慣到維護腸道健康。最重要的是,你必須先認清自己的價值與影響力,搞清楚做甚麼對你來說最重要,才能將全部精力投注在升級表現,並達到身心靈平衡滿足,成為真正的人生勝利組。
時代在變,環境在變,你還在遵循傳統成功學,為「窮忙人生」辛苦奮鬥嗎?快跟上高科技生物駭客的腳步,用最前衛的觀念和最輕鬆的技巧,邁向人生巔峰。"
- "isPreview" => 0
- "itemName" => "防彈成功法則"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/防彈成功法則.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/防彈成功法則.epub"
- }
- 403 => {
- "artistName" => "(清)沈复著;朱奇志 校译"
- "BKAllocatedSize" => 2027520
- "BKBookType" => "epub"
- "BKDisplayName" => "浮生六记"
- "BKGeneratedItemId" => "74BABDAE28830C1943A07D640B412741"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424275
- "book-info" => {
- "package-file-hash" => "74BABDAE28830C1943A07D640B412741"
- }
- "isPreview" => 0
- "itemName" => "浮生六记"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/浮生六记.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/浮生六记.epub"
- }
- 404 => {
- "artistName" => "Apache POI"
- "BKAllocatedSize" => 692224
- "BKBookType" => "epub"
- "BKDisplayName" => "复杂性创伤后压力综合征和阿斯伯格综合征的自助治疗基于躯体体验的视角"
- "BKGeneratedItemId" => "8E8732F4D1B831422F0BFAE4EA08C815"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "8E8732F4D1B831422F0BFAE4EA08C815"
- }
- "isPreview" => 0
- "itemName" => "复杂性创伤后压力综合征和阿斯伯格综合征的自助治疗:基于躯体体验的视角"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/复杂性创伤后压力综合征和阿斯伯格综合征的自助治疗基于躯体体验的视角.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/复杂性创伤后压力综合征和阿斯伯格综合征的自助治疗基于躯体体验的视角.epub"
- }
- 405 => {
- "artistName" => "高并发的哲学原理"
- "BKAllocatedSize" => 5947392
- "BKBookType" => "epub"
- "BKDisplayName" => "高并发的哲学原理"
- "BKGeneratedItemId" => "C42A4273023E553FAD865084E2E59F66"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "C42A4273023E553FAD865084E2E59F66"
- }
- "isPreview" => 0
- "itemName" => "高并发的哲学原理"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/高并发的哲学原理.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/高并发的哲学原理.epub"
- }
- 406 => {
- "artistName" => "強納森.歌德夏"
- "BKAllocatedSize" => 3457024
- "BKBookType" => "epub"
- "BKDisplayName" => "故事洗腦術 從商業行銷形象塑造到議題宣傳都在用的思想控制法則"
- "BKGeneratedItemId" => "33F87E0060C02301D678DBBEA400F826"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "33F87E0060C02301D678DBBEA400F826"
- }
- "isPreview" => 0
- "itemName" => "故事洗腦術 從商業行銷、形象塑造到議題宣傳都在用的思想控制法則"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/故事洗腦術 從商業行銷形象塑造到議題宣傳都在用的思想控制法則.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/故事洗腦術 從商業行銷形象塑造到議題宣傳都在用的思想控制法則.epub"
- }
- 407 => {
- "artistName" => "迈克尔·霍华德"
- "BKAllocatedSize" => 6717440
- "BKBookType" => "epub"
- "BKDisplayName" => "观察家精选系列套装共7册"
- "BKGeneratedItemId" => "730EE1D4377A38FB5923FA0B06161130"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "730EE1D4377A38FB5923FA0B06161130"
- }
- "isPreview" => 0
- "itemName" => "观察家精选系列(套装共7册)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/观察家精选系列套装共7册.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/观察家精选系列套装共7册.epub"
- }
- 408 => {
- "artistName" => "楊聯陞"
- "BKAllocatedSize" => 15704064
- "BKBookType" => "epub"
- "BKDisplayName" => "漢學散論楊聯陞誕辰110周年紀念版"
- "BKGeneratedItemId" => "B43773F4C50302347BA52150DB26B31B"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "B43773F4C50302347BA52150DB26B31B"
- }
- "bookDescription" => "
-
世界漢學界一流學人。從經濟史入手,兼治文史,
-
余英時稱為「中國文化的海外媒介」。
-
自喻「敢比仰山雜貨鋪,何堪舜水再來人」,
-
漢學泰斗楊聯陞,有顆萬裡挑一的鑽研靈魂。
-
-
余英時:「楊先生的研究工作,常常以一點重心、一個文化的側問題,從古到今全面地來看。他的學問融會貫通,在思想、制度、經濟、科學、藝術、語言等方面都有獨特的素養,而且摒除學派門戶之局限,能兼容並包。」
-
-
楊聯陞先生雖自謙「瓦礫沙金雜貨舖,也談儒釋也談玄」,淵博學識堪稱學界傳奇。本書也如同重拾碎金般,輯錄其發表於中外多本學術專著的文章,除早年求學時文章、中年時的追憶作品外,還有以中英日法文發表的學術書評、為本人及他人著述所作的序文、學術演講、漢學新書推介及學術論文。內容則涉及經濟史、簡牘、書法、考古、青銅器、唐代均田制、漢代行政和近世商賈等各種專門領域。選題新穎,辨析細微,讓人驚歎其興趣和研究的廣度。書中分為談史、評說、記序、學記、論述五個部分,絕大部分篇章均為首次中譯編入文集,見證先生直面挑戰、推動現代學術發展的深遠影響,也為漢學界提供了極為珍貴的研究資料。
"
- "genre" => "研究"
- "isPreview" => 0
- "itemName" => "漢學散論(楊聯陞誕辰110周年紀念版)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/漢學散論楊聯陞誕辰110周年紀念版.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/漢學散論楊聯陞誕辰110周年紀念版.epub"
- }
- 409 => {
- "artistName" => "沃尔特·安达尔"
- "BKAllocatedSize" => 4702208
- "BKBookType" => "epub"
- "BKDisplayName" => "好玩的金融全二册"
- "BKGeneratedItemId" => "0940039BB179FB7429909ED4164F90EE"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "0940039BB179FB7429909ED4164F90EE"
- }
- "bookDescription" => "本套书共分为两册:《钱是怎么流动的》《会存钱也会花钱》。
-
-《钱是怎么流动的》主要分享了钱是怎么来的,它为什么重要;如何赚钱;钱会被用到哪些地方;如何更好地让钱增值以及如何更好地运用金钱,并且提倡“钱不是唯一能使你富有的东西”“分享就是关爱”等正确的价值观和金钱观。
-
-《会存钱也会花钱》主要分享了如何明智地花钱——储蓄和投资,以及如何使用金钱以让自己变得更好,并且提倡“钱不是唯一能使你富有的东西”“分享就是关爱”等正确的价值观和金钱观。
-
-孩子将通过有趣的情境漫画和通俗易懂的描述,获得很多财务小知识。本套书兼具趣味性和实用性,可以作为孩子的财商启蒙读物。让孩子从小与钱做朋友。"
- "isPreview" => 0
- "itemName" => "好玩的金融(全二册)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/好玩的金融全二册.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/好玩的金融全二册.epub"
- }
- 410 => {
- "artistName" => "华杉"
- "BKAllocatedSize" => 2183168
- "BKBookType" => "epub"
- "BKDisplayName" => "华杉读书笔记"
- "BKGeneratedItemId" => "7498BCD33DA1C9E728E86F473C924CEB"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "7498BCD33DA1C9E728E86F473C924CEB"
- }
- "bookDescription" => "跟着华杉读经典,本本通透又简单!
-读书学习,是人人都赞同的事,很多人也投身其中。但是学习需要“学习学”,读书也需要方法论。
-本书收录了华杉13年来的读书笔记,从515本书中选取了319本精华,编录成册,内容涵盖军政谋略、历史传记、哲学思想、企业管理、经济原理、社会科学、文学小说等13个领域,涉及书目贯通古今中外。不论你想学习有效的阅读方法,还是想了解大师笔下的经典著作,本书都能为你提供一个合适的入口。
-世间之乐,读书最乐!独乐乐不如同乐乐,翻开本书,跟着华杉读经典,古今中外全看遍!"
- "isPreview" => 0
- "itemName" => "华杉读书笔记"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/华杉读书笔记.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/华杉读书笔记.epub"
- }
- 411 => {
- "artistName" => "弗里茲.李曼(Fritz Riemann)"
- "BKAllocatedSize" => 5902336
- "BKBookType" => "epub"
- "BKDisplayName" => "恐懼的原型分裂憂鬱強迫歇斯底里人格深度探索"
- "BKGeneratedItemId" => "9BE05DECDF6BCBB88B84A6F1D9A3022D"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "9BE05DECDF6BCBB88B84A6F1D9A3022D"
- }
- "bookDescription" => "你害怕讓人透不過氣的關係?或者時時恐懼會被拋棄?
你對日復一日的生活感到徬徨?或者對改變感到不安?
本書帶你發掘心頭烏雲密布的原因,陪你在心理上重返現場,
瞭解與接納恐懼,對舊傷做適當彌補,勇氣與力量將再度萌生。"
- "genre" => "心理學"
- "isPreview" => 0
- "itemName" => "恐懼的原型︰分裂、憂鬱、強迫、歇斯底里人格深度探索"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/恐懼的原型分裂憂鬱強迫歇斯底里人格深度探索.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/恐懼的原型分裂憂鬱強迫歇斯底里人格深度探索.epub"
- }
- 412 => {
- "artistName" => "[美]史蒂芬·科特勒"
- "BKAllocatedSize" => 856064
- "BKBookType" => "epub"
- "BKDisplayName" => "跨越不可能全球心流体验与表现专家史蒂芬科特勒新作基于神经科学的心流触发训练实现自我效能500放大"
- "BKGeneratedItemId" => "4C96BF2347D94CBD3424704FBC90F83E"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "4C96BF2347D94CBD3424704FBC90F83E"
- }
- "isPreview" => 0
- "itemName" => "跨越不可能【全球心流体验与表现专家史蒂芬·科特勒新作,基于神经科学的心流触发训练,实现自我效能500%放大】"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/跨越不可能全球心流体验与表现专家史蒂芬科特勒新作基于神经科学的心流触发训练实现自我效能500放大.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/跨越不可能全球心流体验与表现专家史蒂芬科特勒新作基于神经科学的心流触发训练实现自我效能500放大.epub"
- }
- 413 => {
- "artistName" => "阿尔弗雷德·阿德勒"
- "BKAllocatedSize" => 856064
- "BKBookType" => "epub"
- "BKDisplayName" => "理解人性2022年新版豆瓣评分86阿德勒个人心理学理论大成之作作者认为生活模式上的错误往往会危及生活本身本书希望帮助人们透彻地理解人性指导个体如何融入社会生活 心理学经典译丛"
- "BKGeneratedItemId" => "731DBA701A11515DD2A8A88413F4515C"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 746343035
- "book-info" => {
- "cover-image-hash" => "B31A38AE955C0969C91CEC3889B728D6"
- "cover-image-path" => "cover.jpeg"
- "mime-type" => "application/epub+zip"
- "package-file-hash" => "731DBA701A11515DD2A8A88413F4515C"
- "publisher-unique-id" => "e337f574-d949-439a-9325-a24531651472"
- "unique-id" => -3022820434559682270
- "update-level" => 2
- }
- "isPreview" => 0
- "itemName" => "理解人性【2022年新版!豆瓣评分8.6!阿德勒个人心理学理论大成之作!作者认为生活模式上的错误往往会危及生活本身;本书希望帮助人们透彻地理解人性,指导个体如何融入社会生活】 (心理学经典译丛)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/理解人性2022年新版豆瓣评分86阿德勒个人心理学理论大成之作作者认为生活模式上的错误往往会危及生活本身本书希望帮助人们透彻地理解人性指导个体如何融入社会生活 心理学经典译丛.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/理解人性2022年新版豆瓣评分86阿德勒个人心理学理论大成之作作者认为生活模式上的错误往往会危及生活本身本书希望帮助人们透彻地理解人性指导个体如何融入社会生活 心理学经典译丛.epub"
- "updateDate" => 2024-08-26 05:30:35 +0000
- }
- 414 => {
- "artistName" => "[美]汉娜·阿伦特"
- "BKAllocatedSize" => 798720
- "BKBookType" => "epub"
- "BKDisplayName" => "人的条件"
- "BKGeneratedItemId" => "D28EEBED1ADF0AEEE8ECA02E3630E124"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "D28EEBED1ADF0AEEE8ECA02E3630E124"
- }
- "bookDescription" => "Downloaded from z-lib.org"
- "isPreview" => 0
- "itemName" => "人的条件"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/人的条件.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/人的条件.epub"
- }
- 415 => {
- "artistName" => "[美] 托马斯•哈代•黎黑"
- "BKAllocatedSize" => 4116480
- "BKBookType" => "epub"
- "BKDisplayName" => "人类心理3000年从荷马史诗到人工智能"
- "BKGeneratedItemId" => "DD16A08DFB244E0F90E20189F3D6A161"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "DD16A08DFB244E0F90E20189F3D6A161"
- }
- "bookDescription" => "作为以哲学为根源的学科,心理学有一段漫长的发展历史。从吸纳科学的研究方法,摆脱哲学的思辨本质,到以科学实证的方法对人们生活的方方面面进行研究,心理学逐渐成为科学领域和社会生活领域不可或缺的学科。 本书以全景式的视角回顾了心理学的发展历史,以新科学史观的历史研究方法梳理了从古希腊时期至今的心理学思想发展脉络,内容涉及从心理学产生的哲学基础到现代心理学研究的新思潮和新观点,为读者了解心理学、学习心理学提供了更加广阔的视角。 本书作者托马斯·哈代·黎黑一直致力于哲学心理学以及心理学史两方面的研究,本书代表了他在这两个领域的学术成果,适用于有兴趣了解心理学发展的每一位读者。"
- "isPreview" => 0
- "itemName" => "人类心理3000年:从荷马史诗到人工智能"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/人类心理3000年从荷马史诗到人工智能.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/人类心理3000年从荷马史诗到人工智能.epub"
- }
- 416 => {
- "artistName" => "[美] 迈克尔•加扎尼加(Michael S. Gazzaniga)"
- "BKAllocatedSize" => 19480576
- "BKBookType" => "epub"
- "BKDisplayName" => "人脑探秘三部曲套装共三册"
- "BKGeneratedItemId" => "2EF4A5E1B33FA9A9759097FF074BC665"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "2EF4A5E1B33FA9A9759097FF074BC665"
- }
- "genre" => "汇书网"
- "isPreview" => 0
- "itemName" => "人脑探秘三部曲(套装共三册)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/人脑探秘三部曲套装共三册.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/人脑探秘三部曲套装共三册.epub"
- }
- 417 => {
- "artistName" => "费孝通"
- "BKAllocatedSize" => 798720
- "BKBookType" => "epub"
- "BKDisplayName" => "生育制度-9l0an"
- "BKGeneratedItemId" => "AF998F738CEDF374BE57A9D9A947737F"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "AF998F738CEDF374BE57A9D9A947737F"
- }
- "isPreview" => 0
- "itemName" => "生育制度-9l0an"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/生育制度-9l0an.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/生育制度-9l0an.epub"
- }
- 418 => {
- "artistName" => "郭建龙"
- "BKAllocatedSize" => 4009984
- "BKBookType" => "epub"
- "BKDisplayName" => "盛世的崩塌-rl9l2"
- "BKGeneratedItemId" => "7B1715008DE504CE7DEBE8F4E3D2E109"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "7B1715008DE504CE7DEBE8F4E3D2E109"
- }
- "bookDescription" => "巴基斯坦西北部的雪山中,藏着一座巨大的自然丰碑,纪念中国唐代的盛世武功。"
- "genre" => "天浪书屋"
- "isPreview" => 0
- "itemName" => "盛世的崩塌-rl9l2"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/盛世的崩塌-rl9l2.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/盛世的崩塌-rl9l2.epub"
- }
- 419 => {
- "artistName" => "刘勃"
- "BKAllocatedSize" => 851968
- "BKBookType" => "epub"
- "BKDisplayName" => "失败者的春秋"
- "BKGeneratedItemId" => "B2CE0D331B7E94EF8C16486C3CAA0268"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "B2CE0D331B7E94EF8C16486C3CAA0268"
- }
- "isPreview" => 0
- "itemName" => "失败者的春秋"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/失败者的春秋.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/失败者的春秋.epub"
- }
- 420 => {
- "artistName" => "SoBooKs.cc 黄晓丹"
- "BKAllocatedSize" => 638976
- "BKBookType" => "epub"
- "BKDisplayName" => "诗人十四个十四位古代诗人和一位现代闯入者 一场始于1600年前的诗歌沙龙"
- "BKGeneratedItemId" => "52068FAEBAF559654484E3B993C3C36F"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "52068FAEBAF559654484E3B993C3C36F"
- }
- "isPreview" => 0
- "itemName" => "诗人十四个:十四位古代诗人和一位现代闯入者 一场始于1600年前的诗歌沙龙"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/诗人十四个十四位古代诗人和一位现代闯入者 一场始于1600年前的诗歌沙龙.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/诗人十四个十四位古代诗人和一位现代闯入者 一场始于1600年前的诗歌沙龙.epub"
- }
- 421 => {
- "artistName" => "安迪·普迪科姆(Andy Puddicombe)"
- "BKAllocatedSize" => 1363968
- "BKBookType" => "epub"
- "BKDisplayName" => "十分钟冥想"
- "BKGeneratedItemId" => "CD88612587102D60FE075C51F2445ACC"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "CD88612587102D60FE075C51F2445ACC"
- }
- "isPreview" => 0
- "itemName" => "十分钟冥想"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/十分钟冥想.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/十分钟冥想.epub"
- }
- 422 => {
- "artistName" => "(美)丹·胡珀"
- "BKAllocatedSize" => 1527808
- "BKBookType" => "epub"
- "BKDisplayName" => "时间的边缘"
- "BKGeneratedItemId" => "731572189FDBCFDBB6E8B23ACF5B02DC"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "731572189FDBCFDBB6E8B23ACF5B02DC"
- }
- "isPreview" => 0
- "itemName" => "时间的边缘"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/时间的边缘.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/时间的边缘.epub"
- }
- 423 => {
- "artistName" => "查尔斯·泰勒"
- "BKAllocatedSize" => 3665920
- "BKBookType" => "epub"
- "BKDisplayName" => "世俗时代"
- "BKGeneratedItemId" => "B3D82B287A496AABE1BA0A90B0CD2F9C"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "B3D82B287A496AABE1BA0A90B0CD2F9C"
- }
- "isPreview" => 0
- "itemName" => "世俗时代"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/世俗时代.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/世俗时代.epub"
- }
- 424 => {
- "artistName" => "林必忠"
- "BKAllocatedSize" => 3338240
- "BKBookType" => "epub"
- "BKDisplayName" => "收藏圈-833ao"
- "BKGeneratedItemId" => "C2C53795A34E4059338B9A5D19F79AA5"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "C2C53795A34E4059338B9A5D19F79AA5"
- }
- "genre" => "天浪书屋"
- "isPreview" => 0
- "itemName" => "收藏圈-833ao"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/收藏圈-833ao.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/收藏圈-833ao.epub"
- }
- 425 => {
- "artistName" => "唐朝"
- "BKAllocatedSize" => 5029888
- "BKBookType" => "epub"
- "BKDisplayName" => "手把手教你读财报218节课看透银行业"
- "BKGeneratedItemId" => "4CEB2C281E9FC947799C49BC3E72A20E"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "4CEB2C281E9FC947799C49BC3E72A20E"
- }
- "isPreview" => 0
- "itemName" => "手把手教你读财报2——18节课看透银行业"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/手把手教你读财报218节课看透银行业.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/手把手教你读财报218节课看透银行业.epub"
- }
- 426 => {
- "artistName" => "唐朝"
- "BKAllocatedSize" => 5046272
- "BKBookType" => "epub"
- "BKDisplayName" => "手把手教你读财报财报是用来排除企业的"
- "BKGeneratedItemId" => "A718D0F722746C6BEFA4BE8F51AE3353"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "A718D0F722746C6BEFA4BE8F51AE3353"
- }
- "isPreview" => 0
- "itemName" => "手把手教你读财报:财报是用来排除企业的"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/手把手教你读财报财报是用来排除企业的.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/手把手教你读财报财报是用来排除企业的.epub"
- }
- 427 => {
- "artistName" => "[德]亚瑟·叔本华"
- "BKAllocatedSize" => 1298432
- "BKBookType" => "epub"
- "BKDisplayName" => "叔本华心灵咒语请优雅地拥抱这个苦难的世界获得独立的人格做内心强大的自己孤独而伟大的哲学家道破生命的本质摆脱沮丧获得坚强悲悯的心"
- "BKGeneratedItemId" => "019A60691D270E08586ED45CEB9A9AFC"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "019A60691D270E08586ED45CEB9A9AFC"
- }
- "genre" => "励志"
- "isPreview" => 0
- "itemName" => "叔本华心灵咒语:请优雅地拥抱这个苦难的世界(获得独立的人格,做内心强大的自己!孤独而伟大的哲学家,道破生命的本质,摆脱沮丧,获得坚强悲悯的心。)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/叔本华心灵咒语请优雅地拥抱这个苦难的世界获得独立的人格做内心强大的自己孤独而伟大的哲学家道破生命的本质摆脱沮丧获得坚强悲悯的心.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/叔本华心灵咒语请优雅地拥抱这个苦难的世界获得独立的人格做内心强大的自己孤独而伟大的哲学家道破生命的本质摆脱沮丧获得坚强悲悯的心.epub"
- }
- 428 => {
- "artistName" => "[英国] 弗吉尼亚·伍尔夫"
- "BKAllocatedSize" => 1585152
- "BKBookType" => "epub"
- "BKDisplayName" => "思考就是我的抵抗伍尔夫日记选____英弗吉尼亚伍尔夫__-51v2j"
- "BKGeneratedItemId" => "E9A515D3D4333D38761F19915F17F44C"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "E9A515D3D4333D38761F19915F17F44C"
- }
- "isPreview" => 0
- "itemName" => "思考就是我的抵抗:伍尔夫日记选____[英]弗吉尼亚·伍尔夫__-51v2j"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/思考就是我的抵抗伍尔夫日记选____英弗吉尼亚伍尔夫__-51v2j.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/思考就是我的抵抗伍尔夫日记选____英弗吉尼亚伍尔夫__-51v2j.epub"
- }
- 429 => {
- "artistName" => "(德)延斯·森特根"
- "BKAllocatedSize" => 7069696
- "BKBookType" => "epub"
- "BKDisplayName" => "思维的艺术如何像哲学家一样思考"
- "BKGeneratedItemId" => "39C9CE2861B9C4C2D794B5CB682FB27D"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "39C9CE2861B9C4C2D794B5CB682FB27D"
- }
- "isPreview" => 0
- "itemName" => "思维的艺术:如何像哲学家一样思考"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/思维的艺术如何像哲学家一样思考.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/思维的艺术如何像哲学家一样思考.epub"
- }
- 430 => {
- "artistName" => "[英]布莱恩·麦基"
- "BKAllocatedSize" => 847872
- "BKBookType" => "epub"
- "BKDisplayName" => "思想家与十五位杰出哲学家的对话第二版"
- "BKGeneratedItemId" => "04BF6612030F01DBD9E88D0891358CFA"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "04BF6612030F01DBD9E88D0891358CFA"
- }
- "isPreview" => 0
- "itemName" => "思想家:与十五位杰出哲学家的对话(第二版)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/思想家与十五位杰出哲学家的对话第二版.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/思想家与十五位杰出哲学家的对话第二版.epub"
- }
- 431 => {
- "artistName" => "未知作者"
- "BKAllocatedSize" => 466944
- "BKBookType" => "epub"
- "BKDisplayName" => "四千周-4imio"
- "BKGeneratedItemId" => "0C26DA64D4A408C0CD38C6C01CF0EDC3"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "0C26DA64D4A408C0CD38C6C01CF0EDC3"
- }
- "isPreview" => 0
- "itemName" => "四千周-4imio"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/四千周-4imio.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/四千周-4imio.epub"
- }
- 432 => {
- "artistName" => "周公子"
- "BKAllocatedSize" => 2453504
- "BKBookType" => "epub"
- "BKDisplayName" => "宋词群星闪耀时-hkfhr"
- "BKGeneratedItemId" => "6A857FEDADEF0344D5E64A36DB1AB41C"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "6A857FEDADEF0344D5E64A36DB1AB41C"
- }
- "bookDescription" => "我希望读者朋友们能在本书中,与李煜、范仲淹、晏殊、欧阳修、王安石、苏轼、宋徽宗、李清照、陆游、辛弃疾处于相同的状态中,喜其所喜,悲其所悲,他笑你也笑,他哭你也哭……由此与词人们的心灵真正相遇、相知,在他们的人生故事和诗词篇章里,无限延展自我的生命体验。"
- "genre" => "-SanQiu.mobi"
- "isPreview" => 0
- "itemName" => "宋词群星闪耀时-hkfhr"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/宋词群星闪耀时-hkfhr.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/宋词群星闪耀时-hkfhr.epub"
- }
- 433 => {
- "artistName" => "中华书局策划"
- "BKAllocatedSize" => 2007040
- "BKBookType" => "epub"
- "BKDisplayName" => "搜神记"
- "BKGeneratedItemId" => "A583E115C600A37FBA69A5BC1CBACD76"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "A583E115C600A37FBA69A5BC1CBACD76"
- }
- "isPreview" => 0
- "itemName" => "搜神记"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/搜神记.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/搜神记.epub"
- }
- 434 => {
- "artistName" => "[英] 蒙蒂·莱曼"
- "BKAllocatedSize" => 1744896
- "BKBookType" => "epub"
- "BKDisplayName" => "疼痛的真相-vqlbh"
- "BKGeneratedItemId" => "74750DCCC14D5F6DD61B7F0F1C71B2B9"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "74750DCCC14D5F6DD61B7F0F1C71B2B9"
- }
- "genre" => "-SanQiu.mobi"
- "isPreview" => 0
- "itemName" => "疼痛的真相-vqlbh"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/疼痛的真相-vqlbh.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/疼痛的真相-vqlbh.epub"
- }
- 435 => {
- "artistName" => "乐天无极"
- "BKAllocatedSize" => 1335296
- "BKBookType" => "epub"
- "BKDisplayName" => "剃掉鬍子的馬克思一位革命家的人生轉折與晚年自我追尋之旅-y9har"
- "BKGeneratedItemId" => "095B8F7ED8B216FDD782D9612F246569"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "095B8F7ED8B216FDD782D9612F246569"
- }
- "isPreview" => 0
- "itemName" => "剃掉鬍子的馬克思:一位革命家的人生轉折與晚年自我追尋之旅-y9har"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/剃掉鬍子的馬克思一位革命家的人生轉折與晚年自我追尋之旅-y9har.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/剃掉鬍子的馬克思一位革命家的人生轉折與晚年自我追尋之旅-y9har.epub"
- }
- 436 => {
- "artistName" => "严行方"
- "BKAllocatedSize" => 1748992
- "BKBookType" => "epub"
- "BKDisplayName" => "通胀来了你准备好了吗"
- "BKGeneratedItemId" => "6FC5EA6DAFC1934D0E6C9742B72D58F5"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "6FC5EA6DAFC1934D0E6C9742B72D58F5"
- }
- "isPreview" => 0
- "itemName" => "通胀来了,你准备好了吗"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/通胀来了你准备好了吗.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/通胀来了你准备好了吗.epub"
- }
- 437 => {
- "artistName" => "威廉·米勒 (William R. Miller)"
- "BKAllocatedSize" => 1323008
- "BKBookType" => "epub"
- "BKDisplayName" => "同理倾听-5jkvi"
- "BKGeneratedItemId" => "93EA8F6B8FBBD34585BA067979A74E1A"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "93EA8F6B8FBBD34585BA067979A74E1A"
- }
- "genre" => "-SanQiu.CC"
- "isPreview" => 0
- "itemName" => "同理倾听-5jkvi"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/同理倾听-5jkvi.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/同理倾听-5jkvi.epub"
- }
- 438 => {
- "artistName" => "霍华德·马克斯"
- "BKAllocatedSize" => 1495040
- "BKBookType" => "epub"
- "BKDisplayName" => "投资最重要的事全新升级版"
- "BKGeneratedItemId" => "429B06F777E7811724AC0FCDACC19412"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "429B06F777E7811724AC0FCDACC19412"
- }
- "isPreview" => 0
- "itemName" => "投资最重要的事(全新升级版)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/投资最重要的事全新升级版.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/投资最重要的事全新升级版.epub"
- }
- 439 => {
- "artistName" => "韩炳哲"
- "BKAllocatedSize" => 253952
- "BKBookType" => "epub"
- "BKDisplayName" => "透明社会以哲学小品文的简练和犀利照察当今社会情状和人类心灵洞穿数字媒体时代的群体狂欢和孤独个体之镜像"
- "BKGeneratedItemId" => "04617EAC677367B758BF04EEA2EFB8EB"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "04617EAC677367B758BF04EEA2EFB8EB"
- }
- "isPreview" => 0
- "itemName" => "透明社会(以哲学小品文的简练和犀利,照察当今社会情状和人类心灵,洞穿数字媒体时代的群体狂欢和孤独个体之镜像)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/透明社会以哲学小品文的简练和犀利照察当今社会情状和人类心灵洞穿数字媒体时代的群体狂欢和孤独个体之镜像.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/透明社会以哲学小品文的简练和犀利照察当今社会情状和人类心灵洞穿数字媒体时代的群体狂欢和孤独个体之镜像.epub"
- }
- 440 => {
- "artistName" => "肖德洛·德·拉克洛(Choderlos de Laclos)"
- "BKAllocatedSize" => 2170880
- "BKBookType" => "epub"
- "BKDisplayName" => "危险的关系译文名著精选"
- "BKGeneratedItemId" => "E30C9F0CCB1A1D3D70BD29AE661A24C3"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "E30C9F0CCB1A1D3D70BD29AE661A24C3"
- }
- "genre" => "EBOOKG.COM书聚"
- "isPreview" => 0
- "itemName" => "危险的关系(译文名著精选)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/危险的关系译文名著精选.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/危险的关系译文名著精选.epub"
- }
- 441 => {
- "artistName" => "网络"
- "BKAllocatedSize" => 3477504
- "BKBookType" => "pdf"
- "BKDisplayName" => "印度三大主神"
- "BKGeneratedItemId" => "7A8D18D84B8B8E7B75D09DAC7E5D5DBE"
- "BKGenerationCount" => 3
- "BKInsertionDate" => 748424276
- "BKIsLocked" => 0
- "BKItemPreviousPath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/未命名 10.pdf"
- "book-info" => {
- "publication-version" => 0
- }
- "isPreview" => 0
- "itemName" => "印度三大主神"
- "modificationDate" => 2024-09-17 06:45:32 +0000
- "pageCount" => 4
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/印度三大主神.pdf"
- "releaseDate" => 2024-09-16 11:16:29 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/未命名 10.pdf"
- "updateDate" => 2024-10-08 15:01:16 +0000
- }
- 442 => {
- "artistName" => "网络"
- "BKAllocatedSize" => 331776
- "BKBookType" => "pdf"
- "BKDisplayName" => "美国国运兴衰与基督教⸺兼谈“反智 主义”为何在美国盛行?"
- "BKGeneratedItemId" => "C02D73158AC3C7AAB738848F997D0284"
- "BKGenerationCount" => 3
- "BKInsertionDate" => 748424276
- "BKIsLocked" => 0
- "BKItemPreviousPath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/未命名 7.pdf"
- "book-info" => {
- "publication-version" => 0
- }
- "isPreview" => 0
- "itemName" => "美国国运兴衰与基督教⸺兼谈“反智 主义”为何在美国盛行?"
- "modificationDate" => 2024-07-27 14:43:50 +0000
- "pageCount" => 14
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/美国国运兴衰与基督教⸺兼谈“反智 主义”为何在美国盛行?.pdf"
- "releaseDate" => 2024-07-27 14:43:50 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/未命名 7.pdf"
- "updateDate" => 2024-07-27 14:43:50 +0000
- }
- 443 => {
- "artistName" => "网络"
- "BKAllocatedSize" => 90112
- "BKBookType" => "pdf"
- "BKDisplayName" => "受害者有罪论、完美受害者"
- "BKGeneratedItemId" => "1207C0713834A3EC7CCB2E7EE2F8552B"
- "BKGenerationCount" => 5
- "BKInsertionDate" => 748424276
- "BKIsLocked" => 0
- "BKItemPreviousPath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/受害者有罪论、完美受害者⸺概念 及其误用.pdf"
- "book-info" => {
- "publication-version" => 0
- }
- "isPreview" => 0
- "itemName" => "受害者有罪论、完美受害者"
- "modificationDate" => 2024-08-18 14:00:47 +0000
- "pageCount" => 3
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/受害者有罪论、完美受害者.pdf"
- "releaseDate" => 2024-08-18 14:00:47 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/未命名 8.pdf"
- "updateDate" => 2024-08-18 14:00:47 +0000
- }
- 444 => {
- "artistName" => "网络"
- "BKAllocatedSize" => 44380160
- "BKBookType" => "pdf"
- "BKDisplayName" => "闪米特人和雅利安人的博弈"
- "BKGeneratedItemId" => "09A2DDF5F856A618CDBE7DFA245F01F3"
- "BKGenerationCount" => 3
- "BKInsertionDate" => 748424276
- "BKIsLocked" => 0
- "BKItemPreviousPath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/未命名 9.pdf"
- "book-info" => {
- "publication-version" => 0
- }
- "isPreview" => 0
- "itemName" => "闪米特人和雅利安人的博弈"
- "modificationDate" => 2024-09-05 13:25:34 +0000
- "pageCount" => 42
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/闪米特人和雅利安人的博弈.pdf"
- "releaseDate" => 2024-09-04 14:15:48 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/未命名 9.pdf"
- "updateDate" => 2024-09-05 13:25:34 +0000
- }
- 445 => {
- "artistName" => "夏目漱石"
- "BKAllocatedSize" => 991232
- "BKBookType" => "epub"
- "BKDisplayName" => "我是猫于雷译本-lnqfm"
- "BKGeneratedItemId" => "D27C6F3642D3052BFBD3B6D47E8BC696"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424276
- "book-info" => {
- "package-file-hash" => "D27C6F3642D3052BFBD3B6D47E8BC696"
- }
- "isPreview" => 0
- "itemName" => "我是猫(于雷译本)-lnqfm"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/我是猫于雷译本-lnqfm.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/我是猫于雷译本-lnqfm.epub"
- }
- 446 => {
- "artistName" => "达尔文 (Charles Robert Darwin)"
- "BKAllocatedSize" => 1257472
- "BKBookType" => "epub"
- "BKDisplayName" => "物种起源 译林人文精选"
- "BKGeneratedItemId" => "0F755FCCAB39079E76ECD9B06E5E57C4"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "0F755FCCAB39079E76ECD9B06E5E57C4"
- }
- "genre" => "达尔文学说"
- "isPreview" => 0
- "itemName" => "物种起源 (译林人文精选)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/物种起源 译林人文精选.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/物种起源 译林人文精选.epub"
- }
- 447 => {
- "artistName" => "[北宋]张伯端"
- "BKAllocatedSize" => 2060288
- "BKBookType" => "epub"
- "BKDisplayName" => "悟真篇集释"
- "BKGeneratedItemId" => "0DDC0E6BC3627E42ED5DC22B2ACAEA79"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "0DDC0E6BC3627E42ED5DC22B2ACAEA79"
- }
- "bookDescription" => "]]>"
- "genre" => "道教"
- "isPreview" => 0
- "itemName" => "悟真篇集释"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/悟真篇集释.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/悟真篇集释.epub"
- }
- 448 => {
- "artistName" => "[德]奥斯瓦尔德·斯宾格勒"
- "BKAllocatedSize" => 2846720
- "BKBookType" => "epub"
- "BKDisplayName" => "西方的没落全二卷-奥斯瓦尔德斯宾格勒-8htix"
- "BKGeneratedItemId" => "1CA39F8A5EF4089524856A2F7F88C1BD"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "1CA39F8A5EF4089524856A2F7F88C1BD"
- }
- "bookDescription" => "斯宾格勒,这个现代德国心灵的重要表征,把歌德式的观相方法和尼采式的批判精神结合在一起,从宏大的文化比较形态学的角度,通过对西方文化的精神逻辑和时代症状的描述,预言西方文化终将走向没落。自他以后,这一末世启示录的论调就犹如一个原始的创伤,深深地刻印在20世纪以来的西方历史路程中,其先知般的声音在我们今天所处的时代仍可唤起一种自省的激情。
- 《西方的没落》是德国现代哲学家斯宾格勒(1880-1936)的历史哲学著作。本书的第一卷于1918年出版,第二卷于1922年出版。
- 斯宾格勒青年时代就读于哈雷、慕尼黑、柏林等大学,毕业后任教于一所中学。本书就是他在中学教书时写成的。作者说他于1911年已构思此书,当时他已感觉到世界大战已迫在眉睫。大战的爆发和进展使他的心灵受到震憾,促使他深深地思考现时代人类的生活,尤其是西方文化与历史的命运。
- 在《西方的没落》的一书中,斯宾格勒大胆地提出了研究人类历史与文化发展的新学说,即比较文化形态学的理论体系。他认为这是在西方现代社会的土壤中所能产生的唯一的新哲学,从这一世界历史形态学的观点出发,可以很好地审视人类历史与文化的发展,为现时代的文化定位,并预测其未来的发展。
- 斯宾格勒认为全人类的历史是不存在的,存在的只是各个文化的历史。研究世界历史只能是研究各个文化的历史。每种文化都有其基本的个性特征,这些基本物征作为文化的灵魂从文化的各个方面表现出来。不同的文化是互不理解的。因而,研究世界历史必须采用“文化形态学”的方法,从贯穿于每一文化的基本的个性特征去把握其形态。把握各个文化的基本特征不能靠自然科学的方法,要靠本能和直觉去理解。
- 比较文化形态学认为,历史是有逻辑的,有一种形而上学的结构贯穿于人类历史中。具体地说,人类历史是一个有机体,每种文化都具有相同的生命周期,历经青春、生长、成熟和衰败四个阶段,就像大自然有春、夏、秋、冬四季变换一样。各个文化中的不同的历史时期,只要属于文化形态学中的同一阶段,就是同时代的。
- 尽管斯宾格勒的历史哲学中仍然存在着“西方中心论”的影响,但他确实是比较早地、比较自学地批判“西方中心论”的西方著名学者。他例举了人类历史上的八大文化,即古典文化、西方文化、巴比伦文化、中国文化、埃及文化、墨西哥文化、阿拉伯文化、印度文化等,认为古典文化、西方文化并不比其它文化优越。他把“西欧中心论”问的世界史观视为“历史的托勒密体系”,认为它应该被他的哥白尼式的世界观所代替。不过,在他看来,除了西方文化,其它文化都已经死亡,只是一种无历史、无生气的存在。只剩下西方文化还处于文明发展的“战国时期”,虽然他也讲西方的没落。
- 斯宾格勒的历史哲学有一个显著的特点,他特别强调历史的宿命.他明确地说,《西方的没落》是他对历史和有关宿命的哲学的一种新的看法。由这种宿命的历史观所决定,虽然他也感叹西方的没落,却还是认为不论人类是多么努力,都不可能改变历史的宿命.他的希望只是,这本书能打动他的读者,从而委身于技术、海洋、政治,而不是抒情诗、画笔、认识论,他认为人们只能适应这个技术的、物质的、政治的社会要求。
- 《西方的没落》一书问世以来,其影响是很复杂的。它既对汤因比这样的历史学家有很大的影响,又被纳粹政治家和思想家所利用.我们今天应该以批判的眼光来读这本书,进行批判的思考。建议重点阅读导言部分。"
- "isPreview" => 0
- "itemName" => "西方的没落(全二卷)-奥斯瓦尔德·斯宾格勒-8htix"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/西方的没落全二卷-奥斯瓦尔德斯宾格勒-8htix.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/西方的没落全二卷-奥斯瓦尔德斯宾格勒-8htix.epub"
- }
- 449 => {
- "artistName" => "約瑟夫.亨里奇"
- "BKAllocatedSize" => 11300864
- "BKBookType" => "epub"
- "BKDisplayName" => "西方文化的特立獨行如何形成繁榮世界_約瑟夫亨里奇-0obhz"
- "BKGeneratedItemId" => "FD8EDE978DE55E1853C09CB0BFF06F34"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "FD8EDE978DE55E1853C09CB0BFF06F34"
- }
- "genre" => "公众号:窃蓝书房"
- "isPreview" => 0
- "itemName" => "西方文化的特立獨行如何形成繁榮世界_(約瑟夫.亨里奇)-0obhz"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/西方文化的特立獨行如何形成繁榮世界_約瑟夫亨里奇-0obhz.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/西方文化的特立獨行如何形成繁榮世界_約瑟夫亨里奇-0obhz.epub"
- }
- 450 => {
- "artistName" => "[美] 罗兰·斯特龙伯格"
- "BKAllocatedSize" => 2080768
- "BKBookType" => "epub"
- "BKDisplayName" => "西方现代思想史"
- "BKGeneratedItemId" => "39700006CADC417B68FCDA5C8C45C07A"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "39700006CADC417B68FCDA5C8C45C07A"
- }
- "bookDescription" => "本书中文版是由作者本人授权的唯一完整版本,是威斯康星??密尔沃基大学资深教授罗兰??斯特隆伯格的扛鼎力作。本书问世于20世纪60年代,风行欧美大学,90年代新版问世,续写流行神话。斯特龙伯格教授以高屋建瓯的历史眼光、激越昂扬的文字表述、犀利透彻的哲理分析,生动而简约地勾勒了近500年来西方思想的全景画卷。
"
- "genre" => "哲学书籍"
- "isPreview" => 0
- "itemName" => "西方现代思想史"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/西方现代思想史.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/西方现代思想史.epub"
- }
- 451 => {
- "artistName" => "傅佩榮"
- "BKAllocatedSize" => 5459968
- "BKBookType" => "epub"
- "BKDisplayName" => "西方哲學之旅-pa5kh"
- "BKGeneratedItemId" => "631034A729E5A2C43B9910F0182A39EF"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "631034A729E5A2C43B9910F0182A39EF"
- }
- "isPreview" => 0
- "itemName" => "西方哲學之旅-pa5kh"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/西方哲學之旅-pa5kh.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/西方哲學之旅-pa5kh.epub"
- }
- 452 => {
- "artistName" => "赫尔曼·黑塞"
- "BKAllocatedSize" => 413696
- "BKBookType" => "epub"
- "BKDisplayName" => "悉达多德文直译版诺贝尔文学奖得主黑塞代表作用体验回答每个人关于自我和生活的困扰果麦经典"
- "BKGeneratedItemId" => "ED6B26449F766D4BC7840A298437919B"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "ED6B26449F766D4BC7840A298437919B"
- }
- "isPreview" => 0
- "itemName" => "悉达多(德文直译版;诺贝尔文学奖得主黑塞代表作;用体验回答每个人关于自我和生活的困扰)(果麦经典)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/悉达多德文直译版诺贝尔文学奖得主黑塞代表作用体验回答每个人关于自我和生活的困扰果麦经典.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/悉达多德文直译版诺贝尔文学奖得主黑塞代表作用体验回答每个人关于自我和生活的困扰果麦经典.epub"
- }
- 453 => {
- "artistName" => "乔治•帕克"
- "BKAllocatedSize" => 1617920
- "BKBookType" => "epub"
- "BKDisplayName" => "下沉年代白宫之乱的根本原因是什么拜登上任后美国何去何从通俗版美国陷阱面对面访谈民主党前幕僚深刻解读美国为什么会衰落"
- "BKGeneratedItemId" => "D2B710C3922B023A6C67A1A6F63F18E4"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "D2B710C3922B023A6C67A1A6F63F18E4"
- }
- "isPreview" => 0
- "itemName" => "下沉年代(白宫之乱的根本原因是什么?拜登上任后美国何去何从?通俗版《美国陷阱》,面对面访谈民主党前幕僚,深刻解读美国为什么会衰落。)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/下沉年代白宫之乱的根本原因是什么拜登上任后美国何去何从通俗版美国陷阱面对面访谈民主党前幕僚深刻解读美国为什么会衰落.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/下沉年代白宫之乱的根本原因是什么拜登上任后美国何去何从通俗版美国陷阱面对面访谈民主党前幕僚深刻解读美国为什么会衰落.epub"
- }
- 454 => {
- "artistName" => "萊思麗.海澤爾頓"
- "BKAllocatedSize" => 1212416
- "BKBookType" => "epub"
- "BKDisplayName" => "先知之後"
- "BKGeneratedItemId" => "A3B02FED75574718B2E9379EB62268D8"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "A3B02FED75574718B2E9379EB62268D8"
- }
- "isPreview" => 0
- "itemName" => "先知之後"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/先知之後.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/先知之後.epub"
- }
- 455 => {
- "artistName" => "杨华"
- "BKAllocatedSize" => 1167360
- "BKBookType" => "epub"
- "BKDisplayName" => "县乡中国县域治理现代化一本展现县乡政治生态的写实白描书作者累计调研超过1300天房宁贺雪峰颜昌武吕德文欧阳静联袂推荐-3z0nt"
- "BKGeneratedItemId" => "66AE27CC0EACC81EFE16AC9AF74A205C"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "66AE27CC0EACC81EFE16AC9AF74A205C"
- }
- "isPreview" => 0
- "itemName" => "县乡中国:县域治理现代化【一本展现县乡政治生态的写实白描书,作者累计调研超过1300天。房宁、贺雪峰、颜昌武、吕德文、欧阳静联袂推荐!】-3z0nt"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/县乡中国县域治理现代化一本展现县乡政治生态的写实白描书作者累计调研超过1300天房宁贺雪峰颜昌武吕德文欧阳静联袂推荐-3z0nt.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/县乡中国县域治理现代化一本展现县乡政治生态的写实白描书作者累计调研超过1300天房宁贺雪峰颜昌武吕德文欧阳静联袂推荐-3z0nt.epub"
- }
- 456 => {
- "artistName" => "[美国]马泰·卡林内斯库"
- "BKAllocatedSize" => 1597440
- "BKBookType" => "epub"
- "BKDisplayName" => "现代性的五副面孔现代主义先锋派颓废媚俗艺术后现代主义 名家文学讲坛"
- "BKGeneratedItemId" => "01B6435D800B50BCDB19D7F2755CD952"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "01B6435D800B50BCDB19D7F2755CD952"
- }
- "isPreview" => 0
- "itemName" => "现代性的五副面孔:现代主义、先锋派、颓废、媚俗艺术、后现代主义 (名家文学讲坛)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/现代性的五副面孔现代主义先锋派颓废媚俗艺术后现代主义 名家文学讲坛.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/现代性的五副面孔现代主义先锋派颓废媚俗艺术后现代主义 名家文学讲坛.epub"
- }
- 457 => {
- "artistName" => "陈嘉明"
- "BKAllocatedSize" => 1286144
- "BKBookType" => "epub"
- "BKDisplayName" => "现代性与后现代性十五讲"
- "BKGeneratedItemId" => "9CFA669B74F7CFCB065DA0073614EC3B"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "9CFA669B74F7CFCB065DA0073614EC3B"
- }
- "bookDescription" => "编辑推荐
《现代性与后现代性十五讲》的内容设计充分照顾到社会上一般青年读者的阅读选择,适合自学;同时又能满足大学通识课教学的需要。既注意知识的相对稳定性,重点突出,通俗易懂,又能适当接触学科前沿,引发跨学科的思考和学习的兴趣。
内容简介
《现代性与后现代性十五讲》系由不同的作者撰写,这些作者都有不同的治学风格,但又都有共同的追求,既注意知识的相对稳定性,重点突出,通俗易懂,又能适合接触学科前沿,引发跨学科的思考和学习的兴趣。
《现代性与后现代性十五讲》系大都采用学术讲座的风格,有意保留讲课的口气和生动的文风,有“讲”的现场感,比较亲切、有趣。在经历了现代性的近3个世纪的构建过程之后,如今批判的锋芒转向了现代性本身。类似的问题重行开始。社会规范的基础来自何处?现代性的合理性以及合法性的根据何在?假如以"主体性"作为客体的价值之源,意义之源是错误的,那么主客体之间应当是一种什么关系?最后,也是最根本的,人是什么?对此类问题的新解答,构成了从现代性向后现代性的思想态度的转变。
作者简介
1952年生于福建厦门。1989年于中国社科院研究生院获哲学博士学位。1994年起为厦门大学哲学系教授。现为西方哲学专业博士生导师,兼任《厦门大学学报》编委会主编。曾在德国马堡大学.英国圣一安德鲁斯大学,荷兰阿姆斯特丹大学,美国哈佛大学,纽约州立大学,加尔文学院从事访问研究或讲学。主要著作有《建构与范导—一康德哲学的方法论》、《现代性与后现代性》、《知识与确证——当代知识论引论轧《实在。心灵与信念----当代美国哲学概论》等。
"
- "isPreview" => 0
- "itemName" => "现代性与后现代性十五讲"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/现代性与后现代性十五讲.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/现代性与后现代性十五讲.epub"
- }
- 458 => {
- "artistName" => "香帅"
- "BKAllocatedSize" => 2318336
- "BKBookType" => "epub"
- "BKDisplayName" => "香帅财富报告"
- "BKGeneratedItemId" => "A65879F1B5353633445E48BC75872B3C"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "A65879F1B5353633445E48BC75872B3C"
- }
- "isPreview" => 0
- "itemName" => "香帅财富报告"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/香帅财富报告.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/香帅财富报告.epub"
- }
- 459 => {
- "artistName" => "香帅"
- "BKAllocatedSize" => 2473984
- "BKBookType" => "epub"
- "BKDisplayName" => "香帅金融学讲义-90ly2"
- "BKGeneratedItemId" => "53B0F044DA2AB57D4940E99E5D10525B"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "53B0F044DA2AB57D4940E99E5D10525B"
- }
- "bookDescription" => "要买房,贷款多少年合适?有没有必要提前还款?上有老、下有小,应该什么时候给家人买保险,什么时候买教育基金?买股票有涨有跌,怎么才能踩对点,避免被割韭菜?该不该辞了稳定的工作,跳槽去一家有员工期权的创业公司?
-
-为什么金融是这一个世纪的显学?为什么“金融立国”的美国能独占世界鳌头这么久?为什么说“工业革命不得不等待一场金融革命”?硅谷和华尔街之间是你中有我的关系吗?科技金融的未来究竟在哪里?……
-
-如果你也关注这些问题,如果你也希望做一个现代金融社会的明眼人,这本书一定要看看。它能让你看清财富运行的本质,助你做出正确的决策。
-
-金融知识已经成为现代人的“刚需”。香帅用通透、接地气的方式,将大到金融发展的历史、科技金融的未来,小到股票、债券、基金等金融工具的运用说清楚。书里没有晦涩难懂的名词和数学公式,只有金融的规律和洞察。
-
-香帅把金融知识层层剥开,让你深入理解金融的架构和本质,建立一套完整的金融学思维。专业人士看了,会获得前所未有的金融大历史视角;普通读者看了,可以更好地利用金融工具,让自己离财富更近。"
- "genre" => "-SanQiu.mobi"
- "isPreview" => 0
- "itemName" => "香帅金融学讲义"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/香帅金融学讲义-90ly2.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/香帅金融学讲义-90ly2.epub"
- }
- 460 => {
- "artistName" => "张向荣"
- "BKAllocatedSize" => 2711552
- "BKBookType" => "epub"
- "BKDisplayName" => "祥瑞王莽和他的时代搁置定论厘清王莽真容揭示两汉皇权真相丰厚细节再现政途跌宕叩问儒家使命得失新锐文史作家张向荣首部历史非虚构作品罗新刘勃陆大鹏力荐"
- "BKGeneratedItemId" => "02BBB54527529F8E89907036CBC91125"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "02BBB54527529F8E89907036CBC91125"
- }
- "isPreview" => 0
- "itemName" => "祥瑞:王莽和他的时代【搁置定论,厘清王莽真容,揭示两汉皇权真相;丰厚细节,再现政途跌宕,叩问儒家使命得失;新锐文史作家张向荣首部历史非虚构作品,罗新、刘勃、陆大鹏力荐】"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/祥瑞王莽和他的时代搁置定论厘清王莽真容揭示两汉皇权真相丰厚细节再现政途跌宕叩问儒家使命得失新锐文史作家张向荣首部历史非虚构作品罗新刘勃陆大鹏力荐.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/祥瑞王莽和他的时代搁置定论厘清王莽真容揭示两汉皇权真相丰厚细节再现政途跌宕叩问儒家使命得失新锐文史作家张向荣首部历史非虚构作品罗新刘勃陆大鹏力荐.epub"
- }
- 461 => {
- "artistName" => "本尼迪克特·安德森"
- "BKAllocatedSize" => 1429504
- "BKBookType" => "epub"
- "BKDisplayName" => "想象的共同体us1k2"
- "BKGeneratedItemId" => "0DC34BD693481D089441D2E84EE52343"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "0DC34BD693481D089441D2E84EE52343"
- }
- "isPreview" => 0
- "itemName" => "想象的共同体"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/想象的共同体us1k2.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/想象的共同体us1k2.epub"
- }
- 462 => {
- "artistName" => "(美)拉索尔"
- "BKAllocatedSize" => 417792
- "BKBookType" => "epub"
- "BKDisplayName" => "向着大地和天空凡人和诸神海德格尔导读"
- "BKGeneratedItemId" => "DF1C663F29A2950C2209480839F65E2E"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "DF1C663F29A2950C2209480839F65E2E"
- }
- "isPreview" => 0
- "itemName" => "向着大地和天空,凡人和诸神:海德格尔导读"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/向着大地和天空凡人和诸神海德格尔导读.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/向着大地和天空凡人和诸神海德格尔导读.epub"
- }
- 463 => {
- "artistName" => "威廉·B. 欧文 (William B. Irvine)"
- "BKAllocatedSize" => 1015808
- "BKBookType" => "epub"
- "BKDisplayName" => "像哲学家一样生活-grlex"
- "BKGeneratedItemId" => "5D103212DC3F4A414AAA9B7A12E62D9D"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "5D103212DC3F4A414AAA9B7A12E62D9D"
- }
- "bookDescription" => "你想要从生活中得到什么?你的回答可能是这样的:我想要一位关爱我的配偶、一份好工作、一所漂亮的房子,但是这些只是你生活需要的一部分。我的问题是从最广阔的意义上提出来的。我问的不是你日常活动意义上的目标,而是生活中的高远目标。换句话说,在你人生的所有追求中,什么对你来说是最有价值的?"
- "genre" => "斯多葛派-人生哲学"
- "isPreview" => 0
- "itemName" => "像哲学家一样生活-grlex"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/像哲学家一样生活-grlex.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/像哲学家一样生活-grlex.epub"
- }
- 464 => {
- "artistName" => "[美]爱德华·阿什福德·李"
- "BKAllocatedSize" => 4648960
- "BKBookType" => "epub"
- "BKDisplayName" => "协同进化-4aohm"
- "BKGeneratedItemId" => "A95002AFD40391599B5DE8BF9D7EDE05"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "A95002AFD40391599B5DE8BF9D7EDE05"
- }
- "genre" => "天浪书屋"
- "isPreview" => 0
- "itemName" => "协同进化-4aohm"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/协同进化-4aohm.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/协同进化-4aohm.epub"
- }
- 465 => {
- "artistName" => "布兰达·帕克"
- "BKAllocatedSize" => 7356416
- "BKBookType" => "epub"
- "BKDisplayName" => "携带黄金鱼子酱的居鲁士波斯帝国及其遗产"
- "BKGeneratedItemId" => "1495AE5A7B87A6834800CEC6990EC089"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "1495AE5A7B87A6834800CEC6990EC089"
- }
- "isPreview" => 0
- "itemName" => "携带黄金鱼子酱的居鲁士:波斯帝国及其遗产"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/携带黄金鱼子酱的居鲁士波斯帝国及其遗产.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/携带黄金鱼子酱的居鲁士波斯帝国及其遗产.epub"
- }
- 466 => {
- "artistName" => "竹村俊助"
- "BKAllocatedSize" => 2457600
- "BKBookType" => "epub"
- "BKDisplayName" => "写作高手速成手册-5wqjc"
- "BKGeneratedItemId" => "77070C267F5375050F30800D1AEB586F"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "77070C267F5375050F30800D1AEB586F"
- }
- "bookDescription" => "说实话,写文章这件事真的不挑人。突然这么说可能会有些伤自尊,非常抱歉,但事实的确如此。来想想看:再不济,你多少也有发信息的经验吧?社交软件的推文也写得头头是道吧?而在工作中,你应该也对撰写邮件毫不陌生。说不定你还在网上发表过探店评价。"
- "isPreview" => 0
- "itemName" => "写作高手速成手册-5wqjc"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/写作高手速成手册-5wqjc.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/写作高手速成手册-5wqjc.epub"
- }
- 467 => {
- "artistName" => "刘军强"
- "BKAllocatedSize" => 6656000
- "BKBookType" => "epub"
- "BKDisplayName" => "写作是门手艺-r02mk"
- "BKGeneratedItemId" => "C0E9963FF74971BA7944F408607D95E4"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "C0E9963FF74971BA7944F408607D95E4"
- }
- "isPreview" => 0
- "itemName" => "写作是门手艺-r02mk"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/写作是门手艺-r02mk.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/写作是门手艺-r02mk.epub"
- }
- 468 => {
- "artistName" => "[美]罗伯特•席勒(Robert J. Shiller)"
- "BKAllocatedSize" => 1126400
- "BKBookType" => "epub"
- "BKDisplayName" => "新金融秩序如何应对不确定的金融风险2013年诺贝尔经济学奖得主罗伯特希勒著作"
- "BKGeneratedItemId" => "D6DC4370097FE24EFFDF38FF37089976"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "D6DC4370097FE24EFFDF38FF37089976"
- }
- "isPreview" => 0
- "itemName" => "新金融秩序:如何应对不确定的金融风险(2013年诺贝尔经济学奖得主罗伯特•希勒著作)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/新金融秩序如何应对不确定的金融风险2013年诺贝尔经济学奖得主罗伯特希勒著作.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/新金融秩序如何应对不确定的金融风险2013年诺贝尔经济学奖得主罗伯特希勒著作.epub"
- }
- 469 => {
- "artistName" => "甘 源 任泽平"
- "BKAllocatedSize" => 6148096
- "BKBookType" => "epub"
- "BKDisplayName" => "新周期中国宏观经济理论与实战"
- "BKGeneratedItemId" => "1376322A0E101A439EBEDB835AB6ADDE"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "1376322A0E101A439EBEDB835AB6ADDE"
- }
- "isPreview" => 0
- "itemName" => "新周期:中国宏观经济理论与实战"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/新周期中国宏观经济理论与实战.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/新周期中国宏观经济理论与实战.epub"
- }
- 470 => {
- "artistName" => "[德]福尔克马·西古希(Volkmar Sigusch)"
- "BKAllocatedSize" => 2768896
- "BKBookType" => "epub"
- "BKDisplayName" => "性欲和性行为一种批判理论的99条断想全2册舞蹈家金星社会学家李银河推荐继弗洛伊德福柯之后的性学理论大师福尔克马西古希的力作索恩系列"
- "BKGeneratedItemId" => "66A671B395BE25A8C226C89FE9543F16"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "66A671B395BE25A8C226C89FE9543F16"
- }
- "isPreview" => 0
- "itemName" => "性欲和性行为:一种批判理论的99条断想(全2册)【舞蹈家金星、社会学家李银河推荐!继弗洛伊德、福柯之后的性学理论大师福尔克马·西古希的力作】(索恩系列)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/性欲和性行为一种批判理论的99条断想全2册舞蹈家金星社会学家李银河推荐继弗洛伊德福柯之后的性学理论大师福尔克马西古希的力作索恩系列.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/性欲和性行为一种批判理论的99条断想全2册舞蹈家金星社会学家李银河推荐继弗洛伊德福柯之后的性学理论大师福尔克马西古希的力作索恩系列.epub"
- }
- 471 => {
- "artistName" => "熊逸"
- "BKAllocatedSize" => 4743168
- "BKBookType" => "epub"
- "BKDisplayName" => "熊逸佛学50讲"
- "BKGeneratedItemId" => "217A8F4C49563894A7531AAEE902B43E"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "217A8F4C49563894A7531AAEE902B43E"
- }
- "isPreview" => 0
- "itemName" => "熊逸·佛学50讲"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/熊逸佛学50讲.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/熊逸佛学50讲.epub"
- }
- 472 => {
- "artistName" => "[美]维姬·罗宾,[美]乔·多明格斯"
- "BKAllocatedSize" => 3428352
- "BKBookType" => "epub"
- "BKDisplayName" => "要钱还是要生活没有财务自由也能提前退休"
- "BKGeneratedItemId" => "FA035241B59370558084CA0FB8A9B870"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "FA035241B59370558084CA0FB8A9B870"
- }
- "isPreview" => 0
- "itemName" => "要钱还是要生活:没有财务自由,也能提前退休"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/要钱还是要生活没有财务自由也能提前退休.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/要钱还是要生活没有财务自由也能提前退休.epub"
- }
- 473 => {
- "artistName" => "奈傑爾・沃伯頓"
- "BKAllocatedSize" => 22949888
- "BKBookType" => "epub"
- "BKDisplayName" => "耶魯大學40堂公開課系列套書"
- "BKGeneratedItemId" => "90E76BBC8D184BA1CDCA78CDC8C6380C"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "90E76BBC8D184BA1CDCA78CDC8C6380C"
- }
- "bookDescription" => "
-
目錄
-
哲學的40堂公開課
經濟學的40堂公開課
文學的40堂公開課
科學的40堂公開課
"
- "isPreview" => 0
- "itemName" => "耶魯大學「40堂公開課」系列套書"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/耶魯大學40堂公開課系列套書.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/耶魯大學40堂公開課系列套書.epub"
- }
- 474 => {
- "artistName" => "巫家民(Tango)"
- "BKAllocatedSize" => 2441216
- "BKBookType" => "epub"
- "BKDisplayName" => "野兽绅士单身男士必备撩妹宝典坏男孩创始人教父Tango终极力作汇集超人气恋爱社区坏男孩中超经典追女生技巧和领悟无数情感导师的必修教材亚洲一线追女社区坏男孩指导思想精华提炼让"
- "BKGeneratedItemId" => "99542CD331AA9FE63CB2BAABCC10859A"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "99542CD331AA9FE63CB2BAABCC10859A"
- }
- "genre" => "①男性-恋爱心理学-通俗读物"
- "isPreview" => 0
- "itemName" => "野兽绅士(单身男士必备撩妹宝典。坏男孩创始人、教父Tango终极力作!汇集超人气恋爱社区「坏男孩」中超经典追女生技巧和领悟。无数情感导师的必修教材!亚洲一线追女社区「坏男孩」指导思想精华提炼。让你喜欢的女孩喜欢上你!)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/野兽绅士单身男士必备撩妹宝典坏男孩创始人教父Tango终极力作汇集超人气恋爱社区坏男孩中超经典追女生技巧和领悟无数情感导师的必修教材亚洲一线追女社区坏男孩指导思想精华提炼让.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/野兽绅士单身男士必备撩妹宝典坏男孩创始人教父Tango终极力作汇集超人气恋爱社区坏男孩中超经典追女生技巧和领悟无数情感导师的必修教材亚洲一线追女社区坏男孩指导思想精华提炼让.epub"
- }
- 475 => {
- "artistName" => "王安忆"
- "BKAllocatedSize" => 1097728
- "BKBookType" => "epub"
- "BKDisplayName" => "一把刀千个字茅盾文学奖获奖作家王安忆全新长篇登顶收获长篇小说榜人民文学出版社倾力打造 1"
- "BKGeneratedItemId" => "011AED575E0C19B824F429644C2F2351"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "011AED575E0C19B824F429644C2F2351"
- }
- "isPreview" => 0
- "itemName" => "一把刀,千个字(茅盾文学奖获奖作家王安忆全新长篇;登顶《收获》长篇小说榜;人民文学出版社倾力打造)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/一把刀千个字茅盾文学奖获奖作家王安忆全新长篇登顶收获长篇小说榜人民文学出版社倾力打造 1.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/一把刀千个字茅盾文学奖获奖作家王安忆全新长篇登顶收获长篇小说榜人民文学出版社倾力打造 1.epub"
- }
- 476 => {
- "artistName" => "陈思进"
- "BKAllocatedSize" => 782336
- "BKBookType" => "epub"
- "BKDisplayName" => "一本书读懂生活中的金融常识懂点有用的知识比任何专家都管用"
- "BKGeneratedItemId" => "131B73A3B1A34A07A45F4E1260550B0D"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "131B73A3B1A34A07A45F4E1260550B0D"
- }
- "isPreview" => 0
- "itemName" => "一本书读懂生活中的金融常识(懂点有用的知识,比任何专家都管用)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/一本书读懂生活中的金融常识懂点有用的知识比任何专家都管用.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/一本书读懂生活中的金融常识懂点有用的知识比任何专家都管用.epub"
- }
- 477 => {
- "artistName" => "楊益"
- "BKAllocatedSize" => 3698688
- "BKBookType" => "epub"
- "BKDisplayName" => "一本書讀懂美洲史"
- "BKGeneratedItemId" => "086D9893EBB935BA9CACCD30DEE68C94"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "086D9893EBB935BA9CACCD30DEE68C94"
- }
- "bookDescription" => "歷史不但是一個國家和民族的發展史,也是一部有思想、有靈魂的生活史和奮鬥史。
研讀世界歷史,不僅可以豐富我們的歷史知識,還可以讓我們從世界歷史的興衰演變中體會生存智慧、開闊眼界,感悟與中華文化不同的風俗民情。
全方位、新視角、多層面的編排方式,中西年表對照,輕鬆瞭解國內外大事。
我們本著為廣大讀者提供一本通俗歷史讀物的思想,特別採用編年體制,按歷史順序編寫,版面編排用心,兩側附上中西簡易大事紀年表,讓讀者在讀美洲歷史的同時,可以清楚明白的知道當時國際上發生的事情。
掌握世界趨勢演化的精髓,簡單扼要地勾勒出世界歷史的發展。
歷史是一面鏡子,更是一部五花八門、包羅萬象的百科全書。本書精選了美洲歷史上一個個叱吒風雲的歷史人物、可歌可泣的豐功偉業與驚心動魄的重大事件將之完整再現,讓讀者可以開啟眼界、啟發智慧。
本書的敘述手法,輕鬆而詼諧,讀者可以因此進入歷史的時光隧道,與古人的生活合而為一。
本書以時間為序,精選了重大事件、風雲人物、輝煌成就、燦爛文化等內容,使讀者能從世界歷史中汲取睿見卓識,深化並拓展人生閱歷。精練簡潔的文字、多種視覺元素、全新的視角、科學的體例,結合全面豐富的內容,使讀者能深入地瞭解世界歷史,從全新的角度和嶄新的層面去感受歷史、思考歷史。"
- "isPreview" => 0
- "itemName" => "《一本書讀懂美洲史》"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/一本書讀懂美洲史.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/一本書讀懂美洲史.epub"
- }
- 478 => {
- "artistName" => "克里夫顿·费迪曼 (Clifton Fadiman)^约翰·S.梅杰 (John S.Major)"
- "BKAllocatedSize" => 1417216
- "BKBookType" => "epub"
- "BKDisplayName" => "一生的读书计划这一版有实质性的修订和扩充最突出的变化是推荐的阅读材料的来源范围已经扩展到整个世界的经典名著 阅读指南"
- "BKGeneratedItemId" => "82EF4162BD1AA7F9CD4F8797865C576D"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "82EF4162BD1AA7F9CD4F8797865C576D"
- }
- "isPreview" => 0
- "itemName" => "一生的读书计划(这一版有实质性的修订和扩充,最突出的变化是推荐的阅读材料的来源范围已经扩展到整个世界的经典名著。) (阅读指南)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/一生的读书计划这一版有实质性的修订和扩充最突出的变化是推荐的阅读材料的来源范围已经扩展到整个世界的经典名著 阅读指南.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/一生的读书计划这一版有实质性的修订和扩充最突出的变化是推荐的阅读材料的来源范围已经扩展到整个世界的经典名著 阅读指南.epub"
- }
- 479 => {
- "artistName" => "安妮塔·夏皮拉"
- "BKAllocatedSize" => 1601536
- "BKBookType" => "epub"
- "BKDisplayName" => "以色列一个奇迹国家的诞生以色列研究领域代表性通史著作40年犹太和以色列研究积累"
- "BKGeneratedItemId" => "47F91E651321C1654B9BA11423E7417F"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "47F91E651321C1654B9BA11423E7417F"
- }
- "genre" => "天浪书屋"
- "isPreview" => 0
- "itemName" => "以色列:一个奇迹国家的诞生(以色列研究领域代表性通史著作,40年犹太和以色列研究积累。)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/以色列一个奇迹国家的诞生以色列研究领域代表性通史著作40年犹太和以色列研究积累.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/以色列一个奇迹国家的诞生以色列研究领域代表性通史著作40年犹太和以色列研究积累.epub"
- }
- 480 => {
- "artistName" => "易中天"
- "BKAllocatedSize" => 1257472
- "BKBookType" => "epub"
- "BKDisplayName" => "易中天谈美"
- "BKGeneratedItemId" => "175018513FB4C79D4B3792097B494E98"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "175018513FB4C79D4B3792097B494E98"
- }
- "isPreview" => 0
- "itemName" => "易中天谈美"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/易中天谈美.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/易中天谈美.epub"
- }
- 481 => {
- "artistName" => "斯拉沃热·齐泽克"
- "BKAllocatedSize" => 1265664
- "BKBookType" => "epub"
- "BKDisplayName" => "意识形态的崇高客体修订版-2t4lm"
- "BKGeneratedItemId" => "259856F4101B3D7C0E1E55259F14D8EB"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "259856F4101B3D7C0E1E55259F14D8EB"
- }
- "bookDescription" => "]]>"
- "isPreview" => 0
- "itemName" => "意识形态的崇高客体(修订版)-2t4lm"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/意识形态的崇高客体修订版-2t4lm.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/意识形态的崇高客体修订版-2t4lm.epub"
- }
- 482 => {
- "artistName" => "路易斯·阿伦森"
- "BKAllocatedSize" => 1728512
- "BKBookType" => "epub"
- "BKDisplayName" => "银发世代-71ajq"
- "BKGeneratedItemId" => "1810EA4095C03395798541FF0E7F5725"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "1810EA4095C03395798541FF0E7F5725"
- }
- "genre" => "-SanQiu.mobi"
- "isPreview" => 0
- "itemName" => "银发世代-71ajq"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/银发世代-71ajq.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/银发世代-71ajq.epub"
- }
- 483 => {
- "artistName" => "威廉·戈尔丁(William Golding)"
- "BKAllocatedSize" => 712704
- "BKBookType" => "epub"
- "BKDisplayName" => "蝇王-wug2n"
- "BKGeneratedItemId" => "A4500B0166BBD539CC786EECD660BA27"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "A4500B0166BBD539CC786EECD660BA27"
- }
- "isPreview" => 0
- "itemName" => "蝇王-wug2n"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/蝇王-wug2n.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/蝇王-wug2n.epub"
- }
- 484 => {
- "artistName" => "克洛德·列维-斯特劳斯"
- "BKAllocatedSize" => 9818112
- "BKBookType" => "epub"
- "BKDisplayName" => "忧郁的热带列维-斯特劳斯文集15补卷豆瓣9分奇书被称为一部为所有游记敲响丧钟的游记 40余万字记录亚马逊河和巴西高地森林原始形态的人类社会"
- "BKGeneratedItemId" => "72FF0731520F8DB6FC0F3390E0A78659"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "72FF0731520F8DB6FC0F3390E0A78659"
- }
- "genre" => "EBOOKG.COM书聚"
- "isPreview" => 0
- "itemName" => "忧郁的热带(列维-斯特劳斯文集15)(补卷)(【豆瓣9分奇书,被称为"一部为所有游记敲响丧钟的游记", 40余万字记录亚马逊河和巴西高地森林原始形态的人类社会】)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/忧郁的热带列维-斯特劳斯文集15补卷豆瓣9分奇书被称为一部为所有游记敲响丧钟的游记 40余万字记录亚马逊河和巴西高地森林原始形态的人类社会.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/忧郁的热带列维-斯特劳斯文集15补卷豆瓣9分奇书被称为一部为所有游记敲响丧钟的游记 40余万字记录亚马逊河和巴西高地森林原始形态的人类社会.epub"
- }
- 485 => {
- "artistName" => "尤里·斯莱兹肯"
- "BKAllocatedSize" => 1908736
- "BKBookType" => "epub"
- "BKDisplayName" => "犹太人的世纪-83kzv"
- "BKGeneratedItemId" => "4C7309B2BCAAA245031805C46C8973D7"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "4C7309B2BCAAA245031805C46C8973D7"
- }
- "isPreview" => 0
- "itemName" => "犹太人的世纪-83kzv"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/犹太人的世纪-83kzv.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/犹太人的世纪-83kzv.epub"
- }
- 486 => {
- "artistName" => "约翰·赫伊津赫"
- "BKAllocatedSize" => 999424
- "BKBookType" => "epub"
- "BKDisplayName" => "游戏的人文化中游戏成分的研究-4epml"
- "BKGeneratedItemId" => "B0171D02DB9A9BD9B0136D08DC031A21"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "B0171D02DB9A9BD9B0136D08DC031A21"
- }
- "bookDescription" => "该书的深度和广度,可以从目录管窥一豹,作为文化现象的游戏:性质与意义/表现在语言里的游戏观念/发挥教化功能的游戏和竞赛/游戏和法律/游戏与战争/游戏与知识/游戏与诗歌/神话的形成与游戏/哲学中的游戏形式/艺术中的游戏形式/游戏人视野中的西方文明/当代文明中的游戏成分。"
- "genre" => "游戏-研究"
- "isPreview" => 0
- "itemName" => "游戏的人:文化中游戏成分的研究-4epml"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/游戏的人文化中游戏成分的研究-4epml.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/游戏的人文化中游戏成分的研究-4epml.epub"
- }
- 487 => {
- "artistName" => "佚名"
- "BKAllocatedSize" => 6012928
- "BKBookType" => "epub"
- "BKDisplayName" => "有趣的古代小说作品集套装共30册-37efz"
- "BKGeneratedItemId" => "C5B14227F4958F76F5D64C3994A13B1E"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "C5B14227F4958F76F5D64C3994A13B1E"
- }
- "isPreview" => 0
- "itemName" => "有趣的古代小说作品集(套装共30册)-37efz"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/有趣的古代小说作品集套装共30册-37efz.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/有趣的古代小说作品集套装共30册-37efz.epub"
- }
- 488 => {
- "artistName" => "肖索未"
- "BKAllocatedSize" => 569344
- "BKBookType" => "epub"
- "BKDisplayName" => "欲望与尊严转型期中国的阶层性别与亲密关系-vl2i1"
- "BKGeneratedItemId" => "C967F4710DA42B9CD2A665E90F0C031A"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "C967F4710DA42B9CD2A665E90F0C031A"
- }
- "isPreview" => 0
- "itemName" => "欲望与尊严:转型期中国的阶层、性别与亲密关系-vl2i1"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/欲望与尊严转型期中国的阶层性别与亲密关系-vl2i1.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/欲望与尊严转型期中国的阶层性别与亲密关系-vl2i1.epub"
- }
- 489 => {
- "artistName" => "马修·鲍尔"
- "BKAllocatedSize" => 2068480
- "BKBookType" => "epub"
- "BKDisplayName" => "元宇宙改变一切-马修鲍尔-e4fey"
- "BKGeneratedItemId" => "EAB4D74F26BEA30D9A79650D7CBE0B11"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "EAB4D74F26BEA30D9A79650D7CBE0B11"
- }
- "isPreview" => 0
- "itemName" => "元宇宙改变一切-马修·鲍尔-e4fey"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/元宇宙改变一切-马修鲍尔-e4fey.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/元宇宙改变一切-马修鲍尔-e4fey.epub"
- }
- 490 => {
- "artistName" => "瑞·达利欧"
- "BKAllocatedSize" => 8105984
- "BKBookType" => "epub"
- "BKDisplayName" => "原则应对变化中的世界秩序-15dx0"
- "BKGeneratedItemId" => "4EDEBDF7FD637097F7151FDA96557C62"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424277
- "book-info" => {
- "package-file-hash" => "4EDEBDF7FD637097F7151FDA96557C62"
- }
- "isPreview" => 0
- "itemName" => "原则:应对变化中的世界秩序-15dx0"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/原则应对变化中的世界秩序-15dx0.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/原则应对变化中的世界秩序-15dx0.epub"
- }
- 491 => {
- "artistName" => "雷萨・阿斯兰"
- "BKAllocatedSize" => 3760128
- "BKBookType" => "epub"
- "BKDisplayName" => "造神人类探索信仰与宗教的历史"
- "BKGeneratedItemId" => "BEBCD74331DD53174FF3C7E2DA45F21B"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "BEBCD74331DD53174FF3C7E2DA45F21B"
- }
- "isPreview" => 0
- "itemName" => "造神:人类探索信仰与宗教的历史"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/造神人类探索信仰与宗教的历史.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/造神人类探索信仰与宗教的历史.epub"
- }
- 492 => {
- "artistName" => "[美]托尼·朱特"
- "BKAllocatedSize" => 802816
- "BKBookType" => "epub"
- "BKDisplayName" => "责任的重负"
- "BKGeneratedItemId" => "05977208120242A74B9734712518EA5C"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "05977208120242A74B9734712518EA5C"
- }
- "bookDescription" => "编辑推荐:
-★活在一个不负责任的时代,我们该如何经历并反对这个时代?
-★《战后欧洲史》之外,托尼•朱特最富盛名的两部著作之一。
-★当代最重要的历史学家和思想家托尼•朱特,以三位重负责任的知识分子,触及了我们时代思想和道德的困境。
-★“被遗弃的先知”莱昂•布鲁姆、“不情愿的道德主义者”阿尔贝•加缪、“局外的当局者”雷蒙•阿隆 ,三位深度介入政治的法国知识分子,如何以道德责任挑战黑暗时代?
-他们的生活和著述都与这个不负责任的时代格格不入。他们毕其一生,经常感受到这个国家所要求的政治与思想相一致的压力,却甘愿在政界、公众、左翼同僚或知识分子同侪中充当不受欢迎的人,这是一种稀罕而耐人寻味的个性。仅此,他们的事迹就值得一书。
-——托尼•朱特
---------------------------------------------------------------------------------------------
-内容简介:
-《责任的重负》是托尼·朱特最富盛名的两部著作之一。
-在这本书中,他选取了阿尔贝•加缪、莱昂•布鲁姆、雷蒙•阿隆这三位法兰西精神最优秀的代表人物,还原他们生活的年代,考察他们的言行与历史纵横嬗变之间的联系,讨论知识分子与思想史的诸多重要议题。
-托尼•朱特认为,评价知识分子的核心词应是“责任”。这三位道路迥异却共同拥有“勇气与正直”这种道德人格的知识分子,在投入公共生活之后,将个人利益置于公共责任之下,以独立的良知发言,以一致的言行影响现实政治、纠正时代谬误,并不惜为此付出沉重的代价,才有所谓“责任的重负”。
-他们活在一个不负责任的时代,但更重要的是,“他们经历过,并反对这个不负责任的时代”。
-可以说,他们不单代表了现代法国的思想和政治文化中独特的、令人憬悟的一种声音,还代表了现代社会和思想中许多最优秀、最持久的价值——过去是,如今也是。
---------------------------------------------------------------------------------------------
-媒体评论:
-所有为知识界缺失“正义”“品格”与“道德”而感到遗憾的人,都会从本书中读到很多值得汲取的言论。
-——《纽约时报书评》(The New York Times Book Review)
-托尼·朱特有关三位已逝的伟大法国人的论述,触及了我们时代思想和道德的全貌。在当前文化战争的甚嚣尘上的声浪之中,朱特理性的声音犹如一把穿透黄油的刀,穿透了那些胡言乱语。
-——欧仁·韦伯(Eugen Weber,著名历史学家)
-托尼·朱特笔下的这几位重要的法国思想家也都是积极的活动家,不像后来的学者只摆弄语词。他描写这些人的笔触优雅,充满有根有据的自信。
-——埃尔贝•R•洛特曼(Herbert R. Lottman,著名作家,《加缪传》作者)
-朱特讲述了布鲁姆、加缪和阿隆的思想历程,并进一步展现了法国思想文化的诸多方面。而且,这本书文字优美,笔触动人……令人钦佩。
-——斯坦利·霍夫曼(Stanley Hoffmann,哈佛大学历史学教授)"
- "genre" => "知识分子"
- "isPreview" => 0
- "itemName" => "责任的重负"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/责任的重负.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/责任的重负.epub"
- }
- 493 => {
- "artistName" => "李冲锋"
- "BKAllocatedSize" => 1732608
- "BKBookType" => "epub"
- "BKDisplayName" => "增广贤文精--中华经典名著全本全注全译 中华书局"
- "BKGeneratedItemId" => "43E180A7C65D444F4DA88C20ECF74561"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "43E180A7C65D444F4DA88C20ECF74561"
- }
- "isPreview" => 0
- "itemName" => "增广贤文(精)--中华经典名著全本全注全译 (中华书局)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/增广贤文精--中华经典名著全本全注全译 中华书局.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/增广贤文精--中华经典名著全本全注全译 中华书局.epub"
- }
- 494 => {
- "artistName" => "大卫·辛克莱"
- "BKAllocatedSize" => 4128768
- "BKBookType" => "epub"
- "BKDisplayName" => "长寿当人类不再衰老-美大卫辛克莱-ex3sn"
- "BKGeneratedItemId" => "D4EEDC0F3CBB4500FE19349DE902E2A5"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "D4EEDC0F3CBB4500FE19349DE902E2A5"
- }
- "genre" => "天浪书屋"
- "isPreview" => 0
- "itemName" => "长寿:当人类不再衰老-[美]大卫·辛克莱"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/长寿当人类不再衰老-美大卫辛克莱-ex3sn.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/长寿当人类不再衰老-美大卫辛克莱-ex3sn.epub"
- }
- 495 => {
- "artistName" => "书杰"
- "BKAllocatedSize" => 3981312
- "BKBookType" => "epub"
- "BKDisplayName" => "哲学100问一看就懂的西方哲学简史"
- "BKGeneratedItemId" => "0C9085DBD121E2A3024D03CAF8DF0295"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "0C9085DBD121E2A3024D03CAF8DF0295"
- }
- "isPreview" => 0
- "itemName" => "哲学100问:一看就懂的西方哲学简史"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/哲学100问一看就懂的西方哲学简史.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/哲学100问一看就懂的西方哲学简史.epub"
- }
- 496 => {
- "artistName" => "威尔•杜兰特 (Will Durant)"
- "BKAllocatedSize" => 1802240
- "BKBookType" => "epub"
- "BKDisplayName" => "哲学的故事让深奥的哲学立刻生动起来上市首年连续再版22次迅速译成18种语言掀起全球哲学热潮"
- "BKGeneratedItemId" => "10172A92BCCB96A82372662644D5D623"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "10172A92BCCB96A82372662644D5D623"
- }
- "bookDescription" => "Downloaded from z-lib.org"
- "isPreview" => 0
- "itemName" => "哲学的故事【让深奥的哲学立刻生动起来!上市首年连续再版22次,迅速译成18种语言,掀起全球哲学热潮】"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/哲学的故事让深奥的哲学立刻生动起来上市首年连续再版22次迅速译成18种语言掀起全球哲学热潮.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/哲学的故事让深奥的哲学立刻生动起来上市首年连续再版22次迅速译成18种语言掀起全球哲学热潮.epub"
- }
- 497 => {
- "artistName" => "林欣浩"
- "BKAllocatedSize" => 499712
- "BKBookType" => "epub"
- "BKDisplayName" => "哲学家们都干了些什么2-j4ap0"
- "BKGeneratedItemId" => "EF57A416AB7B0BC16C5DD7297A08ABFE"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "EF57A416AB7B0BC16C5DD7297A08ABFE"
- }
- "isPreview" => 0
- "itemName" => "哲学家们都干了些什么2-j4ap0"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/哲学家们都干了些什么2-j4ap0.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/哲学家们都干了些什么2-j4ap0.epub"
- }
- 498 => {
- "artistName" => "陈嘉映"
- "BKAllocatedSize" => 1024000
- "BKBookType" => "epub"
- "BKDisplayName" => "哲学科学常识"
- "BKGeneratedItemId" => "0F666A4C9E276966894A8A0F9AB4E01D"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "0F666A4C9E276966894A8A0F9AB4E01D"
- }
- "isPreview" => 0
- "itemName" => "哲学·科学·常识"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/哲学科学常识.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/哲学科学常识.epub"
- }
- 499 => {
- "artistName" => "周其仁"
- "BKAllocatedSize" => 1036288
- "BKBookType" => "epub"
- "BKDisplayName" => "真实世界的经济学北大国发院教授经济学家周其仁经典作品新版增加新章节立足真实世界揭示公认会发生的事没有发生这类与常理不合的真实现象背后的逻辑"
- "BKGeneratedItemId" => "A8D0543A6B1E5FFBB11821F183674C62"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "A8D0543A6B1E5FFBB11821F183674C62"
- }
- "isPreview" => 0
- "itemName" => "真实世界的经济学(北大国发院教授、经济学家周其仁经典作品新版,增加新章节。立足真实世界,揭示“公认”会发生的事没有发生这类“与常理不合”的真实现象背后的逻辑)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/真实世界的经济学北大国发院教授经济学家周其仁经典作品新版增加新章节立足真实世界揭示公认会发生的事没有发生这类与常理不合的真实现象背后的逻辑.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/真实世界的经济学北大国发院教授经济学家周其仁经典作品新版增加新章节立足真实世界揭示公认会发生的事没有发生这类与常理不合的真实现象背后的逻辑.epub"
- }
- 500 => {
- "artistName" => "尤金·罗根"
- "BKAllocatedSize" => 7397376
- "BKBookType" => "epub"
- "BKDisplayName" => "征服与革命中的阿拉伯人1516年至今-1wmpt"
- "BKGeneratedItemId" => "5FD9234A005351C0278B7543450D4248"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "5FD9234A005351C0278B7543450D4248"
- }
- "isPreview" => 0
- "itemName" => "征服与革命中的阿拉伯人:1516年至今-1wmpt"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/征服与革命中的阿拉伯人1516年至今-1wmpt.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/征服与革命中的阿拉伯人1516年至今-1wmpt.epub"
- }
- 501 => {
- "artistName" => "一行禅师"
- "BKAllocatedSize" => 675840
- "BKBookType" => "epub"
- "BKDisplayName" => "正念的奇迹"
- "BKGeneratedItemId" => "070AB2A3B23DE08771FE1B8882B4F36E"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "070AB2A3B23DE08771FE1B8882B4F36E"
- }
- "bookDescription" => "
【内容简介】
-
正念,就是當下覺照:吃飯就是吃飯,上廁所就是上廁所。
-
但,我們就是喜歡吃飯聊天、上廁所看報紙。
-
於是,我們錯過了正念的奇蹟……
-
這是一行禪師最不可錯過的一本經典,寫給每一個不想渾渾噩噩過日子的人,告訴你,禪修不在他方的深山裡,而是在你每天的生活中。
-
什麼是正念?正念就是保持覺照,清清楚楚地覺察當下的存在狀態,也就是走路時,走路就是你生命中最重要的事,你覺知自己在走路;剝橘子時,剝橘子就是你生命中最重要的事,你覺知自己在剝橘子;洗碗時,洗碗就是你生命中最重要的事,你覺知自己在洗碗。
-
這聽起來有些愚蠢,但你知道你真的做到了以後,有什麼不可思議的事會發生嗎?你真的不想好好地活生命的每一分鐘嗎?
-
所謂的正念,就是一行禪師的禪修方法,也是禪修目的。因為正念不只是禪修時才練習,而是從發生在日常生活中的一舉一動開始。一行禪師告訴我們從「呼吸」開始練習,一直練習到覺知到自己的每一「呼吸」,每一瞬間的移動,每一絲意念與感覺,每一件與我們有關的事物,我們就能在一瞬間招回渙散的心思,整合成一個奇蹟。如此,我們才能真正好好地活生命中的每一分鐘。
-
此時,當我們在正念中向大地踏出每一步,感知自己正走在這不可思議的地球上時,這樣的時刻,存在本身就是個絕妙的奇蹟;而沒有正念的我們,卻一直沒有認知到這個奇蹟。
-
一行禪師做到了,他從呼吸開始保持正念,在一九六○年代被美軍密集轟炸的越南中,每一個和他在一起的人,都從他身上經驗了另一種可能性:用愛來克服恨的可能性。中斷人類歷史上似乎永無止盡的暴力連鎖反應是可能的,這所有的可能,都在一行禪師的這本書中。
-
◎生命只在念念分明的此時此刻
-
一行禪師以他最單純的心境,把觀呼吸和四念處的法義,透過簡潔易懂的文字,讓我們能在日常生活中運用自如。如果我們懂得在每一個當下提起正念、念念分明,我們就不會有煩惱,而且可以安住當下,內心中流洩出平靜的自在和喜樂。
-
很多人把修行和生活分開,修行的時候坐在靜室裡,不讓旁人打擾,生活的時候又攪在煩惱痛苦之中,如此硬生生地將修行和生活切成兩半,這是完全不懂得修行的法要。一行禪師明白地告訴我們,生命只在念念分明的此時此刻,心念離開當下就是拖死屍的人、離開覺性也等於是夢中人。
-
陳琴富(「水月蘭若」禪修中心主持人)
-
◎ 日常生活是通往奇蹟的入手處
-
在他的字裡行間,學派傳統不被提及,有的只是經典名稱,也沒有太多的佛學專有術語。讓人讀來貼切感動的是他溫厚直接的觀察,沒有價值判斷、道德訓示,而是對現象的可改進處提供一套細膩貼切的方法。這種禪風呼應出嚴峻禪門中的溫厚慈悲,但卻沒有落入任何形式。相反地,修行是每個人的日常生活:洗碗、喝茶、走路,陪太太孩子及和別人談話。禪修可以無所不在,出禪堂、下坐後,正是用功的好時機。藉由正念禪,日常生活的點滴不再是瑣碎無意義的細節枝末,而是通往「奇蹟」的入手處。
-
自鼐法師(香光尼眾佛學院講師)
-
【作者简介】
-
一行禪師 Thích Nh?t H?nh
-
1926年生於越南中部,十六歲時在慈孝寺當見習憎,後來赴美研究並教學。
-
越戰期間返國從事和平運動,對於越南的年輕僧眾起了重大啟發,戰爭結束代表參加巴黎和談。越南赤化後,一行禪師被放逐海外,在2005年第一次回返越南,2007年2月至5月也再次回到越南。
-
1967年美國黑人民權領袖馬丁路德.金恩提名他角逐諾貝爾和平獎。
-
1982年他在法國南部建立了「梅村」禪修道場。
-
1995年曾到台灣弘法並主持禪七法會。
-
一行禪師是當今國際社會中最具宗教影響力的僧人之一,以禪師、詩人、人道主義者聞名於世。著作超過一百本,都是教導人們在生活中實踐佛法,已在台灣出版的有:《生生基督世世佛》《步步安樂行》《橘子禪》《與生命相約》《你可以不生氣》《你可以不怕死》《正念的奇蹟》《觀照的奇蹟》《見佛殺佛》《你可以,愛》《祈禱的力量》《一心走路》《生命真正的力量》《建設淨土》《接觸大地》等。
-
【譯者簡介】
-
何定照
-
台大社會學系學士,英國約克大學婦女研究碩士。現任聯合報文化記者。
-
譯有《液態之愛:論人際紐帶的脆弱》(與高瑟濡合譯)、《像女孩那樣丟球:論女性身體經驗》、《西藏正念書》、《正念的奇蹟》,著有青少女讀物《惡女背 / 被棄手冊》。
-
曾獲中央日報小說獎、兩岸新聞報導獎、社會光明面新聞報導獎、吳舜文新聞獎等。
"
- "genre" => "禅"
- "isPreview" => 0
- "itemName" => "正念的奇迹"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/正念的奇迹.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/正念的奇迹.epub"
- }
- 502 => {
- "artistName" => "電子書免費贈送:行行微信491256034"
- "BKAllocatedSize" => 802816
- "BKBookType" => "epub"
- "BKDisplayName" => "正義 一場思辨之旅"
- "BKGeneratedItemId" => "F415BFCB50406DECA4E8ED19833390ED"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "F415BFCB50406DECA4E8ED19833390ED"
- }
- "bookDescription" => "書名雖然標榜正義,重點卻是思考力的訓練。作者有教學天才,新聞事件信手拈來都是正義思考 的案例。要解釋康德,他使用柯林頓偷腥案。要解釋羅爾斯,他搬出伍迪艾倫。
要把理性帶進公領域,公民必須把自己的正義觀說出道理,不能只是「我說我對就是我 對」。本書目的正是邀請讀者做個自我檢 視,搞清楚自己抱持哪些信念,何以抱持這些信念。有 了理性思辨,民主對話才能向上提升,不會一直停留在互嗆叫陣的層次。
"
- "isPreview" => 0
- "itemName" => "正義: 一場思辨之旅"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/正義 一場思辨之旅.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/正義 一場思辨之旅.epub"
- }
- 503 => {
- "artistName" => "大衛.朗西曼(David Runciman)"
- "BKAllocatedSize" => 3674112
- "BKBookType" => "epub"
- "BKDisplayName" => "政治哲學的12堂Podcast現代國家如何成形民主自由如何誕生性別平等如何發展一探人類文明邁向現代的關鍵時刻"
- "BKGeneratedItemId" => "B707637A4DC3785A8B18BBA97CE6FBC4"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 747224342
- "book-info" => {
- "cover-image-hash" => "0B921CA0EEF661D5FFBE19F7327A8B22"
- "cover-image-path" => "OEBPS/image/cover.jpg"
- "mime-type" => "application/epub+zip"
- "package-file-hash" => "B707637A4DC3785A8B18BBA97CE6FBC4"
- "publisher-unique-id" => "urn:uuid:39591ee6-a13a-471a-8476-aa3de349b2f4"
- "unique-id" => -2317644314809876329
- "update-level" => 2
- }
- "isPreview" => 0
- "itemName" => "政治哲學的12堂Podcast:現代國家如何成形?民主自由如何誕生?性別平等如何發展?一探人類文明邁向現代的關鍵時刻"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/政治哲學的12堂Podcast現代國家如何成形民主自由如何誕生性別平等如何發展一探人類文明邁向現代的關鍵時刻.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/政治哲學的12堂Podcast現代國家如何成形民主自由如何誕生性別平等如何發展一探人類文明邁向現代的關鍵時刻.epub"
- "updateDate" => 2024-09-05 10:19:02 +0000
- }
- 504 => {
- "artistName" => "[美]弗朗西斯·福山(著)"
- "BKAllocatedSize" => 7323648
- "BKBookType" => "epub"
- "BKDisplayName" => "政治秩序的起源qq5jw"
- "BKGeneratedItemId" => "EC8A99FC1A58F91CFA0A54DC028F22F5"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "EC8A99FC1A58F91CFA0A54DC028F22F5"
- }
- "isPreview" => 0
- "itemName" => "政治秩序的起源qq5jw"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/政治秩序的起源qq5jw.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/政治秩序的起源qq5jw.epub"
- }
- 505 => {
- "artistName" => "约瑟夫·坎贝尔(Joseph Campbell)"
- "BKAllocatedSize" => 1040384
- "BKBookType" => "epub"
- "BKDisplayName" => "指引生命的神话永续生存的力量-bjubv"
- "BKGeneratedItemId" => "5AB6B09A2480B2749EB970AC07193DD0"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "5AB6B09A2480B2749EB970AC07193DD0"
- }
- "bookDescription" => "指引生命的神话:永续生存的力量
约瑟夫·坎贝尔(Joseph Campbell)
Myths to Live By
9787213055362
"
- "isPreview" => 0
- "itemName" => "指引生命的神话:永续生存的力量-bjubv"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/指引生命的神话永续生存的力量-bjubv.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/指引生命的神话永续生存的力量-bjubv.epub"
- }
- 506 => {
- "artistName" => "Unknown"
- "BKAllocatedSize" => 1855488
- "BKBookType" => "epub"
- "BKDisplayName" => "智人之上"
- "BKGeneratedItemId" => "C8AED5422565A5F08B2FB9F5333F4334"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "C8AED5422565A5F08B2FB9F5333F4334"
- }
- "isPreview" => 0
- "itemName" => "智人之上"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/智人之上.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/智人之上.epub"
- }
- 507 => {
- "artistName" => "郑永年"
- "BKAllocatedSize" => 1871872
- "BKBookType" => "epub"
- "BKDisplayName" => "中等技术陷阱_经济持续增长的关键挑战"
- "BKGeneratedItemId" => "73710A1449600D3867B88BE523572A54"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 747224239
- "book-info" => {
- "cover-image-hash" => "77EFB2F5B4496204E17F61D42C6ACE7A"
- "cover-image-path" => "EPUB/images/cover.jpg"
- "mime-type" => "application/epub+zip"
- "package-file-hash" => "73710A1449600D3867B88BE523572A54"
- "publisher-unique-id" => "urn:uuid:6ab90852-bb7f-4c2b-a528-dc2cf869a50d"
- "unique-id" => 5761555570644128747
- "update-level" => 2
- }
- "bookDescription" => "何谓“中等技术陷阱”?陷入中等技术陷阱有哪些情形?我国目前与发达经济体的差距在哪里?如何准确把握当下内外部环境?长期陷入中等收入陷阱的经济体有何教训?中国如何跨越中等技术陷阱……
-
-中国改革开放所取得的伟大成就,很大程度上依赖于内部现代化和外部全球化的互相加持,但面对当下外部环境随时发生重大变化的现状,如何实现高质量发展,完成下一阶段现代化的目标,已成为摆在我们面前的课题。对此,作者基于国际和国内发展经验与教训,创新性地提出“中等技术陷阱”,并展开详细论述,明晰发展逻辑,为未来经济建设和发展提供思路。"
- "isPreview" => 0
- "itemName" => "中等技术陷阱_经济持续增长的关键挑战"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中等技术陷阱_经济持续增长的关键挑战.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中等技术陷阱_经济持续增长的关键挑战.epub"
- "updateDate" => 2024-09-05 10:17:19 +0000
- }
- 508 => {
- "artistName" => "黄仁宇"
- "BKAllocatedSize" => 1740800
- "BKBookType" => "epub"
- "BKDisplayName" => "中国大历史"
- "BKGeneratedItemId" => "CF4D69A40D91733B5B4058A35F75516D"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "CF4D69A40D91733B5B4058A35F75516D"
- }
- "isPreview" => 0
- "itemName" => "中国大历史"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国大历史.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国大历史.epub"
- }
- 509 => {
- "artistName" => "王人博"
- "BKAllocatedSize" => 933888
- "BKBookType" => "epub"
- "BKDisplayName" => "中国的近代性"
- "BKGeneratedItemId" => "60CCE81A3284F5FFF14973BF70091B46"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "60CCE81A3284F5FFF14973BF70091B46"
- }
- "genre" => "书聚EBOOKG.COM"
- "isPreview" => 0
- "itemName" => "中国的近代性"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国的近代性.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国的近代性.epub"
- }
- 510 => {
- "artistName" => "瞿同祖"
- "BKAllocatedSize" => 1110016
- "BKBookType" => "epub"
- "BKDisplayName" => "中国法律与中国社会"
- "BKGeneratedItemId" => "F681CDDA4CF8F19DCC37F8A0B431AD5B"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "F681CDDA4CF8F19DCC37F8A0B431AD5B"
- }
- "bookDescription" => "《中国法律与中国社会》是著名历史学家和法律史学家瞿同祖(1910- )的著作。瞿同祖,出生于湖南省长沙市,中国社会科学院近代史研究所研究员,中国法律史学会学术顾问。他的主要著作有:《中国封建社会》、《中国的传统法律与社会》(英文版)、《清代地方政府》(英文版)、《汉代社会》(英文版)、《清律的继承和变化》等。
《中国法律与中国社会》是瞿同祖根据其在云南大学和西南联合
大学的中国法制史和社会史讲稿改写的,初版于1947年。后由作者加以修改、补充,译成英文,于1961年在国外出版。1981年作者又应中华书局要求,对原书作了某些修改,再次印刷出版。本书一共有6章,前面有一个导论,后面有一个结论。书的最后还附有《中国法律之儒家化》一文。
瞿同祖在导论中提出,本书的主要目的在于研究并分析中国古代法律的基本精神及主要特征。他认为法律是社会产物,是社会规范之一。法律与社会的关系极为密切,任何社会的法律都是为了维护和巩固其社会制度和社会秩序而制定的,因而只有充分了解产生某一种法律的社会背景,才能了解这些法律意义和作用。
关于中国古代法律的主要特征,他认为集中表现在家族主义和阶级概念上,这两者是儒家意识形态的核心和中国社会的基础,也是中国古代法律所着重维护的制度和秩序。
在正文中,作者首先对“家族”问题作了系统阐述。他说,中国的家族是父系的,以父亲而论,则凡是同一始祖的男系后裔,都属于同一宗族团体,概为族人。一般情况下,家为家,族为族。前者为一经济单位,为一共同生活团体;后者则为家的综合体,为一血源单位。作者继而由家族谈到家长权。他以为,在社会和法律都承认家长或族长权力的时代,家族是最初级的司法机构,“家长族长除了生杀权以外,实具有最高的裁决权与惩罚权”。作者以家族主义的观点,对中国封建法律规定的亲属间犯罪的几种主要形式,如杀伤、奸非、窃盗等,作了分析,并对司法审判中的几种例外情况,如亲属相为容隐、代为受罚以及缓刑免刑等的原因、沿革作了细微的阐释。
作者对于中国古代婚姻的论述,也是非常有意思的。关于古时婚姻的意义,作者认为不外乎“在于宗族的延续及祖先的祭祀”,“完全是以家族为中心的”。他认为古代婚姻的禁忌很多,归纳起来,主要有三:一是同姓不许结婚;二是外亲之中有些亲属之间不准通婚,如有服属而又尊卑辈分不同者、虽无服而尊卑相犯者;三是亲属的妻妾与其夫家亲属之间不许结婚,主要指妇女亡夫之后,不能与丈夫家的亲属结婚,而只能改嫁外姓。那么,那时的婚姻又是如何缔结的呢?在封建社会中,只要二姓的家长同意其子女的结合,经过一定的仪式,婚姻便成立了,男女的结合无须顾及夫妻本人的意志。直系亲属,尤其是男性的直系亲属,对子女拥有绝对的主婚权,父母的意志在法律上成为婚姻成立的要件,子女即使在成年以后,也无婚姻自主权。男女结婚之后,夫妻名义上是平等的,但社会舆论与家庭分工都造成了夫妻不平等的事实。在家无二主的最高原则之下,女子被排斥在家长之外,“妻正位于内,不得为家长,就是夫死,也只能由子或孙继之为家长”。社会习惯和法律还对妻的财产权作了严格限制,妻对家庭财产只有行使权,而没有自由处分权和所有权。除了财产权之外,从夫妻的人格方面的关系来看,更可以发现妻完全处于夫权统治之下的情形。“法律上夫的地位如尊长而妻的地位如卑幼”。从夫妻相殴杀的法律中,就可以看出夫尊妻卑、地位极不平等。法律上完全根据尊卑相犯的原理,对于妻殴夫的,较常人加重处罚;而对夫殴妻的,则采取减刑主义。至于婚姻的解除,主要以七出、三不去为条件。“七出”一般指无子、淫佚、不事舅姑、多言、盗窃、妒嫉和恶疾。“三不去”则是“七出”的例外情况。“七出之外,离婚的另一条件为义绝。义绝包括夫对妻族、妻对夫族的殴杀罪、奸非罪,及妻对夫的谋害罪而言。”七出是夫方要求离婚的条件,而义绝则是法律规定的当然离婚条件。
作者还以相当大的篇幅,从生活方式、婚丧祭祀、法律特权等几个方面,对中国封建社会的各个阶级(阶层)作了深刻的剖析,并从礼与法、德与刑和以礼入法几个角度,阐述了儒家思想与法家思想相互影响以及中国法律逐步走向儒家化的过程,揭示了儒家思想在我国古代法律中的深远影响。
纵览全书,其较为突出的特点有两个:其一,作者将汉代至清代两千余年间的法律作为一个整体来分析,在各章、节不同题目下加以讨论,进行比较,以便向读者揭示中国古代法律在历史上究竟有无重大变化。其二,作者研究法律不仅根据其条文规定,而且还注意法律的实效的问题。全书除了利用古人的有关记事外,更引用了个案和判例作为讨论问题的根据。
《中国法律与中国社会》是瞿同祖具有代表性的一部学术专著,它对中国法律史学的研究具有深远的影响。
"
- "isPreview" => 0
- "itemName" => "中国法律与中国社会"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国法律与中国社会.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国法律与中国社会.epub"
- }
- 511 => {
- "artistName" => "张宏杰"
- "BKAllocatedSize" => 950272
- "BKBookType" => "epub"
- "BKDisplayName" => "中国国民性演变史____张宏杰__-3wufx"
- "BKGeneratedItemId" => "A7003EDC5401689342634991989C0C3A"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "A7003EDC5401689342634991989C0C3A"
- }
- "isPreview" => 0
- "itemName" => "中国国民性演变史____张宏杰__-3wufx"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国国民性演变史____张宏杰__-3wufx.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国国民性演变史____张宏杰__-3wufx.epub"
- }
- 512 => {
- "artistName" => "钱穆"
- "BKAllocatedSize" => 901120
- "BKBookType" => "epub"
- "BKDisplayName" => "中国历代政治得失_by_钱穆-x0oet"
- "BKGeneratedItemId" => "0B83EC16870CA28E50084905CA509E93"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "0B83EC16870CA28E50084905CA509E93"
- }
- "isPreview" => 0
- "itemName" => "中国历代政治得失_by_钱穆-x0oet"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国历代政治得失_by_钱穆-x0oet.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国历代政治得失_by_钱穆-x0oet.epub"
- }
- 513 => {
- "artistName" => "王溢嘉"
- "BKAllocatedSize" => 573440
- "BKBookType" => "epub"
- "BKDisplayName" => "中国人的命理玄机"
- "BKGeneratedItemId" => "76C59EAC438AFF172F1EAD05BFFAFD4C"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "76C59EAC438AFF172F1EAD05BFFAFD4C"
- }
- "isPreview" => 0
- "itemName" => "中国人的命理玄机"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国人的命理玄机.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国人的命理玄机.epub"
- }
- 514 => {
- "artistName" => "张宏杰"
- "BKAllocatedSize" => 2592768
- "BKBookType" => "epub"
- "BKDisplayName" => "中国人的性格历程"
- "BKGeneratedItemId" => "A162693EBEE20B92CE4C8795DDA61906"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "A162693EBEE20B92CE4C8795DDA61906"
- }
- "isPreview" => 0
- "itemName" => "中国人的性格历程"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国人的性格历程.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国人的性格历程.epub"
- }
- 515 => {
- "artistName" => "熊逸"
- "BKAllocatedSize" => 671744
- "BKBookType" => "epub"
- "BKDisplayName" => "中国思想地图老子"
- "BKGeneratedItemId" => "4598293DFBC48E696A45894E47E170FA"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "4598293DFBC48E696A45894E47E170FA"
- }
- "bookDescription" => "中国思想地图-老子"
- "genre" => "中国思想地图-老子"
- "isPreview" => 0
- "itemName" => "中国思想地图:老子"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国思想地图老子.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国思想地图老子.epub"
- }
- 516 => {
- "artistName" => "张岱年"
- "BKAllocatedSize" => 2031616
- "BKBookType" => "epub"
- "BKDisplayName" => "中国哲学大纲全二册精--张岱年全集增订版"
- "BKGeneratedItemId" => "2EF7EC24A16781C282FFAF68247433DD"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "2EF7EC24A16781C282FFAF68247433DD"
- }
- "isPreview" => 0
- "itemName" => "中国哲学大纲(全二册)精--张岱年全集(增订版)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国哲学大纲全二册精--张岱年全集增订版.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国哲学大纲全二册精--张岱年全集增订版.epub"
- }
- 517 => {
- "artistName" => "刘学智"
- "BKAllocatedSize" => 1605632
- "BKBookType" => "epub"
- "BKDisplayName" => "中国哲学的历程修订本"
- "BKGeneratedItemId" => "88BFBECA9BFAA991C8F18B448AF754CA"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "88BFBECA9BFAA991C8F18B448AF754CA"
- }
- "isPreview" => 0
- "itemName" => "中国哲学的历程(修订本)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国哲学的历程修订本.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国哲学的历程修订本.epub"
- }
- 518 => {
- "artistName" => "冯友兰"
- "BKAllocatedSize" => 2809856
- "BKBookType" => "epub"
- "BKDisplayName" => "中国哲学简史"
- "BKGeneratedItemId" => "5E2DCDD2C14E11CDF9DD2ADC12667BBF"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "5E2DCDD2C14E11CDF9DD2ADC12667BBF"
- }
- "isPreview" => 0
- "itemName" => "中国哲学简史"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国哲学简史.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国哲学简史.epub"
- }
- 519 => {
- "artistName" => "牟宗三"
- "BKAllocatedSize" => 1134592
- "BKBookType" => "epub"
- "BKDisplayName" => "中国哲学十九讲一代哲学宗师牟宗三经典代表作跟大师一起读透中国哲学的精髓厘清现代人必须要懂的先哲智慧"
- "BKGeneratedItemId" => "CAB37A9D121B33C5826D6C59BC7479EE"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "CAB37A9D121B33C5826D6C59BC7479EE"
- }
- "isPreview" => 0
- "itemName" => "中国哲学十九讲【一代哲学宗师牟宗三经典代表作,跟大师一起读透中国哲学的精髓,厘清现代人必须要懂的先哲智慧!】"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国哲学十九讲一代哲学宗师牟宗三经典代表作跟大师一起读透中国哲学的精髓厘清现代人必须要懂的先哲智慧.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国哲学十九讲一代哲学宗师牟宗三经典代表作跟大师一起读透中国哲学的精髓厘清现代人必须要懂的先哲智慧.epub"
- }
- 520 => {
- "artistName" => "赵林"
- "BKAllocatedSize" => 1609728
- "BKBookType" => "epub"
- "BKDisplayName" => "中西文化的精神分野:传统与更新"
- "BKGeneratedItemId" => "0D9134CA6F23E3A971BB69F6BB01B6D8"
- "BKGenerationCount" => 2
- "BKInsertionDate" => 748424278
- "book-info" => {
- "publication-version" => 0
- }
- "isPreview" => 0
- "itemName" => "中西文化的精神分野:传统与更新"
- "pageCount" => 1
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中西文化的精神分野传统与更新-6mik4.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中西文化的精神分野传统与更新-6mik4.epub"
- "updateDate" => 2024-07-27 14:01:44 +0000
- }
- 521 => {
- "BKAllocatedSize" => 520192
- "BKBookType" => "pdf"
- "BKDisplayName" => "重提加缪与萨特之争"
- "BKGeneratedItemId" => "5E92BA4304B2476BE7E46DA321B6A440"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "BKIsLocked" => 0
- "itemName" => "重提加缪与萨特之争"
- "modificationDate" => 2016-04-28 07:26:57 +0000
- "pageCount" => 10
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/重提加缪与萨特之争.pdf"
- "releaseDate" => 2011-10-18 07:46:36 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/重提加缪与萨特之争.pdf"
- }
- 522 => {
- "artistName" => "郭彧 译注"
- "BKAllocatedSize" => 2256896
- "BKBookType" => "epub"
- "BKDisplayName" => "周易"
- "BKGeneratedItemId" => "1D434AAFD8BE7B2F728F0FA31A568FA7"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "1D434AAFD8BE7B2F728F0FA31A568FA7"
- }
- "isPreview" => 0
- "itemName" => "周易"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/周易.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/周易.epub"
- }
- 523 => {
- "artistName" => "帕特里克·麦克纳(Patrick J. McKenna)"
- "BKAllocatedSize" => 1507328
- "BKBookType" => "epub"
- "BKDisplayName" => "专业团队的管理"
- "BKGeneratedItemId" => "3395A8D7615D1E6E97248D90D19639DC"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "3395A8D7615D1E6E97248D90D19639DC"
- }
- "isPreview" => 0
- "itemName" => "专业团队的管理"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/专业团队的管理.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/专业团队的管理.epub"
- }
- 524 => {
- "artistName" => "方勇"
- "BKAllocatedSize" => 2764800
- "BKBookType" => "epub"
- "BKDisplayName" => "庄子--中华经典名著全本全注全译丛书 中华书局"
- "BKGeneratedItemId" => "5D36E626D89AAF24DB12EDD805624680"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "5D36E626D89AAF24DB12EDD805624680"
- }
- "isPreview" => 0
- "itemName" => "庄子--中华经典名著全本全注全译丛书 (中华书局)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/庄子--中华经典名著全本全注全译丛书 中华书局.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/庄子--中华经典名著全本全注全译丛书 中华书局.epub"
- }
- 525 => {
- "artistName" => "史欣悦"
- "BKAllocatedSize" => 2514944
- "BKBookType" => "epub"
- "BKDisplayName" => "自洽在不确定的日子里向内看-r7r8u"
- "BKGeneratedItemId" => "68C131E92525C78D678C3E6BB59F6085"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "68C131E92525C78D678C3E6BB59F6085"
- }
- "isPreview" => 0
- "itemName" => "自洽:在不确定的日子里向内看-r7r8u"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/自洽在不确定的日子里向内看-r7r8u.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/自洽在不确定的日子里向内看-r7r8u.epub"
- }
- 526 => {
- "artistName" => "尼古拉斯·P.莫尼"
- "BKAllocatedSize" => 528384
- "BKBookType" => "epub"
- "BKDisplayName" => "自私的人类-7zfcc"
- "BKGeneratedItemId" => "4C7F4D03478A470976C54686F8C83516"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "4C7F4D03478A470976C54686F8C83516"
- }
- "isPreview" => 0
- "itemName" => "自私的人类"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/自私的人类-7zfcc.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/自私的人类-7zfcc.epub"
- }
- 527 => {
- "artistName" => "横川裕之"
- "BKAllocatedSize" => 487424
- "BKBookType" => "epub"
- "BKDisplayName" => "自我介绍的技术-2ihk9"
- "BKGeneratedItemId" => "80DC4D3B65296FC458B11D89C686E170"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "80DC4D3B65296FC458B11D89C686E170"
- }
- "isPreview" => 0
- "itemName" => "自我介绍的技术-2ihk9"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/自我介绍的技术-2ihk9.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/自我介绍的技术-2ihk9.epub"
- }
- 528 => {
- "artistName" => "赫尔曼·麦尔维尔"
- "BKAllocatedSize" => 8396800
- "BKBookType" => "epub"
- "BKDisplayName" => "作家榜经典白鲸-iq36m"
- "BKGeneratedItemId" => "848B6D6FAA439206CE811C4A3C135CCB"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "848B6D6FAA439206CE811C4A3C135CCB"
- }
- "isPreview" => 0
- "itemName" => "作家榜经典:白鲸-iq36m"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/作家榜经典白鲸-iq36m.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/作家榜经典白鲸-iq36m.epub"
- }
- 529 => {
- "artistName" => "玛格丽特·杜拉斯"
- "BKAllocatedSize" => 274432
- "BKBookType" => "epub"
- "BKDisplayName" => "坐在走廊里的男人____法玛格丽特杜拉斯__-04fd0"
- "BKGeneratedItemId" => "D7A137E4DE6B397D1B9C6B9B049E3626"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "D7A137E4DE6B397D1B9C6B9B049E3626"
- }
- "genre" => "书聚EBOOKG.COM"
- "isPreview" => 0
- "itemName" => "坐在走廊里的男人____[法]玛格丽特·杜拉斯__-04fd0"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/坐在走廊里的男人____法玛格丽特杜拉斯__-04fd0.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/坐在走廊里的男人____法玛格丽特杜拉斯__-04fd0.epub"
- }
- 530 => {
- "artistName" => "罗斯·哈里斯(Russ Harris)"
- "BKAllocatedSize" => 3088384
- "BKBookType" => "epub"
- "BKDisplayName" => "act就这么简单接纳承诺疗法简明实操手册-z57as"
- "BKGeneratedItemId" => "BD3B0DB6D849A903311E12F2787D12C5"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "BD3B0DB6D849A903311E12F2787D12C5"
- }
- "isPreview" => 0
- "itemName" => "act,就这么简单!接纳承诺疗法简明实操手册-z57as"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/act就这么简单接纳承诺疗法简明实操手册-z57as.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/act就这么简单接纳承诺疗法简明实操手册-z57as.epub"
- }
- 531 => {
- "artistName" => "詹姆斯•沃森"
- "BKAllocatedSize" => 7163904
- "BKBookType" => "epub"
- "BKDisplayName" => "DNA生命的秘密"
- "BKGeneratedItemId" => "D83DDA113D61C34627FCBE77A90F454C"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "D83DDA113D61C34627FCBE77A90F454C"
- }
- "isPreview" => 0
- "itemName" => "DNA:生命的秘密"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/DNA生命的秘密.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/DNA生命的秘密.epub"
- }
- 532 => {
- "artistName" => "王延巍"
- "BKAllocatedSize" => 8658944
- "BKBookType" => "epub"
- "BKDisplayName" => "ETF全球投资指南一个账户投资全球告诉你用美股ETF投什么怎么投低门槛低成本地进行全球化投资和配置"
- "BKGeneratedItemId" => "87F6B383BD46A492C9D633C061E2D4AE"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748424278
- "book-info" => {
- "package-file-hash" => "87F6B383BD46A492C9D633C061E2D4AE"
- }
- "isPreview" => 0
- "itemName" => "ETF全球投资指南(一个账户,投资全球。告诉你用美股ETF投什么、怎么投,低门槛、低成本地进行全球化投资和配置。)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/ETF全球投资指南一个账户投资全球告诉你用美股ETF投什么怎么投低门槛低成本地进行全球化投资和配置.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/ETF全球投资指南一个账户投资全球告诉你用美股ETF投什么怎么投低门槛低成本地进行全球化投资和配置.epub"
- }
- 533 => {
- "artistName" => "萧天石"
- "BKAllocatedSize" => 1527808
- "BKBookType" => "epub"
- "BKDisplayName" => "世界伟人成功秘诀之分析"
- "BKGeneratedItemId" => "EFF09D789127E9B4B384496351733396"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 748570748
- "book-info" => {
- "package-file-hash" => "EFF09D789127E9B4B384496351733396"
- }
- "isPreview" => 0
- "itemName" => "世界伟人成功秘诀之分析"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/世界伟人成功秘诀之分析.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/世界伟人成功秘诀之分析.epub"
- }
- 534 => {
- "artistName" => "歐普拉.溫芙蕾"
- "BKAllocatedSize" => 1654784
- "BKBookType" => "epub"
- "BKDisplayName" => "關於人生-我確實知道-歐普拉-溫芙蕾-5aqa7"
- "BKGeneratedItemId" => "D1A77B77E8A0A755A60F552973D84A86"
- "BKGenerationCount" => 2
- "BKInsertionDate" => 750058699
- "BKPercentComplete" => 1
- "book-info" => {
- "cover-image-hash" => "66ABF75684A0AC62CBA9F022C124DE95"
- "cover-image-path" => "OEBPS/Images/Cover.jpg"
- "mime-type" => "application/epub+zip"
- "package-file-hash" => "D1A77B77E8A0A755A60F552973D84A86"
- "publisher-unique-id" => "urn:uuid:66ea442b-09a7-42d0-8ee7-8d0f1b7dbde4"
- "unique-id" => 2925252424241750074
- "update-level" => 2
- }
- "genre" => "溫芙蕾(Winfrey, Oprah)"
- "isPreview" => 0
- "itemName" => "關於人生,我確實知道……"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/關於人生我確實知道.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/關於人生-我確實知道-歐普拉-溫芙蕾-5aqa7.epub"
- "updateDate" => 2024-10-08 05:38:19 +0000
- }
- 535 => {
- "artistName" => "作者:多明尼克.斯賓斯特(Dominik Spenst)"
- "BKAllocatedSize" => 11038720
- "BKBookType" => "epub"
- "BKDisplayName" => "6分鐘日記的魔法:最簡單的書寫,改變你的一生"
- "BKGeneratedItemId" => "B982700F61979C8B3D2763CFE4CCF768"
- "BKGenerationCount" => 2
- "BKHasPendingUpdate" => 0
- "BKInsertionDate" => 750129183
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "B982700F61979C8B3D2763CFE4CCF768"
- }
- "isPreview" => 0
- "itemName" => "6分鐘日記的魔法:最簡單的書寫,改變你的一生"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/6分鐘日記的魔法最簡單的書寫改變你的一生.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/6分鐘日記的魔法:最簡單的書寫,改變你的一生.epub"
- "updateDate" => 2024-10-09 01:13:03 +0000
- }
- 536 => {
- "artistName" => "李梓新"
- "BKAllocatedSize" => 1241088
- "BKBookType" => "epub"
- "BKDisplayName" => "非虚构写作指南"
- "BKGeneratedItemId" => "E71D91DE985F8170BB867544B52BE178"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 750061647
- "book-info" => {
- "package-file-hash" => "E71D91DE985F8170BB867544B52BE178"
- }
- "isPreview" => 0
- "itemName" => "非虚构写作指南"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/非虚构写作指南.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/非虚构写作指南.epub"
- }
- 537 => {
- "artistName" => "黄黎原"
- "BKAllocatedSize" => 4689920
- "BKBookType" => "epub"
- "BKDisplayName" => "贝叶斯的博弈数学思维与人工智能"
- "BKGeneratedItemId" => "ECA96B25E00845B175AD1E8CF2D8B248"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 750061654
- "book-info" => {
- "package-file-hash" => "ECA96B25E00845B175AD1E8CF2D8B248"
- }
- "isPreview" => 0
- "itemName" => "贝叶斯的博弈:数学、思维与人工智能"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/贝叶斯的博弈数学思维与人工智能.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/贝叶斯的博弈数学思维与人工智能.epub"
- }
- 538 => {
- "artistName" => "张军"
- "BKAllocatedSize" => 2494464
- "BKBookType" => "epub"
- "BKDisplayName" => "顶级对话理解变化中的经济世界"
- "BKGeneratedItemId" => "E5D4B706B54317FADD838BA70DF03818"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 750061656
- "book-info" => {
- "package-file-hash" => "E5D4B706B54317FADD838BA70DF03818"
- }
- "isPreview" => 0
- "itemName" => "顶级对话——理解变化中的经济世界"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/顶级对话理解变化中的经济世界.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/顶级对话理解变化中的经济世界.epub"
- }
- 539 => {
- "artistName" => "史蒂芬·平克"
- "BKAllocatedSize" => 10117120
- "BKBookType" => "epub"
- "BKDisplayName" => "语言本能人类语言进化的奥秘史蒂芬平克系列"
- "BKGeneratedItemId" => "2AB31AACB895E1B63114CEAD3375A760"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 750061662
- "book-info" => {
- "package-file-hash" => "2AB31AACB895E1B63114CEAD3375A760"
- }
- "isPreview" => 0
- "itemName" => "语言本能:人类语言进化的奥秘(史蒂芬·平克系列)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/语言本能人类语言进化的奥秘史蒂芬平克系列.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/语言本能人类语言进化的奥秘史蒂芬平克系列.epub"
- }
- 540 => {
- "artistName" => "雪萊.卡根"
- "BKAllocatedSize" => 4374528
- "BKBookType" => "epub"
- "BKDisplayName" => "令人著迷的生與死"
- "BKGeneratedItemId" => "B577E201E45E5610BE8C7294E092D198"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 750061664
- "book-info" => {
- "package-file-hash" => "B577E201E45E5610BE8C7294E092D198"
- }
- "isPreview" => 0
- "itemName" => "令人著迷的生與死"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/令人著迷的生與死.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/令人著迷的生與死.epub"
- }
- 541 => {
- "artistName" => "[意]里克·杜菲尔"
- "BKAllocatedSize" => 13283328
- "BKBookType" => "epub"
- "BKDisplayName" => "沙发上的哲学家写给剧迷们的哲学漫画随笔用哲学原理解读流行文化看懂流行背后的逻辑看剧也是一种人生思考22部影视作品22位哲学家是人性的艺术也是对本质的探求哲学之于电影正如人之"
- "BKGeneratedItemId" => "4424C06A24C15454156A84971DF5C944"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 750061666
- "book-info" => {
- "package-file-hash" => "4424C06A24C15454156A84971DF5C944"
- }
- "isPreview" => 0
- "itemName" => "沙发上的哲学家(写给剧迷们的哲学漫画随笔,用哲学原理解读流行文化,看懂流行背后的逻辑。看剧也是一种人生思考,22部影视作品,22位哲学家,是人性的艺术,也是对本质的探求。哲学之于电影,正如人之于精神。意大利语言学博士、译者陈英教授推荐) (未读·思想家)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/沙发上的哲学家写给剧迷们的哲学漫画随笔用哲学原理解读流行文化看懂流行背后的逻辑看剧也是一种人生思考22部影视作品22位哲学家是人性的艺术也是对本质的探求哲学之于电影正如人之.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/沙发上的哲学家写给剧迷们的哲学漫画随笔用哲学原理解读流行文化看懂流行背后的逻辑看剧也是一种人生思考22部影视作品22位哲学家是人性的艺术也是对本质的探求哲学之于电影正如人之.epub"
- }
- 542 => {
- "artistName" => "[美] 阿图•葛文德"
- "BKAllocatedSize" => 3596288
- "BKBookType" => "epub"
- "BKDisplayName" => "最好的告别三部曲套装共3册 纽约时报畅销书美国著名外科医生划时代之作"
- "BKGeneratedItemId" => "2FABA3E01C6FB1649BF70FA591950935"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 750061670
- "book-info" => {
- "package-file-hash" => "2FABA3E01C6FB1649BF70FA591950935"
- }
- "isPreview" => 0
- "itemName" => "最好的告别三部曲(套装共3册) (《纽约时报》畅销书,美国著名外科医生划时代之作!)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/最好的告别三部曲套装共3册 纽约时报畅销书美国著名外科医生划时代之作.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/最好的告别三部曲套装共3册 纽约时报畅销书美国著名外科医生划时代之作.epub"
- }
- 543 => {
- "artistName" => "张开涛"
- "BKAllocatedSize" => 58093568
- "BKBookType" => "epub"
- "BKDisplayName" => "亿级流量网站架构核心技术"
- "BKGeneratedItemId" => "A3FE0055AC601971C858D79176FFF9C3"
- "BKGenerationCount" => 2
- "BKHasPendingUpdate" => 0
- "BKInsertionDate" => 750761947
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "A3FE0055AC601971C858D79176FFF9C3"
- }
- "isPreview" => 0
- "itemName" => "亿级流量网站架构核心技术——跟开涛学搭建高可用高并发系统"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/亿级流量网站架构核心技术跟开涛学搭建高可用高并发系统.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/亿级流量网站架构核心技术.epub"
- "updateDate" => 2024-10-16 08:59:07 +0000
- }
- 544 => {
- "artistName" => "【美】Paul Butcher"
- "BKAllocatedSize" => 3198976
- "BKBookType" => "epub"
- "BKDisplayName" => "七周七并发模型"
- "BKGeneratedItemId" => "1EBAFA04D78B6627D9DEDEEF760EDDF3"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 750135790
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "1EBAFA04D78B6627D9DEDEEF760EDDF3"
- }
- "isPreview" => 0
- "itemName" => "七周七并发模型 (图灵程序设计丛书)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/七周七并发模型 图灵程序设计丛书.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/七周七并发模型.epub"
- "updateDate" => 2024-10-09 03:03:10 +0000
- }
- 545 => {
- "artistName" => "费孝通"
- "BKAllocatedSize" => 1646592
- "BKBookType" => "epub"
- "BKDisplayName" => "mei_hao_she_hui_yu_mei_mei_yu_g_-_fe-1909x"
- "BKGeneratedItemId" => "1F8C6D7FCB6E43C695B2F4CE06810E9D"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 750577234
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "1F8C6D7FCB6E43C695B2F4CE06810E9D"
- }
- "isPreview" => 0
- "itemName" => "美好社会与美美与共:费孝通对现时代的思考"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/美好社会与美美与共费孝通对现时代的思考.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/mei_hao_she_hui_yu_mei_mei_yu_g_-_fe-1909x.epub"
- "updateDate" => 2024-10-14 05:40:34 +0000
- }
- 546 => {
- "artistName" => "曹⽒⽂昭"
- "BKAllocatedSize" => 532480
- "BKBookType" => "pdf"
- "BKDisplayName" => "中国的家谱造假现象剖析"
- "BKGeneratedItemId" => "093F6F68DBAC07CF7FDC8D808604116A"
- "BKGenerationCount" => 2
- "BKInsertionDate" => 750577310
- "BKIsLocked" => 0
- "book-info" => {
- "publication-version" => 0
- }
- "isPreview" => 0
- "itemName" => "中国的家谱造假现象剖析"
- "modificationDate" => 2024-10-14 05:41:50 +0000
- "pageCount" => 8
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国的家谱造假现象剖析.pdf"
- "releaseDate" => 2024-10-14 05:41:50 +0000
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX.SharingExtension/Data/tmp/中国的家谱造假现象剖析.pdf"
- "updateDate" => 2024-10-14 05:41:50 +0000
- }
- 547 => {
- "artistName" => "莎士比亚"
- "BKAllocatedSize" => 18571264
- "BKBookType" => "epub"
- "BKDisplayName" => "哈姆雷特新译莎士比亚全集"
- "BKGeneratedItemId" => "C6E48284C118A5ADE57590DCCEE2E432"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 751120400
- "book-info" => {
- "package-file-hash" => "C6E48284C118A5ADE57590DCCEE2E432"
- }
- "bookDescription" => "这是中国莎学史上*次一个人以一己之力翻译莎士比亚全集的版本。西方的许多家庭都必备两本书,一本是《圣经》——宗教的神,一部是莎翁全集——艺术的神。《哈姆雷特》则是经典中的经典,无数次被搬上剧场、荧屏,无数次被引用、评论。一千人的心中有一千个哈姆雷特,但*原始的版本只有一个。傅老师的新译版,非常贴近莎翁原著,翻译之精准,几乎360度无死角。"
- "isPreview" => 0
- "itemName" => "哈姆雷特(新译莎士比亚全集)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/哈姆雷特新译莎士比亚全集.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/哈姆雷特新译莎士比亚全集.epub"
- }
- 548 => {
- "artistName" => "韩江"
- "BKAllocatedSize" => 454656
- "BKBookType" => "epub"
- "BKDisplayName" => "素食者"
- "BKGeneratedItemId" => "CC0E293A6CFFB7088A4B81E4180943E8"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 751120408
- "book-info" => {
- "package-file-hash" => "CC0E293A6CFFB7088A4B81E4180943E8"
- }
- "genre" => "汇书网"
- "isPreview" => 0
- "itemName" => "素食者"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/素食者.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/素食者.epub"
- }
- 549 => {
- "artistName" => "宋杰"
- "BKAllocatedSize" => 4329472
- "BKBookType" => "epub"
- "BKDisplayName" => "古代战争地理枢纽-jlhvd"
- "BKGeneratedItemId" => "8F55F0DEA9B34422766E9C454FE09B45"
- "BKGenerationCount" => 2
- "BKInsertionDate" => 751166127
- "BKPercentComplete" => 1
- "book-info" => {
- "cover-image-hash" => "834448B1F5B0352EDFF650BA3F54AF61"
- "cover-image-path" => "OEBPS/Images/cover00536.jpeg"
- "mime-type" => "application/epub+zip"
- "package-file-hash" => "8F55F0DEA9B34422766E9C454FE09B45"
- "publisher-unique-id" => "1142224580"
- "unique-id" => -2205606886257323766
- "update-level" => 2
- }
- "isPreview" => 0
- "itemName" => "古代战争地理枢纽"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/古代战争地理枢纽 1.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/古代战争地理枢纽-jlhvd.epub"
- "updateDate" => 2024-10-21 01:15:27 +0000
- }
- 550 => {
- "artistName" => "沙恩·帕里什"
- "BKAllocatedSize" => 1712128
- "BKBookType" => "epub"
- "BKDisplayName" => "清晰思考:将平凡时刻转化为非凡成—沙恩·帕里什-intm4"
- "BKGeneratedItemId" => "D41D6BCB716B84113C8881FB00CB0A8C"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 752477322
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "D41D6BCB716B84113C8881FB00CB0A8C"
- }
- "bookDescription" => "本书为我们提供了一些工具,它们都是经过实践验证的,可以帮助我们克服那些阻碍自己的力量,让我们得到想要的结果——爱、归属感、成功、财富,等等。
-
-通过书中讲述的一些历史上成功人士的故事和教训,辅以神经科学、行为经济学和心理学的解释,读者能够学会克服自己的无意识反应,摆脱“自动驾驶模式”,从而做出更好的决策。作者沙恩·帕里什在书中将这些见解以一种简单易懂、循序渐进的方式呈现了出来。"
- "isPreview" => 0
- "itemName" => "清晰思考:将平凡时刻转化为非凡成"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/清晰思考将平凡时刻转化为非凡成.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/清晰思考:将平凡时刻转化为非凡成—沙恩·帕里什-intm4.epub"
- "updateDate" => 2024-11-05 05:28:42 +0000
- }
- 551 => {
- "artistName" => "李申"
- "BKAllocatedSize" => 2113536
- "BKBookType" => "epub"
- "BKDisplayName" => "宗教简史三部曲套装(儒教简史+道教简史+宗教简史)(套装共三册)____-bmfjv"
- "BKGeneratedItemId" => "167672DACE5D1F863DBC0FBD8B2EFCB4"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 752477332
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "167672DACE5D1F863DBC0FBD8B2EFCB4"
- }
- "isPreview" => 0
- "itemName" => "宗教简史三部曲套装(儒教简史+道教简史+宗教简史)(套装共三册)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/宗教简史三部曲套装儒教简史+道教简史+宗教简史套装共三册.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/宗教简史三部曲套装(儒教简史+道教简史+宗教简史)(套装共三册)____-bmfjv.epub"
- "updateDate" => 2024-11-05 05:28:52 +0000
- }
- 552 => {
- "artistName" => "郭建龙"
- "BKAllocatedSize" => 8429568
- "BKBookType" => "epub"
- "BKDisplayName" => "失去的三百年-jnmq8"
- "BKGeneratedItemId" => "DA98172D90E068E5E2767932D909049B"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 752477339
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "DA98172D90E068E5E2767932D909049B"
- }
- "bookDescription" => "本书所描写的内容,是追溯从地理大发现到1840年这三百多年里,中国的开放与失败,曾经的盛世到后来的衰败而被动挨打,这个历史期间的客观得失与经验教训。
-
-全书分三个部分,第一部分试探的百年,时间从1516年到1644年,从隆庆开关到明末清初,大航海时代以来,中国也曾经生机勃勃充满了希望。第二部分是跌宕的百年,时间从1644到1735年,清朝早期的开放如何发展成中期的封闭的。第三部分是锁死在系统中的百年,时间从1735到1840年,这个时期的西方从大航海走向工业革命,而中国却关闭了大门,直到1840年鸦片战争的爆发。"
- "genre" => "关注TG频道@sharebooks4you"
- "isPreview" => 0
- "itemName" => "失去的三百年:地理大发现之后中国的开放与封闭(1516—1840)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/失去的三百年地理大发现之后中国的开放与封闭15161840.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/失去的三百年-jnmq8.epub"
- "updateDate" => 2024-11-05 05:28:59 +0000
- }
- 553 => {
- "artistName" => "宋国青著"
- "BKAllocatedSize" => 80625664
- "BKBookType" => "pdf"
- "BKDisplayName" => "利率是车汇率是马"
- "BKGeneratedItemId" => "EA3CD24BD352C4F7F0B472D77218279D"
- "BKGenerationCount" => 3
- "BKInsertionDate" => 752565059
- "BKIsLocked" => 0
- "BKItemPreviousPath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/E588A9E78E87E698AFE8BDA620E6B187E78E87E698AFE9A9ACEFBC9AE4B8ADE59BBDE5AE8FE8A782E7BB8FE6B58EE8AF84E8AEBAE99B8620E5AE8BE59BBDE99D92E89197.pdf"
- "book-info" => {
- "publication-version" => 0
- }
- "isPreview" => 0
- "itemName" => "利率是车汇率是马"
- "modificationDate" => 2016-03-08 01:10:07 +0000
- "pageCount" => 402
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/利率是车汇率是马.pdf"
- "releaseDate" => 2016-03-08 01:09:41 +0000
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/%E5%88%A9%E7%8E%87%E6%98%AF%E8%BD%A6%20%E6%B1%87%E7%8E%87%E6%98%AF%E9%A9%AC%EF%BC%9A%E4%B8%AD%E5%9B%BD%E5%AE%8F%E8%A7%82%E7%BB%8F%E6%B5%8E%E8%AF%84%E8%AE%BA%E9%9B%86%20(%E5%AE%8B%E5%9B%BD%E9%9D%92%E8%91%97).pdf"
- "updateDate" => 2024-11-06 05:50:59 +0000
- }
- 554 => {
- "artistName" => "Dannycui"
- "BKAllocatedSize" => 569344
- "BKBookType" => "pdf"
- "BKDisplayName" => "“日丹诺夫主义”与1950年代上半期的中国文坛"
- "BKGeneratedItemId" => "D25E3505D9BC40B358B37C99ADC47D91"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 752749397
- "BKIsLocked" => 0
- "itemName" => "“日丹诺夫主义”与1950年代上半期的中国文坛"
- "modificationDate" => 2019-10-03 08:55:02 +0000
- "pageCount" => 34
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/日丹诺夫主义与1950年代上半期的中国文坛.pdf"
- "releaseDate" => 2019-10-03 08:55:02 +0000
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX.SharingExtension/Data/tmp/“日丹诺夫主义”与1950年代上半期的中国文坛.pdf"
- "updateDate" => 2024-11-08 09:03:17 +0000
- }
- 555 => {
- "artistName" => "沈志华"
- "BKAllocatedSize" => 589824
- "BKBookType" => "pdf"
- "BKDisplayName" => "脆弱的聯盟:中蘇朝三角關係歷史脈絡"
- "BKGeneratedItemId" => "DB1BF0823ED97698F2CF771A2DDDC6F0"
- "BKGenerationCount" => 4
- "BKInsertionDate" => 752749738
- "BKIsLocked" => 0
- "BKItemPreviousPath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/脆弱的聯盟中蘇朝三角關係歷史脈絡.pdf"
- "book-info" => {
- "publication-version" => 0
- }
- "isPreview" => 0
- "itemName" => "脆弱的聯盟:中蘇朝三角關係歷史脈絡"
- "modificationDate" => 2024-08-09 02:20:02 +0000
- "pageCount" => 12
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/脆弱的聯盟:中蘇朝三角關係歷史脈絡.pdf"
- "releaseDate" => 2024-08-05 09:16:12 +0000
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX.SharingExtension/Data/tmp/脆弱的聯盟:中蘇朝三角關係歷史脈絡.pdf"
- "updateDate" => 2024-11-08 09:08:58 +0000
- }
- 556 => {
- "artistName" => "沈志华"
- "BKAllocatedSize" => 4091904
- "BKBookType" => "epub"
- "BKDisplayName" => "中苏关系史纲-3ndgh"
- "BKGeneratedItemId" => "428471B40BF558888B73D96CCB106B79"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 752750095
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "428471B40BF558888B73D96CCB106B79"
- }
- "isPreview" => 0
- "itemName" => "中苏关系史纲:1917-1991年中苏关系若干问题再探讨(增订版)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中苏关系史纲1917-1991年中苏关系若干问题再探讨增订版.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/中苏关系史纲-3ndgh.epub"
- "updateDate" => 2024-11-08 09:14:55 +0000
- }
- 557 => {
- "artistName" => "沈志华"
- "BKAllocatedSize" => 4055040
- "BKBookType" => "pdf"
- "BKDisplayName" => "历史的转折——美苏冷战的最后一根稻草"
- "BKGeneratedItemId" => "CACACF51ABCE6E223257FF1136723FAA"
- "BKGenerationCount" => 3
- "BKInsertionDate" => 752750154
- "BKIsLocked" => 0
- "BKItemPreviousPath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/历史的转折美苏冷战的最后一根稻草.pdf"
- "book-info" => {
- "publication-version" => 0
- }
- "isPreview" => 0
- "itemName" => "历史的转折——美苏冷战的最后一根稻草"
- "modificationDate" => 2024-11-08 09:15:53 +0000
- "pageCount" => 15
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/历史的转折——美苏冷战的最后一根稻草.pdf"
- "releaseDate" => 2024-11-08 09:15:53 +0000
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX.SharingExtension/Data/tmp/历史的转折——美苏冷战的最后一根稻草.pdf"
- "updateDate" => 2024-11-08 09:15:54 +0000
- }
- 558 => {
- "artistName" => "赫鲁晓夫"
- "BKAllocatedSize" => 651264
- "BKBookType" => "pdf"
- "BKDisplayName" => "回忆毛泽东"
- "BKGeneratedItemId" => "849858F82C48648A4E78C529FC345DCD"
- "BKGenerationCount" => 2
- "BKInsertionDate" => 753078634
- "BKIsLocked" => 0
- "book-info" => {
- "publication-version" => 0
- }
- "isPreview" => 0
- "itemName" => "回忆毛泽东"
- "modificationDate" => 2024-11-12 04:30:13 +0000
- "pageCount" => 9
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/回忆毛泽东.pdf"
- "releaseDate" => 2024-11-12 04:30:13 +0000
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX.SharingExtension/Data/tmp/回忆毛泽东.pdf"
- "updateDate" => 2024-11-12 04:30:34 +0000
- }
- 559 => {
- "artistName" => "徐富海"
- "BKAllocatedSize" => 2641920
- "BKBookType" => "epub"
- "BKDisplayName" => "136829_变宋王安石改革的逻辑与陷阱_徐富海"
- "BKGeneratedItemId" => "641C522BDCFB2F8284AB4E156E3FF241"
- "BKGenerationCount" => 2
- "BKHasPendingUpdate" => 0
- "BKInsertionDate" => 774350727
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "641C522BDCFB2F8284AB4E156E3FF241"
- }
- "bookDescription" => "为何一场基于“民不加赋而国用足”良好愿望的宏大改革最终走到了初衷的反面?为何在变法者眼中本为“利民”的政策却一步步地蜕变为“害民”的恶政?为何一位清廉高洁、富有才智的治国能臣会在后世士大夫的口中成为北宋败亡的“罪魁祸首”?
-
-王安石变法是中国历史上极具转折性及影响力的事件之一,从政治、经济、军事到教育、风俗、人心;从中央、各部、州府、县镇到乡村,变法深入到了国家社会的每一个环节、阶层和群体,本书全景式地展现了新法推行过程中遇到的悖论、陷阱与困境,非常独到地分析了各类利益群体的反应和行为,深入部析了政策失效的根本原因,具有很强的时代性和普遍性。
-
-在“百年未有之大变局”的今天,如何重新认识王安石变法?作者运用美国社会学家“非预期结果”这一现代社会学理论,围绕“为什么好政策交成了办坏事”这一核心问题,对这场声势浩大的“变法”进行了具有现代意涵的解读。
-
-作者充分运用史料,生动地阐述了王安石变法的背景、理念、经过和结果;更采用了社会学的综合政策分析工具,分析变法涉及的人的问题、制度问题与政策环境的问题,探究变法政策在基层的执行效果及其反馈,解读变法政策失效的原因及后果。"
- "isPreview" => 0
- "itemName" => "136829_变宋:王安石改革的逻辑与陷阱_徐富海"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/136829_变宋王安石改革的逻辑与陷阱_徐富海.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/136829_变宋王安石改革的逻辑与陷阱_徐富海.epub"
- "updateDate" => 2025-07-16 09:25:27 +0000
- }
- 560 => {
- "artistName" => "邓文初"
- "BKAllocatedSize" => 790528
- "BKBookType" => "epub"
- "BKDisplayName" => "历史学家的作坊-邓文初-32k37"
- "BKGeneratedItemId" => "21C0AD303DE8135285281C62D245A1E0"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 753080908
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "21C0AD303DE8135285281C62D245A1E0"
- }
- "genre" => "汇书网"
- "isPreview" => 0
- "itemName" => "历史学家的作坊"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/历史学家的作坊.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/历史学家的作坊-邓文初-32k37.epub"
- "updateDate" => 2024-11-12 05:08:28 +0000
- }
- 561 => {
- "artistName" => "郑非"
- "BKAllocatedSize" => 8798208
- "BKBookType" => "epub"
- "BKDisplayName" => "帝国的技艺:统治不可统治之地-l3zk8"
- "BKGeneratedItemId" => "B6807A1C6520CC38575B98031A47052D"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 753080911
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "B6807A1C6520CC38575B98031A47052D"
- }
- "bookDescription" => "帝国,作为一种主要的人类政治构造,航行在民族主义时代的风暴中。帝国的掌舵者们,并没有温柔地走进那个良夜。有些船搁浅了,有些船则被时代大潮打成了碎片。他们所遭遇的困难,现在仍然困扰着一些多民族国家,对我们而言,观察这些水手的举动(即使是他们在礁石上撞得粉碎的时候),仍然是有益的。
-
-本书想要探讨的,正是这样一些问题:近代帝国是如何统治其多民族属民的?在统治的时候,遇到了哪些内在的困难?它们的应对之道是什么?在探讨这些问题之前,书中有几个基本假设:
-
-第一,近代帝国并不只是征服—统治的等级关系,也不只是一撮人以某个地方及其人群为本部向外申延政治影响的工具和实体,其统治者、统治阶层通常都能超越狭隘的地区、人群本位,有切实的(当然同时也是自私的)整体考虑。
-
-第二,在许多帝国统治者眼中,帝国并不是一次短期投资,而是长期持有的一项事业。因此,凭借武力驾凌一方并不是长久之策。“马上得之,宁可以马上治之乎?”这不只是陆贾与刘邦才能理解的中国古代智慧,也是所有近代帝国的治国之道。
-
-第三,诸帝国的构建模式本身很复杂,并不一定是一个由帝国中心出发对边缘区、社群进行管制的同心圆。
-
-简而言之,近代帝国并不是古代的遗迹,也不是急就章式的多民族、多地域的拼凑之物,而是有正经政治考量的多元政治实体。"
- "isPreview" => 0
- "itemName" => "帝国的技艺:统治不可统治之地"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/帝国的技艺统治不可统治之地.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/帝国的技艺:统治不可统治之地-l3zk8.epub"
- "updateDate" => 2024-11-12 05:08:31 +0000
- }
- 562 => {
- "artistName" => "沈刚"
- "BKAllocatedSize" => 1695744
- "BKBookType" => "epub"
- "BKDisplayName" => "晋朝的死结-bf2yz"
- "BKGeneratedItemId" => "72B3095C85F3F21D189892CDA1DC44A3"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 753080914
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "72B3095C85F3F21D189892CDA1DC44A3"
- }
- "bookDescription" => "两晋是黑暗、屈辱、不幸的朝代?晋朝如何突破二世而亡的历史瓶颈期?皇室与士族共治秩序的产生,是历史的偶然还是必然?
-
-本书是一本完整的两晋政治史读物,全面揭示了两晋兴衰背后的深层次治理逻辑与历史因果,多角度透视了晋王朝的困境。书中从政治制度、社会结构、文化环境等多方面出发,结合人物个案和家族研究,剖析了导致晋王朝衰败的死结现象,并关联东汉与三国时代的历史经验,指出北朝、隋唐兴起背后的机理,揭示晋朝在中国历史上两次绝无仅有的价值。"
- "isPreview" => 0
- "itemName" => "137264_晋朝的死结_沈刚"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/137264_晋朝的死结_沈刚.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/晋朝的死结-bf2yz.epub"
- "updateDate" => 2024-11-12 05:08:34 +0000
- }
- 563 => {
- "artistName" => "[英国]彼得•沃森"
- "BKAllocatedSize" => 9768960
- "BKBookType" => "epub"
- "BKDisplayName" => "彼得·沃森思想全史-776ev"
- "BKGeneratedItemId" => "171DF9A089804D41AFA37560EA8C571C"
- "BKGenerationCount" => 2
- "BKInsertionDate" => 753370417
- "BKPercentComplete" => 1
- "book-info" => {
- "cover-image-hash" => "D04B84AD3CE6A07BDC6FB56763549BAD"
- "cover-image-path" => "OEBPS/Images/cover01805.jpeg"
- "mime-type" => "application/epub+zip"
- "package-file-hash" => "171DF9A089804D41AFA37560EA8C571C"
- "publisher-unique-id" => "3022445942"
- "unique-id" => 1548939155858163021
- "update-level" => 2
- }
- "isPreview" => 0
- "itemName" => "彼得•沃森思想全史(全四册)(一部拒绝简化的恢弘思想史!思想才是人类进步的基石!)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/彼得沃森思想全史全四册一部拒绝简化的恢弘思想史思想才是人类进步的基石.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/彼得·沃森思想全史-776ev.epub"
- "updateDate" => 2024-11-15 13:33:37 +0000
- }
- 564 => {
- "artistName" => "刘守刚"
- "BKAllocatedSize" => 1601536
- "BKBookType" => "epub"
- "BKDisplayName" => "《何以帝国》从财政视角再看中华史-0ejo5"
- "BKGeneratedItemId" => "9D2E6E8FE0FE5E12E67C7CC5097ABD3A"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 754464916
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "9D2E6E8FE0FE5E12E67C7CC5097ABD3A"
- }
- "bookDescription" => "任何时空里,财富的博弈都可以把历史撕开一个口子,你能从这个截面上看到各方力量的角逐,理解历史向前发展的真实动力。对于中华帝国来说,钱的历史,不只是“财”,更是“政”。
-
-本书共三十讲,从先秦的初税亩,讲到晚清的度支部,通过解答一个个历史问题,用财政的线索重新梳理了一遍古代中国的成长历程,从钱的角度解释了众多历史中的现象。
-
-书中每讲皆围绕三个线索展开:第一,财政制度的三个要素,收入、支出、管理,在历史时空中不断变化的轨迹;第二,从财政制度变迁的角度,看中华国家不断成长的历程;第三,财政领域中的强制权力从君主私权一步步实现公共化的历史进程。
-
-跟着钱走,看见不一样的中华史。"
- "genre" => "汇书网"
- "isPreview" => 0
- "itemName" => "何以帝国:从财政视角再看中华史"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/何以帝国从财政视角再看中华史.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/《何以帝国》从财政视角再看中华史-0ejo5.epub"
- "updateDate" => 2024-11-28 05:35:16 +0000
- }
- 565 => {
- "artistName" => "王晓君主编"
- "BKAllocatedSize" => 1245184
- "BKBookType" => "epub"
- "BKDisplayName" => "中国文学佳作选:短篇小说卷-zxr1q"
- "BKGeneratedItemId" => "4BBC87FE57CEE6B717883A3C68EF17EA"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 754981339
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "4BBC87FE57CEE6B717883A3C68EF17EA"
- }
- "bookDescription" => "本书撷集近年中短篇小说佳作,作品主题注重对生活的观察、对生命的体悟,为读者提供关照社会、探微人性的一扇窗口。个人叙事的篇什或唯美沉静,或于灵动处见文学元气,多漾溢哲学意味,有的佳构尺幅千里,有家国命运之开阔,得大叙事之魂魄,还有不少篇幅在进行文学叙事的同时携载文化含量,用小小说诠释属于中国的一些文化因子,体现出文化传承的力道,体现出那些已融入国人血脉的文化精神在当下的生命力。该文集作者以小小说作家中坚力量为主,聂鑫森、于德北、陈毓、邓洪卫等等,他们的作品具经典性、垂范性。"
- "isPreview" => 0
- "itemName" => "中国文学佳作选.短篇小说卷"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国文学佳作选.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/中国文学佳作选:短篇小说卷-zxr1q.epub"
- "updateDate" => 2024-12-04 05:02:19 +0000
- }
- 566 => {
- "artistName" => "乐天无极"
- "BKAllocatedSize" => 4730880
- "BKBookType" => "epub"
- "BKDisplayName" => "打造美利堅美國的建國理念及其歷史反思"
- "BKGeneratedItemId" => "D4A5580F22F20DEB8A24E1267F0A80FE"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 755068891
- "book-info" => {
- "package-file-hash" => "D4A5580F22F20DEB8A24E1267F0A80FE"
- }
- "isPreview" => 0
- "itemName" => "打造美利堅:美國的建國理念及其歷史反思"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/打造美利堅美國的建國理念及其歷史反思.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/打造美利堅美國的建國理念及其歷史反思.epub"
- }
- 567 => {
- "artistName" => "未知"
- "BKAllocatedSize" => 2510848
- "BKBookType" => "epub"
- "BKDisplayName" => "佛经故事"
- "BKGeneratedItemId" => "E5469BED2B6D1659F241741085037CF6"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 755068892
- "book-info" => {
- "package-file-hash" => "E5469BED2B6D1659F241741085037CF6"
- }
- "isPreview" => 0
- "itemName" => "佛经故事"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/佛经故事.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/佛经故事.epub"
- }
- 568 => {
- "artistName" => "雅瑟 编著"
- "BKAllocatedSize" => 1069056
- "BKBookType" => "epub"
- "BKDisplayName" => "小故事大道理全集"
- "BKGeneratedItemId" => "1CFC3D8CF2A8BCE707FDF94E95606602"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 755068893
- "book-info" => {
- "package-file-hash" => "1CFC3D8CF2A8BCE707FDF94E95606602"
- }
- "bookDescription" => "《小故事大道理全集(经典收藏本)》一书在手,尽览人生哲理;触类旁通,领悟成功真谛。一滴水,可以折身太阳的光辉;一本书,可以滋养无数的心灵。共收录832则小故事,它们涵盖了幸福人生的所有诠释,有习惯养成、职业生涯、财富金钱、潜能激励、爱情婚姻、交际处世、心灵境界等47 辑32类。这些精辟的小故事背后,都隐藏着无穷的思想和智慧。"
- "genre" => "其它"
- "isPreview" => 0
- "itemName" => "小故事大道理全集"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/小故事大道理全集.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/小故事大道理全集.epub"
- }
- 569 => {
- "artistName" => "〔波斯〕鲁米"
- "BKAllocatedSize" => 1843200
- "BKBookType" => "epub"
- "BKDisplayName" => "在春天走进果园"
- "BKGeneratedItemId" => "961FA99FCDF50BD7F969AAF64ABA413E"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 755068894
- "book-info" => {
- "package-file-hash" => "961FA99FCDF50BD7F969AAF64ABA413E"
- }
- "isPreview" => 0
- "itemName" => "在春天走进果园"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/在春天走进果园.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/在春天走进果园.epub"
- }
- 570 => {
- "artistName" => "茨威格"
- "BKAllocatedSize" => 1097728
- "BKBookType" => "epub"
- "BKDisplayName" => "昨日的世界一个欧洲人的回忆海峡青少年文库 一个欧洲人的回忆"
- "BKGeneratedItemId" => "A014EF367A5116B9BF5DBE66D7E6A4EA"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 755068895
- "book-info" => {
- "package-file-hash" => "A014EF367A5116B9BF5DBE66D7E6A4EA"
- }
- "bookDescription" => "
本书记录了从一次大战前夜到二次大战欧洲动荡的社会,披露了世界文化名人鲜为人知的生少轶事,揭示了他们各自不同的性格,描绘了们的音容笑貌,同时穿插着茨威格自己的各种心迹:欢乐、兴奋、忧愁、哀伤。
"
- "isPreview" => 0
- "itemName" => "昨日的世界/一个欧洲人的回忆/海峡青少年文库: 一个欧洲人的回忆"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/昨日的世界一个欧洲人的回忆海峡青少年文库 一个欧洲人的回忆.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/昨日的世界一个欧洲人的回忆海峡青少年文库 一个欧洲人的回忆.epub"
- }
- 571 => {
- "artistName" => "王小波"
- "BKAllocatedSize" => 659456
- "BKBookType" => "epub"
- "BKDisplayName" => "万寿寺"
- "BKGeneratedItemId" => "9D034006845C998A5E6E554087D8EBC9"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 757925850
- "book-info" => {
- "package-file-hash" => "9D034006845C998A5E6E554087D8EBC9"
- }
- "isPreview" => 0
- "itemName" => "万寿寺"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/万寿寺.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/万寿寺.epub"
- }
- 572 => {
- "artistName" => "王汎森"
- "BKAllocatedSize" => 9879552
- "BKBookType" => "epub"
- "BKDisplayName" => "中国近代思想与学术的系谱增订版"
- "BKGeneratedItemId" => "49F456C9A3425D1C63C743E755E14FF8"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 758508656
- "book-info" => {
- "package-file-hash" => "49F456C9A3425D1C63C743E755E14FF8"
- }
- "bookDescription" => "Downloaded from Z-Library https://z-library.sk"
- "isPreview" => 0
- "itemName" => "中国近代思想与学术的系谱(增订版)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国近代思想与学术的系谱增订版.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国近代思想与学术的系谱增订版.epub"
- }
- 573 => {
- "artistName" => "[美] 托马斯·索威尔"
- "BKAllocatedSize" => 1351680
- "BKBookType" => "epub"
- "BKDisplayName" => "《种族与文化》托马斯·索威尔-c8ld5"
- "BKGeneratedItemId" => "4A7F5178DED6D3CE8D41F3C68E630A0A"
- "BKGenerationCount" => 2
- "BKInsertionDate" => 759198897
- "BKPercentComplete" => 1
- "book-info" => {
- "cover-image-hash" => "1BF558DD89A20CEC8323F1A37F4F09A3"
- "cover-image-path" => "cover.jpeg"
- "mime-type" => "application/epub+zip"
- "package-file-hash" => "4A7F5178DED6D3CE8D41F3C68E630A0A"
- "publisher-unique-id" => "bd6bb89f-a3bd-4615-b327-115a5cb853c6"
- "unique-id" => 2720741253694752328
- "update-level" => 2
- }
- "bookDescription" => "《种族与文化》是作者托马斯·索威尔15年研究和旅行的成果,也是作者“文化三部曲”系列作品之一。索威尔曾两次环游世界,多次到访地中海、波罗的海和环太平洋地区,他希望通过研究国家内部和国家之间的文化差异,帮助我们理解在今天和过去的几个世纪中,种族文化在塑造各国人民和世界文明的经济、政治、文化、社会命运方面所起的作用,重新审视当下与未来。
-
-从古代城墙环绕的耶路撒冷到高度现代化的城市国家新加坡,每个地方的人都用自己的方式讲述着自己的故事。在《种族与文化》中,索威尔的核心观点认为,无论是当今世界正在发生的重大事件,还是漫长人类历史进程中的某一次转折,不同种族之间的文化差异在历史的剧变中都发挥了重要的作用。理解文化资本对一个民族或一个文明社会的经济命运的影响为何远远超过政治、偏见或基因,而认识到这一点,不仅有利于我们认识差异本身,更重要的是能够帮助我们尽可能避免因文化差异导致的民族问题,从内在发展的角度,为自己所属的民族、国家、社会争取更多的文化资本和文化自信。"
- "genre" => "汇书网"
- "isPreview" => 0
- "itemName" => "种族与文化"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/种族与文化.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/《种族与文化》托马斯·索威尔-c8ld5.epub"
- "updateDate" => 2025-01-22 00:34:57 +0000
- }
- 574 => {
- "artistName" => "乔纳森·劳赫"
- "BKAllocatedSize" => 7553024
- "BKBookType" => "epub"
- "BKDisplayName" => "你的幸福曲线-bb7q1"
- "BKGeneratedItemId" => "F42A1D9AB47A7359A79593B87E166D00"
- "BKGenerationCount" => 2
- "BKInsertionDate" => 760667513
- "BKPercentComplete" => 1
- "book-info" => {
- "cover-image-hash" => "6EA2416E6F30742E7A483F173195F968"
- "cover-image-path" => "OEBPS/Images/cover00188.jpeg"
- "mime-type" => "application/epub+zip"
- "package-file-hash" => "F42A1D9AB47A7359A79593B87E166D00"
- "publisher-unique-id" => "3663324671"
- "unique-id" => 3138992828044889465
- "update-level" => 2
- }
- "isPreview" => 0
- "itemName" => "你的幸福曲线"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/你的幸福曲线.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/你的幸福曲线-bb7q1.epub"
- "updateDate" => 2025-02-08 00:31:53 +0000
- }
- 575 => {
- "artistName" => "贝塔妮·休斯"
- "BKAllocatedSize" => 13508608
- "BKBookType" => "epub"
- "BKDisplayName" => "伊斯坦布尔三城记耶路撒冷三千年姊妹篇你不能错过的一本世界史 理想国出品"
- "BKGeneratedItemId" => "5AC65108C1B9C63221CDE53C80A92866"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 760667532
- "book-info" => {
- "package-file-hash" => "5AC65108C1B9C63221CDE53C80A92866"
- }
- "isPreview" => 0
- "itemName" => "伊斯坦布尔三城记(《耶路撒冷三千年》姊妹篇,你不能错过的一本世界史 理想国出品)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/伊斯坦布尔三城记耶路撒冷三千年姊妹篇你不能错过的一本世界史 理想国出品.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/伊斯坦布尔三城记耶路撒冷三千年姊妹篇你不能错过的一本世界史 理想国出品.epub"
- }
- 576 => {
- "artistName" => "(美)詹姆斯·内斯特"
- "BKAllocatedSize" => 1282048
- "BKBookType" => "epub"
- "BKDisplayName" => "呼吸革命重新学会呼吸找回健康本能 6大呼吸方法改善失眠焦虑打鼾易疲劳等问题 售出39种语言版权纽约时报连续在榜19周古老智慧与前沿科学兼备知识与练习同步全家人适用随时随地练习 "
- "BKGeneratedItemId" => "E396237A5BDD72A91981C3EDBEAE18EB"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 760927097
- "book-info" => {
- "package-file-hash" => "E396237A5BDD72A91981C3EDBEAE18EB"
- }
- "isPreview" => 0
- "itemName" => "呼吸革命(重新学会呼吸,找回健康本能! 6大呼吸方法,改善失眠、焦虑、打鼾、易疲劳等问题, 售出39种语言版权,《纽约时报》连续在榜19周。古老智慧与前沿科学兼备,知识与练习同步,全家人适用,随时随地练习) (未读·生活家)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/呼吸革命重新学会呼吸找回健康本能 6大呼吸方法改善失眠焦虑打鼾易疲劳等问题 售出39种语言版权纽约时报连续在榜19周古老智慧与前沿科学兼备知识与练习同步全家人适用随时随地练习 .epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/呼吸革命重新学会呼吸找回健康本能 6大呼吸方法改善失眠焦虑打鼾易疲劳等问题 售出39种语言版权纽约时报连续在榜19周古老智慧与前沿科学兼备知识与练习同步全家人适用随时随地练习 .epub"
- }
- 577 => {
- "artistName" => "尼克·莱恩"
- "BKAllocatedSize" => 8056832
- "BKBookType" => "epub"
- "BKDisplayName" => "《能量,性,自杀》线粒体与生命的意义-wxiqo"
- "BKGeneratedItemId" => "A6812B8EEC2BB9AEC7C937A2B5D758FB"
- "BKGenerationCount" => 2
- "BKInsertionDate" => 761032024
- "BKPercentComplete" => 1
- "book-info" => {
- "cover-image-hash" => "2FF99EB35F373308E5A254C347EF68B8"
- "cover-image-path" => "EPUB/images/cover.jpg"
- "mime-type" => "application/epub+zip"
- "package-file-hash" => "A6812B8EEC2BB9AEC7C937A2B5D758FB"
- "publisher-unique-id" => "urn:uuid:b9f24134-ff99-49d0-a88d-2875e0cd901c"
- "unique-id" => -1293284660757144698
- "update-level" => 2
- }
- "bookDescription" => "人类总是仰望星空,想知道我们为什么会在这里,我们是否在这个宇宙中是孤独的。我们问为什么世界充满了动植物,这一切没有发生的可能性有多大?我们来自何方,我们的祖先是谁,我们的命运将是怎样?
-
-对生命、宇宙和一切的问题的答案神秘而简短:线粒体。
-
-因为它告诉我们分子是如何在我们的星球上产生生命的,为什么细菌会主宰这个星球这么长时间。
-
-它告诉我们第一个真正复杂的细胞是如何形成的,以及为什么从那时起,地球上的生命就沿着复杂性斜坡上升到如今我们周围的繁荣景象。
-
-它向我们展示了为什么燃烧能量的温血生物会崛起,冲破了环境的枷锁;为什么我们有性行为、有两种性别、有孩子,为什么我们必须坠入爱河。
-
-它还向我们展示了为什么我们在这片苍穹下的日子是有限的,为什么我们必须最终变老和死去。它们也向我们展示了,怎样做才能改善我们的晚年生活,以避开身为人类的诅咒———老化的痛苦。
-
-就算它没有告诉我们生命的意义,它至少能让我们理解生命为何是这般模样。
-
-如果这都没有意义,那这世界上还有什么是有意义的呢?"
- "genre" => "汇书网"
- "isPreview" => 0
- "itemName" => "能量,性,自杀:线粒体与生命的意义"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/能量性自杀线粒体与生命的意义.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/《能量,性,自杀》线粒体与生命的意义-wxiqo.epub"
- "updateDate" => 2025-02-12 05:47:04 +0000
- }
- 578 => {
- "artistName" => "(美)MICHAEL S.GAZZANIGA"
- "BKAllocatedSize" => 15216640
- "BKBookType" => "epub"
- "BKDisplayName" => "认知神经科学:关于心智的生物学-fn2ft"
- "BKGeneratedItemId" => "E0FED6B79A4E290B0D683667178FAF85"
- "BKGenerationCount" => 2
- "BKInsertionDate" => 761032629
- "BKPercentComplete" => 1
- "book-info" => {
- "cover-image-hash" => "012149EAE2CA3BD5DA43359E374304EF"
- "cover-image-path" => "cover.jpeg"
- "mime-type" => "application/epub+zip"
- "package-file-hash" => "E0FED6B79A4E290B0D683667178FAF85"
- "publisher-unique-id" => "3917869d-5355-4da7-9091-03ba09f4731f"
- "unique-id" => 797684588138714285
- "update-level" => 2
- }
- "isPreview" => 0
- "itemName" => "认知神经科学:关于心智的生物学"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/认知神经科学关于心智的生物学.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/认知神经科学:关于心智的生物学-fn2ft.epub"
- "updateDate" => 2025-02-12 05:57:09 +0000
- }
- 579 => {
- "artistName" => "奥利维耶·卡埃朗"
- "BKAllocatedSize" => 2240512
- "BKBookType" => "epub"
- "BKDisplayName" => "大模型应用开发极简入门基于GPT-4和ChatGPT"
- "BKGeneratedItemId" => "C554CEFEF82E7B80E34A6E091E18AFF9"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 761559318
- "book-info" => {
- "package-file-hash" => "C554CEFEF82E7B80E34A6E091E18AFF9"
- }
- "isPreview" => 0
- "itemName" => "大模型应用开发极简入门:基于GPT-4和ChatGPT"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/大模型应用开发极简入门基于GPT-4和ChatGPT.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/大模型应用开发极简入门基于GPT-4和ChatGPT.epub"
- }
- 580 => {
- "artistName" => "钱穆"
- "BKAllocatedSize" => 25296896
- "BKBookType" => "epub"
- "BKDisplayName" => "钱穆国学作品集套装共10册"
- "BKGeneratedItemId" => "7BD15BF592DF70EECE2A0391F9A8A3CD"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 762741969
- "book-info" => {
- "package-file-hash" => "7BD15BF592DF70EECE2A0391F9A8A3CD"
- }
- "isPreview" => 0
- "itemName" => "钱穆国学作品集(套装共10册)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/钱穆国学作品集套装共10册.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/钱穆国学作品集套装共10册.epub"
- }
- 581 => {
- "artistName" => "冯友兰"
- "BKAllocatedSize" => 1818624
- "BKBookType" => "epub"
- "BKDisplayName" => "中国哲学简史国民阅读经典典藏版"
- "BKGeneratedItemId" => "02AFDA8C2C34D63C6DFFEA83B03775C4"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 762914666
- "book-info" => {
- "package-file-hash" => "02AFDA8C2C34D63C6DFFEA83B03775C4"
- }
- "isPreview" => 0
- "itemName" => "中国哲学简史:国民阅读经典(典藏版)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国哲学简史国民阅读经典典藏版.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国哲学简史国民阅读经典典藏版.epub"
- }
- 582 => {
- "artistName" => "波音"
- "BKAllocatedSize" => 847872
- "BKBookType" => "epub"
- "BKDisplayName" => "草与禾中华文明4000年融合史从匈奴突厥到唐宋文明理清多民族交往融合历史"
- "BKGeneratedItemId" => "EA29F967C76B86AE3E8932D6AFC0BD21"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 763000623
- "book-info" => {
- "package-file-hash" => "EA29F967C76B86AE3E8932D6AFC0BD21"
- }
- "isPreview" => 0
- "itemName" => "草与禾:中华文明4000年融合史(从匈奴突厥到唐宋文明,理清多民族交往、融合历史)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/草与禾中华文明4000年融合史从匈奴突厥到唐宋文明理清多民族交往融合历史.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/草与禾中华文明4000年融合史从匈奴突厥到唐宋文明理清多民族交往融合历史.epub"
- }
- 583 => {
- "artistName" => "查尔斯·格雷伯"
- "BKAllocatedSize" => 1384448
- "BKBookType" => "epub"
- "BKDisplayName" => "抗癌大突破-1yc01"
- "BKGeneratedItemId" => "C9354A4BA8130DA9084D06B9062ED7F9"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 763291864
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "C9354A4BA8130DA9084D06B9062ED7F9"
- }
- "bookDescription" => "为什么我们的免疫系统不能像对待感冒等疾病一样,识别并对抗癌症?
-长久以来,针对癌症的治疗方法主要靠“切、烧、毒”(手术、放疗、化疗),直到2018年诺贝尔生理学或医学奖的颁发,很多人才第一次知道“免疫疗法”这一人类抗癌史上里程碑般的研究成果。然而,医学界试图利用人类自身免疫系统抗击并治愈癌症的努力,已经跨越了百年。利用丰富的新发现,创造现代的、更有效的疗法将重新定义我们与癌症的关系。
-《抗癌大突破》详细讲述了癌症免疫疗法的历史和重大突破,介绍了人类免疫系统对抗甚至是治愈癌症的关键所在。用一个个故事展现了众多医师和科研人员的探索征程。这些故事里涵盖了各种研究进程中的重要片段和阶段性成果,也包含了许多曾无比绝望终又重获生机的癌症患者,以及未能成功扭转而辞世的失败案例,字里行间充满了真诚而坚韧的情感。
-在针对癌症的战斗中,也许只有人类自身的免疫系统才能创造真正的奇迹。"
- "isPreview" => 0
- "itemName" => "抗癌大突破"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/抗癌大突破.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/抗癌大突破-1yc01.epub"
- "updateDate" => 2025-03-10 09:31:04 +0000
- }
- 584 => {
- "artistName" => "铃木祐"
- "BKAllocatedSize" => 7929856
- "BKBookType" => "epub"
- "BKDisplayName" => "长寿的习惯-3ua7y"
- "BKGeneratedItemId" => "16355B382891AA34CBEBFAA166971363"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 763462209
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "16355B382891AA34CBEBFAA166971363"
- }
- "isPreview" => 0
- "itemName" => "长寿的习惯"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/长寿的习惯.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/长寿的习惯-3ua7y.epub"
- "updateDate" => 2025-03-12 08:50:09 +0000
- }
- 585 => {
- "artistName" => "諾爾.布里克(Noel Brick)、史考特.道格拉斯(Scott Douglas)"
- "BKAllocatedSize" => 3538944
- "BKBookType" => "epub"
- "BKDisplayName" => "像頂尖運動員一樣思考"
- "BKGeneratedItemId" => "3699418E4F9E23252DB15D573CB5EFBE"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 764556143
- "book-info" => {
- "package-file-hash" => "3699418E4F9E23252DB15D573CB5EFBE"
- }
- "isPreview" => 0
- "itemName" => "像頂尖運動員一樣思考"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/像頂尖運動員一樣思考.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/像頂尖運動員一樣思考.epub"
- }
- 586 => {
- "artistName" => "弗里德里希·尼采 (Friedrich Nietzsche)"
- "BKAllocatedSize" => 528384
- "BKBookType" => "epub"
- "BKDisplayName" => "偶像的黄昏:或怎样用锤子从事哲学"
- "BKGeneratedItemId" => "1FE6EE1DC764543459D365D3DE7C4B07"
- "BKGenerationCount" => 3
- "BKInsertionDate" => 764815641
- "BKPercentComplete" => 1
- "book-info" => {
- "publication-version" => 0
- }
- "isPreview" => 0
- "itemName" => "偶像的黄昏:或怎样用锤子从事哲学"
- "pageCount" => 1
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/偶像的黄昏或怎样用锤子从事哲学 商务新知译丛.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/偶像的黄昏-ggz11.epub"
- "updateDate" => 2025-03-28 00:47:21 +0000
- }
- 587 => {
- "artistName" => "顾准"
- "BKAllocatedSize" => 704512
- "BKBookType" => "epub"
- "BKDisplayName" => "从理想主义到经验主义"
- "BKGeneratedItemId" => "C28FD61F92B2445EBD59AB8DA81C8368"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 765170295
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "C28FD61F92B2445EBD59AB8DA81C8368"
- }
- "isPreview" => 0
- "itemName" => "从理想主义到经验主义"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/从理想主义到经验主义.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/从理想主义到经验主义.epub"
- "updateDate" => 2025-04-01 03:18:15 +0000
- }
- 588 => {
- "artistName" => "林浩 著"
- "BKAllocatedSize" => 1875968
- "BKBookType" => "epub"
- "BKDisplayName" => "中国户籍制度变迁:个人权利与社会控制____林浩-fehu6"
- "BKGeneratedItemId" => "9D45E6798FB75B266653FDE405D7A4BE"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 765179321
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "9D45E6798FB75B266653FDE405D7A4BE"
- }
- "isPreview" => 0
- "itemName" => "中国户籍制度变迁:个人权利与社会控制 (云南财经大学前沿研究丛书)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国户籍制度变迁个人权利与社会控制 云南财经大学前沿研究丛书.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/中国户籍制度变迁:个人权利与社会控制____林浩-fehu6.epub"
- "updateDate" => 2025-04-01 05:48:41 +0000
- }
- 589 => {
- "artistName" => "[英]伊莱恩·卡斯凯特"
- "BKAllocatedSize" => 1687552
- "BKBookType" => "epub"
- "BKDisplayName" => "网上遗产:被数字时代重新定义的死亡、记忆与爱(未读·思想家)_[英]伊莱-bbe76"
- "BKGeneratedItemId" => "CD4389A72456AA2414B88A36997F6501"
- "BKGenerationCount" => 2
- "BKInsertionDate" => 765248900
- "BKPercentComplete" => 1
- "book-info" => {
- "cover-image-hash" => "F41A9BAAEEDE69913B398F1184B449BF"
- "cover-image-path" => "cover1.jpeg"
- "mime-type" => "application/epub+zip"
- "package-file-hash" => "CD4389A72456AA2414B88A36997F6501"
- "publisher-unique-id" => "8c46c493-c3ea-49a3-8309-883309ccaf2a"
- "unique-id" => 8374406617603663126
- "update-level" => 2
- }
- "isPreview" => 0
- "itemName" => "网上遗产:被数字时代重新定义的死亡、记忆与爱(未读·思想家)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/网上遗产被数字时代重新定义的死亡记忆与爱未读思想家.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/网上遗产:被数字时代重新定义的死亡、记忆与爱(未读·思想家)_[英]伊莱-bbe76.epub"
- "updateDate" => 2025-04-02 01:08:20 +0000
- }
- 590 => {
- "artistName" => "【加】森舸澜"
- "BKAllocatedSize" => 6180864
- "BKBookType" => "epub"
- "BKDisplayName" => "我们为什么爱喝酒"
- "BKGeneratedItemId" => "A0E01678716B24C4BC9DAB542898C2CC"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 766371676
- "book-info" => {
- "package-file-hash" => "A0E01678716B24C4BC9DAB542898C2CC"
- }
- "bookDescription" => "每一滴酒精都对人体有害,但几乎没有一个文明错过酒精,这个现象背后有一些值得推敲的地方。森舸澜在本书中主张,酒精是人类最早的随身携带的吐真剂,它带来迅速起效但温和稳定的理性掉线、创造性思维提升,一直是促进人类合作、文化传承与创新的关键要素。在没有酒精的地方,代替它的是更加耗时的舞蹈、效果更难以控制的药物等。
-
-基于对跨学科文献的综合梳理,森舸澜毫不夸张地提出:酒精开启了现代文明,也助推着人类社会发展。人类对酒精的痴迷不是意外,而是演化的结果。承认酒精的积极意义,我们才能更有效地应对它在现代社会提出的新问题。"
- "isPreview" => 0
- "itemName" => "我们为什么爱喝酒"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/我们为什么爱喝酒.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/我们为什么爱喝酒.epub"
- }
- 591 => {
- "artistName" => "玛丽–法郎士·阿兹布鲁克"
- "BKAllocatedSize" => 409600
- "BKBookType" => "epub"
- "BKDisplayName" => "不服从"
- "BKGeneratedItemId" => "A1DFCDC3A9E1E33266A6EAC7844B6F97"
- "BKGenerationCount" => 4
- "BKInsertionDate" => 767062693
- "BKPercentComplete" => 1
- "book-info" => {
- "publication-version" => 0
- }
- "isPreview" => 0
- "itemName" => "不服从"
- "pageCount" => 1
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/玛丽法郎士阿兹布鲁克 - 不服从 2019-06新星出版社9787513333429.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/不服从-k54jv.epub"
- "updateDate" => 2025-07-24 13:50:13 +0000
- }
- 592 => {
- "artistName" => "[美]迈克尔·波特"
- "BKAllocatedSize" => 811008
- "BKBookType" => "epub"
- "BKDisplayName" => "演讲的技术-ied1y"
- "BKGeneratedItemId" => "E59D0888B05E12D9BC912A81DF9C196F"
- "BKGenerationCount" => 2
- "BKInsertionDate" => 767063026
- "BKPercentComplete" => 1
- "book-info" => {
- "cover-image-hash" => "916090AC348B473CE236CCE46FE0E63B"
- "cover-image-path" => "OEBPS/Image00002.jpg"
- "mime-type" => "application/epub+zip"
- "package-file-hash" => "E59D0888B05E12D9BC912A81DF9C196F"
- "publisher-unique-id" => "urn:uuid:273fd756-62f2-4858-8d67-99e08f24bba9"
- "unique-id" => -4972255650375584712
- "update-level" => 2
- }
- "isPreview" => 0
- "itemName" => "演讲的技术"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/演讲的技术.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/演讲的技术-ied1y.epub"
- "updateDate" => 2025-04-23 01:03:46 +0000
- }
- 593 => {
- "artistName" => "赵汀阳"
- "BKAllocatedSize" => 1413120
- "BKBookType" => "epub"
- "BKDisplayName" => "秩序的理由-gzrk9"
- "BKGeneratedItemId" => "F4D720E85521C6F1BA5AD2EC4699C00E"
- "BKGenerationCount" => 2
- "BKInsertionDate" => 767063108
- "BKPercentComplete" => 1
- "book-info" => {
- "cover-image-hash" => "646B4C2B3FF109F6FE76B56344EE215F"
- "cover-image-path" => "EPUB/images/cover.jpg"
- "mime-type" => "application/epub+zip"
- "package-file-hash" => "F4D720E85521C6F1BA5AD2EC4699C00E"
- "publisher-unique-id" => "a19affb6-1464-4e3c-bc34-ee39269361cb"
- "unique-id" => -1044353210475858659
- "update-level" => 2
- }
- "bookDescription" => "政治哲学与伦理学是与人类常生活关涉密切的哲学学科。有人才有社会,有人才有伦理。人与人之间的关系问题基本的即是“合作”与“共识”,在秩序的理由中,哲学家赵汀阳将政治学和伦理学的底层问题概括为“他人不同意”的社会事实,探询合作是怎样达成的?共识是如何取得的?是如何可能的?
-
-作者批判了当代伦理学对现实价值的忽视和政治学对个人理的过分依赖所引发的问题和困境,并主张回归这两门学科的形而上学基础,以寻求可能的改进方案。通过博弈论的推论方法,作者给出了“人所不欲勿施于人”的改良版金规则、人权预付等方案,并设计了一种智慧,以更好地与一个良好社会所需要的普遍合作关系相适应。能兼容这三种可能方案的社会制度,是“天下”制度,这是作者针对政治与伦理困境给出的终改良方案。
-
-本书对当代政治哲学及伦理学的症候给出了犀利的批判与反思,以“从问题外部回看问题”的方法,在存在论层面设计了一些精彩的解决方案,是赵汀阳“哲学系列”的又一力作。"
- "isPreview" => 0
- "itemName" => "秩序的理由"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/秩序的理由.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/秩序的理由-gzrk9.epub"
- "updateDate" => 2025-04-23 01:05:08 +0000
- }
- 594 => {
- "artistName" => "【美】肯尼斯·L.费雪;伊丽莎白·戴林格 著;杨天南 审校"
- "BKAllocatedSize" => 8978432
- "BKBookType" => "epub"
- "BKDisplayName" => "反乌合之众:跳出羊群,逆向获利-qf5ao"
- "BKGeneratedItemId" => "19DF2945F0E5B520BA359CEA78F0FFE5"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 767063533
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "19DF2945F0E5B520BA359CEA78F0FFE5"
- }
- "bookDescription" => "在投资市场上,大众的心理、情绪与行为,往往会因为受到多种因素的影响而偏离事实,这也是大多数人投资亏损的主要原因之一。
-
-本书作者在华尔街有数十年的投资经验,在本书中,他从投资者的思维训练开始,阐述了投资者如何不被资本市场的各种乱象和众人的观点所干扰,学会独立思考,应对市场出现的各种冲击,比如银行倒闭等突发事件引发的短期金融恐慌,机构和专业人士对经济大势的预测,媒体和机构散布的各种消息及政府发布的经济政策等引发的市场波动。"
- "isPreview" => 0
- "itemName" => "反乌合之众:跳出羊群,逆向获利"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/反乌合之众跳出羊群逆向获利.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/反乌合之众:跳出羊群,逆向获利-qf5ao.epub"
- "updateDate" => 2025-04-23 01:12:13 +0000
- }
- 595 => {
- "artistName" => "李龙"
- "BKAllocatedSize" => 13950976
- "BKBookType" => "epub"
- "BKDisplayName" => "岁时请神:中国诸神图志-bvchn"
- "BKGeneratedItemId" => "646C01AAD6B9E673C2A93B99C8E2C739"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 768033475
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "646C01AAD6B9E673C2A93B99C8E2C739"
- }
- "isPreview" => 0
- "itemName" => "岁时请神:中国诸神图志"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/岁时请神中国诸神图志.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/岁时请神:中国诸神图志-bvchn.epub"
- "updateDate" => 2025-05-04 06:37:55 +0000
- }
- 596 => {
- "artistName" => "理查•哈洛威(Richard Holloway)"
- "BKAllocatedSize" => 7602176
- "BKBookType" => "epub"
- "BKDisplayName" => "宗教的40堂公开课_holloway),_理查•哈洛威(richard-oikzd"
- "BKGeneratedItemId" => "660F7C606E1B764582EF0C813959BF73"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 768033627
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "660F7C606E1B764582EF0C813959BF73"
- }
- "isPreview" => 0
- "itemName" => "宗教的40堂公开课"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/宗教的40堂公开课.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/宗教的40堂公开课_holloway),_理查•哈洛威(richard-oikzd.epub"
- "updateDate" => 2025-05-04 06:40:27 +0000
- }
- 597 => {
- "artistName" => "作者"
- "BKAllocatedSize" => 1155072
- "BKBookType" => "pdf"
- "BKDisplayName" => "宗 教 极 端 主 义 思 想 根 源 与“ 去 极 端 化” 领 域 国 际 合 作"
- "BKGeneratedItemId" => "28E8A855BF73709C8D5D88ABE2261A4A"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 768548085
- "BKIsLocked" => 0
- "genre" => "科目"
- "itemName" => "宗 教 极 端 主 义 思 想 根 源 与“ 去 极 端 化” 领 域 国 际 合 作"
- "modificationDate" => 2016-05-18 05:03:01 +0000
- "pageCount" => 23
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/宗 教 极 端 主 义 思 想 根 源 与 去 极 端 化 领 域 国 际 合 作.pdf"
- "releaseDate" => 2016-05-18 05:02:57 +0000
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX.SharingExtension/Data/tmp/宗 教 极 端 主 义 思 想 根 源 与“ 去 极 端 化” 领 域 国 际 合 作.pdf"
- "updateDate" => 2025-05-10 05:34:45 +0000
- }
- 598 => {
- "artistName" => "基思·罗威"
- "BKAllocatedSize" => 1507328
- "BKBookType" => "epub"
- "BKDisplayName" => "自由主义被遗忘的历史:从古罗马到21世纪____[美]海伦娜·罗森布拉特-1wdie"
- "BKGeneratedItemId" => "FC5CC8F1A25CF85B32288B25A54C1F38"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 769494194
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "FC5CC8F1A25CF85B32288B25A54C1F38"
- }
- "genre" => "书聚EBOOKG.COM"
- "isPreview" => 0
- "itemName" => "自由主义被遗忘的历史:从古罗马到21世纪"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/自由主义被遗忘的历史从古罗马到21世纪.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/自由主义被遗忘的历史:从古罗马到21世纪____[美]海伦娜·罗森布拉特-1wdie.epub"
- "updateDate" => 2025-05-21 04:23:14 +0000
- }
- 599 => {
- "artistName" => "賽斯.史蒂芬斯—大衛德維茲(Seth Stephens-Davidowitz)"
- "BKAllocatedSize" => 2867200
- "BKBookType" => "epub"
- "BKDisplayName" => "數據、真相與人生:前google資料科學家用大數據,找出致富、職涯與婚姻-yr8lu"
- "BKGeneratedItemId" => "442907AB8C6EA4FEAB63A186EA5DDC25"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 769494449
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "442907AB8C6EA4FEAB63A186EA5DDC25"
- }
- "bookDescription" => "最會說故事的資料科學家,用最幽默的語句、最驚奇的發現,告訴你大數據不只是工作的利器,更是讓人生升級的工具!
我們不只對朋友、對另一半、對主管說謊,甚至也對自己說謊——前Google資料科學家賽斯.史蒂芬斯—大衛德維茲,利用「永不說謊」的大數據,親自為你探索人生的各種重大問題!
從戀愛、婚姻、理財、教養到工作,真正的成功關鍵,絕對跟我們想像中截然不同!
如果《數據、謊言與真相》用大數據揭露了世界的真相;本書將用這些真相,教你做出更好的人生決定!"
- "genre" => "商管理財"
- "isPreview" => 0
- "itemName" => "數據、真相與人生:前Google資料科學家用大數據,找出致富、職涯與婚姻的人生解答"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/數據真相與人生前Google資料科學家用大數據找出致富職涯與婚姻的人生解答.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/數據、真相與人生:前google資料科學家用大數據,找出致富、職涯與婚姻-yr8lu.epub"
- "updateDate" => 2025-05-21 04:27:29 +0000
- }
- 600 => {
- "artistName" => "刘天琦 校译【法】奥利维尔·布兰查德 著"
- "BKAllocatedSize" => 2482176
- "BKBookType" => "epub"
- "BKDisplayName" => "低利率时代的财政政策_(【法】奥利维尔·布兰查德_著)-3iptl"
- "BKGeneratedItemId" => "18EE8FD0AA9A12E08AFB541C0181285B"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 769494529
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "18EE8FD0AA9A12E08AFB541C0181285B"
- }
- "bookDescription" => "自20世纪80年代中期以来,全球发达经济体的实际利率逐渐下降,并呈现出将长期持续的趋势。在有效利率下限的约束下,亦即在政策空间有限的情况下,究竟怎样调整财政政策,才能避免世界经济陷入长期停滞?
-
-实际上,从2008年全球金融危机爆发至今,各国的政策实践已经引发了经济学界对财政政策作用的重新审视。本书中,著名宏观经济学家,国际货币基金组织前首席经济学家奥利维尔·布兰查德分析了导致利率下行的诸多原因,并结合美国、欧洲及日本等发达经济体的财政政策和实践例证,深入探讨了低利率对财政政策的影响,尤其是对当今发达经济体政策的实际影响。"
- "isPreview" => 0
- "itemName" => "低利率时代的财政政策"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/低利率时代的财政政策.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/低利率时代的财政政策_(【法】奥利维尔·布兰查德_著)-3iptl.epub"
- "updateDate" => 2025-05-21 04:28:49 +0000
- }
- 601 => {
- "artistName" => "【美】罗兰士"
- "BKAllocatedSize" => 4325376
- "BKBookType" => "epub"
- "BKDisplayName" => "铸就:亚洲股权投资40年_(【美】richard_h._lawrence-qutaq"
- "BKGeneratedItemId" => "5ED1F2E31FAB837D1743969E74005245"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 769494657
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "5ED1F2E31FAB837D1743969E74005245"
- }
- "bookDescription" => "1985年,罗兰士从纽约来到香港,开始研究亚洲市场。1991年,罗兰士在香港创立了高观投资有限公司。截至2021年,高观投资以每年14.3%的速度持续增长,这一骄人的增长记录证明了其发现和投资亚洲优秀企业的能力。
-
-这也引发了两个重要的问题:高观投资是如何成功的?高观投资如何能确保未来的成功?
-
-在本书中,罗兰士和高观投资的管理团队以细腻的笔触详述从未披露过的高观投资框架,以及高观投资30多年发展历程中的精彩故事、波折经历、有趣的人物和公司、惨痛教训与欢乐时刻。
-
-本书内容分为四大部分。
-
-第一部分:熊市。1997—1998年亚洲金融危机期间,高观投资历经的浮沉,以及总结出的经验教训。
-
-第二部分:高观投资框架。介绍高观投资理念、商业操作以及安全边际。
-
-第三部分:高观投资在中国(1985—2021年)。追溯20世纪80年代以来,高观投资在中国三个不同时期的投资经历。
-
-第四部分:高观投资之声。高观投资委员会成员围绕重要投资课题分享洞见。"
- "isPreview" => 0
- "itemName" => "铸就"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/铸就.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/铸就:亚洲股权投资40年_(【美】richard_h._lawrence-qutaq.epub"
- "updateDate" => 2025-05-21 04:30:57 +0000
- }
- 602 => {
- "artistName" => "【英】尼克·博斯特罗姆"
- "BKAllocatedSize" => 2539520
- "BKBookType" => "epub"
- "BKDisplayName" => "未来之地:超级智能时代人类的目的和意义_(【英】尼克·博斯特罗姆)-5hrjp"
- "BKGeneratedItemId" => "FFA3DEB1F3C651B720160074919822FB"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 771814934
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "FFA3DEB1F3C651B720160074919822FB"
- }
- "bookDescription" => "在技术进步和经济不断发展的当下,越来越多的人开始思考这些问题:当机器人能够顺畅地处理大部分工作时,是否会导致人类大量失业?在大量失业的情况下,人们该如何获得收入,是否会因此感到人生毫无意义,丧失获得快乐的能力?假设人类安全地开发出了超级智能,对它进行了良好的管理,并很好地利用了这项技术所能释放的巨大经济潜力和神奇的变革力量。
-
-在这个世界中,人工智能可以做我们能做的一切,而且可以做得更好、更快,成本更低。那么,人类还能扮演什么角色呢?本书前瞻性地探索了科技高度发达的“未来之地”,并预测了超级智能时代的人类命运,它探讨的是一个后技术时代的新问题:一旦到达梦想中的技术之巅,人类要如何培养意义和目的?如果不再需要工作,我们将如何生活?
-
-作者在书中部分采用了对话体的形式,创造性地虚构了一个为期一周的哲学系列讲座的场景,由博斯特罗姆教授本人主讲。此外,作者还构建了一个动物世界寻找乌托邦的寓言场景,以此映射人类世界,新颖有趣,有助于读者快速进入作者的哲学场域。"
- "isPreview" => 0
- "itemName" => "未来之地"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/未来之地.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/未来之地:超级智能时代人类的目的和意义_(【英】尼克·博斯特罗姆)-5hrjp.epub"
- "updateDate" => 2025-06-17 01:02:14 +0000
- }
- 603 => {
- "artistName" => "[韩]孙希定 [韩]林允玉 [韩]金智惠 编 [韩]崔至恩 等 著"
- "BKAllocatedSize" => 712704
- "BKBookType" => "epub"
- "BKDisplayName" => "大众文化的女性主义指南 ([韩]孙希定 [韩]林允玉 [韩]金智惠 编) (Z-Library)"
- "BKGeneratedItemId" => "31E8E69DE59A0FEAC8561232AE3313DF"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 773985242
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "31E8E69DE59A0FEAC8561232AE3313DF"
- }
- "isPreview" => 0
- "itemName" => "大众文化的女性主义指南"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/大众文化的女性主义指南.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/大众文化的女性主义指南 ([韩]孙希定 [韩]林允玉 [韩]金智惠 编) (Z-Library).epub"
- "updateDate" => 2025-07-12 03:54:02 +0000
- }
- 604 => {
- "artistName" => "【法】亨利·柏格森"
- "BKAllocatedSize" => 1101824
- "BKBookType" => "epub"
- "BKDisplayName" => "喜剧的本质"
- "BKGeneratedItemId" => "5059570B52B8A485EE695EA9B1708571"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 774336061
- "book-info" => {
- "package-file-hash" => "5059570B52B8A485EE695EA9B1708571"
- }
- "bookDescription" => "笑,如同呼吸一样自然。然而,我们为何发笑,以及触发幽默反应的主题和情境,却少有人深入思考。
-
-在本书中,法国哲学家柏格森试图捕捉并分析这种难以捉摸的喜感的本质:我们为何发笑?可笑的事物为什么可笑?在喜剧、闹剧、小丑的鬼脸、俏皮话、文字游戏之间,有什么共同的东西?喜剧和正剧的区别在哪里?
-
-通过探究人类事务中所有幽默的元素,精微分析形式、动作、情境、语言以及性格的喜剧性,柏格森希望提炼出喜剧背后的共同运作方式,对社会、想象力和文化形成更深刻的理解。柏格森认为,喜剧性是人类独有的特质,而冷漠与超然是发笑的前提条件。喜剧不完全属于艺术,又不完全属于生活,它具有社会功能,促使人们省察自己,令社会机体保持活力。
-
-在文艺经典中,关于笑的洞察非常罕见,而柏格森对喜剧本质的论述则是一部独特且不容错过的作品,书中提供了一系列深刻隽永的见解,关于我们为何觉得事物有趣、这些事物如何揭示我们自身,以及如何教会我们成为更好的人。"
- "isPreview" => 0
- "itemName" => "喜剧的本质"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/喜剧的本质.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/喜剧的本质.epub"
- }
- 605 => {
- "artistName" => "汪曾祺"
- "BKAllocatedSize" => 2220032
- "BKBookType" => "epub"
- "BKDisplayName" => "做饭汪曾祺代表作系列 文艺经典"
- "BKGeneratedItemId" => "2EF8155F673E7531895A2BB4FB2C9706"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 774367201
- "book-info" => {
- "package-file-hash" => "2EF8155F673E7531895A2BB4FB2C9706"
- }
- "isPreview" => 0
- "itemName" => "做饭(汪曾祺代表作系列) (文艺经典)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/做饭汪曾祺代表作系列 文艺经典.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/做饭汪曾祺代表作系列 文艺经典.epub"
- }
- 606 => {
- "artistName" => "Administrator"
- "BKAllocatedSize" => 720896
- "BKBookType" => "pdf"
- "BKDisplayName" => "zy"
- "BKGeneratedItemId" => "7D11694E303DF861F667F3F5F950FC10"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 774422522
- "BKIsLocked" => 0
- "itemName" => "周易"
- "modificationDate" => 2019-03-12 06:20:46 +0000
- "pageCount" => 146
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/zy.pdf"
- "releaseDate" => 2001-05-25 13:33:53 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/zy.pdf"
- }
- 607 => {
- "artistName" => "美国《巴黎评论》编辑部"
- "BKAllocatedSize" => 16850944
- "BKBookType" => "epub"
- "BKDisplayName" => "巴黎评论诺奖作家访谈上下册"
- "BKGeneratedItemId" => "92F454EC32A9BA558F859AC8B78E976B"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 774422525
- "book-info" => {
- "package-file-hash" => "92F454EC32A9BA558F859AC8B78E976B"
- }
- "isPreview" => 0
- "itemName" => "巴黎评论·诺奖作家访谈(上、下册)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/巴黎评论诺奖作家访谈上下册.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/巴黎评论诺奖作家访谈上下册.epub"
- }
- 608 => {
- "artistName" => "秦晖"
- "BKAllocatedSize" => 2473984
- "BKBookType" => "epub"
- "BKDisplayName" => "传统十论"
- "BKGeneratedItemId" => "B18FCD9F90FD43C2373AE52BAEF9A77C"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 774422530
- "book-info" => {
- "package-file-hash" => "B18FCD9F90FD43C2373AE52BAEF9A77C"
- }
- "isPreview" => 0
- "itemName" => "传统十论"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/传统十论.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/传统十论.epub"
- }
- 609 => {
- "artistName" => "马歇尔•卢森堡"
- "BKAllocatedSize" => 1122304
- "BKBookType" => "epub"
- "BKDisplayName" => "非暴力沟通"
- "BKGeneratedItemId" => "F100D95258820828AC187389BF7B586F"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 774422532
- "book-info" => {
- "package-file-hash" => "F100D95258820828AC187389BF7B586F"
- }
- "isPreview" => 0
- "itemName" => "非暴力沟通"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/非暴力沟通.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/非暴力沟通.epub"
- }
- 610 => {
- "artistName" => "韩少功"
- "BKAllocatedSize" => 987136
- "BKBookType" => "epub"
- "BKDisplayName" => "孤独中有无尽繁华"
- "BKGeneratedItemId" => "42C10E89C1B78C1F83A008C877CE8DA3"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 774422535
- "book-info" => {
- "package-file-hash" => "42C10E89C1B78C1F83A008C877CE8DA3"
- }
- "isPreview" => 0
- "itemName" => "孤独中有无尽繁华"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/孤独中有无尽繁华.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/孤独中有无尽繁华.epub"
- }
- 611 => {
- "artistName" => "故宫博物院编"
- "BKAllocatedSize" => 9449472
- "BKBookType" => "pdf"
- "BKDisplayName" => "古玺文编"
- "BKGeneratedItemId" => "2E8CB175CE0679BFBDA72741B7549CC4"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 774422537
- "BKIsLocked" => 0
- "itemName" => "古玺文编"
- "modificationDate" => 2020-10-02 22:05:17 +0000
- "pageCount" => 623
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/古玺文编.pdf"
- "releaseDate" => 2010-04-16 07:53:16 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/古玺文编.pdf"
- }
- 612 => {
- "artistName" => "Windows 用户"
- "BKAllocatedSize" => 45772800
- "BKBookType" => "pdf"
- "BKDisplayName" => "掼蛋技巧秘籍-电子版160页"
- "BKGeneratedItemId" => "0A34072D3A5F97E530BAAE897E05EF7F"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 774422540
- "BKIsLocked" => 0
- "itemName" => "掼蛋技巧秘籍-电子版160页"
- "modificationDate" => 2024-12-06 02:46:36 +0000
- "pageCount" => 162
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/掼蛋技巧秘籍-电子版160页.pdf"
- "releaseDate" => 2016-02-15 11:02:05 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/掼蛋技巧秘籍-电子版160页.pdf"
- }
- 613 => {
- "artistName" => "孙萍"
- "BKAllocatedSize" => 2256896
- "BKBookType" => "epub"
- "BKDisplayName" => "过渡劳动平台经济下的外卖骑手"
- "BKGeneratedItemId" => "09A32A81E4E317FE2753A63267E3906E"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 774422542
- "book-info" => {
- "package-file-hash" => "09A32A81E4E317FE2753A63267E3906E"
- }
- "isPreview" => 0
- "itemName" => "过渡劳动:平台经济下的外卖骑手"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/过渡劳动平台经济下的外卖骑手.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/过渡劳动平台经济下的外卖骑手.epub"
- }
- 614 => {
- "artistName" => "【以】达娜·卡普兰【法】伊娃·易洛思"
- "BKAllocatedSize" => 782336
- "BKBookType" => "epub"
- "BKDisplayName" => "何谓性资本关于性的历史社会学"
- "BKGeneratedItemId" => "31B44BB2EB1C15EBCCCAA61D8A0DFC4F"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 774422546
- "book-info" => {
- "package-file-hash" => "31B44BB2EB1C15EBCCCAA61D8A0DFC4F"
- }
- "bookDescription" => "本书重新评估了“性”在新自由主义社会中的作用。
-
-两位作者认为,“性资本”不仅仅能够在性领域获得优势,还可以在金钱、地位和职业领域产生实质利益。
-
-书中概述了四类“性资本”,包括“默认”的贞洁、为性工作者所用的“身体剩余价值”“具身性资本”——性感,以及新兴的“新自由主义的性资本”,进而讨论了性、经济价值与社会不平等之间错综复杂的关系。"
- "isPreview" => 0
- "itemName" => "何谓“性资本”:关于性的历史社会学"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/何谓性资本关于性的历史社会学.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/何谓性资本关于性的历史社会学.epub"
- }
- 615 => {
- "artistName" => "(瑞士)荣格(C.G.Jung)"
- "BKAllocatedSize" => 8601600
- "BKBookType" => "epub"
- "BKDisplayName" => "红书"
- "BKGeneratedItemId" => "B700ED83CCFD735E4E2B4544C3D4F03B"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 774422548
- "book-info" => {
- "package-file-hash" => "B700ED83CCFD735E4E2B4544C3D4F03B"
- }
- "isPreview" => 0
- "itemName" => "红书"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/红书.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/红书.epub"
- }
- 616 => {
- "artistName" => "【美】摩根·豪泽尔"
- "BKAllocatedSize" => 1691648
- "BKBookType" => "epub"
- "BKDisplayName" => "金钱心理学财富人性和幸福的永恒真相"
- "BKGeneratedItemId" => "8994AE1F47E5AC4C005266C0CED30B18"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 774422549
- "book-info" => {
- "package-file-hash" => "8994AE1F47E5AC4C005266C0CED30B18"
- }
- "isPreview" => 0
- "itemName" => "金钱心理学:财富、人性和幸福的永恒真相"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/金钱心理学财富人性和幸福的永恒真相.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/金钱心理学财富人性和幸福的永恒真相.epub"
- }
- 617 => {
- "artistName" => "孔庆东"
- "BKAllocatedSize" => 3833856
- "BKBookType" => "epub"
- "BKDisplayName" => "孔庆东套装共5册央视百家讲坛著名坛主 孔庆东合集"
- "BKGeneratedItemId" => "FFBAB477D6A04CA2E47CD19E112760F5"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 774422554
- "book-info" => {
- "package-file-hash" => "FFBAB477D6A04CA2E47CD19E112760F5"
- }
- "isPreview" => 0
- "itemName" => "孔庆东套装共5册(央视“百家讲坛”著名坛主) (孔庆东合集)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/孔庆东套装共5册央视百家讲坛著名坛主 孔庆东合集.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/孔庆东套装共5册央视百家讲坛著名坛主 孔庆东合集.epub"
- }
- 618 => {
- "artistName" => "【英】奥利弗·萨克斯"
- "BKAllocatedSize" => 1380352
- "BKBookType" => "epub"
- "BKDisplayName" => "每条弯路都通向自我"
- "BKGeneratedItemId" => "AF8985D4FF341A39FFC803714AED64B7"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 774422558
- "book-info" => {
- "package-file-hash" => "AF8985D4FF341A39FFC803714AED64B7"
- }
- "bookDescription" => "本书是奥利弗·萨克斯自传,也是其生前出版的最后一本书,叙述的时间跨度从作者在牛津大学求学的青年时期,一直到罹患癌症的暮年时期。
-
-在奥利弗异常丰富的一生中,他是受人尊敬的医者、科学家,是获奖无数的天之骄子,但也因同性恋取向被母亲斥为“令人憎恶”而困扰自卑大半生。他和卡车司机打成一片,和好莱坞巨星谈笑风生,和诗人奥登互为挚友,和诺奖获得者克里克、埃德尔曼情谊深厚。他曾对爱情感到无望,大半生过着独居生活,却在七十五岁高龄遇到一生挚爱……这是罕有人能及的生命深广度。
-
-本书记录了一个“离经叛道者”如何在不被理解的世界里,把每次人生转向都变成通向真我的阶梯。他用一生回答:人生没有弯路,只有自我的必经之路。当我们被困在“正确轨道”里焦虑时,这本被《纽约时报》评为年度之书的人生手记,给出了最温柔的突围方案。"
- "isPreview" => 0
- "itemName" => "每条弯路都通向自我"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/每条弯路都通向自我.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/每条弯路都通向自我.epub"
- }
- 619 => {
- "artistName" => "罗兰·米勒 (Rowland S. Miller)"
- "BKAllocatedSize" => 14004224
- "BKBookType" => "epub"
- "BKDisplayName" => "亲密关系第6版 社会心理学精品译丛"
- "BKGeneratedItemId" => "56CF059C385D3F18A78A1957AB0B0D7D"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 774422564
- "book-info" => {
- "package-file-hash" => "56CF059C385D3F18A78A1957AB0B0D7D"
- }
- "bookDescription" => "
-
亲密关系与泛泛之交有什么区别?大丈夫与小女子真的般配吗?吸引力的秘密是什么?男人与女人真的是不同的动物吗?同性恋真的是由基因决定的吗?单亲家庭的孩子长大后更容易离婚吗……什么是爱情?由什么构成?能持续多久?两性在发生一夜情及选择终身伴侣上有什么差异?爱情和性欲是由不同的脑区控制吗?亲密关系美满的秘诀是什么?有什么方法能让婚姻持续一生?米勒教授在本书中回答了这些问题,尤其澄清了通俗心理学所宣扬的经验之谈,甚至某些错误观点。
-
本书汲取了社会心理学、沟通研究、家庭研究、认知心理学、发展心理学、演化心理学、社会学、传播学及家政学等学科的最新成果,研究实践和理论建构并重,学术标准与大众兴趣兼备。全书结构清晰、逻辑严密、语言生动、启发思考,既通俗易懂,读来轻松愉快,又科学权威,崇尚实证精神。
-
本书遵循由浅入深、由一般到特殊的认知规律,论述了亲密关系的基础、活动形态、类型、矛盾和修复等内容,读完本书,你将对人际吸引、爱情、婚姻、承诺、友谊、激情、沟通、性爱、依恋、择偶、嫉妒、出轨、家暴等亲密关系的方方面面有全新的认识。
-
亲密关系是人类经验的核心,处理得好能给人带来极大的快乐,处理得不好则会造成重大创伤,因此科学地认识亲密关系,攸关我们每个人的幸福。本书既适合研究亲密关系的专业人士,能给他们带来启发与灵感,也适合每个想爱情甜蜜、婚姻长久、人生幸福的普通读者。
"
- "isPreview" => 0
- "itemName" => "亲密关系(第6版) (社会心理学精品译丛)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/亲密关系第6版 社会心理学精品译丛.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/亲密关系第6版 社会心理学精品译丛.epub"
- }
- 620 => {
- "artistName" => "杨照"
- "BKAllocatedSize" => 4431872
- "BKBookType" => "epub"
- "BKDisplayName" => "史记的读法司马迁的历史世界看理想口碑节目完整再现看司马迁如何精准地捕捉人性的高光时刻 理想国出品"
- "BKGeneratedItemId" => "02030A1297262D812E05F06280BAAAC3"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 774422570
- "book-info" => {
- "package-file-hash" => "02030A1297262D812E05F06280BAAAC3"
- }
- "isPreview" => 0
- "itemName" => "史记的读法:司马迁的历史世界(“看理想”口碑节目完整再现,看司马迁如何精准地捕捉人性的高光时刻 理想国出品)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/史记的读法司马迁的历史世界看理想口碑节目完整再现看司马迁如何精准地捕捉人性的高光时刻 理想国出品.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/史记的读法司马迁的历史世界看理想口碑节目完整再现看司马迁如何精准地捕捉人性的高光时刻 理想国出品.epub"
- }
- 621 => {
- "artistName" => "《收获》文学杂志社"
- "BKAllocatedSize" => 2228224
- "BKBookType" => "epub"
- "BKDisplayName" => "收获文学榜2023中短篇小说"
- "BKGeneratedItemId" => "48188380175537388DC88E3D4ED1DDE6"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 774422571
- "book-info" => {
- "package-file-hash" => "48188380175537388DC88E3D4ED1DDE6"
- }
- "bookDescription" => "收获文学榜由《收获》文学杂志社创办于2016年,迄今已连续举办八届,希望重建一种艺术的追求,一种审美的立场。
-
-全书含短篇小说十篇(按名次顺序依次为:索南才让、牛健哲、赵挺、双雪涛、穆萨、周于旸、阮夕清、邓一光、别鸣、东西),中篇小说九篇(按名次顺序依次为:韩松落、须一瓜、龚万莹、糖匪、杨方、黎紫书、北村、计文君、王啸峰)。力图以此十余篇关键之作,将年度最值得品读、最值得关注的原创中短篇作品呈现在公众面前,体现当下文学创作的实绩与探索。"
- "genre" => "汇书网"
- "isPreview" => 0
- "itemName" => "收获文学榜2023中短篇小说"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/收获文学榜2023中短篇小说.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/收获文学榜2023中短篇小说.epub"
- }
- 622 => {
- "artistName" => "网络"
- "BKAllocatedSize" => 1269760
- "BKBookType" => "pdf"
- "BKDisplayName" => "中国历史上有没有宗教战争?"
- "BKGeneratedItemId" => "D8FF89E2DDB110CD7224C4D4DA3BAF7A"
- "BKGenerationCount" => 3
- "BKInsertionDate" => 774422574
- "BKIsLocked" => 0
- "BKItemPreviousPath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/未命名 11.pdf"
- "book-info" => {
- "publication-version" => 0
- }
- "isPreview" => 0
- "itemName" => "中国历史上有没有宗教战争?"
- "modificationDate" => 2024-09-22 01:17:43 +0000
- "pageCount" => 6
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国历史上有没有宗教战争?.pdf"
- "releaseDate" => 2024-09-22 01:17:43 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/未命名 11.pdf"
- "updateDate" => 2024-09-22 01:17:43 +0000
- }
- 623 => {
- "artistName" => "网络"
- "BKAllocatedSize" => 8421376
- "BKBookType" => "pdf"
- "BKDisplayName" => "欧洲人种起源—雅利安人四族:拉丁、日耳曼、斯拉夫、凯尔特"
- "BKGeneratedItemId" => "EA463519ECAB7B040EC22F81E193568B"
- "BKGenerationCount" => 3
- "BKInsertionDate" => 774422575
- "BKIsLocked" => 0
- "BKItemPreviousPath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/未命名 12.pdf"
- "book-info" => {
- "publication-version" => 0
- }
- "isPreview" => 0
- "itemName" => "欧洲人种起源—雅利安人四族:拉丁、日耳曼、斯拉夫、凯尔特"
- "modificationDate" => 2024-09-30 00:42:00 +0000
- "pageCount" => 18
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/欧洲人种起源—雅利安人四族:拉丁、日耳曼、斯拉夫、凯尔特.pdf"
- "releaseDate" => 2024-09-30 00:42:00 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/未命名 12.pdf"
- "updateDate" => 2024-09-30 00:42:00 +0000
- }
- 624 => {
- "artistName" => "王福庵"
- "BKAllocatedSize" => 15290368
- "BKBookType" => "pdf"
- "BKDisplayName" => "王福庵隶书千字文"
- "BKGeneratedItemId" => "4E94DE238B4B3895A8EE4AE0B3A157BB"
- "BKGenerationCount" => 3
- "BKInsertionDate" => 774422576
- "BKIsLocked" => 0
- "BKItemPreviousPath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/未命名 13.pdf"
- "book-info" => {
- "publication-version" => 0
- }
- "isPreview" => 0
- "itemName" => "王福庵隶书千字文"
- "modificationDate" => 2025-01-09 04:48:51 +0000
- "pageCount" => 41
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/王福庵隶书千字文.pdf"
- "releaseDate" => 2025-01-09 04:48:51 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/未命名 13.pdf"
- "updateDate" => 2025-01-09 04:48:51 +0000
- }
- 625 => {
- "artistName" => "[加]苏万康·塔玛冯萨"
- "BKAllocatedSize" => 335872
- "BKBookType" => "epub"
- "BKDisplayName" => "我不知道这该怎么念14则底层打工人速写"
- "BKGeneratedItemId" => "482BF751B2D57FC589530AA763B5A1A8"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 774422577
- "book-info" => {
- "package-file-hash" => "482BF751B2D57FC589530AA763B5A1A8"
- }
- "isPreview" => 0
- "itemName" => "我不知道这该怎么念(14则底层打工人速写)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/我不知道这该怎么念14则底层打工人速写.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/我不知道这该怎么念14则底层打工人速写.epub"
- }
- 626 => {
- "artistName" => "阿道夫·希特勒"
- "BKAllocatedSize" => 909312
- "BKBookType" => "epub"
- "BKDisplayName" => "我的奋斗希特勒自传"
- "BKGeneratedItemId" => "5617086979F16AE6B897AEA290BC5C7E"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 774422578
- "book-info" => {
- "package-file-hash" => "5617086979F16AE6B897AEA290BC5C7E"
- }
- "bookDescription" => ""
- "genre" => ""
- "isPreview" => 0
- "itemName" => "我的奋斗—希特勒自传"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/我的奋斗希特勒自传.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/我的奋斗希特勒自传.epub"
- }
- 627 => {
- "artistName" => "赵林"
- "BKAllocatedSize" => 6955008
- "BKBookType" => "epub"
- "BKDisplayName" => "西方哲学史讲演录武汉大学教授赵林力作豆瓣高分热门哲学史图书全新修订再版不晦涩说人话的哲学入门佳作 理想国出品"
- "BKGeneratedItemId" => "38423672EABA6EC54EECF77C58B396B8"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 774422581
- "book-info" => {
- "package-file-hash" => "38423672EABA6EC54EECF77C58B396B8"
- }
- "isPreview" => 0
- "itemName" => "西方哲学史讲演录(武汉大学教授赵林力作,豆瓣高分热门哲学史图书全新修订再版,不晦涩、“说人话”的哲学入门佳作 理想国出品)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/西方哲学史讲演录武汉大学教授赵林力作豆瓣高分热门哲学史图书全新修订再版不晦涩说人话的哲学入门佳作 理想国出品.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/西方哲学史讲演录武汉大学教授赵林力作豆瓣高分热门哲学史图书全新修订再版不晦涩说人话的哲学入门佳作 理想国出品.epub"
- }
- 628 => {
- "artistName" => "赵林"
- "BKAllocatedSize" => 1363968
- "BKBookType" => "epub"
- "BKDisplayName" => "西方宗教文化"
- "BKGeneratedItemId" => "12D299E417D4A16F1DD0D91939557572"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 774422583
- "book-info" => {
- "package-file-hash" => "12D299E417D4A16F1DD0D91939557572"
- }
- "isPreview" => 0
- "itemName" => "西方宗教文化"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/西方宗教文化.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/西方宗教文化.epub"
- }
- 629 => {
- "artistName" => "【美】斯蒂芬·本尼迪克特·戴森"
- "BKAllocatedSize" => 2011136
- "BKBookType" => "epub"
- "BKDisplayName" => "想象中的政治政治学和政治剧的解读"
- "BKGeneratedItemId" => "E907F2079D1DA701B600C0445E11E8EF"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 774422586
- "book-info" => {
- "package-file-hash" => "E907F2079D1DA701B600C0445E11E8EF"
- }
- "bookDescription" => "从《白宫风云》的权力制衡,到《纸牌屋》的野心博弈;从《丑闻》的道德困境,到《权力的堡垒》的协商合作。在作者笔下,这些热门政治剧集不仅是娱乐,更是对现实政治的深刻反思。
-
-本书以这些剧集为蓝本,结合政治学研究,为二者架起一座理解政治的桥梁,挖掘其中蕴含的政治智慧与人性挣扎。美剧迷可重温精彩剧情,政治学爱好者可深入学理探讨。"
- "isPreview" => 0
- "itemName" => "想象中的政治:政治学和政治剧的解读"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/想象中的政治政治学和政治剧的解读.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/想象中的政治政治学和政治剧的解读.epub"
- }
- 630 => {
- "artistName" => "【英】艾伦·麦克法兰"
- "BKAllocatedSize" => 3919872
- "BKBookType" => "epub"
- "BKDisplayName" => "宇宙观与现代世界"
- "BKGeneratedItemId" => "BD22A0789D703BC1E25F2ABE1D29C160"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 774422590
- "book-info" => {
- "package-file-hash" => "BD22A0789D703BC1E25F2ABE1D29C160"
- }
- "bookDescription" => "本书深入探讨了西方尤其是英语文化圈的世界观变迁,借助人类学、哲学和历史学的交叉视角,分析了不同文明的思维体系如何映射其权力结构、社会结构和历史脉络,并随着技术和权力关系的演变而悄然改变。
-
-书中特别关注了西方对中国态度的变迁,同时讨论了时间与空间概念的文化差异和历史演进,以及这些变化如何影响我们对世界的理解。通过比较研究,本书挑战了我们对时间、进步和历史的传统认知,引领读者深入探索人类文明的深层结构,从而获得对历史思想转变及其与社会变迁关系的新洞见。
-
-人们只相信和接受那些符合他们思维范畴和生活经历的解释。随着社会的变迁,他们倾向于不断创造和重塑自己的意义体系。人们不断修改对过去的认知,以适应当前的处境。"
- "isPreview" => 0
- "itemName" => "宇宙观与现代世界"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/宇宙观与现代世界.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/宇宙观与现代世界.epub"
- }
- 631 => {
- "artistName" => "马伯庸"
- "BKAllocatedSize" => 458752
- "BKBookType" => "epub"
- "BKDisplayName" => "长安的荔枝"
- "BKGeneratedItemId" => "65C6EC635392932A7FCACF3FD1A0586F"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 774422591
- "book-info" => {
- "package-file-hash" => "65C6EC635392932A7FCACF3FD1A0586F"
- }
- "isPreview" => 0
- "itemName" => "长安的荔枝"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/长安的荔枝.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/长安的荔枝.epub"
- }
- 632 => {
- "artistName" => "米兰达.弗里克"
- "BKAllocatedSize" => 1581056
- "BKBookType" => "epub"
- "BKDisplayName" => "知识的不正义偏见和缺乏理解如何造成不公平"
- "BKGeneratedItemId" => "C049CE5B03ABB70CF1728E9B0C1DC20B"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 774422593
- "book-info" => {
- "package-file-hash" => "C049CE5B03ABB70CF1728E9B0C1DC20B"
- }
- "isPreview" => 0
- "itemName" => "知识的不正义:偏见和缺乏理解,如何造成不公平?"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/知识的不正义偏见和缺乏理解如何造成不公平.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/知识的不正义偏见和缺乏理解如何造成不公平.epub"
- }
- 633 => {
- "BKAllocatedSize" => 4104192
- "BKBookType" => "pdf"
- "BKDisplayName" => "中国掼蛋十大技巧分享最新版"
- "BKGeneratedItemId" => "05E3AB0098223C287B4445580208633A"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 774422593
- "BKIsLocked" => 0
- "itemName" => "中国掼蛋十大技巧分享(最新版)"
- "modificationDate" => 2024-11-12 13:39:36 +0000
- "pageCount" => 33
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国掼蛋十大技巧分享最新版.pdf"
- "releaseDate" => 2023-07-13 08:00:31 +0000
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国掼蛋十大技巧分享最新版.pdf"
- }
- 634 => {
- "artistName" => "常青"
- "BKAllocatedSize" => 14721024
- "BKBookType" => "epub"
- "BKDisplayName" => "中国石窟简史"
- "BKGeneratedItemId" => "E8E9774675548F744C05545A11AD242F"
- "BKGenerationCount" => 2
- "BKInsertionDate" => 774422598
- "book-info" => {
- "publication-version" => 0
- }
- "isPreview" => 0
- "itemName" => "中国石窟简史"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国石窟简史通俗有料2021中国好书奖获奖作品中国考古学泰斗宿白先生的高足川大佛教考古教授常青的中国佛教石窟造像艺术研究精华.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/中国石窟简史通俗有料2021中国好书奖获奖作品中国考古学泰斗宿白先生的高足川大佛教考古教授常青的中国佛教石窟造像艺术研究精华.epub"
- "updateDate" => 2025-02-02 00:33:33 +0000
- }
- 635 => {
- "artistName" => "【美】阿尔伯特·温格"
- "BKAllocatedSize" => 2453504
- "BKBookType" => "epub"
- "BKDisplayName" => "资本之后的世界"
- "BKGeneratedItemId" => "28AEC4773488ED3AF5957D6E97A72626"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 774422601
- "book-info" => {
- "package-file-hash" => "28AEC4773488ED3AF5957D6E97A72626"
- }
- "bookDescription" => "本书是一本AI时代的预言书,颠覆性提出人类正在经历第三次文明级跃迁。作为一名风险投资人,阿尔伯特·温格以罕见的前瞻性提出,鉴于数字革命的爆发,尤其是AI能力的快速增强,我们正面临着人类历史上的又一次文明级的跃迁,从工业时代过渡到知识时代。而这场转型的核心矛盾将从“资本稀缺”转向“注意力稀缺”。
-
-“工业时代的机器需要石油,(而)知识时代的‘机器’(人类大脑)需要注意力。”
-
-本书也是一本写给“清醒者”的生存指南,一份关于人类如何免于精神贫困的宣言。阿尔伯特·温格告诉我们,我们不是数字时代的原住民,而是首批面对“注意力生态崩溃”的探险者。当前的我们面临着两大问题,一是在恶化的工作循环中投入太多的注意力,因为屈服于欲望而不断进行炫耀性消费;二是大脱钩问题,国家的GDP持续增长,个人收入却停滞不前。
-
-为此,温格创造性提出他的破解之法:扩展三大自由度——经济自由、信息自由以及心理自由;激活知识循环的无限潜力。"
- "isPreview" => 0
- "itemName" => "资本之后的世界"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/资本之后的世界.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/资本之后的世界.epub"
- }
- 636 => {
- "artistName" => "乐天无极"
- "BKAllocatedSize" => 6434816
- "BKBookType" => "epub"
- "BKDisplayName" => "宗教統治基督宗教如何塑造世界一部橫跨兩千五百年的人類史上下冊不分售"
- "BKGeneratedItemId" => "87D9A51E0890B28EE7FAC3D3671D4E74"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 774422602
- "book-info" => {
- "package-file-hash" => "87D9A51E0890B28EE7FAC3D3671D4E74"
- }
- "isPreview" => 0
- "itemName" => "宗教統治:基督宗教如何塑造世界,一部橫跨兩千五百年的人類史(上下冊不分售)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/宗教統治基督宗教如何塑造世界一部橫跨兩千五百年的人類史上下冊不分售.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/宗教統治基督宗教如何塑造世界一部橫跨兩千五百年的人類史上下冊不分售.epub"
- }
- 637 => {
- "artistName" => "张笑宇"
- "BKAllocatedSize" => 16973824
- "BKBookType" => "epub"
- "BKDisplayName" => "世界之中"
- "BKGeneratedItemId" => "1E228904814D8EFCDD58526B0A086010"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 775042275
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "1E228904814D8EFCDD58526B0A086010"
- }
- "bookDescription" => "对我们每个人来说,“中国”这个词可以无比熟悉,也可以感到陌生。因为中国的幅员太辽阔,历史太悠久,多元一体的丰富性太五彩缤纷,而每一次盛世和每一次剧变中,中原、边疆乃至欧亚大陆的古老民族都曾扮演过关键性角色。
-
-你能否想象,“中国”这一名字的由来,乃是因为这片土地曾是科技最先进的地方?你能否想象,秦制或许与波斯和匈奴都有巨大关联?你能否想象,丝绸之路的主角之一可能是默默无闻的粟特人?你能否想象,华人也曾在南洋建立起共和国?
-
-从中国的远古时代到清末,本书摘取了十个鲜为人知又影响深远的历史片段,希望向读者呈现这样一个事实:中国是被世界多元力量共同塑造之中国。"
- "isPreview" => 0
- "itemName" => "世界之中"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/世界之中.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/世界之中.epub"
- "updateDate" => 2025-07-24 09:31:15 +0000
- }
- 638 => {
- "artistName" => "蒯乐昊"
- "BKAllocatedSize" => 18280448
- "BKBookType" => "epub"
- "BKDisplayName" => "云冈:人和石窟的1500年"
- "BKGeneratedItemId" => "5FB12B4279AE1AF191914326B65DCC7C"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 775043422
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "5FB12B4279AE1AF191914326B65DCC7C"
- }
- "bookDescription" => "北魏时期,在文成帝的支持下,昙曜主持云冈石窟的开凿建设。孝文帝、冯太后时期,石窟建设愈发兴盛,北魏后期则逐渐衰微,云冈石窟历经多次荒废与重建,甚至一度经受着严峻的盗凿考验,直到近代被考古学家再次关注,才遏止了更多的国宝流浪海外。
-
-本书爬梳了云冈石窟的历史沿革,亦讲述了无数云冈人的故事:一举夺回学术主动权的中国云冈学奠基人宿白先生,勇敢开辟新赛道的云冈守护者、云冈研究院院长杭侃,用古建筑学思路还原石窟工程营造的新一代学者彭明浩,保护石窟的文物医生们,努力留下石窟今日样貌的数字化采集工作者们……
-
-人是万物的尺度,亦是文明的核心,云冈不但向世人展示跨越千年的石窟艺术之美,也彰显了以短暂生命去连接永恒的人性之美。"
- "isPreview" => 0
- "itemName" => "云冈:人和石窟的1500年"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/云冈人和石窟的1500年.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/云冈:人和石窟的1500年.epub"
- "updateDate" => 2025-07-24 09:50:22 +0000
- }
- 639 => {
- "artistName" => "【美】史蒂文·哈恩"
- "BKAllocatedSize" => 2252800
- "BKBookType" => "epub"
- "BKDisplayName" => "自由之困"
- "BKGeneratedItemId" => "3BD01B73A281FB545A04D4C5C39EDF93"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 775043802
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "3BD01B73A281FB545A04D4C5C39EDF93"
- }
- "bookDescription" => "当下,进入21世纪的第三个十年,自诩自由灯塔的美国仿佛深陷某种难言的困境:自由的口号仍在高唱,民主的仪式依旧庄严;然而,总统权力极速扩张、贸易保护愈演愈烈、多元文化遭到压制,民粹泛滥、民意撕裂、仇恨加剧、反智当道……越来越多的人开始质疑:美国,真的曾是一个自由主义的国度吗?
-
-本书中,作者史蒂文·哈恩告诉我们,非自由主义在美国从来不是异端,而是贯穿乃至塑造美国历史的一条幽暗脉络。
-
-从殖民地时期到《独立宣言》发表,买卖黑奴、驱逐原住民、剥削契约奴、压制不同信仰均属司空见惯,等级体系、剥削制和排他性是国家的一种制度性安排,使得解放与压迫始终并行不悖;从独立战争到重建时代,自由的旗帜虽然高举,但为了维系联邦,种族等级仍得以容忍并延续,自由在联邦政府的妥协与南方白人至上主义的暴力下名存实亡;
-
-从进步时代到二战之后,政治、经济、社会各领域的改革和进步看似如火如荼,但出台排华法案、暴力镇压工会乃至麦卡锡时代的政治清洗,无不展示着国家机器对多元与异见的压制;即便是在民权运动取得史无前例的成果之后,种族主义仍以新的面貌得以延续,旧有的不平等并未得到根本性消除,直至“黑人的命也是命”运动爆发。
-
-本书不单纯是一部重述的历史,而是一次关乎反思的召唤。哈恩用厚重的历史与深情的笔触提醒读者:自由与非自由的纠缠与角力才是美国250年历史的主线。"
- "isPreview" => 0
- "itemName" => "自由之困:非自由主义如何塑造美国历史"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/自由之困非自由主义如何塑造美国历史.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/自由之困.epub"
- "updateDate" => 2025-07-24 09:56:42 +0000
- }
- 640 => {
- "artistName" => "刘瑜"
- "BKAllocatedSize" => 4833280
- "BKBookType" => "epub"
- "BKDisplayName" => "可能性的艺术"
- "BKGeneratedItemId" => "EA04133EA4200588F61042FBEC89139D"
- "BKGenerationCount" => 3
- "BKInsertionDate" => 775057199
- "BKPercentComplete" => 1
- "book-info" => {
- "publication-version" => 0
- }
- "isPreview" => 0
- "itemName" => "可能性的艺术"
- "pageCount" => 1
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/可能性的艺术比较政治学30讲学者刘瑜比较政治学新著跳出现象通过比较洞察政治突破认知偏见在浩瀚的可能性中理解我们自身 理想国出品 1.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/可能性的艺术:比较政治学30讲(学者刘瑜比较政治学新著,跳出现象,通过比较洞察政治,突破认知偏见,在浩瀚的可能性中理解我们自身 理想国... (Z-Library).epub"
- "updateDate" => 2025-07-24 13:40:37 +0000
- }
- 641 => {
- "artistName" => "刘瑜"
- "BKAllocatedSize" => 3846144
- "BKBookType" => "epub"
- "BKDisplayName" => "民主的细节:美国当代政治观察随笔 (刘瑜) (Z-Library)"
- "BKGeneratedItemId" => "3558E1009CF1429B4C6D42CFC26C332A"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 775057504
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "3558E1009CF1429B4C6D42CFC26C332A"
- }
- "isPreview" => 0
- "itemName" => "民主的细节:当代美国政治观察随笔"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/民主的细节当代美国政治观察随笔.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/民主的细节:美国当代政治观察随笔 (刘瑜) (Z-Library).epub"
- "updateDate" => 2025-07-24 13:45:04 +0000
- }
- 642 => {
- "artistName" => "秦晖"
- "BKAllocatedSize" => 19652608
- "BKBookType" => "epub"
- "BKDisplayName" => "秦晖著作集(套装共6册) (秦晖) (Z-Library)"
- "BKGeneratedItemId" => "93E581D1104A5EEAD6DA212261DCAAF4"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 775057559
- "BKPercentComplete" => 1
- "book-info" => {
- "package-file-hash" => "93E581D1104A5EEAD6DA212261DCAAF4"
- }
- "isPreview" => 0
- "itemName" => "秦晖著作集(套装共6册)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/秦晖著作集套装共6册.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/秦晖著作集(套装共6册) (秦晖) (Z-Library).epub"
- "updateDate" => 2025-07-24 13:45:59 +0000
- }
- 643 => {
- "artistName" => "贾雷德·戴蒙德"
- "BKAllocatedSize" => 7081984
- "BKBookType" => "epub"
- "BKDisplayName" => "剧变(第二版)"
- "BKGeneratedItemId" => "B3572585972ABDAE435852ECFD40413A"
- "BKGenerationCount" => 2
- "BKInsertionDate" => 775057691
- "BKPercentComplete" => 1
- "book-info" => {
- "publication-version" => 0
- }
- "isPreview" => 0
- "itemName" => "剧变(第二版)"
- "pageCount" => 1
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/剧变第二版普利策奖得主枪炮病钢铁作者新书探讨危机应对的解决方案帮助人类在危机后实现剧变和涅槃重生刘瑜比尔盖茨尤瓦尔史蒂芬平克鼎力推荐.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/剧变:人类社会与国家危机的转折点 = Upheaval Turning Points for Nations in Crisis ([美] 贾雷德 · 戴蒙德 (Jared Diamond) 著 曾楚媛 译) (Z-Library).epub"
- "updateDate" => 2025-07-24 13:48:11 +0000
- }
- 644 => {
- "artistName" => "费孝通"
- "BKAllocatedSize" => 22437888
- "BKBookType" => "epub"
- "BKDisplayName" => "江村经济 (费孝通) (Z-Library)"
- "BKGeneratedItemId" => "733DE8CB9C44F60585D16C5F072B03CB"
- "BKGenerationCount" => 2
- "BKInsertionDate" => 775357258
- "BKPercentComplete" => 1
- "book-info" => {
- "mime-type" => "application/epub+zip"
- "package-file-hash" => "733DE8CB9C44F60585D16C5F072B03CB"
- "publisher-unique-id" => "urn:uuid:a3d0f059-41fa-43a9-a652-4b6418465671"
- "unique-id" => -6934982037978249934
- "update-level" => 2
- }
- "isPreview" => 0
- "itemName" => "江村经济"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/江村经济.epub"
- "sourcePath" => "/Users/gavin/Library/Containers/com.apple.iBooksX/Data/Library/Caches/Inbox/江村经济 (费孝通) (Z-Library).epub"
- "updateDate" => 2025-07-28 01:00:58 +0000
- }
- 645 => {
- "artistName" => "haifeng0130@126.com"
- "BKAllocatedSize" => 3137536
- "BKBookType" => "epub"
- "BKDisplayName" => "楞伽经讲记"
- "BKGeneratedItemId" => "AC2A5B86271F0B403ED5237D260C90DF"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 775388115
- "book-info" => {
- "package-file-hash" => "AC2A5B86271F0B403ED5237D260C90DF"
- }
- "isPreview" => 0
- "itemName" => "楞伽经讲记"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/楞伽经讲记.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/楞伽经讲记.epub"
- }
- 646 => {
- "artistName" => "Unknown"
- "BKAllocatedSize" => 585728
- "BKBookType" => "epub"
- "BKDisplayName" => "光耀生命-艾扬格"
- "BKGeneratedItemId" => "846EDA793E1F4238A0FB645367ED2E39"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 775528368
- "book-info" => {
- "package-file-hash" => "846EDA793E1F4238A0FB645367ED2E39"
- }
- "isPreview" => 0
- "itemName" => "光耀生命-艾扬格"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/光耀生命-艾扬格.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/光耀生命-艾扬格.epub"
- }
- 647 => {
- "artistName" => "(美)德肖维茨"
- "BKAllocatedSize" => 1413120
- "BKBookType" => "epub"
- "BKDisplayName" => "最好的辩护"
- "BKGeneratedItemId" => "768E1CD0B3086166F791683869B12425"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 775546769
- "book-info" => {
- "package-file-hash" => "768E1CD0B3086166F791683869B12425"
- }
- "genre" => "法律"
- "isPreview" => 0
- "itemName" => "最好的辩护"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/最好的辩护.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/最好的辩护.epub"
- }
- 648 => {
- "artistName" => "王珏"
- "BKAllocatedSize" => 1110016
- "BKBookType" => "epub"
- "BKDisplayName" => "明夷待访录破邪论精--中华经典名著全本全注全译 中华书局"
- "BKGeneratedItemId" => "474FB2345D27062AE3A4DF339A30498E"
- "BKGenerationCount" => 1
- "BKInsertionDate" => 776653076
- "book-info" => {
- "package-file-hash" => "474FB2345D27062AE3A4DF339A30498E"
- }
- "isPreview" => 0
- "itemName" => "明夷待访录·破邪论(精)--中华经典名著全本全注全译 (中华书局)"
- "path" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/明夷待访录破邪论精--中华经典名著全本全注全译 中华书局.epub"
- "sourcePath" => "/Users/gavin/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents/明夷待访录破邪论精--中华经典名著全本全注全译 中华书局.epub"
- }
- ]
- "CFBundleVersion" => "2247"
- "Redacted" => [
- ]
- "Updates" => [
- ]
- "Version" => 3
-}