-
-
Save ruevaughn/71c594c952da4f2a37334f22c4b69108 to your computer and use it in GitHub Desktop.
Fine tuning OpenAI API on my readwise.io highlights
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"nbformat": 4, | |
"nbformat_minor": 0, | |
"metadata": { | |
"colab": { | |
"name": "readwise_openai.ipynb", | |
"provenance": [], | |
"collapsed_sections": [], | |
"authorship_tag": "ABX9TyMxZ5M5iYMyesegNedQWpJe", | |
"include_colab_link": true | |
}, | |
"kernelspec": { | |
"name": "python3", | |
"display_name": "Python 3" | |
}, | |
"language_info": { | |
"name": "python" | |
} | |
}, | |
"cells": [ | |
{ | |
"cell_type": "markdown", | |
"metadata": { | |
"id": "view-in-github", | |
"colab_type": "text" | |
}, | |
"source": [ | |
"<a href=\"https://colab.research.google.com/gist/louis030195/f97c4cb95c344d7f7caa8d12fec64f7b/readwise_openai.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"metadata": { | |
"id": "Ci1FXx2CwjH8" | |
}, | |
"source": [ | |
"!pip install openai -q" | |
], | |
"execution_count": null, | |
"outputs": [] | |
}, | |
{ | |
"cell_type": "code", | |
"metadata": { | |
"id": "GBEHZctosUDc" | |
}, | |
"source": [ | |
"from pathlib import Path\n", | |
"from pprint import pprint\n", | |
"import json\n", | |
"import openai\n", | |
"import pandas as pd\n", | |
"import datetime\n", | |
"import requests\n", | |
"READWISE_TOKEN=\"grab me here https://readwise.io/access_token\"\n", | |
"openai.api_key=\"grab me here https://beta.openai.com/account/api-keys\"" | |
], | |
"execution_count": 33, | |
"outputs": [] | |
}, | |
{ | |
"cell_type": "code", | |
"metadata": { | |
"colab": { | |
"base_uri": "https://localhost:8080/" | |
}, | |
"id": "xY9-GIkdsYmH", | |
"outputId": "ae322d9b-e1b0-4a71-954c-4e1ab168f5a2" | |
}, | |
"source": [ | |
"def get_all_highlights():\n", | |
" highlights = []\n", | |
" page = 1\n", | |
" url = f\"https://readwise.io/api/v2/highlights/\"\n", | |
" while url:\n", | |
" response = requests.get(\n", | |
" url=url,\n", | |
" headers={\"Authorization\": f\"Token {READWISE_TOKEN}\"},\n", | |
" ).json()\n", | |
" if \"results\" in response:\n", | |
" highlights = highlights + response[\"results\"]\n", | |
"\n", | |
" url = response[\"next\"] if \"next\" in response else None\n", | |
" page += 1\n", | |
" return highlights\n", | |
"highlights = get_all_highlights()\n", | |
"highlights" | |
], | |
"execution_count": 28, | |
"outputs": [ | |
{ | |
"output_type": "execute_result", | |
"data": { | |
"text/plain": [ | |
"[{'book_id': 9291908,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 209895267,\n", | |
" 'location': 19,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Good luck can be enticed by accepting opportunity.',\n", | |
" 'updated': '2021-08-07T04:20:08.686680Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9291908,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 209895266,\n", | |
" 'location': 18,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': '\"Enjoy life while you are here. Do not overstrain or try to save too much. If one-tenth of all you earn is as much as you can comfortably keep, be content to keep this portion. Live otherwise according to your income and let not yourself get niggardly and afraid to spend. Life is good and life is rich with things worthwhile and things to enjoy.\"',\n", | |
" 'updated': '2021-08-07T04:20:08.686636Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9291908,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 209895265,\n", | |
" 'location': 17,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The Fourth Law of Gold Gold slippeth away from the man who invests it in businesses or purposes with which he is not familiar or which are not approved by those skilled in its keep.',\n", | |
" 'updated': '2021-08-07T04:20:08.686593Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9291908,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 209895264,\n", | |
" 'location': 16,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'A PART OF ALL YOU EARN IS YOURS TO KEEP.',\n", | |
" 'updated': '2021-08-07T04:20:08.686550Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9291908,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 209895263,\n", | |
" 'location': 15,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'When I set a task for myself, I complete it. Therefore, I am careful not to start difficult and impractical tasks, because I love leisure.\"',\n", | |
" 'updated': '2021-08-07T04:20:08.686507Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9291908,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 209895262,\n", | |
" 'location': 14,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': '\"I tell you, my students, a man\\'s wealth is not in the coins he carries in his purse; it is the income he buildeth, the golden stream that continually floweth into his purse and keepeth it always bulging. That is what every man desireth. That is what thou, each one of thee desireth; an income that continueth to come whether thou work or travel.',\n", | |
" 'updated': '2021-08-07T04:20:08.686462Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9291908,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 209895261,\n", | |
" 'location': 13,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': '\"Thus the seventh and last remedy for a lean purse is to cultivate thy own powers, to study and become wiser, to become more skillful, to so act as to respect thyself.',\n", | |
" 'updated': '2021-08-07T04:20:08.686419Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9291908,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 209895260,\n", | |
" 'location': 12,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': '\"This, then, is the second cure for a lean purse. Budget thy expenses that thou mayest have coins to pay for thy necessities, to pay for thy enjoyments and to gratify thy worthwhile desires without spending more than nine-tenths of thy earnings.\"',\n", | |
" 'updated': '2021-08-07T04:20:08.686369Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9291908,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 209895259,\n", | |
" 'location': 11,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Gold slippeth away from the man who invests it in businesses or purposes with which he is not familiar or which are not approved by those skilled in its keep.',\n", | |
" 'updated': '2021-08-07T04:20:08.686324Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9291908,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 209895258,\n", | |
" 'location': 10,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Guard thy treasure from loss by investing only where thy principal is safe, where it may be reclaimed if desirable, and where thou will not fail to collect a fair rental. Consult with wise men. Secure the advice of those experienced in the profitable handling of gold. Let their wisdom protect thy treasure from unsafe investments.\"',\n", | |
" 'updated': '2021-08-07T04:20:08.686242Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7231875,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 208499326,\n", | |
" 'location': 19,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'To The Entrepreneur, most people are problems that get in the way of the dream.',\n", | |
" 'updated': '2021-08-03T04:34:33.913779Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7231875,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 208499325,\n", | |
" 'location': 18,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'A Mature business knows how it got to be where it is, and what it must do to get where it wants to go.',\n", | |
" 'updated': '2021-08-03T04:34:33.913737Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7231875,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 208499324,\n", | |
" 'location': 17,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'To The Entrepreneur, however, the customer is always an opportunity. Because The Entrepreneur knows that within the customer is a continuing parade of changing wants begging to be satisfied. All The Entrepreneur has to do is find out what those wants are and what they will be in the future.',\n", | |
" 'updated': '2021-08-03T04:34:33.913695Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7231875,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 208499323,\n", | |
" 'location': 16,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': '“The basic difference between an ordinary man and a warrior is that a warrior takes everything as a challenge while an ordinary man takes everything either as a blessing or a curse,”',\n", | |
" 'updated': '2021-08-03T04:34:33.913652Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7231875,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 208499322,\n", | |
" 'location': 15,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Where the business is the product, how the business interacts with the consumer is more important than what it sells.',\n", | |
" 'updated': '2021-08-03T04:34:33.913610Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7231875,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 208499321,\n", | |
" 'location': 14,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'It is the tension between The Entrepreneur’s vision and The Manager’s pragmatism that creates the synthesis from which all great works are born.',\n", | |
" 'updated': '2021-08-03T04:34:33.913567Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7231875,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 208499320,\n", | |
" 'location': 13,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The Technician’s boundary is determined by how much he can do himself. The Manager’s is defined by how many technicians he can supervise effectively or how many subordinate managers he can organize into a productive effort. The Entrepreneur’s boundary is a function of how many managers he can engage in pursuit of his vision.',\n", | |
" 'updated': '2021-08-03T04:34:33.913520Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7231875,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 208499319,\n", | |
" 'location': 12,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Once you recognize that the purpose of your life is not to serve your business, but that the primary purpose of your business is to serve your life, you can then go to work on your business, rather than in it, with a full understanding of why it is absolutely necessary for you to do so.',\n", | |
" 'updated': '2021-08-03T04:34:33.913477Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7231875,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 208499318,\n", | |
" 'location': 11,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The model will provide consistent value to your customers, employees, suppliers, and lenders, beyond what they expect. The model will be operated by people with the lowest possible level of skill. The model will stand out as a place of impeccable order. All work in the model will be documented in Operations Manuals. The model will provide a uniformly predictable service to the customer. The model will utilize a uniform color, dress, and facilities code.',\n", | |
" 'updated': '2021-08-03T04:34:33.913431Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7231875,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 208499317,\n", | |
" 'location': 10,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The problem is that everybody who goes into business is actually three-people-in-one: The Entrepreneur, The Manager, and The Technician.',\n", | |
" 'updated': '2021-08-03T04:34:33.913335Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 10223764,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 208031339,\n", | |
" 'location': 2,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Approve not of him that commends all you say.',\n", | |
" 'updated': '2021-08-02T02:00:54.396857Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 10223764,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 208031338,\n", | |
" 'location': 1,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Anger is never without a reason, but seldom with a good one.',\n", | |
" 'updated': '2021-08-02T02:00:54.396812Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 10223764,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 208031337,\n", | |
" 'location': 0,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'An honest man will receive neither money nor praise, that is not his due.',\n", | |
" 'updated': '2021-08-02T02:00:54.396740Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 10127183,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 205499482,\n", | |
" 'location': 9,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 47503653, 'name': 'discard'}],\n", | |
" 'text': 'It is easier to suppress the first desire, than to satisfy all that follow it.',\n", | |
" 'updated': '2021-07-25T17:53:37.763039Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 10127183,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 205499481,\n", | |
" 'location': 8,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Think what you do when you run in debt: you give another power over your liberty.',\n", | |
" 'updated': '2021-07-25T17:53:37.762969Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 10127183,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 205499480,\n", | |
" 'location': 7,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 47905164, 'name': 'philosophy'}],\n", | |
" 'text': 'If dost thou love life, then Do not squander time, for that is the stuff life is made of, as Poor Richard says.',\n", | |
" 'updated': '2021-07-25T17:53:37.762899Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 10127183,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 205499479,\n", | |
" 'location': 6,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Diligence is the mother of good luck, and God gives all things to industry.',\n", | |
" 'updated': '2021-07-25T17:53:37.762829Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 10127183,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 205499478,\n", | |
" 'location': 5,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'If you would be wealthy, think of saving as well as of getting. The Indies have not made Spain rich, because her outgoes are greater than her incomes.',\n", | |
" 'updated': '2021-07-25T17:53:37.762758Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 10127183,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 205499477,\n", | |
" 'location': 4,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 47931743, 'name': 'philosophy'},\n", | |
" {'id': 47931742, 'name': 'favorite'}],\n", | |
" 'text': 'A little neglect may breed great mischief; For want of a nail the shoe was lost; for want of a shoe the horse was lost; and for want of a horse the rider was lost, being overtaken and slain by the enemy; all for want of a little care about a horse-shoe nail.',\n", | |
" 'updated': '2021-07-25T17:53:37.762689Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 10127183,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 205499476,\n", | |
" 'location': 3,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Remember that time is money. He that can earn ten shillings a day by his labor, and sits idle one half of that day, though he spends but sixpence during his diversion ought not to reckon that the only expense; he has really thrown away five shillings besides.',\n", | |
" 'updated': '2021-07-25T17:53:37.762618Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 10127183,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 205499475,\n", | |
" 'location': 2,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Sloth makes all things difficult, but industry makes all things easy; and He that riseth late must trot all day, and shall scarce overtake his business at night; while Laziness travels so slowly, that Poverty soon overtakes him.',\n", | |
" 'updated': '2021-07-25T17:53:37.762548Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 10127183,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 205499474,\n", | |
" 'location': 1,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'In short, the way to wealth, if you desire it, is as plain as the way to market. It depends chiefly on two words: industry and frugality. Waste neither time nor money, but make the best use of both. He that gets all he can honestly, and saves all he can, will certainly become rich.',\n", | |
" 'updated': '2021-07-25T17:53:37.762478Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 10127183,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 205499473,\n", | |
" 'location': 0,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'I have always thought that one man of tolerable abilities may work great changes, and accomplish great affairs among mankind, if he forms a good plan, and then makes the execution of that plan his sole study and business.',\n", | |
" 'updated': '2021-07-25T17:53:37.762399Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530086,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 204731846,\n", | |
" 'location': 49,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'It is the consistency of the information that matters for a good story, not its completeness. Indeed, you will often find that knowing little makes it easier to fit everything you know into a coherent pattern.',\n", | |
" 'updated': '2021-07-23T04:18:54.338370Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530086,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 204731845,\n", | |
" 'location': 48,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Because we tend to be nice to other people when they please us and nasty when they do not, we are statistically punished for being nice and rewarded for being nasty.',\n", | |
" 'updated': '2021-07-23T04:18:54.338327Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530086,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 204731844,\n", | |
" 'location': 47,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Our comforting conviction that the world makes sense rests on a secure foundation: our almost unlimited ability to ignore our ignorance.',\n", | |
" 'updated': '2021-07-23T04:18:54.338285Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530086,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 204731843,\n", | |
" 'location': 46,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'My advice to students when I taught negotiations was that if you think the other side has made an outrageous proposal, you should not come back with an equally outrageous counteroffer, creating a gap that will be difficult to bridge in further negotiations. Instead you should make a scene, storm out or threaten to do so, and make it clear—to yourself as well as to the other side—that you will not continue the negotiation with that number on the table.',\n", | |
" 'updated': '2021-07-23T04:18:54.338242Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530086,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 204731842,\n", | |
" 'location': 45,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'This is a trap for forecasters and their clients: adding detail to scenarios makes them more persuasive, but less likely to come true.',\n", | |
" 'updated': '2021-07-23T04:18:54.338199Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530086,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 204731841,\n", | |
" 'location': 44,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The often-used phrase “pay attention” is apt: you dispose of a limited budget of attention that you can allocate to activities, and if you try to go beyond your budget, you will fail.',\n", | |
" 'updated': '2021-07-23T04:18:54.338156Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530086,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 204731840,\n", | |
" 'location': 43,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Odd as it may seem, I am my remembering self, and the experiencing self, who does my living, is like a stranger to me.',\n", | |
" 'updated': '2021-07-23T04:18:54.338113Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530086,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 204731839,\n", | |
" 'location': 42,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 47069052, 'name': 'favorite'},\n", | |
" {'id': 47068998, 'name': 'rationality'}],\n", | |
" 'text': 'We are evidently ready from birth to have impressions of causality, which do not depend on reasoning about patterns of causation. They are products of System 1.',\n", | |
" 'updated': '2021-07-23T04:18:54.338056Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530086,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 204731838,\n", | |
" 'location': 41,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'They apparently find cognitive effort at least mildly unpleasant and avoid it as much as possible.',\n", | |
" 'updated': '2021-07-23T04:18:54.338012Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530086,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 204731837,\n", | |
" 'location': 40,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The availability heuristic, like other heuristics of judgment, substitutes one question for another: you wish to estimate the size of a category or the frequency of an event, but you report an impression of the ease with which instances come to mind.',\n", | |
" 'updated': '2021-07-23T04:18:54.337936Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 202995716,\n", | |
" 'location': 50,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Likewise, sexual organisms in saturated environments, rather than churning out more of the same offspring, would be better off varying them a bit in the hope of producing offspring that could avoid the competition by adapting to a new niche.',\n", | |
" 'updated': '2021-07-18T04:28:44.401978Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 202995715,\n", | |
" 'location': 49,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'It is not how often a male bird copulates that determines the size of his testicles but how many other males he competes with.',\n", | |
" 'updated': '2021-07-18T04:28:44.401917Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 202995714,\n", | |
" 'location': 48,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 47225191, 'name': 'biology'}],\n", | |
" 'text': 'Cuckoldry is an asymmetrical fate. A woman loses no genetic investment if her husband is unfaithful, but a man risks unwittingly raising a bastard.',\n", | |
" 'updated': '2021-07-18T04:28:44.401875Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 202995713,\n", | |
" 'location': 47,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 46714933, 'name': 'biology'}],\n", | |
" 'text': 'Everything can be inherited except sterility. None of your direct ancestors died childless.',\n", | |
" 'updated': '2021-07-18T04:28:44.401833Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 202995712,\n", | |
" 'location': 46,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'One of the peculiar features of history is that time always erodes advantage.',\n", | |
" 'updated': '2021-07-18T04:28:44.401791Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 202995711,\n", | |
" 'location': 45,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Robert Trivers has argued that to deceive others well, an animal must deceive itself, and that self-deception’s hallmark is a biased system of transfer from the conscious to the unconscious mind. Deception is therefore the reason for the invention of the subconscious.',\n", | |
" 'updated': '2021-07-18T04:28:44.401744Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 202995710,\n", | |
" 'location': 44,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Evolution is something that happens to organisms. It is a directionless process that sometimes makes an animal’s descendants more complicated, sometimes simpler, and sometimes changes them not at all. We are so steeped in notions of progress and self-improvement that we find it strangely hard to accept this.',\n", | |
" 'updated': '2021-07-18T04:28:44.401701Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 202995709,\n", | |
" 'location': 42,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 46935519, 'name': 'biology'}],\n", | |
" 'text': 'The genes cannot be denied. And yet, of course, there are no genes for liking guns or dolls, there are only genes for channeling male instincts into imitating males and female instincts into imitating female behavior. There are natures that respond to some nurtures and not others.',\n", | |
" 'updated': '2021-07-18T04:28:44.401658Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 202995708,\n", | |
" 'location': 41,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Disease might almost put a sort of limit on longevity: There is little point in living much longer than it takes your parasites to adapt to you.',\n", | |
" 'updated': '2021-07-18T04:28:44.401604Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 202995707,\n", | |
" 'location': 40,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 46711086, 'name': 'biology'}],\n", | |
" 'text': 'Gender, then, was invented as a means of resolving the conflict between the cytoplasmic genes of the two parents. Rather than let such conflict destroy the offspring, a sensible agreement was reached: All the cytoplasmic genes would come from the mother, none from the father. Since this made the father’s gametes smaller, they could specialize in being more numerous and mobile, the better to find eggs. Gender is a bureaucratic solution to an antisocial habit.',\n", | |
" 'updated': '2021-07-18T04:28:44.401530Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9835662,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 198126504,\n", | |
" 'location': 9,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 46101456, 'name': 'discard'}],\n", | |
" 'text': 'The passion of surprise and wonder, arising from miracles, being an agreeable emotion, gives a sensible tendency towards the belief of those events, from which it is derived. And this goes so far, that even those who cannot enjoy this pleasure immediately, nor can believe those miraculous events, of which they are informed, yet love to partake of the satisfaction at second-hand or by rebound, and place a pride and delight in exciting the admiration of others.',\n", | |
" 'updated': '2021-07-05T03:54:59.979867Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9835662,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 198126503,\n", | |
" 'location': 8,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'To me, there appear to be only three principles of connexion among ideas, namely, Resemblance, Contiguity in time or place, and Cause or Effect.',\n", | |
" 'updated': '2021-07-05T03:54:59.979824Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9835662,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 198126502,\n", | |
" 'location': 7,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'It forms a strong presumption against all supernatural and miraculous relations, that they are observed chiefly to abound among ignorant and barbarous nations; or if a civilized people has ever given admission to any of them, that people will be found to have received them from ignorant and barbarous ancestors, who transmitted them with that inviolable sanction and authority, which always attend received opinions.',\n", | |
" 'updated': '2021-07-05T03:54:59.979775Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9835662,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 198126501,\n", | |
" 'location': 6,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'First, when we analyse our thoughts or ideas, however compounded or sublime, we always find, that they resolve themselves into such simple ideas as were copied from a precedent feeling or sentiment.',\n", | |
" 'updated': '2021-07-05T03:54:59.979687Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9835662,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 198126500,\n", | |
" 'location': 5,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'From the first appearance of an object, we never can conjecture what effect will result from it. But were the power or energy of any cause discoverable by the mind, we could foresee the effect, even without experience; and might, at first, pronounce with certainty concerning it, by the mere dint of thought and reasoning.',\n", | |
" 'updated': '2021-07-05T03:54:59.979633Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9835662,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 198126499,\n", | |
" 'location': 4,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'ALL the objects of human reason or enquiry may naturally be divided into two kinds, to wit, Relations of Ideas, and Matters of Fact. Of the first kind are the sciences of Geometry, Algebra, and Arithmetic; and in short, every affirmation, which is either intuitively or demonstratively certain.',\n", | |
" 'updated': '2021-07-05T03:54:59.979569Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9835662,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 198126498,\n", | |
" 'location': 3,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Abstruse thought and profound researches I prohibit, and will severely punish, by the pensive melancholy which they introduce, by the endless uncertainty in which they involve you, and by the cold reception which your pretended discoveries shall meet with, when communicated. Be a philosopher; but, amidst all your philosophy, be still a man.',\n", | |
" 'updated': '2021-07-05T03:54:59.979512Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9835662,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 198126497,\n", | |
" 'location': 2,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Such events, as bear little analogy to the common course of nature, are also readily confessed to be known only by experience; nor does any man imagine that the explosion of gunpowder, or the attraction of a loadstone, could ever be discovered by arguments a priori.',\n", | |
" 'updated': '2021-07-05T03:54:59.979442Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9835662,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 198126496,\n", | |
" 'location': 1,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The only method of freeing learning, at once, from these abstruse questions, is to enquire seriously into the nature of human understanding, and show, from an exact analysis of its powers and capacity, that it is by no means fitted for such remote and abstruse subjects.',\n", | |
" 'updated': '2021-07-05T03:54:59.979386Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9835662,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 198126495,\n", | |
" 'location': 0,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'No object ever discovers, by the qualities which appear to the senses, either the causes which produced it, or the effects which will arise from it; nor can our reason, unassisted by experience, ever draw any inference concerning real existence and matter of fact.',\n", | |
" 'updated': '2021-07-05T03:54:59.979296Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530072,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 196386042,\n", | |
" 'location': 59,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Mastery is the process of narrowing your focus to a tiny element of success, repeating it until you have internalized the skill, and then using this new habit as the foundation to advance to the next frontier of your development.',\n", | |
" 'updated': '2021-07-01T04:23:36.336406Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530072,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 196386041,\n", | |
" 'location': 58,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Ultimately, your habits matter because they help you become the type of person you wish to be. They are the channel through which you develop your deepest beliefs about yourself. Quite literally, you become your habits.',\n", | |
" 'updated': '2021-07-01T04:23:36.336289Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530072,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 196386040,\n", | |
" 'location': 57,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Chapter Summary The 3rd Law of Behavior Change is make it easy. The most effective form of learning is practice, not planning. Focus on taking action, not being in motion. Habit formation is the process by which a behavior becomes progressively more automatic through repetition. The amount of time you have been performing a habit is not as important as the number of times you have performed it.',\n", | |
" 'updated': '2021-07-01T04:23:36.333411Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530072,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 196386039,\n", | |
" 'location': 56,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 47225116, 'name': 'discard'}],\n", | |
" 'text': 'The greatest threat to success is not failure but boredom.',\n", | |
" 'updated': '2021-07-01T04:23:36.333120Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530072,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 196386038,\n", | |
" 'location': 55,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The Four Laws of Behavior Change are a simple set of rules we can use to build better habits. They are (1) make it obvious, (2) make it attractive, (3) make it easy, and (4) make it satisfying.',\n", | |
" 'updated': '2021-07-01T04:23:36.333041Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530072,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 196386037,\n", | |
" 'location': 54,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'A habit is a behavior that has been repeated enough times to become automatic.',\n", | |
" 'updated': '2021-07-01T04:23:36.332960Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530072,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 196386036,\n", | |
" 'location': 53,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Your brain has far more neural circuitry allocated for wanting rewards than for liking them.',\n", | |
" 'updated': '2021-07-01T04:23:36.332880Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530072,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 196386035,\n", | |
" 'location': 52,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The more you ritualize the beginning of a process, the more likely it becomes that you can slip into the state of deep focus that is required to do great things.',\n", | |
" 'updated': '2021-07-01T04:23:36.332799Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530072,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 196386034,\n", | |
" 'location': 51,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'It is easy to get bogged down trying to find the optimal plan for change: the fastest way to lose weight, the best program to build muscle, the perfect idea for a side hustle. We are so focused on figuring out the best approach that we never get around to taking action. As Voltaire once wrote, “The best is the enemy of the good.”',\n", | |
" 'updated': '2021-07-01T04:23:36.332714Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530072,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 196386033,\n", | |
" 'location': 50,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Finally, the response delivers a reward. Rewards are the end goal of every habit. The cue is about noticing the reward. The craving is about wanting the reward. The response is about obtaining the reward. We chase rewards because they serve two purposes: (1) they satisfy us and (2) they teach us.',\n", | |
" 'updated': '2021-07-01T04:23:36.332585Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9735245,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 195497319,\n", | |
" 'location': 2,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The geometric language is after all only a language. Space is only a word that we have believed a thing.',\n", | |
" 'updated': '2021-06-28T20:37:18.402628Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9735245,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 195497318,\n", | |
" 'location': 1,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Both therefore make hypotheses, and this indeed is necessary, since no scientist has ever been able to get on without them. The essential thing is never to make them unconsciously.',\n", | |
" 'updated': '2021-06-28T20:37:18.402584Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9735245,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 195497317,\n", | |
" 'location': 0,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 47931817, 'name': 'knowledge'},\n", | |
" {'id': 47931815, 'name': 'sciences'},\n", | |
" {'id': 47931814, 'name': 'favorite'}],\n", | |
" 'text': 'But experience is not all, and the savant is not passive; he does not wait for the truth to come and find him, or for a chance meeting to bring him face to face with it. He must go to meet it, and it is for his thinking to reveal to him the way leading thither.',\n", | |
" 'updated': '2021-06-28T20:37:18.402505Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530084,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 192520324,\n", | |
" 'location': 50,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'All her slaves miss talking to their owner, getting gossip, sharing some food and drink with her, and taking scraps to the fields with them—the kind of thing that makes slaves happy.”',\n", | |
" 'updated': '2021-06-20T04:16:26.063314Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530084,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 192520323,\n", | |
" 'location': 49,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'They hold no councils, have no common laws, but live in caves on lofty mountaintops, and each makes laws for his own wife and children, without concern for what the others think.',\n", | |
" 'updated': '2021-06-20T04:16:26.063226Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530084,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 192520322,\n", | |
" 'location': 48,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': '‘Odysseus, you must not comfort me for death. I would prefer to be a workman, hired by a poor man on a peasant farm,490 than rule as king of all the dead.',\n", | |
" 'updated': '2021-06-20T04:16:26.063128Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530084,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 192520321,\n", | |
" 'location': 47,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Odysseus already had a plan. “Nanny, why do you mention them? No need.500 I will myself make my own observations of each of them. Be quiet now; entrust the future to the gods.”',\n", | |
" 'updated': '2021-06-20T04:16:26.063025Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530084,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 192520320,\n", | |
" 'location': 46,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'If you should hear that he is still alive and coming home, put up with this abuse for one more year. But if you hear that he is dead, go home, and build a tomb for him,290 and hold a lavish funeral to show the honor he deserves, and give your mother in marriage to a man.',\n", | |
" 'updated': '2021-06-20T04:16:26.062931Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530084,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 192520319,\n", | |
" 'location': 45,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The “Parry-Lord hypothesis” was that oral poetry, from every culture where it exists, has certain distinctive features, and that we can see these features in the Homeric poems—specifically, in the use of formulae, which enable the oral poet to compose at the speed of speech.',\n", | |
" 'updated': '2021-06-20T04:16:26.062832Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530084,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 192520318,\n", | |
" 'location': 44,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The shock of encountering an ancient author speaking in largely recognizable language can make him seem more strange, and newly strange. I would like to invite readers to experience a sense of connection to this ancient text, while also recognizing its vast distance from our own place and time. Homer is, and is not, our contemporary.',\n", | |
" 'updated': '2021-06-20T04:16:26.062634Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530084,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 192520317,\n", | |
" 'location': 43,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'I cried out, ‘Curse her! Zeus has always brought disaster to the house of Atreus through women. Many men were lost for Helen, and Clytemnestra formed this plot against you when you were far away.’',\n", | |
" 'updated': '2021-06-20T04:16:26.062461Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530084,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 192520316,\n", | |
" 'location': 42,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Writing must have played a central part in the process of composition, so it is very misleading to describe The Odyssey simply as an “oral” poem, as is far too often done. It is a written text based on an oral tradition, which is not at all the same as being an actual oral composition.',\n", | |
" 'updated': '2021-06-20T04:16:26.062287Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530084,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 192520315,\n", | |
" 'location': 41,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Soon Dawn appeared and touched the sky with roses.',\n", | |
" 'updated': '2021-06-20T04:16:26.062073Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 191603740,\n", | |
" 'location': 69,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The Academy, where Plato had taught, survived all other schools, and persisted, as an island of paganism, for two centuries after the conversion of the Roman Empire to Christianity. At last, in A.D. 529, it was closed by Justinian because of his religious bigotry, and the Dark Ages descended upon Europe.',\n", | |
" 'updated': '2021-06-17T04:22:19.196698Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 191603739,\n", | |
" 'location': 68,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 43249374, 'name': 'philosophy'}],\n", | |
" 'text': 'It has always been correct to praise Plato, but not to understand him. This is the common fate of great men. My object is the opposite. I wish to understand him, but to treat him with as little reverence as if he were a contemporary English or American advocate of totalitarianism.',\n", | |
" 'updated': '2021-06-17T04:22:19.196655Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 191603738,\n", | |
" 'location': 67,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 43249375, 'name': 'discard'}],\n", | |
" 'text': 'For Pythagoras, the “passionate sympathetic contemplation” was intellectual, and issued in mathematical knowledge. In this way, through Pythagoreanism, “theory” gradually acquired its modern meaning; but for all who were inspired by Pythagoras it retained an element of ecstatic revelation.',\n", | |
" 'updated': '2021-06-17T04:22:19.196612Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 191603737,\n", | |
" 'location': 66,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The strongest argument is that of the “third man”: if a man is a man because he resembles the ideal man, there must be a still more ideal man to whom both ordinary men and the ideal man are similar.',\n", | |
" 'updated': '2021-06-17T04:22:19.196560Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 191603736,\n", | |
" 'location': 65,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 43249358, 'name': 'discard'}],\n", | |
" 'text': 'This is an example of the evils of specialization: a man must not write on Plato unless he has spent so much of his youth on Greek as to have had no time for the things that Plato thought important.',\n", | |
" 'updated': '2021-06-17T04:22:19.195735Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 191603735,\n", | |
" 'location': 64,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 43454186, 'name': 'mathematics'},\n", | |
" {'id': 43454182, 'name': 'philosophy'}],\n", | |
" 'text': 'Personal religion is derived from ecstasy, theology from mathematics; and both are to be found in Pythagoras. Mathematics is, I believe, the chief source of the belief in eternal and exact truth, as well as in a super-sensible intelligible world.',\n", | |
" 'updated': '2021-06-17T04:22:19.195672Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 191603734,\n", | |
" 'location': 63,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 43454176, 'name': 'philosophy'}],\n", | |
" 'text': 'What these arguments prove—and I do not think the proof can be controverted—is that induction is an independent logical principle, incapable of being inferred either from experience or from other logical principles, and that without this principle science is impossible.',\n", | |
" 'updated': '2021-06-17T04:22:19.195629Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 191603733,\n", | |
" 'location': 62,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 43454166, 'name': 'philosophy'}],\n", | |
" 'text': 'Rousseau’s political theory is set forth in his Social Contract, published in 1762. This book is very different in character from most of his writing; it contains little sentimentality and much close intellectual reasoning. Its doctrines, though they pay lip-service to democracy, tend to the justification of the totalitarian State.',\n", | |
" 'updated': '2021-06-17T04:22:19.195585Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 191603732,\n", | |
" 'location': 61,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 43249365, 'name': 'discard'}],\n", | |
" 'text': 'If you think that by killing men you can prevent some one from censuring your evil lives, you are mistaken; that is not a way of escape which is either possible or honourable; the easiest and the noblest way is not to be disabling others, but to be improving yourselves.',\n", | |
" 'updated': '2021-06-17T04:22:19.195539Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 191603731,\n", | |
" 'location': 60,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 43376504, 'name': 'philosophy'}],\n", | |
" 'text': 'Marx fitted his philosophy of history into a mould suggested by Hegelian dialectic, but in fact there was only one triad that concerned him: feudalism, represented by the landowner; capitalism, represented by the industrial employer; and Socialism, represented by the wage-earner.',\n", | |
" 'updated': '2021-06-17T04:22:19.195456Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 190988075,\n", | |
" 'location': 59,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 43105892, 'name': 'knowledge'},\n", | |
" {'id': 43105888, 'name': 'theology'},\n", | |
" {'id': 43105884, 'name': 'philosophy'},\n", | |
" {'id': 43105877, 'name': 'favorite'}],\n", | |
" 'text': 'Science tells us what we can know, but what we can know is little, and if we forget how much we cannot know we become insensitive to many things of very great importance. Theology, on the other hand, induces a dogmatic belief that we have knowledge where in fact we have ignorance, and by doing so generates a kind of impertinent insolence towards the universe. Uncertainty, in the presence of vivid hopes and fears, is painful, but must be endured if we wish to live without the support of comforting fairy tales.',\n", | |
" 'updated': '2021-06-15T04:19:21.629598Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 190988074,\n", | |
" 'location': 58,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 43115691, 'name': 'philosophy'}],\n", | |
" 'text': 'A human body is entirely composed of monads, each of which is a soul, and each of which is immortal, but there is one dominant monad which is what is called the soul of the man of whose body it forms part.',\n", | |
" 'updated': '2021-06-15T04:19:21.629536Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 190988073,\n", | |
" 'location': 57,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 43115635, 'name': 'philosophy'},\n", | |
" {'id': 43115634, 'name': 'favorite'}],\n", | |
" 'text': 'The most famous passage in Plato, in which he compares this world to a cave, in which we see only shadows of the realities in the bright world above, is anticipated by Empedocles; its origin is in the teaching of the Orphics.',\n", | |
" 'updated': '2021-06-15T04:19:21.629466Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 190988072,\n", | |
" 'location': 56,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 43689013, 'name': 'politics'},\n", | |
" {'id': 43689012, 'name': 'philosophy'}],\n", | |
" 'text': 'If a man is to be a good statesman, he must know the Good; this he can only do by a combination of intellectual and moral discipline. If those who have not gone through this discipline are allowed a share in the government, they will inevitably corrupt it.',\n", | |
" 'updated': '2021-06-15T04:19:21.629393Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 190988071,\n", | |
" 'location': 55,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 43108385, 'name': 'discard'}],\n", | |
" 'text': 'Like all communities that have been civilized quickly, the Greeks, or at least a certain proportion of them, developed a love of the primitive, and a hankering after a more instinctive and passionate way of life than that sanctioned by current morals.',\n", | |
" 'updated': '2021-06-15T04:19:21.629324Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 190988070,\n", | |
" 'location': 54,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 43115613, 'name': 'philosophy'}],\n", | |
" 'text': 'The atomists, unlike Socrates, Plato, and Aristotle, sought to explain the world without introducing the notion of purpose or final cause. The “final cause” of an occurrence is an event in the future for the sake of which the occurrence takes place.',\n", | |
" 'updated': '2021-06-15T04:19:21.629253Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 190988069,\n", | |
" 'location': 53,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'An adherent of evolution may maintain that not only the doctrine of the equality of all men, but also that of the rights of man, must be condemned as unbiological, since it makes too emphatic a distinction between men and other animals.',\n", | |
" 'updated': '2021-06-15T04:19:21.629157Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 190988068,\n", | |
" 'location': 52,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 43115640, 'name': 'theology'},\n", | |
" {'id': 43115639, 'name': 'philosophy'}],\n", | |
" 'text': 'From Socrates he probably learnt his preoccupation with ethical problems, and his tendency to seek teleological rather than mechanical explanations of the world. “The Good” dominated his thought more than that of the pre-Socratics, and it is difficult not to attribute this fact to the influence of Socrates.',\n", | |
" 'updated': '2021-06-15T04:19:21.629086Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 190988067,\n", | |
" 'location': 51,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 43108495, 'name': 'philosophy'},\n", | |
" {'id': 43108493, 'name': 'favorite'}],\n", | |
" 'text': 'My purpose is to exhibit philosophy as an integral part of social and political life: not as the isolated speculations of remarkable individuals, but as both an effect and a cause of the character of the various communities in which different systems flourished.',\n", | |
" 'updated': '2021-06-15T04:19:21.629018Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 190988066,\n", | |
" 'location': 50,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Of the philosophers, Nietzsche was unashamedly on the side of the few, Marx whole-heartedly on the side of the many. Perhaps Bentham was the only one of importance who attempted a reconciliation of conflicting interests; he therefore incurred the hostility of both parties.',\n", | |
" 'updated': '2021-06-15T04:19:21.628912Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 189883857,\n", | |
" 'location': 49,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'In the society that he founded, men and women were admitted on equal terms; property was held in common, and there was a common way of life. Even scientific and mathematical discoveries were deemed collective, and in a mystical sense due to Pythagoras even after his death.',\n", | |
" 'updated': '2021-06-12T04:11:23.635265Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 189883856,\n", | |
" 'location': 48,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 42899318, 'name': 'language'}],\n", | |
" 'text': 'The Greeks, borrowing from the Phoenicians, altered the alphabet to suit their language, and made the important innovation of adding vowels instead of having only consonants. There can be no doubt that the acquisition of this convenient method of writing greatly hastened the rise of Greek civilization.',\n", | |
" 'updated': '2021-06-12T04:11:23.635225Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 189883855,\n", | |
" 'location': 47,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 42899324, 'name': 'history'}],\n", | |
" 'text': 'THE period of history which is commonly called “modern” has a mental outlook which differs from that of the medieval period in many ways. Of these, two are the most important: the diminishing authority of the Church, and the increasing authority of science.',\n", | |
" 'updated': '2021-06-12T04:11:23.635184Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 189883854,\n", | |
" 'location': 46,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 42899354, 'name': 'intelligence'},\n", | |
" {'id': 42899349, 'name': 'morality'}],\n", | |
" 'text': 'There are two kinds of virtues, intellectual and moral, corresponding to the two parts of the soul. Intellectual virtues result from teaching, moral virtues from habit. It is the business of the legislator to make the citizens good by forming good habits. We become just by performing just acts, and similarly as regards other virtues. By being compelled to acquire good habits, we shall in time, Aristotle thinks, come to find pleasure in performing good actions.',\n", | |
" 'updated': '2021-06-12T04:11:23.635144Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 189883853,\n", | |
" 'location': 45,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 42807126, 'name': 'philosophy'},\n", | |
" {'id': 42807124, 'name': 'favorite'}],\n", | |
" 'text': 'Only the true philosopher goes to heaven when he dies. “No one who has not studied philosophy and who is not entirely pure at the time of his departure is allowed to enter the company of the Gods, but the lover of knowledge only.”',\n", | |
" 'updated': '2021-06-12T04:11:23.635103Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 189883852,\n", | |
" 'location': 44,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 43656491, 'name': 'history'},\n", | |
" {'id': 43656490, 'name': 'philosophy'}],\n", | |
" 'text': 'We know more or less what an educated Greek learnt from his father, but we know very little of what, in his earliest years, he learnt from his mother, who was, to a great extent, shut out from the civilization in which the men took delight.',\n", | |
" 'updated': '2021-06-12T04:11:23.635061Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 189883851,\n", | |
" 'location': 43,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 42807364, 'name': 'language'},\n", | |
" {'id': 42807294, 'name': 'logic'},\n", | |
" {'id': 42807292, 'name': 'philosophy'}],\n", | |
" 'text': 'Hobbes, as might be expected, is an out-and-out nominalist. There is, he says, nothing universal but names, and without words we could not conceive any general ideas. Without language, there would be no truth or falsehood, for “true” and “false” are attributes of speech.',\n", | |
" 'updated': '2021-06-12T04:11:23.635020Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 189883850,\n", | |
" 'location': 42,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 42807130, 'name': 'mathematics'}],\n", | |
" 'text': 'It was there, in 1675-6, that he invented the infinitesimal calculus, in ignorance of Newton’s previous but unpublished work on the same subject. Leibniz’s work was first published in 1684, Newton’s in 1687. The consequent dispute as to priority was unfortunate, and discreditable to all parties.',\n", | |
" 'updated': '2021-06-12T04:11:23.634963Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 189883849,\n", | |
" 'location': 41,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 42807114, 'name': 'politics'}],\n", | |
" 'text': 'One reason for the admiration felt for Sparta by other Greeks was its stability. All other Greek cities had revolutions, but the Spartan constitution remained unchanged for centuries, except for a gradual increase in the powers of the ephors, which occurred by legal means, without violence.',\n", | |
" 'updated': '2021-06-12T04:11:23.634917Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 189883848,\n", | |
" 'location': 40,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 42807370, 'name': 'philosophy'}],\n", | |
" 'text': 'Plato’s Republic, unlike modern Utopias, was perhaps intended to be actually founded. This was not so fantastic or impossible as it might naturally seem to us. Many of its provisions, including some that we should have thought quite impracticable, were actually realized at Sparta.',\n", | |
" 'updated': '2021-06-12T04:11:23.634845Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 188846900,\n", | |
" 'location': 39,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 42655506, 'name': 'philosophy'}],\n", | |
" 'text': 'They confess frankly that the human intellect is unable to find conclusive answers to many questions of profound importance to mankind, but they refuse to believe that there is some “higher” way of knowing, by which we can discover truths hidden from science and the intellect.',\n", | |
" 'updated': '2021-06-09T04:20:27.085736Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 188846899,\n", | |
" 'location': 38,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 42746798, 'name': 'philosophy'}],\n", | |
" 'text': 'The Orphics, unlike the priests of Olympian cults, founded what we may call “churches,” i.e. religious communities to which anybody, without distinction of race or sex, could be admitted by initiation, and from their influence arose the conception of philosophy as a way of life.',\n", | |
" 'updated': '2021-06-09T04:20:27.085698Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 188846898,\n", | |
" 'location': 37,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 42746869, 'name': 'philosophy'},\n", | |
" {'id': 42746801, 'name': 'favorite'}],\n", | |
" 'text': 'The definition is therefore amended: the philosopher is a man who loves the “vision of truth.”',\n", | |
" 'updated': '2021-06-09T04:20:27.085660Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 188846897,\n", | |
" 'location': 36,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'This conception of justice —of not overstepping eternally fixed bounds—was one of the most profound of Greek beliefs.',\n", | |
" 'updated': '2021-06-09T04:20:27.085622Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 188846896,\n", | |
" 'location': 35,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 42655790, 'name': 'philosophy'}],\n", | |
" 'text': 'His works, like those of all the philosophers before Plato, are only known through quotations, largely made by Plato or Aristotle for the sake of refutation. When one thinks what would become of any modern philosopher if he were only known through the polemics of his rivals, one can see how admirable the pre-Socratics must have been, since even through the mist of malice spread by their enemies they still appear great.',\n", | |
" 'updated': '2021-06-09T04:20:27.085584Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 188846895,\n", | |
" 'location': 34,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'A stupid man’s report of what a clever man says is never accurate, because he unconsciously translates what he hears into something that he can understand.',\n", | |
" 'updated': '2021-06-09T04:20:27.085546Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 188846894,\n", | |
" 'location': 33,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 42655861, 'name': 'philosophy'},\n", | |
" {'id': 42655860, 'name': 'favorite'}],\n", | |
" 'text': 'The mind is its own place, and in itself Can make a heaven of hell, a hell of heaven.',\n", | |
" 'updated': '2021-06-09T04:20:27.085508Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 188846893,\n", | |
" 'location': 32,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 42655511, 'name': 'philosophy'}],\n", | |
" 'text': 'When the Declaration of Independence says “we hold these truths to be self-evident,” it is modelling itself on Euclid.',\n", | |
" 'updated': '2021-06-09T04:20:27.085470Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 188846892,\n", | |
" 'location': 31,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 45525928, 'name': 'discard'}],\n", | |
" 'text': 'FOUR men are called the Doctors of the Western Church: Saint Ambrose, Saint Jerome, Saint Augustine, and Pope Gregory the Great.',\n", | |
" 'updated': '2021-06-09T04:20:27.085430Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 188846891,\n", | |
" 'location': 30,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 43689004, 'name': 'philosophy'}],\n", | |
" 'text': 'Pythagoreanism, he says, was a movement of reform in Orphism, and Orphism was a movement of reform in the worship of Dionysus.',\n", | |
" 'updated': '2021-06-09T04:20:27.085362Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 187864848,\n", | |
" 'location': 29,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The doctrine that everything is in a state of flux is the most famous of the opinions of Heraclitus, and the one most emphasised by his disciples, as described in Plato’s Theaetetus.',\n", | |
" 'updated': '2021-06-06T10:22:38.376170Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 187864847,\n", | |
" 'location': 28,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The conflict between duty to God and duty to the State, which Christianity had introduced, took the form of a conflict between Church and king.',\n", | |
" 'updated': '2021-06-06T10:22:38.376133Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 187864846,\n", | |
" 'location': 27,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Therefore knowledge consists in reflection, not in impressions, and perception is not knowledge, because it “has no part in apprehending truth, since it has none in apprehending existence.”',\n", | |
" 'updated': '2021-06-06T10:22:38.376095Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 187864845,\n", | |
" 'location': 26,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The man who only loves beautiful things is dreaming, whereas the man who knows absolute beauty is wide awake. The former has only opinion; the latter has knowledge.',\n", | |
" 'updated': '2021-06-06T10:22:38.376057Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 187864844,\n", | |
" 'location': 25,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The politics, religion, philosophy, and art of any epoch in human history are, according to Marx, an outcome of its methods of production, and, to a lesser extent, of distribution. I think he would not maintain that this applies to all the niceties of culture, but only to its broad outlines. The doctrine is called the “materialist conception of history.”',\n", | |
" 'updated': '2021-06-06T10:22:38.376018Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 187864843,\n", | |
" 'location': 24,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Throughout this long development, from 600 B.C. to the present day, philosophers have been divided into those who wished to tighten social bonds and those who wished to relax them.',\n", | |
" 'updated': '2021-06-06T10:22:38.375981Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 187864842,\n", | |
" 'location': 23,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The most important matters in Plato’s philosophy are: first, his Utopia, which was the earliest of a long series; second, his theory of ideas, which was a pioneer attempt to deal with the still unsolved problem of universals; third, his arguments in favour of immortality; fourth, his cosmogony; fifth, his conception of knowledge as reminiscence rather than perception.',\n", | |
" 'updated': '2021-06-06T10:22:38.375943Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 187864841,\n", | |
" 'location': 22,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Plato is always concerned to advocate views that will make people what he thinks virtuous; he is hardly ever intellectually honest, because he allows himself to judge doctrines by their social consequences.',\n", | |
" 'updated': '2021-06-06T10:22:38.375904Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 187864840,\n", | |
" 'location': 21,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Speaking broadly, Saint Ambrose determined the ecclesiastical conception of the relation of Church and State; Saint Jerome gave the Western Church its Latin Bible and a great part of the impetus to monasticism; while Saint Augustine fixed the theology of the Church until the Reformation, and, later, a great part of the doctrines of Luther and Calvin.',\n", | |
" 'updated': '2021-06-06T10:22:38.375863Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 187864839,\n", | |
" 'location': 20,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'He decided to live like a dog, and was therefore called a “cynic,” which means “canine.” He rejected all conventions—whether of religion, of manners, of dress, of housing, of food, or of decency.',\n", | |
" 'updated': '2021-06-06T10:22:38.375801Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 186727908,\n", | |
" 'location': 19,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': '“There is a doctrine whispered in secret that man is a prisoner who has no right to open the door and run away; this is a great mystery which I do not quite understand.”',\n", | |
" 'updated': '2021-06-03T04:27:51.332682Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 186727907,\n", | |
" 'location': 18,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 42140102, 'name': 'philosophy'},\n", | |
" {'id': 42140091, 'name': 'knowledge'}],\n", | |
" 'text': 'By good luck, the atomists hit on a hypothesis for which, more than two thousand years later, some evidence was found, but their belief, in their day, was none the less destitute of any solid foundation.',\n", | |
" 'updated': '2021-06-03T04:27:51.332640Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 186727906,\n", | |
" 'location': 17,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 42140042, 'name': 'politics'}],\n", | |
" 'text': 'The national State, largely owing to gunpowder, acquired an influence over men’s thoughts and feelings which it had not had before, and which progressively destroyed what remained of the Roman belief in the unity of civilization.',\n", | |
" 'updated': '2021-06-03T04:27:51.332599Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 186727905,\n", | |
" 'location': 16,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The historical books of the Old Testament, which were mostly compiled after the captivity, give a misleading impression, since they suggest that the idolatrous practices against which the prophets protested were a falling-off from earlier strictness, whereas in fact the earlier strictness had never existed.',\n", | |
" 'updated': '2021-06-03T04:27:51.332556Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 186727904,\n", | |
" 'location': 15,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 41968094, 'name': 'philosophy'}],\n", | |
" 'text': 'The problem of a durable and satisfactory social order can only be solved by combining the solidity of the Roman Empire with the idealism of Saint Augustine’s City of God. To achieve this a new philosophy will be needed.',\n", | |
" 'updated': '2021-06-03T04:27:51.332514Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 186727903,\n", | |
" 'location': 14,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 43115688, 'name': 'favorite'},\n", | |
" {'id': 43115687, 'name': 'knowledge'},\n", | |
" {'id': 43115683, 'name': 'sciences'},\n", | |
" {'id': 43115679, 'name': 'philosophy'}],\n", | |
" 'text': 'In the sphere of thought, sober civilization is roughly synonymous with science. But science, unadulterated, is not satisfying; men need also passion and art and religion. Science may set limits to knowledge, but should not set limits to imagination.',\n", | |
" 'updated': '2021-06-03T04:27:51.332472Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 186727902,\n", | |
" 'location': 13,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 41968074, 'name': 'philosophy'},\n", | |
" {'id': 41968072, 'name': 'favorite'}],\n", | |
" 'text': 'The worshipper of Bacchus reacts against prudence. In intoxication, physical or spiritual, he recovers an intensity of feeling which prudence had destroyed; he finds the world full of delight and beauty, and his imagination is suddenly liberated from the prison of every-day preoccupations.',\n", | |
" 'updated': '2021-06-03T04:27:51.332430Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 186727901,\n", | |
" 'location': 12,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 41970693, 'name': 'morality'},\n", | |
" {'id': 41970689, 'name': 'philosophy'}],\n", | |
" 'text': 'I think Plato would have said that it consists in knowledge of the good, and would have supplemented this definition with the Socratic doctrine that no man sins wittingly, from which it follows that whoever knows what is good does what is right.',\n", | |
" 'updated': '2021-06-03T04:27:51.332388Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 186727900,\n", | |
" 'location': 11,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 41968172, 'name': 'politics'},\n", | |
" {'id': 41968171, 'name': 'philosophy'}],\n", | |
" 'text': 'The problem of finding a collection of “wise” men and leaving the government to them is thus an insoluble one. That is the ultimate reason for democracy.',\n", | |
" 'updated': '2021-06-03T04:27:51.332344Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 186727899,\n", | |
" 'location': 10,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 41969104, 'name': 'philosophy'},\n", | |
" {'id': 41969101, 'name': 'favorite'}],\n", | |
" 'text': 'The matters that are suitable for treatment by the Socratic method are those as to which we have already enough knowledge to come to a right conclusion, but have failed, through confusion of thought or lack of analysis, to make the best logical use of what we know.',\n", | |
" 'updated': '2021-06-03T04:27:51.332268Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8351262,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 186367010,\n", | |
" 'location': 20,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The Any-Benefit Approach to Network Tool Selection: You’re justified in using a network tool if you can identify any possible benefit to its use, or anything you might possibly miss out on if you don’t use it.',\n", | |
" 'updated': '2021-06-02T04:16:54.042945Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8351262,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 186367009,\n", | |
" 'location': 19,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Idleness is not just a vacation, an indulgence or a vice; it is as indispensable to the brain as vitamin D is to the body, and deprived of it we suffer a mental affliction as disfiguring as rickets… it is, paradoxically, necessary to getting any work done.',\n", | |
" 'updated': '2021-06-02T04:16:54.042871Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8351262,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 186367008,\n", | |
" 'location': 18,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'You have a finite amount of willpower that becomes depleted as you use it.',\n", | |
" 'updated': '2021-06-02T04:16:54.042798Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8351262,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 186367007,\n", | |
" 'location': 17,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'For an individual focused on deep work, it’s easy to identify the relevant lead measure: time spent in a state of deep work dedicated toward your wildly important goal.',\n", | |
" 'updated': '2021-06-02T04:16:54.042723Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8351262,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 186367006,\n", | |
" 'location': 16,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The goal of productive meditation is to take a period in which you’re occupied physically but not mentally—walking, jogging, driving, showering—and focus your attention on a single well-defined professional problem.',\n", | |
" 'updated': '2021-06-02T04:16:54.042648Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8351262,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 186367005,\n", | |
" 'location': 15,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'To learn hard things quickly, you must focus intensely without distraction.',\n", | |
" 'updated': '2021-06-02T04:16:54.042573Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8351262,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 186367004,\n", | |
" 'location': 14,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The Law of the Vital Few*: In many settings, 80 percent of a given effect is due to just 20 percent of the possible causes.',\n", | |
" 'updated': '2021-06-02T04:16:54.042502Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8351262,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 186367003,\n", | |
" 'location': 13,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Human beings, it seems, are at their best when immersed deeply in something challenging.',\n", | |
" 'updated': '2021-06-02T04:16:54.042424Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8351262,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 186367002,\n", | |
" 'location': 12,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'To build your working life around the experience of flow produced by deep work is a proven path to deep satisfaction.',\n", | |
" 'updated': '2021-06-02T04:16:54.042332Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8351262,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 186367001,\n", | |
" 'location': 11,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Like fingers pointing to the moon, other diverse disciplines from anthropology to education, behavioral economics to family counseling, similarly suggest that the skillful management of attention is the sine qua non of the good life and the key to improving virtually every aspect of your experience.',\n", | |
" 'updated': '2021-06-02T04:16:54.042206Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 186231495,\n", | |
" 'location': 9,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Modern philosophy begins with Descartes, whose fundamental certainty is the existence of himself and his thoughts, from which the external world is to be inferred. This was only the first stage in a development, through Berkeley and Kant, to Fichte, for whom everything is only an emanation of the ego. This was insanity, and, from this extreme, philosophy has been attempting, ever since, to escape into the world of every-day common sense.',\n", | |
" 'updated': '2021-06-01T20:43:22.839946Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 186231494,\n", | |
" 'location': 8,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 41844260, 'name': 'rationality'},\n", | |
" {'id': 41844259, 'name': 'philosophy'}],\n", | |
" 'text': 'In studying a philosopher, the right attitude is neither reverence nor contempt, but first a kind of hypothetical sympathy, until it is possible to know what it feels like to believe in his theories, and only then a revival of the critical attitude, which should resemble, as far as possible, the state of mind of a person abandoning opinions which he has hitherto held.',\n", | |
" 'updated': '2021-06-01T20:43:22.839877Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 186231493,\n", | |
" 'location': 7,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 43656494, 'name': 'sciences'},\n", | |
" {'id': 43656493, 'name': 'history'},\n", | |
" {'id': 41844265, 'name': 'philosophy'}],\n", | |
" 'text': 'Philosophy begins with Thales, who, fortunately, can be dated by the fact that he predicted an eclipse which, according to the astronomers, occurred in the year 585 B.C. Philosophy and science—which were not originally separate—were therefore born together at the beginning of the sixth century.',\n", | |
" 'updated': '2021-06-01T20:43:22.839809Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 186231492,\n", | |
" 'location': 6,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 41844271, 'name': 'physics'},\n", | |
" {'id': 41844269, 'name': 'philosophy'}],\n", | |
" 'text': 'As regards space, the modern view is that it is neither a substance, as Newton maintained, and as Leucippus and Democritus ought to have said, nor an adjective of extended bodies, as Descartes thought, but a system of relations, as Leibniz held.',\n", | |
" 'updated': '2021-06-01T20:43:22.839740Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 186231491,\n", | |
" 'location': 5,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 41844263, 'name': 'rationality'},\n", | |
" {'id': 41844262, 'name': 'philosophy'},\n", | |
" {'id': 41844261, 'name': 'favorite'}],\n", | |
" 'text': 'Prudence versus passion is a conflict that runs through history. It is not a conflict in which we ought to side wholly with either party.',\n", | |
" 'updated': '2021-06-01T20:43:22.839670Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 186231490,\n", | |
" 'location': 4,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 41844267, 'name': 'favorite'},\n", | |
" {'id': 41844266, 'name': 'philosophy'}],\n", | |
" 'text': 'To teach how to live without certainty, and yet without being paralyzed by hesitation, is perhaps the chief thing that philosophy, in our age, can still do for those who study it.',\n", | |
" 'updated': '2021-06-01T20:43:22.839601Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 186231489,\n", | |
" 'location': 3,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The Catholic Church was derived from three sources. Its sacred history was Jewish, its theology was Greek, its government and canon law were, at least indirectly, Roman. The Reformation rejected the Roman elements, softened the Greek elements, and greatly strengthened the Judaic elements.',\n", | |
" 'updated': '2021-06-01T20:43:22.839533Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 186231488,\n", | |
" 'location': 2,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 42746904, 'name': 'discard'}],\n", | |
" 'text': 'Every community is exposed to two opposite dangers: ossification through too much discipline and reverence for tradition, on the one hand; on the other hand, dissolution, or subjection to foreign conquest, through the growth of an individualism and personal independence that makes co-operation impossible.',\n", | |
" 'updated': '2021-06-01T20:43:22.839464Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 186231487,\n", | |
" 'location': 1,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 41843801, 'name': 'rationality'},\n", | |
" {'id': 41843800, 'name': 'philosophy'},\n", | |
" {'id': 41843799, 'name': 'favorite'}],\n", | |
" 'text': 'The civilized man is distinguished from the savage mainly by prudence, or, to use a slightly wider term, forethought. He is willing to endure present pains for the sake of future pleasures, even if the future pleasures are rather distant.',\n", | |
" 'updated': '2021-06-01T20:43:22.839392Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9366356,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 186231486,\n", | |
" 'location': 0,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 41843802, 'name': 'philosophy'}],\n", | |
" 'text': 'Philosophy, as I shall understand the word, is something intermediate between theology and science. Like theology, it consists of speculations on matters as to which definite knowledge has, so far, been unascertainable; but like science, it appeals to human reason rather than to authority, whether that of tradition or that of revelation.',\n", | |
" 'updated': '2021-06-01T20:43:22.839306Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9291908,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 184417077,\n", | |
" 'location': 9,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Provide in advance for the needs of thy growing age and the protection of thy family.\"',\n", | |
" 'updated': '2021-05-28T07:23:47.854308Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9291908,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 184417076,\n", | |
" 'location': 8,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Opportunity is a haughty goddess who wastes no time with those who are unprepared.\"',\n", | |
" 'updated': '2021-05-28T07:23:47.854239Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9291908,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 184417075,\n", | |
" 'location': 7,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'If you desire to help thy friend, do so in a way that will not bring thy friend\\'s burdens upon thyself.\"',\n", | |
" 'updated': '2021-05-28T07:23:47.854170Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9291908,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 184417074,\n", | |
" 'location': 6,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': '\"Desires must be simple and definite. They defeat their own purpose should they be too many, too confusing, or beyond a man\\'s training to accomplish. \"',\n", | |
" 'updated': '2021-05-28T07:23:47.854101Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9291908,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 184417073,\n", | |
" 'location': 5,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 44434938, 'name': 'discard'}],\n", | |
" 'text': 'Advice is one thing that is freely given away, but watch that you take only what is worth having.',\n", | |
" 'updated': '2021-05-28T07:23:47.854031Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9291908,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 184417072,\n", | |
" 'location': 4,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': '\"Then learn to make your treasure work for you. Make it your slave. Make its children and its children\\'s children work for you.',\n", | |
" 'updated': '2021-05-28T07:23:47.853961Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9291908,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 184417071,\n", | |
" 'location': 3,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 47931451, 'name': 'wealth'}],\n", | |
" 'text': \"'I found the road to wealth when I decided that a part of all I earned was mine to keep. And so will you.'\",\n", | |
" 'updated': '2021-05-28T07:23:47.853893Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9291908,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 184417070,\n", | |
" 'location': 2,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 45525920, 'name': 'wealth'},\n", | |
" {'id': 45525919, 'name': 'freedom'}],\n", | |
" 'text': \"That what each of us calls our 'necessary expenses' will always grow to equal our incomes unless we protest to the contrary.\",\n", | |
" 'updated': '2021-05-28T07:23:47.853823Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9291908,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 184417069,\n", | |
" 'location': 1,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': '\"This, then, is the third cure for a lean purse: to put each coin to laboring that it may reproduce its kind even as the flocks of the field and help bring to thee income, a stream of wealth that shall flow constantly into thy purse.\"',\n", | |
" 'updated': '2021-05-28T07:23:47.853750Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 9291908,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 184417068,\n", | |
" 'location': 0,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'You first learned to live upon less than you could earn. Next you learned to seek advice from those who were competent through their own experiences to give it. And, lastly, you have learned to make gold work for you.',\n", | |
" 'updated': '2021-05-28T07:23:47.853661Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530081,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 182202813,\n", | |
" 'location': 39,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Eternity is a mere moment, just long enough for a joke.”',\n", | |
" 'updated': '2021-05-22T04:23:46.489943Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530081,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 182202812,\n", | |
" 'location': 38,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 41797995, 'name': 'philosophy'},\n", | |
" {'id': 41797993, 'name': 'favorite'}],\n", | |
" 'text': 'And they are right, right a thousand times to live as they do, playing their games and pursuing their business, instead of resisting the dreary machine and staring into the void as I do, who have left the track.',\n", | |
" 'updated': '2021-05-22T04:23:46.489876Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530081,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 182202811,\n", | |
" 'location': 37,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The Steppenwolf, too, believes that he bears two souls (wolf and man) in his breast and even so finds his breast disagreeably cramped because of them. The breast and the body are indeed one, but the souls that dwell in it are not two, nor five, but countless in number.',\n", | |
" 'updated': '2021-05-22T04:23:46.489808Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530081,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 182202810,\n", | |
" 'location': 36,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'There is beauty in farewells and a gentleness in their very tone.',\n", | |
" 'updated': '2021-05-22T04:23:46.489723Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530081,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 182202809,\n", | |
" 'location': 35,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'He never sold himself for money or an easy life or to women or to those in power; and had thrown away a hundred times what in the world’s eyes was his advantage and happiness in order to safeguard his liberty.',\n", | |
" 'updated': '2021-05-22T04:23:46.489651Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530081,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 182202808,\n", | |
" 'location': 34,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'But I see something more in them. I see them as a document of the times, for Haller’s sickness of the soul, as I now know, is not the eccentricity of a single individual, but the sickness of the times themselves, the neurosis of that generation to which Haller belongs, a sickness, it seems, that by no means attacks the weak and worthless only but, rather, precisely those who are strongest in spirit and richest in gifts.',\n", | |
" 'updated': '2021-05-22T04:23:46.489582Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530081,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 182202807,\n", | |
" 'location': 33,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'You have no doubt guessed long since that the conquest of time and the escape from reality, or however else it may be that you choose to describe your longing, means simply the wish to be relieved of your so-called personality. That is the prison where you lie.',\n", | |
" 'updated': '2021-05-22T04:23:46.489511Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530081,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 182202806,\n", | |
" 'location': 32,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Their life consists of a perpetual tide, unhappy and torn with pain, terrible and meaningless, unless one is ready to see its meaning in just those rare experiences, acts, thoughts and works that shine out above the chaos of such a life.',\n", | |
" 'updated': '2021-05-22T04:23:46.489441Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530081,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 182202805,\n", | |
" 'location': 31,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The generals and the captains of industry were quite right. There was nothing to be made of us intellectuals. We were a superfluous, irresponsible lot of talented chatterboxes for whom reality had no meaning. With a curse, I came back to the razor.',\n", | |
" 'updated': '2021-05-22T04:23:46.489363Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530081,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 182202804,\n", | |
" 'location': 30,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'And every occasion when a mask was torn off, an ideal broken, was preceded by this hateful vacancy and stillness, this deathly constriction and loneliness and unrelatedness, this waste and empty hell of lovelessness and despair, such as I had now to pass through once more.',\n", | |
" 'updated': '2021-05-22T04:23:46.489243Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530044,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 181539664,\n", | |
" 'location': 49,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Donald Trump warned voters that the Mexicans and Chinese would take their jobs, and that they should therefore build a wall on the Mexican border.4 He never warned voters that algorithms would take their jobs, nor did he suggest building a firewall on the border with California.',\n", | |
" 'updated': '2021-05-20T04:31:54.048345Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530044,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 181539663,\n", | |
" 'location': 48,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Homo sapiens is just not built for satisfaction. Human happiness depends less on objective conditions and more on our own expectations.',\n", | |
" 'updated': '2021-05-20T04:31:54.048307Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530044,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 181539662,\n", | |
" 'location': 47,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Intelligence is the ability to solve problems. Consciousness is the ability to feel things such as pain, joy, love, and anger.',\n", | |
" 'updated': '2021-05-20T04:31:54.048270Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530044,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 181539661,\n", | |
" 'location': 46,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 45704152, 'name': 'transhumanism'},\n", | |
" {'id': 45704148, 'name': 'philosophy'},\n", | |
" {'id': 45704146, 'name': 'favorite'}],\n", | |
" 'text': 'The two processes together—bioengineering coupled with the rise of AI—might therefore result in the separation of humankind into a small class of superhumans and a massive underclass of useless Homo sapiens.',\n", | |
" 'updated': '2021-05-20T04:31:54.048232Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530044,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 181539660,\n", | |
" 'location': 45,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Democracy assumes that human feelings reflect a mysterious and profound “free will,” that this “free will” is the ultimate source of authority, and that while some people are more intelligent than others, all humans are equally free.',\n", | |
" 'updated': '2021-05-20T04:31:54.048193Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530044,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 181539659,\n", | |
" 'location': 44,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'In a world deluged by irrelevant information, clarity is power.',\n", | |
" 'updated': '2021-05-20T04:31:54.048155Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530044,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 181539658,\n", | |
" 'location': 43,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'A wise old man was asked what he learned about the meaning of life. “Well,” he answered, “I have learned that I am here on earth in order to help other people. What I still haven’t figured out is why the other people are here.”',\n", | |
" 'updated': '2021-05-20T04:31:54.048117Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530044,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 181539657,\n", | |
" 'location': 42,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Every religion, ideology, and creed has its shadow, and no matter which creed you follow you should acknowledge your shadow and avoid the naive reassurance that “it cannot happen to us.”',\n", | |
" 'updated': '2021-05-20T04:31:54.048079Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530044,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 181539656,\n", | |
" 'location': 41,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'This is what Steven Sloman and Philip Fernbach have termed “the knowledge illusion.” We think we know a lot, even though individually we know very little, because we treat knowledge in the minds of others as if it were our own.',\n", | |
" 'updated': '2021-05-20T04:31:54.048040Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530044,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 181539655,\n", | |
" 'location': 40,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Democracy in its present form cannot survive the merger of biotech and infotech. Either democracy will successfully reinvent itself in a radically new form or humans will come to live in “digital dictatorships.”',\n", | |
" 'updated': '2021-05-20T04:31:54.047977Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7386678,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 181213754,\n", | |
" 'location': 20,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Sometimes an organization doesn’t need a solution; it just needs clarity.',\n", | |
" 'updated': '2021-05-19T04:29:39.793090Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7386678,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 181213753,\n", | |
" 'location': 19,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Write down the strengths you want and the weaknesses that you are willing to tolerate.',\n", | |
" 'updated': '2021-05-19T04:29:39.793032Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7386678,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 181213752,\n", | |
" 'location': 18,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Every really good, really experienced CEO I know shares one important characteristic: They tend to opt for the hard answer to organizational issues.',\n", | |
" 'updated': '2021-05-19T04:29:39.792974Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7386678,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 181213751,\n", | |
" 'location': 17,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'I’d learned the hard way that when hiring executives, one should follow Colin Powell’s instructions and hire for strength rather than lack of weakness.',\n", | |
" 'updated': '2021-05-19T04:29:39.792918Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7386678,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 181213750,\n", | |
" 'location': 16,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Early in my career as an engineer, I’d learned that all decisions were objective until the first line of code was written. After that, all decisions were emotional.',\n", | |
" 'updated': '2021-05-19T04:29:39.792875Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7386678,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 181213749,\n", | |
" 'location': 15,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 41844248, 'name': 'business'}],\n", | |
" 'text': 'All the mental energy you use to elaborate your misery would be far better used trying to find the one seemingly impossible way out of your current mess. Spend zero time on what you could have done, and devote all of your time on what you might do. Because in the end, nobody cares; just run your company.',\n", | |
" 'updated': '2021-05-19T04:29:39.792837Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7386678,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 181213748,\n", | |
" 'location': 14,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'If you run a company, you will experience overwhelming psychological pressure to be overly positive. Stand up to the pressure, face your fear, and tell it like it is.',\n", | |
" 'updated': '2021-05-19T04:29:39.792798Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7386678,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 181213747,\n", | |
" 'location': 13,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'My single biggest personal improvement as CEO occurred on the day when I stopped being too positive.',\n", | |
" 'updated': '2021-05-19T04:29:39.792759Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7386678,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 181213746,\n", | |
" 'location': 12,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'In any human interaction, the required amount of communication is inversely proportional to the level of trust.',\n", | |
" 'updated': '2021-05-19T04:29:39.792717Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7386678,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 181213745,\n", | |
" 'location': 11,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'There comes a time in every company’s life where it must fight for its life. If you find yourself running when you should be fighting, you need to ask yourself, “If our company isn’t good enough to win, then do we need to exist at all?”',\n", | |
" 'updated': '2021-05-19T04:29:39.792644Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530080,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 179468881,\n", | |
" 'location': 39,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Our galaxy and other galaxies, however, must contain a large amount of “dark matter” that we cannot see directly, but which we know must be there because of the influence of its gravitational attraction on the orbits of stars in the galaxies.',\n", | |
" 'updated': '2021-05-15T04:21:05.058837Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530080,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 179468880,\n", | |
" 'location': 38,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Our modern picture of the universe dates back to only 1924, when the American astronomer Edwin Hubble demonstrated that ours was not the only galaxy.',\n", | |
" 'updated': '2021-05-15T04:21:05.058798Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530080,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 179468879,\n", | |
" 'location': 37,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'As we shall see, the concept of time has no meaning before the beginning of the universe. This was first pointed out by St. Augustine. When asked: “What did God do before he created the universe?” Augustine didn’t reply: “He was preparing Hell for people who asked such questions.” Instead, he said that time was a property of the universe that God created, and that time did not exist before the beginning of the universe.',\n", | |
" 'updated': '2021-05-15T04:21:05.058759Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530080,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 179468878,\n", | |
" 'location': 36,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'If the wavelength of these waves (the distance between one wave crest and the next) is a meter or more, they are what we now call radio waves. Shorter wavelengths are known as microwaves (a few centimeters) or infrared (more than a ten-thousandth of a centimeter). Visible light has a wavelength of between only forty and eighty millionths of a centimeter. Even shorter wavelengths are known as ultraviolet, X rays, and gamma rays.',\n", | |
" 'updated': '2021-05-15T04:21:05.058721Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530080,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 179468877,\n", | |
" 'location': 35,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The situation, however, is quite different in the general theory of relativity. Space and time are now dynamic quantities: when a body moves, or a force acts, it affects the curvature of space and time—and in turn the structure of space-time affects the way in which bodies move and forces act. Space and time not only affect but also are affected by everything that happens in the universe.',\n", | |
" 'updated': '2021-05-15T04:21:05.058682Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530080,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 179468876,\n", | |
" 'location': 34,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Since we know that each chemical element absorbs a characteristic set of very specific colors, by matching these to those that are missing from a star’s spectrum, we can determine exactly which elements are present in the star’s atmosphere.',\n", | |
" 'updated': '2021-05-15T04:21:05.058643Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530080,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 179468875,\n", | |
" 'location': 33,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'We now know it is impossible to have an infinite static model of the universe in which gravity is always attractive.',\n", | |
" 'updated': '2021-05-15T04:21:05.058605Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530080,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 179468874,\n", | |
" 'location': 32,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Chandrasekhar calculated that a cold star of more than about one and a half times the mass of the sun would not be able to support itself against its own gravity.',\n", | |
" 'updated': '2021-05-15T04:21:05.058566Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530080,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 179468873,\n", | |
" 'location': 31,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'But according to the approach I described in Chapter 1, a scientific theory is just a mathematical model we make to describe our observations: it exists only in our minds. So it is meaningless to ask: which is real, “real” or “imaginary” time? It is simply a matter of which is the more useful description.',\n", | |
" 'updated': '2021-05-15T04:21:05.058524Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530080,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 179468872,\n", | |
" 'location': 30,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 42143193, 'name': 'physics'}],\n", | |
" 'text': 'On the moon, where there is no air to slow things down, the astronaut David R. Scott performed the feather and lead weight experiment and found that indeed they did hit the ground at the same time.',\n", | |
" 'updated': '2021-05-15T04:21:05.058456Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530041,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 176920817,\n", | |
" 'location': 50,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Cognitive dissonance is often considered a failure of the human psyche. In fact, it is a vital asset. Had people been unable to hold contradictory beliefs and values, it would probably have been impossible to establish and maintain any human culture.',\n", | |
" 'updated': '2021-05-09T04:08:14.965026Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530041,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 176920816,\n", | |
" 'location': 49,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 41312921, 'name': 'discard'}],\n", | |
" 'text': 'In 1620 Francis Bacon published a scientific manifesto titled The New Instrument. In it he argued that ‘knowledge is power’. The real test of ‘knowledge’ is not whether it is true, but whether it empowers us. Scientists usually assume that no theory is 100 per cent correct. Consequently, truth is a poor test for knowledge. The real test is utility. A theory that enables us to do new things constitutes knowledge.',\n", | |
" 'updated': '2021-05-09T04:08:14.964988Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530041,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 176920815,\n", | |
" 'location': 48,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'So perhaps happiness is synchronising one’s personal delusions of meaning with the prevailing collective delusions. As long as my personal narrative is in line with the narratives of the people around me, I can convince myself that my life is meaningful, and find happiness in that conviction.',\n", | |
" 'updated': '2021-05-09T04:08:14.964950Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530041,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 176920814,\n", | |
" 'location': 47,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 44296282, 'name': 'biology'}],\n", | |
" 'text': 'This approach is sometimes called memetics. It assumes that, just as organic evolution is based on the replication of organic information units called ‘genes’, so cultural evolution is based on the replication of cultural information units called ‘memes’.1 Successful cultures are those that excel in reproducing their memes, irrespective of the costs and benefits to their human hosts.',\n", | |
" 'updated': '2021-05-09T04:08:14.964912Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530041,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 176920813,\n", | |
" 'location': 46,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 39714683, 'name': 'discard'}],\n", | |
" 'text': 'Each year the US population spends more money on diets than the amount needed to feed all the hungry people in the rest of the world.',\n", | |
" 'updated': '2021-05-09T04:08:14.964874Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530041,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 176920812,\n", | |
" 'location': 45,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'What enables banks – and the entire economy – to survive and flourish is our trust in the future. This trust is the sole backing for most of the money in the world.',\n", | |
" 'updated': '2021-05-09T04:08:14.964835Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530041,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 176920811,\n", | |
" 'location': 44,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Three important revolutions shaped the course of history: the Cognitive Revolution kick-started history about 70,000 years ago. The Agricultural Revolution sped it up about 12,000 years ago. The Scientific Revolution, which got under way only 500 years ago, may well end history and start something completely different.',\n", | |
" 'updated': '2021-05-09T04:08:14.964796Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530041,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 176920810,\n", | |
" 'location': 43,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 47225197, 'name': 'discard'}],\n", | |
" 'text': 'There is poetic justice in the fact that a quarter of the world, and two of its seven continents, are named after a little-known Italian whose sole claim to fame is that he had the courage to say, ‘We don’t know.’',\n", | |
" 'updated': '2021-05-09T04:08:14.964758Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530041,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 176920809,\n", | |
" 'location': 42,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 39826235, 'name': 'biology'}],\n", | |
" 'text': 'In Homo sapiens, the brain accounts for about 2–3 per cent of total body weight, but it consumes 25 per cent of the body’s energy when the body is at rest.',\n", | |
" 'updated': '2021-05-09T04:08:14.964717Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530041,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 176920808,\n", | |
" 'location': 41,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 42746229, 'name': 'rationality'},\n", | |
" {'id': 42746226, 'name': 'philosophy'},\n", | |
" {'id': 42746224, 'name': 'favorite'}],\n", | |
" 'text': 'But the most important finding of all is that happiness does not really depend on objective conditions of either wealth, health or even community. Rather, it depends on the correlation between objective conditions and subjective expectations.',\n", | |
" 'updated': '2021-05-09T04:08:14.964650Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 170578385,\n", | |
" 'location': 39,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'We use our intellects not to solve practical problems but to outwit each other. Deceiving people, detecting deceit, understanding people’s motives, manipulating people—these are what the intellect is used for. So what matters is not how clever and crafty you are but how much more clever and craftier you are than other people. The value of intellect is infinite. Selection within the species is always going to be more important than selection between the species.',\n", | |
" 'updated': '2021-04-23T04:18:08.985871Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 170578384,\n", | |
" 'location': 38,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'This phenomenon—that people specialize in what they are good at and so create conditions that suit their genes—is known as the Baldwin effect since it was first described by one James Mark Baldwin in 1896.',\n", | |
" 'updated': '2021-04-23T04:18:08.985833Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 170578383,\n", | |
" 'location': 37,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'In short, in every age and in every place, men behave as if they owned their wives’ vaginas.',\n", | |
" 'updated': '2021-04-23T04:18:08.985795Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 170578382,\n", | |
" 'location': 36,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 46101662, 'name': 'biology'}],\n", | |
" 'text': 'Sex is about disease. It is used to combat the threat from parasites. Organisms need sex to keep their genes one step ahead of their parasites.',\n", | |
" 'updated': '2021-04-23T04:18:08.985757Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 170578381,\n", | |
" 'location': 35,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 45704171, 'name': 'evolution'},\n", | |
" {'id': 45704169, 'name': 'biology'}],\n", | |
" 'text': 'We are all one close family, one small race of the modern Homo sapiens people who lived in Africa until 100,000 years ago, and we all share the nature of that beast.',\n", | |
" 'updated': '2021-04-23T04:18:08.985719Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 170578380,\n", | |
" 'location': 34,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 41312913, 'name': 'biology'}],\n", | |
" 'text': 'One of the reasons the common mushroom has changed very little over the three centuries that it has been in cultivation is that mushrooms are asexual, and so no selective breeding has been possible.',\n", | |
" 'updated': '2021-04-23T04:18:08.985681Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 170578379,\n", | |
" 'location': 33,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Sex is merely the dealer, generating unique hands from the same monotonous deck of genetic cards shared by the whole species.',\n", | |
" 'updated': '2021-04-23T04:18:08.985643Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 170578378,\n", | |
" 'location': 32,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Indeed, one ingenious theory holds that sperm are small specifically so they have no room to carry bacteria with them to infect eggs.',\n", | |
" 'updated': '2021-04-23T04:18:08.985605Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 170578377,\n", | |
" 'location': 31,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 43656417, 'name': 'biology'}],\n", | |
" 'text': 'There is no evidence of genes for different brains, but there is ample evidence of genes for altering brains in response to male hormones. (For reasons of historical accident, the “normal brain” is female unless masculinized.) So the mental differences between men and women are caused by genes that respond to testosterone.',\n", | |
" 'updated': '2021-04-23T04:18:08.985564Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 170578376,\n", | |
" 'location': 30,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 46935591, 'name': 'biology'}],\n", | |
" 'text': 'Sex is recombination plus outcrossing; this mixing of genes is its principal feature. The consequence is that the baby gets a thorough mixture of its four grandparents’ genes (because of recombination) and its two parents’ genes (because of outcrossing).',\n", | |
" 'updated': '2021-04-23T04:18:08.985499Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530043,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 169401255,\n", | |
" 'location': 29,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Credit is the economic manifestation of trust.',\n", | |
" 'updated': '2021-04-20T04:11:35.979582Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530043,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 169401254,\n", | |
" 'location': 28,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 40759077, 'name': 'discard'}],\n", | |
" 'text': 'An algorithm is a methodical set of steps that can be used to make calculations, resolve problems and reach decisions.',\n", | |
" 'updated': '2021-04-20T04:11:35.979512Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530043,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 169401253,\n", | |
" 'location': 27,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Historians study the past not in order to repeat it, but in order to be liberated from it.',\n", | |
" 'updated': '2021-04-20T04:11:35.979442Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530043,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 169401252,\n", | |
" 'location': 26,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Democratic elections usually work only within populations that have some prior common bond, such as shared religious beliefs or national myths. They are a method to settle disagreements among people who already agree on the basics.',\n", | |
" 'updated': '2021-04-20T04:11:35.979368Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530043,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 169401251,\n", | |
" 'location': 25,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Dataism declares that the universe consists of data flows, and the value of any phenomenon or entity is determined by its contribution to data processing.',\n", | |
" 'updated': '2021-04-20T04:11:35.979297Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530043,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 169401250,\n", | |
" 'location': 24,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The greatest scientific discovery was the discovery of ignorance. Once humans realised how little they knew about the world, they suddenly had a very good reason to seek new knowledge, which opened up the scientific road to progress.',\n", | |
" 'updated': '2021-04-20T04:11:35.979224Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530043,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 169401249,\n", | |
" 'location': 23,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'In the heyday of European imperialism, conquistadors and merchants bought entire islands and countries in exchange for coloured beads. In the twenty-first century our personal data is probably the most valuable resource most humans still have to offer, and we are giving it to the tech giants in exchange for email services and funny cat videos.',\n", | |
" 'updated': '2021-04-20T04:11:35.979143Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530043,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 169401248,\n", | |
" 'location': 22,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 47503509, 'name': 'discard'}],\n", | |
" 'text': 'Science is converging on an all-encompassing dogma, which says that organisms are algorithms and life is data processing. Intelligence is decoupling from consciousness. Non-conscious but highly intelligent algorithms may soon know us better than we know ourselves.',\n", | |
" 'updated': '2021-04-20T04:11:35.979059Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530043,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 169401247,\n", | |
" 'location': 21,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'This is the basic lesson of evolutionary psychology: a need shaped thousands of generations ago continues to be felt subjectively even if it is no longer necessary for survival and reproduction in the present. Tragically, the Agricultural Revolution gave humans the power to ensure the survival and reproduction of domesticated animals while ignoring their subjective needs.',\n", | |
" 'updated': '2021-04-20T04:11:35.978985Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530043,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 169401246,\n", | |
" 'location': 20,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 38627376, 'name': 'favorite'},\n", | |
" {'id': 38627305, 'name': 'philosophy'}],\n", | |
" 'text': 'Humans are in danger of losing their economic value because intelligence is decoupling from consciousness.',\n", | |
" 'updated': '2021-04-20T04:11:35.978874Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530082,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 168901999,\n", | |
" 'location': 30,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Kamaswami conducted his business with care and often with passion, but Siddhartha looked upon all of this as if it was a game, the rules of which he tried hard to learn precisely, but the contents of which did not touch his heart.',\n", | |
" 'updated': '2021-04-19T04:10:35.341173Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530082,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 168901998,\n", | |
" 'location': 28,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'This is why I am continuing my travels—not to seek other, better teachings, for I know there are none, but to depart from all teachings and all teachers and to reach my goal by myself or to die.',\n", | |
" 'updated': '2021-04-19T04:10:35.341101Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530082,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 168901997,\n", | |
" 'location': 27,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 41798013, 'name': 'favorite'},\n", | |
" {'id': 41798011, 'name': 'philosophy'}],\n", | |
" 'text': 'In this hour, Siddhartha stopped fighting his fate, stopped suffering. On his face flourished the cheerfulness of a knowledge, which is no longer opposed by any will, which knows perfection, which is in agreement with the flow of events, with the current of life, full of sympathy for the pain of others, full of sympathy for the pleasure of others, devoted to the flow, belonging to the oneness.',\n", | |
" 'updated': '2021-04-19T04:10:35.341031Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530082,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 168901996,\n", | |
" 'location': 26,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 39470421, 'name': 'love'},\n", | |
" {'id': 39470417, 'name': 'favorite'}],\n", | |
" 'text': 'She taught him, that lovers must not part from one another after celebrating love, without one admiring the other, without being just as defeated as they have been victorious, so that with none of them should start feeling fed up or bored and get that evil feeling of having abused or having been abused.',\n", | |
" 'updated': '2021-04-19T04:10:35.340960Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530082,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 168901995,\n", | |
" 'location': 25,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': '“It might very well be so,” Siddhartha said tiredly. “I am like you. You also do not love—how else could you practise love as a craft? Perhaps, people of our kind can’t love. The childlike people can; that’s their secret.”',\n", | |
" 'updated': '2021-04-19T04:10:35.340889Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530082,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 168901994,\n", | |
" 'location': 24,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Deeply he felt, more deeply than ever before, in this hour, the indestructibility of every life, the eternity of every moment.',\n", | |
" 'updated': '2021-04-19T04:10:35.340817Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530082,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 168901993,\n", | |
" 'location': 23,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'He saw mankind going through life in a childlike or animallike manner, which he loved and also despised at the same time. He saw them toiling, saw them suffering, and becoming gray for the sake of things which seemed to him to entirely unworthy of this price, for money, for little pleasures, for being slightly honoured, he saw them scolding and insulting each other, he saw them complaining about pain at which a Samana would only smile, and suffering because of deprivations which a Samana would not feel.',\n", | |
" 'updated': '2021-04-19T04:10:35.340707Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530082,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 168901992,\n", | |
" 'location': 22,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 41798017, 'name': 'discard'}],\n", | |
" 'text': 'No, there was no teaching a truly searching person, someone who truly wanted to find, could accept.',\n", | |
" 'updated': '2021-04-19T04:10:35.340633Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530082,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 168901991,\n", | |
" 'location': 21,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'But though the ways led away from the self, their end nevertheless always led back to the self.',\n", | |
" 'updated': '2021-04-19T04:10:35.340513Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530082,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 168901990,\n", | |
" 'location': 20,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': '“That I know nothing about myself, that Siddhartha has remained thus alien and unknown to me, stems from one cause, a single cause: I was afraid of myself, I was fleeing from myself! I searched Atman, I searched Brahman, I was willing to dissect myself and peel off all of its layers, to find the core of all peels in its unknown interior, the Atman, life, the divine part, the ultimate part. But I have lost myself in the process.”',\n", | |
" 'updated': '2021-04-19T04:10:35.340359Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530042,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 167604873,\n", | |
" 'location': 39,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Poetic naturalism sits in between: there is only one, unified, physical world, but many useful ways of talking about it, each of which captures an element of reality. Poetic naturalism is at least consistent with its own standards: it tries to provide the most useful way of talking about the world we have.',\n", | |
" 'updated': '2021-04-15T04:13:33.138714Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530042,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 167604872,\n", | |
" 'location': 38,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The real issue with classical mechanics is that it’s not how the world works. These days we know better: quantum mechanics, which came along in the early twentieth century, is an entirely different ontology. There are no “positions” and “velocities” in quantum mechanics; there is only “the quantum state,” also known as “the wave function,” which we can use to calculate the outcomes of experiments that observe the system.',\n", | |
" 'updated': '2021-04-15T04:13:33.138642Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530042,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 167604871,\n", | |
" 'location': 37,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Here in our daily environment, the world of people and cars and houses, we have a complete inventory of the particles and forces and interactions that are strong enough to have any noticeable effect on anything. That’s a tremendous intellectual achievement, one of which the human race can be justifiably proud.',\n", | |
" 'updated': '2021-04-15T04:13:33.138569Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530042,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 167604870,\n", | |
" 'location': 36,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'When a later event has great leverage over an earlier one, we call the latter a “record” of the former; when the earlier event has great leverage over a later one, we call the latter a “cause” of the former.',\n", | |
" 'updated': '2021-04-15T04:13:33.138496Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530042,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 167604869,\n", | |
" 'location': 35,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The reason we observe only certain wavelengths in the emitted light is that the electrons are not gently spiraling inward but spontaneously leaping from one allowed orbit to another, emitting a packet of light to make up the difference in energy between them. The electron is doing “quantum jumps.”',\n", | |
" 'updated': '2021-04-15T04:13:33.138425Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530042,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 167604868,\n", | |
" 'location': 34,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Perhaps Laplace’s greatest contribution to our understanding of mechanics was not a technical or mathematical advance, but a philosophical one. He realized that there was a simple answer to the question “What determines what will happen next?” And the answer is “The state of the universe right now.”',\n", | |
" 'updated': '2021-04-15T04:13:33.138351Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530042,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 167604867,\n", | |
" 'location': 33,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Organisms can be alive even if their constituent atoms are not. Animals can be conscious even if their cells are not. People can make choices even if the very concept of “choice” doesn’t apply to the pieces of which they are made.',\n", | |
" 'updated': '2021-04-15T04:13:33.138253Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530042,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 167604866,\n", | |
" 'location': 32,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'There is a much more profound implication of accepting the Core Theory as underlying the world of our everyday experience. Namely: there is no life after death. We each have a finite time as living creatures, and when it’s over, it’s over.',\n", | |
" 'updated': '2021-04-15T04:13:33.138180Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530042,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 167604865,\n", | |
" 'location': 31,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'When you realize that you are holding two beliefs that are in conflict with each other, psychologists refer to the resulting discomfort as cognitive dissonance.',\n", | |
" 'updated': '2021-04-15T04:13:33.138105Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530042,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 167604864,\n", | |
" 'location': 30,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'With abduction, by contrast, we take all of our background knowledge about how the world works, and perhaps some preference for simple explanations over complex ones (Occam’s razor), and decide what possible explanation provides the best account of all the facts we have.',\n", | |
" 'updated': '2021-04-15T04:13:33.137988Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352914,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-24T12:39:27Z',\n", | |
" 'id': 160076336,\n", | |
" 'location': 40,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Habit based on experience is for the ordinary person what reason is to the scientist',\n", | |
" 'updated': '2021-03-24T07:59:44.991513Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352914,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-24T12:36:53Z',\n", | |
" 'id': 160076335,\n", | |
" 'location': 40,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Even as reasoning connects beliefs by logical relationships, so memory connects experiences by association',\n", | |
" 'updated': '2021-03-24T07:59:44.946488Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352914,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-24T12:26:05Z',\n", | |
" 'id': 160076334,\n", | |
" 'location': 39,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Even as the traditional atoms are the ultimate physical building blocks of material objects, so the monads are the ultimate metaphysical building blocks of substances',\n", | |
" 'updated': '2021-03-24T07:59:44.903068Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352913,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-23T12:06:39Z',\n", | |
" 'id': 160076333,\n", | |
" 'location': 52,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Dreyfus and Kelly published a book, All Things Shining',\n", | |
" 'updated': '2021-03-24T07:59:44.765096Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352913,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-23T12:06:32Z',\n", | |
" 'id': 160076332,\n", | |
" 'location': 52,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'philosophy department. In 2011, Dreyfus and',\n", | |
" 'updated': '2021-03-24T07:59:44.720902Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-16T15:00:48Z',\n", | |
" 'id': 160076331,\n", | |
" 'location': 299,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Putting together the initial team, creating the culture, and instilling the mission and values into the team are all like designing and building the initial product',\n", | |
" 'updated': '2021-03-24T07:59:44.588858Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-16T14:52:08Z',\n", | |
" 'id': 160076330,\n", | |
" 'location': 292,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The founders or one or two key senior people at any multimillion-dollar company should probably spend between 25 percent and 33 percent of their time identifying and attracting talent.',\n", | |
" 'updated': '2021-03-24T07:59:44.535849Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-16T14:51:10Z',\n", | |
" 'id': 160076329,\n", | |
" 'location': 291,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': '“A robust company culture is one in which people have something in common that distinguishes them quite sharply from the rest of the world. If everybody likes ice cream, that probably doesn’t matter … you also need to strike the right balance between athletes (competitive people) and nerds (creators) no matter what.',\n", | |
" 'updated': '2021-03-24T07:59:44.492160Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-16T14:51:06Z',\n", | |
" 'id': 160076328,\n", | |
" 'location': 291,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'A robust company culture is one in which people have something in common that distinguishes them quite sharply from the rest of the world. If everybody likes ice cream, that probably doesn’t matter … you also need to strike the right balance between athletes (competitive people',\n", | |
" 'updated': '2021-03-24T07:59:44.448245Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-16T14:51:01Z',\n", | |
" 'id': 160076327,\n", | |
" 'location': 291,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'company culture is one in which people have something in common that distinguishes them quite sharply from the rest of the world. If everybody likes ice cream, that probably doesn’t matter … you also need to strike the right balance between athletes (competitive people) and nerds (creators) no matter what.',\n", | |
" 'updated': '2021-03-24T07:59:44.405096Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-16T14:47:54Z',\n", | |
" 'id': 160076326,\n", | |
" 'location': 287,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Great companies do three things. First, they create value. Second, they are lasting or permanent in a meaningful way. Finally, they capture at least some of the value they create.”',\n", | |
" 'updated': '2021-03-24T07:59:44.359365Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-16T14:36:06Z',\n", | |
" 'id': 160076325,\n", | |
" 'location': 274,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'When you’re the CEO, you have the least freedom, because you can’t just quit.',\n", | |
" 'updated': '2021-03-24T07:59:44.293411Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-16T14:32:41Z',\n", | |
" 'id': 160076324,\n", | |
" 'location': 269,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': '“I use Warren Buffett’s criteria for assessing the team: Intelligence, Integrity and Energy. You want someone who is really smart, very hardworking, and trustworthy. A lot of people forget the integrity part, but if you don’t have that, then you have a really hardworking crook, and they will find a way to cheat you',\n", | |
" 'updated': '2021-03-24T07:59:44.249325Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-16T14:32:36Z',\n", | |
" 'id': 160076323,\n", | |
" 'location': 269,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 46670851, 'name': 'business'}],\n", | |
" 'text': 'use Warren Buffett’s criteria for assessing the team: Intelligence, Integrity and Energy. You want someone who is really smart, very hardworking, and trustworthy. A lot of people forget the integrity part, but if you don’t have that, then you have a really hardworking crook, and they will find a way to cheat you.”',\n", | |
" 'updated': '2021-03-24T07:59:44.204008Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-16T14:31:09Z',\n", | |
" 'id': 160076322,\n", | |
" 'location': 267,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The Internet is very efficiently arbitraged. Anything you can think of has been thought of and tried. The only way you’re going to find something is if you stick to it at an irrational level and try a whole bunch of things.',\n", | |
" 'updated': '2021-03-24T07:59:44.159492Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-16T14:28:39Z',\n", | |
" 'id': 160076321,\n", | |
" 'location': 265,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'It is in complex systems, ones in which we have little visibility of the chains of cause–consequences, that tinkering, bricolage, or similar variations of trial and error have been shown to vastly outperform the teleological—it is nature’s modus operandi. But tinkering needs to be convex; it is imperative…. Critically what is desired is to have the option, not the obligation, to keep the result, which allows us to retain the upper bound and be unaffected by adverse outcomes',\n", | |
" 'updated': '2021-03-24T07:59:44.116081Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-15T12:33:46Z',\n", | |
" 'id': 160076320,\n", | |
" 'location': 258,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Instead of starting with the market and then finding the product, the really big winners start with a product and find a market',\n", | |
" 'updated': '2021-03-24T07:59:44.071802Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-15T12:29:11Z',\n", | |
" 'id': 160076319,\n", | |
" 'location': 252,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The best founders can relay incredibly complex ideas in simple terms, can see things you don’t see, are relentlessly',\n", | |
" 'updated': '2021-03-24T07:59:44.026697Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-15T12:26:51Z',\n", | |
" 'id': 160076318,\n", | |
" 'location': 242,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Users are only ever in three states: they’ve never heard about it; they’ve tried it; and they use it. What you’re managing is state change. So the framework is, what causes these changes? The answer should be rooted more in preference, choice, and psychology than in some quantitative thing.',\n", | |
" 'updated': '2021-03-24T07:59:43.971467Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-15T12:24:27Z',\n", | |
" 'id': 160076317,\n", | |
" 'location': 241,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'We loved that expression when we first heard it from Barksdale, who was then the COO of FedEx. That single sentence captures the greatest challenge that executives and managers face today: keeping their people and their organizations centered on what matters most. Every organization needs a Main Thing—a single, powerful expression of what it hopes to accomplish. Without it, it’s not possible to align the four elements that produce organizational efficiency and effectiveness: strategy, people, customers, and processes',\n", | |
" 'updated': '2021-03-24T07:59:43.926749Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-15T01:19:49Z',\n", | |
" 'id': 160076316,\n", | |
" 'location': 207,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'We’re looking for extraordinary entrepreneurs who can create very large businesses. After eighteen years and backing over one hundred entrepreneurs, I’ve learned it’s a rare person who has the combination of attributes to get through the challenges of a startup and create a large company that changes our lives.”',\n", | |
" 'updated': '2021-03-24T07:59:43.881378Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-15T01:08:29Z',\n", | |
" 'id': 160076315,\n", | |
" 'location': 196,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The monetization technique in China cannot just be advertising supported. The China population is actually a paying population. They pay for games, things that they don’t even need. They pay for virtual items so they can look like a duke. They drive a virtual BMW to a concert that’s all online. They can pay. This is the young generation. For them, do I line up, get stuck in traffic, buy a 300 renminbi ticket and get stuck in an auditorium? Or can I do that for 100 bucks and look like a king online? So the time has changed, and therefore, if you have users, any company should try to monetize through various ways. That’s how we push our CEOs when they say, ‘Well, this is how the West does it.’ We say, ‘Let’s see if the East can do it better.',\n", | |
" 'updated': '2021-03-24T07:59:43.835336Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-14T13:29:43Z',\n", | |
" 'id': 160076314,\n", | |
" 'location': 182,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Where most entrepreneurs fail is on the things they don’t know they don’t know.',\n", | |
" 'updated': '2021-03-24T07:59:43.790985Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-14T13:28:28Z',\n", | |
" 'id': 160076313,\n", | |
" 'location': 182,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'How would you compete against yourself?',\n", | |
" 'updated': '2021-03-24T07:59:43.744572Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-14T13:17:05Z',\n", | |
" 'id': 160076312,\n", | |
" 'location': 174,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'There are only two priorities for a startup: winning the market and not running out of cash. Running lean is not an end.”',\n", | |
" 'updated': '2021-03-24T07:59:43.702122Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-14T13:15:12Z',\n", | |
" 'id': 160076311,\n", | |
" 'location': 173,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Figuring out the right product is the innovator’s job, not the customer’s job. The customer only knows what she thinks she wants based on her experience with the current product. The innovator can take into account everything that’s possible, often going against what she knows to be true. This requires a combination of knowledge, skill, and courage.',\n", | |
" 'updated': '2021-03-24T07:59:43.658647Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-14T13:11:39Z',\n", | |
" 'id': 160076310,\n", | |
" 'location': 171,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Innovation is almost insane by definition: Most people view any truly innovative idea as stupid because if it were a good idea, somebody would have already done it. So, the innovator is guaranteed to have more natural initial detractors than followers',\n", | |
" 'updated': '2021-03-24T07:59:43.615196Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-14T13:09:17Z',\n", | |
" 'id': 160076309,\n", | |
" 'location': 170,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'When a company goes astray, you talk to employees, and they say, ‘We have no strategy. We don’t know where we’re going.’ The strategy is the story. They’re not different. The strategy is the story you tell. It’s the why. If you can’t tell that in a massively compelling way, who’s going to follow you? That’s what makes people get up in the morning and do stuff.',\n", | |
" 'updated': '2021-03-24T07:59:43.571519Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-14T13:08:07Z',\n", | |
" 'id': 160076308,\n", | |
" 'location': 170,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'You do not want to smooth over conflicts. You want the conflicts to surface, and you want to resolve them. If you don’t, you have got problems. If you do surface and resolve them, you will be a pretty good manager',\n", | |
" 'updated': '2021-03-24T07:59:43.528257Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-13T16:25:07Z',\n", | |
" 'id': 160076307,\n", | |
" 'location': 159,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'A great founding strategy is contrarian and right. That ensures that, at least for an important initial time, no one is coming after you. Eventually, people will come after you if you’re on to something good.',\n", | |
" 'updated': '2021-03-24T07:59:43.484696Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-09T12:46:01Z',\n", | |
" 'id': 160076306,\n", | |
" 'location': 139,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'It’s better to make a few people really happy than to make a lot of people semi-happy',\n", | |
" 'updated': '2021-03-24T07:59:43.441178Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-09T12:45:42Z',\n", | |
" 'id': 160076305,\n", | |
" 'location': 137,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'You need three things to create a successful startup: to start with good people, to make something customers want, and to spend as little money as possible',\n", | |
" 'updated': '2021-03-24T07:59:43.398071Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-09T12:39:43Z',\n", | |
" 'id': 160076304,\n", | |
" 'location': 132,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Y Combinator invests $120,000 in return for 7 percent of a company’s equity',\n", | |
" 'updated': '2021-03-24T07:59:43.355094Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-09T12:35:14Z',\n", | |
" 'id': 160076303,\n", | |
" 'location': 127,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'What are your unfair advantages?”',\n", | |
" 'updated': '2021-03-24T07:59:43.311661Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-09T12:33:01Z',\n", | |
" 'id': 160076302,\n", | |
" 'location': 124,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Many of the entrepreneurs that we back are attacking a personal pain',\n", | |
" 'updated': '2021-03-24T07:59:43.269262Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-09T12:32:36Z',\n", | |
" 'id': 160076301,\n", | |
" 'location': 123,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'I am looking for unknowns, who are passionate and missionbased.',\n", | |
" 'updated': '2021-03-24T07:59:43.226557Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-09T12:32:31Z',\n", | |
" 'id': 160076300,\n", | |
" 'location': 123,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'am looking for unknowns, who',\n", | |
" 'updated': '2021-03-24T07:59:43.183505Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-09T12:27:31Z',\n", | |
" 'id': 160076299,\n", | |
" 'location': 120,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'A lot of the entrepreneurs I work with, I encourage to get rid of the PowerPoint. A typical board meeting will have thirty to sixty PowerPoint slides. So, I ask entrepreneurs I work with to think about that as a Word document, and can you reduce it down to something we can read before the board meeting, so we don’t sit there looking at slides for three hours.',\n", | |
" 'updated': '2021-03-24T07:59:43.141188Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-09T12:22:07Z',\n", | |
" 'id': 160076298,\n", | |
" 'location': 117,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The great entrepreneurs have found they need to find complements. If you look at yourself and reflect on your skills and your talents and your unique abilities, you’ll find that everybody has their gaps.”',\n", | |
" 'updated': '2021-03-24T07:59:43.097655Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-08T13:02:56Z',\n", | |
" 'id': 160076297,\n", | |
" 'location': 99,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The history of technology businesses, as well as many others, suggests that it’s very often the case that the second or third mover ends up winning. Sometimes it pays to let someone else create a market and be the second or third entrant. That was true in the spreadsheet business with Lotus. That was true in the personal computing business with Dell, true in the router business with Cisco; and true in the operating system business with Microsoft',\n", | |
" 'updated': '2021-03-24T07:59:43.052992Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-08T13:02:52Z',\n", | |
" 'id': 160076296,\n", | |
" 'location': 99,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The history of technology businesses, as well as many others, suggests that it’s very often the case that the second or third mover ends up winning. Sometimes it pays to let someone else create a market and be the second or third entrant. That was true in the spreadsheet business with Lotus. That was true in the personal computing business with Dell, true in the router business with Cisco; and true in the operating',\n", | |
" 'updated': '2021-03-24T07:59:43.009732Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-08T13:02:48Z',\n", | |
" 'id': 160076295,\n", | |
" 'location': 99,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'history of technology businesses, as well as many others, suggests that it’s very often the case that the second or third mover ends up winning. Sometimes it pays to let someone else create a market and be the second or third entrant. That was true in the spreadsheet business with Lotus. That was true in the personal computing business with Dell, true in the router business with Cisco; and true in the operating system business with Microsoft',\n", | |
" 'updated': '2021-03-24T07:59:42.966895Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-08T13:02:43Z',\n", | |
" 'id': 160076294,\n", | |
" 'location': 99,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'suggests that it’s very often the case that the second or third mover ends up winning. Sometimes it pays to let someone else create a market and be the second or third entrant. That was true in the spreadsheet business with Lotus. That was true in the personal computing business with Dell, true in the router business with Cisco; and true in the operating system business with Microsoft',\n", | |
" 'updated': '2021-03-24T07:59:42.924105Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-08T12:49:17Z',\n", | |
" 'id': 160076293,\n", | |
" 'location': 99,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The most successful companies tend to concentrate on serving a market where there is not a lot of competition or on inventing a new market. This allows the business to grow faster and to possibly generate a strong base from which to expand into adjacent markets. This is a variant of a “land-and-expand” strategy',\n", | |
" 'updated': '2021-03-24T07:59:42.881128Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-08T11:59:25Z',\n", | |
" 'id': 160076292,\n", | |
" 'location': 86,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 39632220, 'name': 'business'}],\n", | |
" 'text': 'Rather than just raising cash as they grow their businesses, the smartest entrepreneurs select venture capitalists who can deliver valuable services. The best venture capitalists have access to the best networks, which further amplifies their value.',\n", | |
" 'updated': '2021-03-24T07:59:42.837123Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-08T11:56:28Z',\n", | |
" 'id': 160076291,\n", | |
" 'location': 85,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Surround yourself with superstars. And not just the people you choose to work with. That’s really important. But the people you raise money from as well. Surround yourself with superstars, and everything else takes care of itself. Whenever in my career I’ve compromised because I’ve had a short-term itch I needed to scratch—and I just had to hire somebody—it’s been a mistake. And I’ve regretted it. It’s hard to get rid of the (poor) performers. Surround yourself with superstars',\n", | |
" 'updated': '2021-03-24T07:59:42.794042Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-08T11:56:21Z',\n", | |
" 'id': 160076290,\n", | |
" 'location': 85,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Surround yourself with superstars. And not just the people you choose to work with. That’s really important. But the people you raise money from as well. Surround yourself with superstars, and everything else takes care of itself. Whenever in my career I’ve compromised because I’ve had a short-term itch I needed to scratch—and I just had to hire somebody—it’s been a mistake. And I’ve regretted it. It’s hard to get rid of the (poor) performers. Surround yourself with superstars. They hire superstars',\n", | |
" 'updated': '2021-03-24T07:59:42.751346Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-08T11:42:03Z',\n", | |
" 'id': 160076289,\n", | |
" 'location': 83,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Great leaders need three key attributes to successfully execute: brains, courage, and heart',\n", | |
" 'updated': '2021-03-24T07:59:42.708482Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-07T12:57:46Z',\n", | |
" 'id': 160076288,\n", | |
" 'location': 83,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'are necessary but not sufficient for success with a startup. The idea itself will inevitably evolve as time passes and the environment changes. Barton is saying that executing is more difficult than generating a good idea. Establishing a team to build the product, finding the correct product–market fit, and scaling the business are all challenging tasks',\n", | |
" 'updated': '2021-03-24T07:59:42.665808Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-07T12:57:30Z',\n", | |
" 'id': 160076287,\n", | |
" 'location': 83,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Ideas are necessary but not sufficient for success with a startup. The idea itself will inevitably evolve as time passes and the environment changes. Barton is saying that executing is more difficult than generating a good idea. Establishing a team to build the product, finding the correct product–market fit, and scaling the business are all challenging tasks',\n", | |
" 'updated': '2021-03-24T07:59:42.623375Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-07T12:57:03Z',\n", | |
" 'id': 160076286,\n", | |
" 'location': 82,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Find me a provocative topic, and I’ll show you something you don’t have to spend a lot of marketing dollars to launch. People like to be provoked, and if you are provoking with information that is on the side of the angels, on the side of the consumer, the louder the industry reacts. And they just can’t win. It’s the greatest way to market',\n", | |
" 'updated': '2021-03-24T07:59:42.579621Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-06T12:37:22Z',\n", | |
" 'id': 160076285,\n", | |
" 'location': 64,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Too much money can distract a young business from focusing on what is necessary to become a successful company. Businesses do not die from starvation alone—they can just as easily die from indigestion',\n", | |
" 'updated': '2021-03-24T07:59:42.537643Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-06T12:35:30Z',\n", | |
" 'id': 160076284,\n", | |
" 'location': 64,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Ten years ago, you needed $5 million to start a business. Today, you need $70 and some coding skills.”',\n", | |
" 'updated': '2021-03-24T07:59:42.495196Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-06T12:33:07Z',\n", | |
" 'id': 160076283,\n", | |
" 'location': 63,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'What founders should seek when their business is at seed stage is a lead professional investor who can add more than just capital. What do I mean by the professional investor? Professional investors are more than just wealthy, well-connected individuals. They can help founders solve real business problems, rather than just write checks',\n", | |
" 'updated': '2021-03-24T07:59:42.451222Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-04T13:08:50Z',\n", | |
" 'id': 160076282,\n", | |
" 'location': 60,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Experienced venture capitalists are looking for evidence that founders have strong sales skills. One early test of a these skills is how well a founder performs when making a fundraising pitch. The idea is simple: If the entrepreneur can’t sell the idea to a venture capitalist, how is he or she going to be able to recruit great people, sell the product, and find great distribution? The ability to sell the product to investors, sell the potential of the business to employees, and then to sell the product to customers is core to any business',\n", | |
" 'updated': '2021-03-24T07:59:42.408784Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-04T13:08:45Z',\n", | |
" 'id': 160076281,\n", | |
" 'location': 60,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Experienced venture capitalists are looking for evidence that founders have strong sales skills. One early test of a these skills is how well a founder performs when making a fundraising pitch. The idea is simple: If the entrepreneur can’t sell the idea to a venture capitalist, how is he or she going to be able to recruit great people, sell the product, and find great distribution? The ability to sell the product to investors, sell the potential of the business to employees',\n", | |
" 'updated': '2021-03-24T07:59:42.366872Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-04T13:05:28Z',\n", | |
" 'id': 160076280,\n", | |
" 'location': 59,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 45525935, 'name': 'business'}],\n", | |
" 'text': '“At the beginning, you should only hire when you have a desperate need to.',\n", | |
" 'updated': '2021-03-24T07:59:42.324852Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-04T13:05:23Z',\n", | |
" 'id': 160076279,\n", | |
" 'location': 59,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'the beginning, you should only hire when you have a desperate need to.',\n", | |
" 'updated': '2021-03-24T07:59:42.282844Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-04T12:54:30Z',\n", | |
" 'id': 160076278,\n", | |
" 'location': 55,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Passion and a mission are more likely to exist if a business is providing solutions to problems that cause the founders personal pain. In other words, a deep understanding of a valuable customer problem and potential solutions to that problem is enhanced if the founders are themselves potential customers for the solution',\n", | |
" 'updated': '2021-03-24T07:59:42.240050Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-04T12:52:59Z',\n", | |
" 'id': 160076277,\n", | |
" 'location': 54,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The best companies are almost always mission oriented.',\n", | |
" 'updated': '2021-03-24T07:59:42.197027Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-04T12:34:03Z',\n", | |
" 'id': 160076276,\n", | |
" 'location': 46,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'As you consider building your own minimum viable product, let this simple rule suffice: Remove any feature, process, or effort that does not contribute directly to the learning you seek. If you want to do minimum viable product, you have to be prepared to iterate. And so you have to have the courage to say, “Yeah, we’ll ship something, get negative feedback, and respond',\n", | |
" 'updated': '2021-03-24T07:59:42.154633Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-03T12:05:29Z',\n", | |
" 'id': 160076275,\n", | |
" 'location': 44,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The minimum viable product is that product which has just those features (and no more) that allow you to ship a product that resonates with early adopters, some of whom will pay you money or give you feedback. The lesson of the MVP is that any additional work beyond what was required to start learning is waste, no matter how important it might have seemed at the time.”',\n", | |
" 'updated': '2021-03-24T07:59:42.112513Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-03T11:51:51Z',\n", | |
" 'id': 160076274,\n", | |
" 'location': 38,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Great entrepreneurs are persistent, obsessive, and relentless, but the really great entrepreneurs also seem to have a gift for looking at the world from a customer’s viewpoint',\n", | |
" 'updated': '2021-03-24T07:59:42.070510Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-03T11:46:19Z',\n", | |
" 'id': 160076273,\n", | |
" 'location': 37,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The best CEOs and founders have learned that trying to predict the future is vastly inferior to discovering what customers want by running experiments with real customers using methods based on the scientific method',\n", | |
" 'updated': '2021-03-24T07:59:42.025745Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-03T11:46:14Z',\n", | |
" 'id': 160076272,\n", | |
" 'location': 37,\n", | |
" 'location_type': 'page',\n", | |
" 'note': 'Analytics',\n", | |
" 'tags': [],\n", | |
" 'text': 'best CEOs and founders have learned that trying to predict the future is vastly inferior to discovering what customers want by running experiments with real customers using methods based on the scientific method',\n", | |
" 'updated': '2021-03-24T07:59:45.226081Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-03T11:44:26Z',\n", | |
" 'id': 160076271,\n", | |
" 'location': 36,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Great salespeople in the modern era are consultants to the customer and help them first justify the purchase and then succeed with the product',\n", | |
" 'updated': '2021-03-24T07:59:41.940324Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-03T11:40:32Z',\n", | |
" 'id': 160076270,\n", | |
" 'location': 35,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Great CEOs and managers today have many skills and are learning machines',\n", | |
" 'updated': '2021-03-24T07:59:41.897836Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-02T13:48:24Z',\n", | |
" 'id': 160076269,\n", | |
" 'location': 35,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The background of the founders and CEO makes a huge difference in terms of which discipline is predominant in a given business. It is evident which discipline Campbell thinks should dominate: engineering',\n", | |
" 'updated': '2021-03-24T07:59:41.854423Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-02T13:42:44Z',\n", | |
" 'id': 160076268,\n", | |
" 'location': 33,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Nassim Taleb writes, “Most of you will fail, disrespected, impoverished, but we are grateful for the risks you are taking and the sacrifices you are making for the sake of the economic growth of the planet and pulling others out of poverty. You are the source of our antifragility. Our nation thanks you.',\n", | |
" 'updated': '2021-03-24T07:59:41.812026Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-02T13:42:40Z',\n", | |
" 'id': 160076267,\n", | |
" 'location': 33,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Nassim Taleb writes, “Most of you will fail, disrespected, impoverished, but we are grateful for the risks you are taking and the sacrifices you are making for the sake of the economic growth of the planet and pulling others out of poverty. You are the source of our antifragility. Our nation thanks you.” Being',\n", | |
" 'updated': '2021-03-24T07:59:41.768967Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-02T13:34:51Z',\n", | |
" 'id': 160076266,\n", | |
" 'location': 30,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'My observation was that once a person actually completed a play or a novel, he was well on his way to getting it produced or published, as opposed to a vast majority of people who tell me their ambition is to write, but who strike out on the very first level and indeed never write the play or book. In the midst of the conversation, as I’m now trying to recall, I did say that 80 percent of success is showing up.',\n", | |
" 'updated': '2021-03-24T07:59:41.726588Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-01T17:47:31Z',\n", | |
" 'id': 160076265,\n", | |
" 'location': 30,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Founders see a vision, but then they manage to attract a set of world-class employees to help them create that vision.',\n", | |
" 'updated': '2021-03-24T07:59:41.684334Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-01T01:09:26Z',\n", | |
" 'id': 160076264,\n", | |
" 'location': 28,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The best founders, CEOs, managers, and engineers spend massive amounts of time with their customers. They do so because they love their products and want to share this love with others',\n", | |
" 'updated': '2021-03-24T07:59:41.642172Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-03-01T01:08:36Z',\n", | |
" 'id': 160076263,\n", | |
" 'location': 28,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 45703096, 'name': 'business'}],\n", | |
" 'text': 'Blank has developed what he calls a Customer-Development Process, based on the idea that startups should apply the scientific method just as scientists do: Start with a hypothesis, test it, and prove it—or move on to further iterations of the hypothesis if it proves incorrect.',\n", | |
" 'updated': '2021-03-24T07:59:41.599984Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-28T18:21:46Z',\n", | |
" 'id': 160076262,\n", | |
" 'location': 26,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'One of the best business books on what it is like to actually run a business is Shoe Dog, written by Phil Knight, which chronicles the story of Nike',\n", | |
" 'updated': '2021-03-24T07:59:41.557903Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-28T18:21:42Z',\n", | |
" 'id': 160076261,\n", | |
" 'location': 26,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'of the best business books on what it is like to actually run a business is Shoe Dog, written by Phil Knight, which chronicles the story of Nike',\n", | |
" 'updated': '2021-03-24T07:59:41.514784Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-28T18:20:12Z',\n", | |
" 'id': 160076260,\n", | |
" 'location': 25,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'A business is no longer a startup once it has a repeatable and scalable business model. Blank has said that that once a business is no longer a startup, it may begin to develop “antibodies,” which stifle the development of new products and services, as well as new business models. There is an inherent tension between the creation of new, repeatable, scalable business models and the optimal execution of an existing business model, because superior execution often involves eliminating anything not core to the mission of the existing model',\n", | |
" 'updated': '2021-03-24T07:59:41.472186Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-28T18:13:35Z',\n", | |
" 'id': 160076259,\n", | |
" 'location': 21,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'You have to be an independent thinker because you can’t make money agreeing with the consensus view, which is already embedded in the price. Whenever you’re betting against the consensus, there’s a significant probability you’re going to be wrong, so you have to be humble',\n", | |
" 'updated': '2021-03-24T07:59:41.428273Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-28T18:11:11Z',\n", | |
" 'id': 160076258,\n", | |
" 'location': 20,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Outsized returns often come from betting against conventional wisdom, and conventional wisdom is usually right. Given a 10 percent chance of a one hundred–times payoff, you should take that bet every time. But you’re still going to be wrong nine times out of ten. We all know that if you swing for the fences, you’re going to strike out a lot, but you’re also going to hit some home runs. The difference between baseball and business, however, is that baseball has a truncated outcome distribution. When you swing, no matter how well you connect with the ball, the most runs you can get is four. In business, every once in a while, when you step up to the plate, you can score 1,000 runs. This long-tailed distribution of returns is why it’s important to be bold. Big winners pay for so many experiments',\n", | |
" 'updated': '2021-03-24T07:59:41.386355Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-28T01:25:52Z',\n", | |
" 'id': 160076257,\n", | |
" 'location': 19,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The best way to increase the odds that your team will see things you don’t is to assemble incredibly different incredible people',\n", | |
" 'updated': '2021-03-24T07:59:41.343739Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-28T01:18:22Z',\n", | |
" 'id': 160076256,\n", | |
" 'location': 17,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The only study of entrepreneurship you need beyond your own experiential education from doing it is to reconcile the insights you get from all angles so that you can triangulate your own approach to building a team, culture, and vision—and an enduring business that is both uniquely you and bigger than you',\n", | |
" 'updated': '2021-03-24T07:59:41.300730Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352912,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-28T01:16:57Z',\n", | |
" 'id': 160076255,\n", | |
" 'location': 16,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Make a plan, and edit it indefinitely',\n", | |
" 'updated': '2021-03-24T07:59:41.257925Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352911,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-21T02:33:49Z',\n", | |
" 'id': 160076254,\n", | |
" 'location': 23,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Most of the propositions and questions of philosophers arise from our failure to understand the logic of our language.',\n", | |
" 'updated': '2021-03-24T07:59:41.130876Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352911,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-21T02:33:13Z',\n", | |
" 'id': 160076253,\n", | |
" 'location': 22,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Everyday language is a part of the human organism and is no less complicated than it. It is not humanly possible to gather immediately from it what the logic of language is. Language disguises thought. So much so, that from the outward form of the clothing it is impossible to infer the form of the thought beneath it, because the outward form of the clothing is not designed to reveal the form of the body, but for entirely diferent purposes. The tacit conventions on which the understanding of everyday language depends are enormously complicated.',\n", | |
" 'updated': '2021-03-24T07:59:41.088232Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352911,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-21T02:30:01Z',\n", | |
" 'id': 160076250,\n", | |
" 'location': 21,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Defnitions are rules for translating from one language3.343 into another. Any correct sign-language must be translatable into any other in accordance with such rules: it is this that they all have in common',\n", | |
" 'updated': '2021-03-24T07:59:41.043312Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352911,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-21T02:22:46Z',\n", | |
" 'id': 160076249,\n", | |
" 'location': 18,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'In everyday language it very frequently happens that the3.323 same word has diferent modes of signifcation—and so belongs to diferent symbols—or that two words that have diferent modes of signifcation are employed in propositions in what is superfcially the same way. Thus the word ‘is’ fgures as the copula, as a sign for identity, and as an expression for existence; ‘exist’ fgures as an intransitive verb like ‘go’, and ‘identical’ as an adjective; we speak of something, but also of something’s happening.',\n", | |
" 'updated': '2021-03-24T07:59:40.999893Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352911,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-20T19:57:55Z',\n", | |
" 'id': 160076248,\n", | |
" 'location': 12,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 37220818, 'name': 'discard'}],\n", | |
" 'text': 'It is impossible to tell from the picture alone whether it 2.224 is true or false.',\n", | |
" 'updated': '2021-03-24T07:59:40.957424Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352911,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-20T19:54:15Z',\n", | |
" 'id': 160076247,\n", | |
" 'location': 10,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'What constitutes a picture is that its elements are related2.14 to one another in a determinate way',\n", | |
" 'updated': '2021-03-24T07:59:40.914748Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352911,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-20T19:54:11Z',\n", | |
" 'id': 160076246,\n", | |
" 'location': 10,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'What constitutes a picture is that its elements',\n", | |
" 'updated': '2021-03-24T07:59:40.871089Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352911,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-20T19:54:04Z',\n", | |
" 'id': 160076245,\n", | |
" 'location': 10,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'What constitutes a picture is that its elements are related2.14 to one another in a determinate way',\n", | |
" 'updated': '2021-03-24T07:59:40.827380Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352911,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-20T19:37:04Z',\n", | |
" 'id': 160076244,\n", | |
" 'location': 3,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 46101061, 'name': 'favorite'},\n", | |
" {'id': 35441839, 'name': 'philosophy'}],\n", | |
" 'text': 'in order to be able to draw a limit to thought, we should have to find both sides of the limit thinkable (i.e. we should have to be able to think what cannot be thought)',\n", | |
" 'updated': '2021-03-24T07:59:40.784252Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352911,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-20T19:34:37Z',\n", | |
" 'id': 160076243,\n", | |
" 'location': 3,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'what can be said at all can be said clearly, and what we cannot talk about we must pass over in silence',\n", | |
" 'updated': '2021-03-24T07:59:40.741484Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352911,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-20T19:31:57Z',\n", | |
" 'id': 160076242,\n", | |
" 'location': 1,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 39043634, 'name': 'discard'}],\n", | |
" 'text': 'As one with a long experience of the difculties of logic and of the deceptiveness of theories which seem irrefutable, I fnd myself unable to be sure of the rightness of a theory, merely on the ground that I cannot see any point on which it is wrong. But to have constructed a theory of logic which is not at any point obviously wrong is to have achieved a work of extraordinary difculty and importance. This merit, in my opinion, belongs to Mr Wittgenstein’s book, and makes it one which no serious philosopher can aford to neglect.',\n", | |
" 'updated': '2021-03-24T07:59:40.698958Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352911,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-20T19:31:52Z',\n", | |
" 'id': 160076241,\n", | |
" 'location': 1,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 38728442, 'name': 'discard'},\n", | |
" {'id': 36114116, 'name': 'rationality'}],\n", | |
" 'text': 'one with a long experience of the difculties of logic and of the deceptiveness of theories which seem irrefutable, I fnd myself unable to be sure of the rightness of a theory, merely on the ground that I cannot see any point on which it is wrong. But to have constructed a theory of logic which is not at any point obviously wrong is to have achieved a work of extraordinary difculty and importance. This merit, in my opinion, belongs to Mr Wittgenstein’s book, and makes it one which no serious philosopher can aford to neglect.',\n", | |
" 'updated': '2021-03-24T07:59:40.654639Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352911,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-20T19:31:47Z',\n", | |
" 'id': 160076240,\n", | |
" 'location': 1,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'As one with a long experience of the difculties of logic and of the deceptiveness of theories which seem irrefutable, I fnd myself unable to be sure of the rightness of a theory, merely on the ground that I cannot see any point on which it is wrong. But to have constructed a theory of logic which is not at any point obviously wrong is to have achieved a work of extraordinary difculty and importance. This merit, in my opinion, belongs to Mr Wittgenstein’s book',\n", | |
" 'updated': '2021-03-24T07:59:40.611082Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352911,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-20T19:29:15Z',\n", | |
" 'id': 160076239,\n", | |
" 'location': 1,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'These difculties suggest to my mind some such possibility as this: that every language has, as Mr Wittgenstein says, a structure concerning which, in the language, nothing can be said, but that there may be another language dealing with the structure of the frst language, and having itself a new structure, and that to this hierarchy of languages there may be no limit. Mr Wittgenstein would of course reply that his whole theory is applicable unchanged to the totality of such languages',\n", | |
" 'updated': '2021-03-24T07:59:40.567870Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352911,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-20T19:27:05Z',\n", | |
" 'id': 160076238,\n", | |
" 'location': 1,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'His defence would be that what he calls the mystical can be shown,',\n", | |
" 'updated': '2021-03-24T07:59:40.525656Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352911,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-20T19:27:02Z',\n", | |
" 'id': 160076237,\n", | |
" 'location': 1,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'defence would be that what he calls the mystical can be shown, although',\n", | |
" 'updated': '2021-03-24T07:59:40.483197Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352911,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-20T19:26:57Z',\n", | |
" 'id': 160076236,\n", | |
" 'location': 1,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Nevertheless he is capable of conveying his ethical opinions. His defence would be that what he calls the mystical can be shown,',\n", | |
" 'updated': '2021-03-24T07:59:40.440404Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352911,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-20T19:26:47Z',\n", | |
" 'id': 160076235,\n", | |
" 'location': 1,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 43108476, 'name': 'discard'}],\n", | |
" 'text': 'Nevertheless he is capable of conveying his ethical opinions. His defence would be that what he calls the mystical can be shown,',\n", | |
" 'updated': '2021-03-24T07:59:40.397803Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352911,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-20T19:15:38Z',\n", | |
" 'id': 160076234,\n", | |
" 'location': 1,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'That the world is my world appears in the fact that the boundaries of language (the only language I understand) indicate the boundaries of my world',\n", | |
" 'updated': '2021-03-24T07:59:40.354823Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352911,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-20T19:15:34Z',\n", | |
" 'id': 160076233,\n", | |
" 'location': 1,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'quite correct, but this cannot be said, it can only be shown. That the world is my world appears in the fact that the boundaries of language (the only language I understand) indicate the boundaries of my world',\n", | |
" 'updated': '2021-03-24T07:59:40.312061Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352911,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-20T19:15:30Z',\n", | |
" 'id': 160076232,\n", | |
" 'location': 1,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'That the world is my world appears in the fact that the boundaries of language (the',\n", | |
" 'updated': '2021-03-24T07:59:40.269311Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352911,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-20T19:15:25Z',\n", | |
" 'id': 160076231,\n", | |
" 'location': 1,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'quite correct, but this cannot be said, it can only be shown. That the world is my world appears in the fact that the boundaries of language (the only language I understand) indicate the boundaries of my world',\n", | |
" 'updated': '2021-03-24T07:59:40.226421Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352911,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-20T18:18:20Z',\n", | |
" 'id': 160076230,\n", | |
" 'location': 1,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Mr Wittgenstein begins his theory of Symbolism with the statement (2.1): ‘We make to ourselves pictures of facts. ’ A picture, he says, is a model of the reality, and to the objects in the reality correspond the elements of the picture: the picture itself is a fact. The fact that things have a certain relation to each other is represented by the fact that in the picture its elements have a certain relation to one another',\n", | |
" 'updated': '2021-03-24T07:59:40.183331Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352911,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-20T18:16:25Z',\n", | |
" 'id': 160076229,\n", | |
" 'location': 1,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'What is complex in the world is a fact. Facts which are not compounded of other facts are what Mr Wittgenstein calls Sachverhalte, whereas a fact which may consist of two or more facts is called a Tatsache: thus, for example, ‘Socrates is wise’ is a Sachverhalt, as well as a Tatsache, whereas ‘Socrates is wise and Plato is his pupil’ is a Tatsache but not a Sachverhalt',\n", | |
" 'updated': '2021-03-24T07:59:40.139881Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352911,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-20T18:15:41Z',\n", | |
" 'id': 160076228,\n", | |
" 'location': 1,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Most propositions and questions that have been written about philosophical matters are not false but senseless. We cannot, therefore, answer questions of this kind at all, but only state their senselessness. Most questions and propositions of the philosophers result from the fact that we do not understand the logic of our language. They are of the same kind as the question whether the Good is more or less identical than the Beautiful',\n", | |
" 'updated': '2021-03-24T07:59:40.095913Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352911,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-20T18:15:19Z',\n", | |
" 'id': 160076227,\n", | |
" 'location': 1,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Most propositions and questions that have been written about philosophical matters are not false but senseless',\n", | |
" 'updated': '2021-03-24T07:59:40.053270Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352910,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-29T02:19:54Z',\n", | |
" 'id': 160076226,\n", | |
" 'location': 209,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Strategy In good companies, the story and the strategy are the same thing. As a result, the proper output of all the strategic work is the story. Decision making At the detailed level, the output of knowing what to do is the speed and quality of the CEO’s decisions',\n", | |
" 'updated': '2021-03-24T07:59:39.926931Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352910,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-29T02:18:04Z',\n", | |
" 'id': 160076225,\n", | |
" 'location': 205,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The technique is marvelously described in the classic management text The One Minute Manager. The basic idea is that people open up to feedback far more if you start by complimenting them (slice of bread number one), then you give them the difficult message (the shit), then wrap up by reminding them how much you value their strengths (slice of bread number two).',\n", | |
" 'updated': '2021-03-24T07:59:39.884201Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352910,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-29T02:15:54Z',\n", | |
" 'id': 160076224,\n", | |
" 'location': 181,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'By far the most difficult skill I learned as CEO was the ability to manage my own psychology. Organizational design, process design, metrics, hiring, and firing were all relatively straightforward skills to master compared with keeping my mind in check. I thought I was tough going into it, but I wasn’t tough. I was soft',\n", | |
" 'updated': '2021-03-24T07:59:39.840298Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352910,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-29T02:15:49Z',\n", | |
" 'id': 160076223,\n", | |
" 'location': 181,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'By far the most difficult skill I learned as CEO was the ability to manage my own psychology. Organizational design, process design, metrics, hiring, and firing were all relatively straightforward skills to master compared with keeping my mind',\n", | |
" 'updated': '2021-03-24T07:59:39.797691Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352910,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-29T02:02:00Z',\n", | |
" 'id': 160076222,\n", | |
" 'location': 104,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'A good product manager knows the context going in (the company, our revenue funding, competition, etc.), and they take responsibility for devising and executing a winning plan (no excuses).',\n", | |
" 'updated': '2021-03-24T07:59:39.755692Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352910,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-29T02:01:13Z',\n", | |
" 'id': 160076221,\n", | |
" 'location': 104,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Good product managers know the market, the product, the product line, and the competition extremely well and operate from a strong basis of knowledge and confidence. A good product manager is the CEO of the product. Good product managers take full responsibility and measure themselves in terms of the success of the product',\n", | |
" 'updated': '2021-03-24T07:59:39.712764Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352910,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-29T01:50:50Z',\n", | |
" 'id': 160076220,\n", | |
" 'location': 102,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Take your best people and encourage them to share their most developed skills. Training in such topics as negotiating, interviewing, and finance will enhance your company’s competency in those areas as well as improve employee morale',\n", | |
" 'updated': '2021-03-24T07:59:39.670259Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352910,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-29T01:47:41Z',\n", | |
" 'id': 160076219,\n", | |
" 'location': 102,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The other essential component of a company’s training program is management training',\n", | |
" 'updated': '2021-03-24T07:59:39.627905Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352910,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-29T01:40:17Z',\n", | |
" 'id': 160076218,\n", | |
" 'location': 99,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 35441851, 'name': 'discard'}],\n", | |
" 'text': 'People at McDonald’s get trained for their positions, but people with far more complicated jobs don’t. It makes no sense. Would you want to stand on the line of the untrained person at McDonald’s? Would you want to use the software written by the engineer who was never told how the rest of the code worked?',\n", | |
" 'updated': '2021-03-24T07:59:39.586279Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352910,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-28T17:56:38Z',\n", | |
" 'id': 160076217,\n", | |
" 'location': 22,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Media companies focused on things like creating great stories whereas technology companies focused on creating a better way of doing things',\n", | |
" 'updated': '2021-03-24T07:59:39.543797Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352909,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-26T11:56:01Z',\n", | |
" 'id': 160076216,\n", | |
" 'location': 100,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'poor sales rather than bad product is the most common cause of failure',\n", | |
" 'updated': '2021-03-24T07:59:39.419376Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352909,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-25T12:59:38Z',\n", | |
" 'id': 160076215,\n", | |
" 'location': 100,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'A product is viral if its core functionality encourages users to invite their friends to become users too.',\n", | |
" 'updated': '2021-03-24T07:59:39.377184Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352909,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-25T12:59:31Z',\n", | |
" 'id': 160076214,\n", | |
" 'location': 100,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'A product is viral if its core functionality encourages users to invite their friends to become users',\n", | |
" 'updated': '2021-03-24T07:59:39.335826Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352909,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-25T11:40:30Z',\n", | |
" 'id': 160076213,\n", | |
" 'location': 83,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Cash is attractive. It offers pure optionality: once you get your paycheck, you can do anything you want with it. However, high cash compensation teaches workers to claim value from the company as it already exists instead of investing their time to create new value in the future. A cash bonus is slightly better than a cash salary—at least it’s contingent on a job well done. But even so-called incentive pay encourages short-term thinking and value grabbing. Any kind of cash is more about the present than the future',\n", | |
" 'updated': '2021-03-24T07:59:39.293433Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352909,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-23T12:44:58Z',\n", | |
" 'id': 160076212,\n", | |
" 'location': 80,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Ownership: who legally owns a company’s equity? • Possession: who actually runs the company on a day-to-day basis? • Control: who formally governs the company’s affairs',\n", | |
" 'updated': '2021-03-24T07:59:39.251063Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352909,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-23T12:42:33Z',\n", | |
" 'id': 160076211,\n", | |
" 'location': 80,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Freud, Jung, and every other psychologist has a theory about how every individual mind is divided against itself',\n", | |
" 'updated': '2021-03-24T07:59:39.209366Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352909,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-23T12:39:17Z',\n", | |
" 'id': 160076210,\n", | |
" 'location': 79,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'When you start something, the first and most crucial decision you make is whom to start it with. Choosing a co-founder is like getting married, and founder conflict is just as ugly as divorce. Optimism abounds at the start of every relationship. It’s unromantic to think soberly about what could go wrong, so people don’t. But if the founders develop irreconcilable differences, the company becomes the victim',\n", | |
" 'updated': '2021-03-24T07:59:39.166930Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352909,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-23T12:39:12Z',\n", | |
" 'id': 160076209,\n", | |
" 'location': 79,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'When you start something, the first and most crucial decision you make is whom to start it with. Choosing a co-founder is like getting married, and founder conflict is just as ugly as divorce. Optimism abounds at the start of every relationship. It’s unromantic to think soberly about what could go wrong, so',\n", | |
" 'updated': '2021-03-24T07:59:39.124940Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352909,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-23T12:38:25Z',\n", | |
" 'id': 160076208,\n", | |
" 'location': 78,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Bad decisions made early on—if you choose the wrong partners or hire the wrong people, for example—are very hard to correct after they are made',\n", | |
" 'updated': '2021-03-24T07:59:39.082747Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352909,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-23T12:38:18Z',\n", | |
" 'id': 160076207,\n", | |
" 'location': 78,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'are very hard to correct after they are made. It may take a crisis on the order of bankruptcy before anybody will even try to correct them. As',\n", | |
" 'updated': '2021-03-24T07:59:39.040886Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352909,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-23T12:24:24Z',\n", | |
" 'id': 160076206,\n", | |
" 'location': 76,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Most of the big studies were done 30 or 40 years ago, and most are seriously flawed. The food pyramid that told us to eat low fat and enormous amounts of grains was probably more a product of lobbying by Big Food than real science; its chief impact has been to aggravate our obesity epidemic',\n", | |
" 'updated': '2021-03-24T07:59:38.996928Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352909,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-23T12:24:14Z',\n", | |
" 'id': 160076205,\n", | |
" 'location': 76,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The food pyramid that told us to eat low fat and enormous amounts of grains was probably more a product of lobbying by Big Food than real science; its chief impact has been to aggravate our obesity epidemic',\n", | |
" 'updated': '2021-03-24T07:59:38.953593Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352909,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-23T12:20:30Z',\n", | |
" 'id': 160076204,\n", | |
" 'location': 76,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'There are two kinds of secrets: secrets of nature and secrets about people. Natural secrets exist all around us; to find them, one must study some undiscovered aspect of the physical world. Secrets about people are different: they are things that people don’t know about themselves or things they hide because they don’t want others to know. So when thinking about what kind of company to build, there are two distinct questions to ask: What secrets is nature not telling you? What secrets are people not telling you?',\n", | |
" 'updated': '2021-03-24T07:59:38.911310Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352909,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-22T12:39:19Z',\n", | |
" 'id': 160076203,\n", | |
" 'location': 69,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'what valuable company is nobody building',\n", | |
" 'updated': '2021-03-24T07:59:38.867089Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352909,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-22T12:01:42Z',\n", | |
" 'id': 160076202,\n", | |
" 'location': 62,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'best investment in a successful fund equals or outperforms the entire rest of the fund combined. This implies two very strange rules for VCs. First, only invest in companies that have the potential to return the value of the entire fund. This is a scary rule, because it eliminates the vast majority of possible investments. (Even quite successful companies usually succeed on a more humble scale.) This leads to rule number two: because rule number one is so restrictive, there can’t be any other rules',\n", | |
" 'updated': '2021-03-24T07:59:38.825040Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352909,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-22T11:39:29Z',\n", | |
" 'id': 160076201,\n", | |
" 'location': 57,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Apple imagined and executed definite multi-year plans to create new products and distribute them effectively. Forget “minimum viable products”—ever since he started Apple in 1976, Jobs saw that you can change the world through careful planning, not by listening to focus group feedback or copying others’ successes',\n", | |
" 'updated': '2021-03-24T07:59:38.783260Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352909,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-21T12:33:10Z',\n", | |
" 'id': 160076200,\n", | |
" 'location': 42,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 36891881, 'name': 'discard'}],\n", | |
" 'text': 'Grandmaster José Raúl Capablanca put it well: to succeed, “you must study the endgame before everything else.”',\n", | |
" 'updated': '2021-03-24T07:59:38.740397Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352909,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-21T12:33:05Z',\n", | |
" 'id': 160076199,\n", | |
" 'location': 42,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'ambitious long-term vision. In this one particular at least, business is like chess. Grandmaster José Raúl',\n", | |
" 'updated': '2021-03-24T07:59:38.698593Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352909,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-21T03:20:06Z',\n", | |
" 'id': 160076198,\n", | |
" 'location': 33,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Technology companies follow the opposite trajectory. They often lose money for the first few years: it takes time to build valuable things, and that means delayed revenue. Most of a tech company’s value will come at least 10 to 15 years in the future',\n", | |
" 'updated': '2021-03-24T07:59:38.656346Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352909,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-21T03:18:09Z',\n", | |
" 'id': 160076197,\n", | |
" 'location': 33,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Simply stated, the value of a business today is the sum of all the money it will make in the future',\n", | |
" 'updated': '2021-03-24T07:59:38.614007Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352909,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-21T03:18:03Z',\n", | |
" 'id': 160076196,\n", | |
" 'location': 33,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Simply stated, the value of a business today is the sum of all the money it will make in the',\n", | |
" 'updated': '2021-03-24T07:59:38.571243Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352909,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-20T13:05:29Z',\n", | |
" 'id': 160076195,\n", | |
" 'location': 31,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 35441944, 'name': 'business'}],\n", | |
" 'text': 'Sometimes you do have to fight. Where that’s true, you should fight and win. There is no middle ground: either don’t throw any punches, or strike hard and end it quickly.',\n", | |
" 'updated': '2021-03-24T07:59:38.529213Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352909,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-20T12:45:33Z',\n", | |
" 'id': 160076194,\n", | |
" 'location': 27,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Monopoly is the condition of every successful business',\n", | |
" 'updated': '2021-03-24T07:59:38.486319Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352909,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-20T12:43:14Z',\n", | |
" 'id': 160076193,\n", | |
" 'location': 26,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Then monopolies can keep innovating because profits enable them to make the long-term plans and to finance the ambitious research projects that firms locked in competition can’t dream of.',\n", | |
" 'updated': '2021-03-24T07:59:38.444374Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352909,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-20T12:11:24Z',\n", | |
" 'id': 160076192,\n", | |
" 'location': 20,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The lesson for entrepreneurs is clear: if you want to create and capture lasting value, don’t build an undifferentiated commodity business',\n", | |
" 'updated': '2021-03-24T07:59:38.401981Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352909,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-20T11:52:36Z',\n", | |
" 'id': 160076191,\n", | |
" 'location': 19,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'If your product requires advertising or salespeople to sell it, it’s not good enough: technology is primarily about product development, not distribution. Bubble-era advertising was obviously wasteful, so the only sustainable growth is viral growth',\n", | |
" 'updated': '2021-03-24T07:59:38.359654Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352909,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-20T03:05:44Z',\n", | |
" 'id': 160076190,\n", | |
" 'location': 11,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Startups operate on the principle that you need to work with other people to get stuff done, but you also need to stay small enough so that you actually can',\n", | |
" 'updated': '2021-03-24T07:59:38.317914Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352909,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-20T03:05:08Z',\n", | |
" 'id': 160076189,\n", | |
" 'location': 11,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'signaling that work is being done becomes a better strategy for career advancement than actually doing work (if this describes your company, you should quit now)',\n", | |
" 'updated': '2021-03-24T07:59:38.275389Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352909,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-20T02:47:17Z',\n", | |
" 'id': 160076188,\n", | |
" 'location': 5,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'successful people find value in unexpected places, and they do this by thinking about business from first principles instead of formulas',\n", | |
" 'updated': '2021-03-24T07:59:38.232926Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352909,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-20T02:47:07Z',\n", | |
" 'id': 160076187,\n", | |
" 'location': 5,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'successful people find value in unexpected places',\n", | |
" 'updated': '2021-03-24T07:59:38.190971Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352909,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-01-20T02:47:01Z',\n", | |
" 'id': 160076186,\n", | |
" 'location': 5,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'concrete terms how to be innovative.Indeed, the single most powerful pattern I have noticed is that successful people find value in unexpected places',\n", | |
" 'updated': '2021-03-24T07:59:38.149116Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352908,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-12-25T13:28:18Z',\n", | |
" 'id': 160076185,\n", | |
" 'location': 234,\n", | |
" 'location_type': 'location',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'In the terminology of game theory, most interesting international conflicts are not “constant-sum games” but “variable-sum games”: the sum of the gains of the participants involved is not fixed so that more for one inexorably means less for the other.',\n", | |
" 'updated': '2021-03-24T07:59:38.025454Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352906,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-12-24T02:39:05Z',\n", | |
" 'id': 160076184,\n", | |
" 'location': 113,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'most of the gains in life come from suffering in the short term so you can get paid in the long term',\n", | |
" 'updated': '2021-03-24T07:59:37.906928Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352906,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-12-24T02:35:44Z',\n", | |
" 'id': 160076183,\n", | |
" 'location': 112,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'If you fnd yourself creating a spreadsheet for a decision with a list of yes’s and no’s, pros and cons, checks and balances, why this is good or bad…forget it. If you cannot decide, the answer is no',\n", | |
" 'updated': '2021-03-24T07:59:37.864277Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352906,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-12-24T02:35:38Z',\n", | |
" 'id': 160076182,\n", | |
" 'location': 112,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'If you fnd yourself creating a spreadsheet for a decision with a list of yes’s and no’s, pros and cons, checks and balances, why this',\n", | |
" 'updated': '2021-03-24T07:59:37.820624Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352906,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-12-23T03:24:05Z',\n", | |
" 'id': 160076181,\n", | |
" 'location': 109,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'When you are the agent and you are doing it on somebody else’s behalf, you can do a bad job. You just don’t care. You optimize for yourself rather than for the principal’s assets. The smaller the company, the more everyone feels like a principal. The less you feel like an agent, the beter the job you’re going to do. The more closely you can tie someone’s compensation to the exact value they’re creating, the more you turn them into a principal, and the less you turn them into an agent.[12] I think at a core fundamental level, we understand this. We’re atracted to principals, and we all bond with principals, but the media and modern society spend a lot of time brainwashing you about needing an agent, an agent being important, and the agent being knowledgeable.',\n", | |
" 'updated': '2021-03-24T07:59:37.777572Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352906,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-12-23T03:23:44Z',\n", | |
" 'id': 160076180,\n", | |
" 'location': 108,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'When you are the principal, then you are the owner—you108 · T H E A L M A N A C K O F N A V A L R A V I K A N T',\n", | |
" 'updated': '2021-03-24T07:59:37.734646Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352907,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-12-01T02:10:20Z',\n", | |
" 'id': 160076179,\n", | |
" 'location': 75,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'You’ll ɹnd no new places, you won’t ɹnd other shores. The city will follow you. The streets in which you pace will be the same, you’ll haunt the same familiar places, and inside those same houses you’ll grow old. You’ll always end up in this city. Don’t bother to hope for a ship, a route, to take you somewhere else; they don’t exist. Just as you’ve destroyed your life, here in this small corner, so you’ve wasted it through all the world',\n", | |
" 'updated': '2021-03-24T07:59:37.691965Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352906,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-01T13:19:37Z',\n", | |
" 'id': 160076178,\n", | |
" 'location': 103,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The classical virtues are all decision-making heuristics to make one optimize for the long term rather than for the short term',\n", | |
" 'updated': '2021-03-24T07:59:37.563578Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352906,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-01T12:47:22Z',\n", | |
" 'id': 160076177,\n", | |
" 'location': 98,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'It’s only afer you’re bored you have the great ideas',\n", | |
" 'updated': '2021-03-24T07:59:37.520259Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352906,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-26T13:15:58Z',\n", | |
" 'id': 160076176,\n", | |
" 'location': 77,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'failed entrepreneur than someone who never tried. Because even a failed entrepreneur has the skill set to make it on their own.[14] There are almost 7 billion people on this planet.Someday, I hope, there will be almost 7 billion companies. I learned how to make money because it was a necessity. Afer it stopped being a necessity, I stopped caring about it. At least for me, work was a means to an end. Making money was a means to an end. I’m much more interested in solving problems than I am in making money. Any end goal will just lead to another goal, lead to another goal. We just play games in life. When you grow up, you’re playing the school game, or you’re playing the social game. Then you’re playing the money game, and then you’re playing the status game. These games just have longer and longer and longerlived horizons. At some point, at least I believe, these are all just games. These are games where the outcome really stops matering once you see through the game. Then you just get tired of games. I would say I’m at the stage where I’m just tired of games. I don’t think there is any end goal or purpose. I’m just living life as I want to. I’m literally just doing it moment to moment. I want to be off the hedonic treadmill.[1] What',\n", | |
" 'updated': '2021-03-24T07:59:37.477208Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352906,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-26T13:15:50Z',\n", | |
" 'id': 160076175,\n", | |
" 'location': 77,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'failed entrepreneur than someone who never tried. Because even a failed entrepreneur has the skill set to make it on their own.[14] There are almost 7 billion people on this planet.Someday, I hope, there will be almost 7 billion companies. I learned how to make money because it was a necessity. Afer it stopped being a necessity, I stopped caring about it. At least for me, work was a means to an end. Making money was a means to an end. I’m much more interested in solving problems than I am in making money. Any end goal will just lead to another goal, lead to another goal. We just play games in life. When you grow up, you’re playing the school game, or you’re playing the social game. Then you’re playing the money game, and then you’re playing the status game. These games just have longer and longer and longerlived horizons. At some point, at least I believe, these are all just games. These are games where the outcome really stops matering once you see through the game. Then you just get tired of games. I would say I’m at the stage where I’m just tired of games. I don’t think there is any end goal or purpose. I’m just living life as I want to. I’m literally just doing it moment to moment. I want to be off the hedonic treadmill.[1] What',\n", | |
" 'updated': '2021-03-24T07:59:37.433145Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352906,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-26T13:13:16Z',\n", | |
" 'id': 160076174,\n", | |
" 'location': 77,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Any end goal will just lead to another goal, lead to another goal. We just play games in life. When you grow up, you’re playing the school game, or you’re playing the social game. Then you’re playing the money game, and then you’re playing the status game. These games just have longer and longer and longerlived horizons. At some point, at least I believe, these are all just games. These are games where the outcome really stops matering once you see through the game',\n", | |
" 'updated': '2021-03-24T07:59:37.389894Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352906,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-26T12:58:01Z',\n", | |
" 'id': 160076173,\n", | |
" 'location': 59,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Code is probably the most powerful form of permissionless leverage. All you need is a computer—you don’t need anyone’s permission',\n", | |
" 'updated': '2021-03-24T07:59:37.346821Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352904,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-14T12:38:54Z',\n", | |
" 'id': 160076172,\n", | |
" 'location': 66,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'A poet once said, “The whole universe is in a glass of wine. ” We will probably never know in what sense he meant that, for poets do not write to be understood',\n", | |
" 'updated': '2021-03-24T07:59:37.229411Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352905,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-02T13:31:49Z',\n", | |
" 'id': 160076171,\n", | |
" 'location': 48,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'If you maintain estimates of the action values, then at any time step there is at least one action whose estimated value is greatest. We call these the greedy actions. When you select one of these actions, we say that you are exploiting your current knowledge of the values of the actions. If instead you select one of the nongreedy actions, then we say you are exploring, because this enables you to improve your estimate of the nongreedy action’s value',\n", | |
" 'updated': '2021-03-24T07:59:37.186938Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352905,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-01T21:51:14Z',\n", | |
" 'id': 160076170,\n", | |
" 'location': 35,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The concepts of value and value function are key to most of the reinforcement learning methods that we consider in this book. We take the position that value functions are important for e!cient search in the space of policies. The use of value functions distinguishes reinforcement learning methods from evolutionary methods that search directly in policy space guided by evaluations of entire policies',\n", | |
" 'updated': '2021-03-24T07:59:37.143843Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352905,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-01T18:45:58Z',\n", | |
" 'id': 160076169,\n", | |
" 'location': 30,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'If the space of policies is su!ciently small, or can be structured so that good policies are common or easy to fnd—or if a lot of time is available for the search—then evolutionary methods can be e↵ective',\n", | |
" 'updated': '2021-03-24T07:59:37.100890Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352905,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-01T18:38:12Z',\n", | |
" 'id': 160076168,\n", | |
" 'location': 29,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'For example, solution methods such as genetic algorithms, genetic programming, simulated annealing, and other optimization methods never estimate value functions. These methods apply multiple static policies each interacting over an extended period of time with a separate instance of the environment. The policies that obtain the most reward, and random variations of them, are carried over to the next generation of policies, and the process repeats',\n", | |
" 'updated': '2021-03-24T07:59:37.057938Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352905,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-01T14:08:38Z',\n", | |
" 'id': 160076167,\n", | |
" 'location': 29,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'In fact, the most important component of almost all reinforcement learning algorithms we consider is a method for e!ciently estimating values. The central role of value estimation is arguably the most important thing that has been learned about reinforcement learning over the last six decades',\n", | |
" 'updated': '2021-03-24T07:59:37.015263Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352905,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-01T14:08:23Z',\n", | |
" 'id': 160076166,\n", | |
" 'location': 29,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'fact, the most important component of almost all reinforcement learning algorithms we consider is a method for e!ciently estimating values',\n", | |
" 'updated': '2021-03-24T07:59:36.972210Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352905,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-01T14:05:25Z',\n", | |
" 'id': 160076165,\n", | |
" 'location': 28,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Roughly speaking, the value of a state is the total amount of reward an agent can expect to accumulate over the future, starting from that state',\n", | |
" 'updated': '2021-03-24T07:59:36.929435Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352905,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-01T14:04:52Z',\n", | |
" 'id': 160076164,\n", | |
" 'location': 28,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Whereas the reward signal indicates what is good in an immediate sense, a value function specifes what is good in the long run',\n", | |
" 'updated': '2021-03-24T07:59:36.886980Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352905,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-01T03:03:50Z',\n", | |
" 'id': 160076163,\n", | |
" 'location': 500,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'One of the most pressing areas for future reinforcement learning research is to adapt and extend methods developed in control engineering with the goal of making it acceptably safe to fully embed reinforcement learning agents into physical environments',\n", | |
" 'updated': '2021-03-24T07:59:36.844086Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352905,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-01T03:01:53Z',\n", | |
" 'id': 160076162,\n", | |
" 'location': 499,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 35441876, 'name': 'ai'}],\n", | |
" 'text': 'How do you make sure that an agent gets enough experience to learn a high-performing policy, all the while not harming its environment, other agents, or itself (or more realistically, while keeping the probability of harm acceptably low)',\n", | |
" 'updated': '2021-03-24T07:59:36.800469Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352905,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-01T03:00:05Z',\n", | |
" 'id': 160076161,\n", | |
" 'location': 499,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The problem of ensuring that a reinforcement learning agent’s goal is attuned to our own remains a challenge',\n", | |
" 'updated': '2021-03-24T07:59:36.757729Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352905,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-01T02:45:06Z',\n", | |
" 'id': 160076160,\n", | |
" 'location': 497,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Particularly relevant is the key feature of reinforcement learning that it takes long-term consequences of decisions into account',\n", | |
" 'updated': '2021-03-24T07:59:36.715002Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8352904,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-09-22T12:28:46Z',\n", | |
" 'id': 160076159,\n", | |
" 'location': 16,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'This of course is burning; we are getting heat from the combination of oxygen and carbon. The heat is ordinarily in the form of the molecular motion of the hot gas, but in certain circumstances it can be so enormous that it generates light. That is how one gets fames',\n", | |
" 'updated': '2021-03-24T07:59:36.588206Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4625724,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-09-21T13:10:05Z',\n", | |
" 'id': 160076158,\n", | |
" 'location': 58,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The perception of an isomorphism between two known structures is a significant advance in knowledge-and I claim that it is such perceptions of isomorphism which create meanings in the minds of people',\n", | |
" 'updated': '2021-03-24T07:59:36.459257Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4625724,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-09-21T12:59:58Z',\n", | |
" 'id': 160076157,\n", | |
" 'location': 54,\n", | |
" 'location_type': 'page',\n", | |
" 'note': 'same as red queen',\n", | |
" 'tags': [],\n", | |
" 'text': \"Lewis Carroll took liberties with Zeno's Tortoise and Achilles\",\n", | |
" 'updated': '2021-03-24T07:59:45.106541Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8351262,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 160042950,\n", | |
" 'location': 9,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Two Core Abilities for Thriving in the New Economy 1. The ability to quickly master hard things. The ability to produce at an elite level, in terms of both quality and speed.',\n", | |
" 'updated': '2021-03-24T04:48:59.486741Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8351262,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 160042949,\n", | |
" 'location': 8,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Three to four hours a day, five days a week, of uninterrupted and carefully directed concentration, it turns out, can produce a lot of valuable output.',\n", | |
" 'updated': '2021-03-24T04:48:59.486683Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8351262,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 160042948,\n", | |
" 'location': 7,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 41312901, 'name': 'business'}],\n", | |
" 'text': 'Shallow Work: Noncognitively demanding, logistical-style tasks, often performed while distracted. These efforts tend to not create much new value in the world and are easy to replicate.',\n", | |
" 'updated': '2021-03-24T04:48:59.486620Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8351262,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 160042947,\n", | |
" 'location': 6,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 41844194, 'name': 'business'}],\n", | |
" 'text': 'The Principle of Least Resistance: In a business setting, without clear feedback on the impact of various behaviors to the bottom line, we will tend toward behaviors that are easiest in the moment.',\n", | |
" 'updated': '2021-03-24T04:48:59.486563Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8351262,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 160042946,\n", | |
" 'location': 5,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 40592531, 'name': 'discard'}],\n", | |
" 'text': 'The Craftsman Approach to Tool Selection: Identify the core factors that determine success and happiness in your professional and personal life. Adopt a tool only if its positive impacts on these factors substantially outweigh its negative impacts.',\n", | |
" 'updated': '2021-03-24T04:48:59.486506Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8351262,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 160042945,\n", | |
" 'location': 4,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 36444544, 'name': 'rationality'},\n", | |
" {'id': 36444543, 'name': 'business'}],\n", | |
" 'text': 'The key to developing a deep work habit is to move beyond good intentions and add routines and rituals to your working life designed to minimize the amount of your limited willpower necessary to transition into and maintain a state of unbroken concentration.',\n", | |
" 'updated': '2021-03-24T04:48:59.486449Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8351262,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 160042944,\n", | |
" 'location': 3,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'In this new economy, three groups will have a particular advantage: those who can work well and creatively with intelligent machines, those who are the best at what they do, and those with access to capital.',\n", | |
" 'updated': '2021-03-24T04:48:59.486389Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8351262,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 160042943,\n", | |
" 'location': 2,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 36832503, 'name': 'business'}],\n", | |
" 'text': 'Deep Work: Professional activities performed in a state of distraction-free concentration that push your cognitive capabilities to their limit. These efforts create new value, improve your skill, and are hard to replicate.',\n", | |
" 'updated': '2021-03-24T04:48:59.486329Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8351262,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 160042942,\n", | |
" 'location': 1,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 39632140, 'name': 'business'}],\n", | |
" 'text': 'Busyness as Proxy for Productivity: In the absence of clear indicators of what it means to be productive and valuable in their jobs, many knowledge workers turn back toward an industrial indicator of productivity: doing lots of stuff in a visible manner.',\n", | |
" 'updated': '2021-03-24T04:48:59.486233Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8351262,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 160042941,\n", | |
" 'location': 0,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The Deep Work Hypothesis: The ability to perform deep work is becoming increasingly rare at exactly the same time it is becoming increasingly valuable in our economy. As a consequence, the few who cultivate this skill, and then make it the core of their working life, will thrive.',\n", | |
" 'updated': '2021-03-24T04:48:59.486129Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530092,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 159048268,\n", | |
" 'location': 49,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 35441828, 'name': 'philosophy'}],\n", | |
" 'text': 'Calm your mind to really see. — At this moment stop inwardly — when you do stop inwardly, psychologically, your mind becomes very peaceful, very clear. Then you can really look at “this.”',\n", | |
" 'updated': '2021-03-21T04:21:34.954147Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530092,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 159048267,\n", | |
" 'location': 48,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Action is a highroad to self-esteem. — Action is a highroad to self-confidence and esteem. Where it is open, all energies flow toward it. It comes readily to most people, and its rewards are tangible.',\n", | |
" 'updated': '2021-03-21T04:21:34.954090Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530092,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 159048266,\n", | |
" 'location': 47,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Transcending self-consciousness. — What man has to get over is the consciousness — the consciousness of himself. It is not “I am doing this,” but rather an inner realization that “this is happening through me,” or “it is doing this for me.” The consciousness of self is the greatest hindrance to the proper execution of all physical action.',\n", | |
" 'updated': '2021-03-21T04:21:34.954029Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530092,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 159048265,\n", | |
" 'location': 46,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'A five-step process to formulating ideas. Gather materials. Masticate the facts. Relax and drop the whole subject. Be ready to recognize and welcome the idea when it comes. Shape and develop your idea into usefulness.',\n", | |
" 'updated': '2021-03-21T04:21:34.953971Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530092,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 159048264,\n", | |
" 'location': 45,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Experiencing is believing. — A fat belly cannot believe that such a thing as hunger exists.',\n", | |
" 'updated': '2021-03-21T04:21:34.953908Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530092,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 159048263,\n", | |
" 'location': 44,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The art of dying. — Like everyone else, you want to learn the way to win. But never to accept the way to lose. To accept defeat — to learn to die — is be liberated from it. Once you accept, you are free to flow and to harmonize. Fluidity is the way to an empty mind. You must free your ambitious mind and learn the art of dying.',\n", | |
" 'updated': '2021-03-21T04:21:34.953849Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530092,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 159048262,\n", | |
" 'location': 43,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 41797996, 'name': 'rationality'}],\n", | |
" 'text': 'Worry only creates problems for those around you. — One who is possessed by worry not only lacks the poise to solve his own problems, but by his nervousness and irritability creates additional problems for those around him.',\n", | |
" 'updated': '2021-03-21T04:21:34.953788Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530092,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 159048261,\n", | |
" 'location': 42,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'To live is a constant process of relating, so come on out of that shell of isolation and conclusion, and relate DIRECTLY to what is being said. Bear in mind I seek neither your approval nor to influence you. So do not make up your mind as to “this is this” or “that is that.” I will be more than satisfied if you begin to learn to investigate everything yourself from now on.',\n", | |
" 'updated': '2021-03-21T04:21:34.953720Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530092,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 159048260,\n", | |
" 'location': 41,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The pendulum of life must have balance. — Only sober moderation lasts, and that persists through all time. Only the midpart of anything is preserved because the pendulum of life must have balance, and the midpart is the balance.',\n", | |
" 'updated': '2021-03-21T04:21:34.953644Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530092,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 159048258,\n", | |
" 'location': 40,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'You can never invite the wind, but you must leave the window open.',\n", | |
" 'updated': '2021-03-21T04:21:34.953534Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8257858,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 157655412,\n", | |
" 'location': 9,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The best CEOs and founders have learned that trying to predict the future is vastly inferior to discovering what customers want by running experiments with real customers using methods based on the scientific method.',\n", | |
" 'updated': '2021-03-16T18:10:56.475500Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8257858,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 157655411,\n", | |
" 'location': 8,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Nassim Taleb described why business plans rob businesses of their potential value when he said, “A rigid business plan gets one locked into a preset invariant policy, like a highway without exits—hence devoid of optionality.”',\n", | |
" 'updated': '2021-03-16T18:10:56.475352Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8257858,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 157655410,\n", | |
" 'location': 7,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': '“In general, it’s best if you’re building something that you need. You’ll understand it better than if you have to understand it by talking to a customer.”',\n", | |
" 'updated': '2021-03-16T18:10:56.475212Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8257858,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 157655409,\n", | |
" 'location': 6,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 35854714, 'name': 'discard'}],\n", | |
" 'text': 'Characteristics of the best ideas: (a) Powerful people dismiss them as toys; (b) They unbundle functions done by others; (c) They often start off as hobbies; and (d) They often challenge social norms.',\n", | |
" 'updated': '2021-03-16T18:10:56.475072Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8257858,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 157655408,\n", | |
" 'location': 5,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 36114725, 'name': 'business'}],\n", | |
" 'text': 'Founders and investors harvest the biggest financial returns when uncertainty is greatest since that is when assets are most likely to be mispriced.',\n", | |
" 'updated': '2021-03-16T18:10:56.474925Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8257858,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 157655407,\n", | |
" 'location': 4,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': '“A startup is not about executing a series of knowns. Most startups are facing a series of unknowns: unknown customer segments, unknown customer needs, unknown product feature sets, etc.” A pessimist sees the danger in every opportunity, but an optimist sees opportunity in every danger.',\n", | |
" 'updated': '2021-03-16T18:10:56.474843Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8257858,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 157655406,\n", | |
" 'location': 3,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 37001608, 'name': 'discard'}],\n", | |
" 'text': '“If you do have a flywheel, it is OK to spend money to get it spinning. It is OK to do un-economic things to hand-crank stuff, so long as once it is spinning, you can take your hand away.”',\n", | |
" 'updated': '2021-03-16T18:10:56.474767Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8257858,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 157655405,\n", | |
" 'location': 2,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Entrepreneurship is, at its very core, a discipline of reconciling contradiction—absorbing case studies and best practices but not adopting them outright. It is an intricate balance of skill and instinct, of learning and defying.',\n", | |
" 'updated': '2021-03-16T18:10:56.474691Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8257858,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 157655404,\n", | |
" 'location': 1,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 40344842, 'name': 'business'}],\n", | |
" 'text': '“The two most important assumptions entrepreneurs make are what I call the value hypothesis and the growth hypothesis. The value hypothesis tests whether a product or service delivers value to customers once they are using it. The growth hypothesis tests how new customers will discover a product or service.”',\n", | |
" 'updated': '2021-03-16T18:10:56.474614Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 8257858,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 157655403,\n", | |
" 'location': 0,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'From my perspective, making a career is trying something fascinating, getting some skills, putting tools into your toolkit, going to the next place and putting a few more tools in, until finally, you have all of the tools to build your own house.”',\n", | |
" 'updated': '2021-03-16T18:10:56.474511Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6648254,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 157456257,\n", | |
" 'location': 19,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 36641183, 'name': 'rationality'}],\n", | |
" 'text': 'If you get easily bored, it means that your BS detector is functioning properly; if you forget (some) things, it means that your mind knows how to filter; and if you feel sadness, it means that you are human.',\n", | |
" 'updated': '2021-03-16T04:14:49.431018Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6648254,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 157456256,\n", | |
" 'location': 18,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 34791227, 'name': 'business'}],\n", | |
" 'text': 'In science you need to understand the world; in business you need others to misunderstand it.',\n", | |
" 'updated': '2021-03-16T04:14:49.430956Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6648254,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 157456255,\n", | |
" 'location': 17,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 35088004, 'name': 'philosophy'}],\n", | |
" 'text': 'They will envy you for your success, for your wealth, for your intelligence, for your looks, for your status—but rarely for your wisdom.',\n", | |
" 'updated': '2021-03-16T04:14:49.430897Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6648254,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 157456254,\n", | |
" 'location': 16,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'It is a very powerful manipulation to let others win the small battles.',\n", | |
" 'updated': '2021-03-16T04:14:49.430839Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6648254,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 157456253,\n", | |
" 'location': 15,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The fastest way to become rich is to socialize with the poor; the fastest way to become poor is to socialize with the rich.',\n", | |
" 'updated': '2021-03-16T04:14:49.430781Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6648254,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 157456252,\n", | |
" 'location': 14,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 36452289, 'name': 'unknown'},\n", | |
" {'id': 36452279, 'name': 'philosophy'}],\n", | |
" 'text': 'We are hunters; we are only truly alive in those moments when we improvise; no schedule, just small surprises and stimuli from the environment.',\n", | |
" 'updated': '2021-03-16T04:14:49.430721Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6648254,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 157456251,\n", | |
" 'location': 13,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Every aphorism here is about a Procrustean bed of sorts—we humans, facing limits of knowledge, and things we do not observe, the unseen and the unknown, resolve the tension by squeezing life and the world into crisp commoditized ideas, reductive categories, specific vocabularies, and prepackaged narratives, which, on the occasion, has explosive consequences.',\n", | |
" 'updated': '2021-03-16T04:14:49.430665Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6648254,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 157456250,\n", | |
" 'location': 12,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 36114961, 'name': 'philosophy'}],\n", | |
" 'text': 'The test of whether you really liked a book is if you reread it (and how many times); the test of whether you really liked someone’s company is if you are ready to meet him again and again—the rest is spin, or that variety of sentiment now called self-esteem.',\n", | |
" 'updated': '2021-03-16T04:14:49.430615Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6648254,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 157456249,\n", | |
" 'location': 11,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Karl Marx, a visionary, figured out that you can control a slave much better by convincing him he is an employee.',\n", | |
" 'updated': '2021-03-16T04:14:49.430575Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6648254,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 157456248,\n", | |
" 'location': 10,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 35441845, 'name': 'favorite'},\n", | |
" {'id': 35441842, 'name': 'rationality'},\n", | |
" {'id': 35441841, 'name': 'philosophy'}],\n", | |
" 'text': 'There are two types of people: those who try to win and those who try to win arguments. They are never the same.',\n", | |
" 'updated': '2021-03-16T04:14:49.430510Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530114,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 155182128,\n", | |
" 'location': 35,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'If it is the mind, if it is knowledge, that makes man lord of the earth, then no errors are harmless, still less venerable and holy.',\n", | |
" 'updated': '2021-03-10T04:12:15.334193Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530114,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 155182127,\n", | |
" 'location': 34,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 35088005, 'name': 'philosophy'}],\n", | |
" 'text': 'Therefore all those great discoveries are, just like perception and every manifestation of understanding, an immediate insight, and as such the work of an instant, an aperçu, a sudden idea.',\n", | |
" 'updated': '2021-03-10T04:12:15.334122Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530114,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 155182126,\n", | |
" 'location': 33,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Consequently, it presupposes the law of causality, and on the knowledge of this depends all perception, and therefore all experience, by virtue of its primary and entire possibility. The converse, namely that knowledge of the causal law results from experience, is not the case; this was the scepticism of Hume, and is first refuted by what is here said.',\n", | |
" 'updated': '2021-03-10T04:12:15.334050Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530114,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 155182125,\n", | |
" 'location': 32,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 34987740, 'name': 'discard'}],\n", | |
" 'text': 'Life and dreams are leaves of one and the same book.',\n", | |
" 'updated': '2021-03-10T04:12:15.333974Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530114,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 155182124,\n", | |
" 'location': 31,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Both these views are open to the correction, firstly, that object and representation are the same thing; that the true being of objects of perception is their action; that the actuality of the thing consists exactly in this; and that the demand for the existence of the object outside the representation of the subject, and also for a real being of the actual thing distinct from its action, has no meaning at all, and is a contradiction.',\n", | |
" 'updated': '2021-03-10T04:12:15.333897Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530114,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 155182123,\n", | |
" 'location': 30,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'It goes without saying that by manufactured article we expressly do not mean any work of plastic art. Moreover, by forma substantialis the scholastics in fact understood what I call the grade of the will’s objectification in a thing.',\n", | |
" 'updated': '2021-03-10T04:12:15.333778Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3269139,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 152820300,\n", | |
" 'location': 49,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 34494260, 'name': 'discard'}],\n", | |
" 'text': 'Today we have discovered a powerful and elegant way to understand the universe, a method called science; it has revealed to us a universe so ancient and so vast that human affairs seem at first sight to be of little consequence.',\n", | |
" 'updated': '2021-03-03T04:14:30.209527Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3269139,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 152820299,\n", | |
" 'location': 48,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The only possible explanation is that impact craters are formed at very similar rates on both the Earth and the Moon, but that on the airless, waterless Moon they are preserved for immense periods of time, while on the Earth slow erosion wipes them out or fills them in.',\n", | |
" 'updated': '2021-03-03T04:14:30.209463Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3269139,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 152820298,\n", | |
" 'location': 47,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 34494265, 'name': 'physics'}],\n", | |
" 'text': 'But if the Cosmos is closed and light cannot escape from it, then it may be perfectly correct to describe the universe as a black hole. If you wish to know what it is like inside a black hole, look around you.',\n", | |
" 'updated': '2021-03-03T04:14:30.209395Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3269139,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 152820297,\n", | |
" 'location': 46,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 40759083, 'name': 'sciences'}],\n", | |
" 'text': 'Life on Earth runs almost exclusively on sunlight. Plants gather the photons and convert solar to chemical energy. Animals parasitize the plants. Farming is simply the methodical harvesting of sunlight, using plants as grudging intermediaries. We are, almost all of us, solar-powered.',\n", | |
" 'updated': '2021-03-03T04:14:30.209326Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3269139,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 152820296,\n", | |
" 'location': 45,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'If we were randomly inserted into the Cosmos, the chance that we would find ourselves on or near a planet would be less than one in a billion trillion trillion* (1033, a one followed by 33 zeroes). In everyday life such odds are called compelling. Worlds are precious.',\n", | |
" 'updated': '2021-03-03T04:14:30.209259Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3269139,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 152820295,\n", | |
" 'location': 44,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 33857649, 'name': 'discard'}],\n", | |
" 'text': 'Suppose you take an apple pie and cut it in half; take one of the two pieces, cut it in half; and, in the spirit of Democritus, continue. How many cuts before you are down to a single atom? The answer is about ninety successive cuts.',\n", | |
" 'updated': '2021-03-03T04:14:30.209190Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3269139,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 152820294,\n", | |
" 'location': 43,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The resistance to Aristarchus and Copernicus, a kind of geocentrism in everyday life, remains with us: we still talk about the Sun “rising” and the Sun “setting.” It is 2,200 years since Aristarchus, and our language still pretends that the Earth does not turn.',\n", | |
" 'updated': '2021-03-03T04:14:30.209123Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3269139,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 152820293,\n", | |
" 'location': 42,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Our technology is increasingly permitting us to explore the wonders of the Cosmos and to reduce the Earth to chaos. We are privileged to live in, and if we are lucky to influence, one of the most critical epochs in the history of the human species.',\n", | |
" 'updated': '2021-03-03T04:14:30.209058Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3269139,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 152820292,\n", | |
" 'location': 41,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Astronomy is a science—the study of the universe as it is. Astrology is a pseudoscience—a claim, in the absence of good evidence, that the other planets affect our everyday lives. In Ptolemy’s time the distinction between astronomy and astrology was not clear. Today it is.',\n", | |
" 'updated': '2021-03-03T04:14:30.208987Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3269139,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 152820291,\n", | |
" 'location': 40,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'But only three years after Comte’s death, it was discovered that a spectrum can be used to determine the chemistry of distant objects. Different molecules and chemical elements absorb different frequencies or colors of light, sometimes in the visible and sometimes elsewhere in the spectrum.',\n", | |
" 'updated': '2021-03-03T04:14:30.208884Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530072,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 152094483,\n", | |
" 'location': 49,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 33514772, 'name': 'rationality'}],\n", | |
" 'text': 'The more you repeat a behavior, the more you reinforce the identity associated with that behavior. In fact, the word identity was originally derived from the Latin words essentitas, which means being, and identidem, which means repeatedly. Your identity is literally your “repeated beingness.”',\n", | |
" 'updated': '2021-03-01T04:13:02.171177Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530072,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 152094482,\n", | |
" 'location': 48,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'If you want to make a habit a big part of your life, make the cue a big part of your environment.',\n", | |
" 'updated': '2021-03-01T04:13:02.171112Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530072,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 152094481,\n", | |
" 'location': 47,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'If you’re still having trouble determining how to rate a particular habit, here is a question I like to use: “Does this behavior help me become the type of person I wish to be? Does this habit cast a vote for or against my desired identity?” Habits that reinforce your desired identity are usually good. Habits that conflict with your desired identity are usually bad.',\n", | |
" 'updated': '2021-03-01T04:13:02.171048Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530072,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 152094480,\n", | |
" 'location': 46,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 36114952, 'name': 'discard'}],\n", | |
" 'text': 'As the psychologist Carl Jung said, “Until you make the unconscious conscious, it will direct your life and you will call it fate.”',\n", | |
" 'updated': '2021-03-01T04:13:02.170987Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530072,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 152094479,\n", | |
" 'location': 45,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'When it comes to habits, the key takeaway is this: dopamine is released not only when you experience pleasure, but also when you anticipate it.',\n", | |
" 'updated': '2021-03-01T04:13:02.170925Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530072,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 152094478,\n", | |
" 'location': 44,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'I know of executives and investors who keep a “decision journal” in which they record the major decisions they make each week, why they made them, and what they expect the outcome to be. They review their choices at the end of each month or year to see where they were correct and where they went wrong.',\n", | |
" 'updated': '2021-03-01T04:13:02.170847Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530072,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 152094477,\n", | |
" 'location': 43,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'When you can’t manage to get to an entirely new environment, redefine or rearrange your current one. Create a separate space for work, study, exercise, entertainment, and cooking. The mantra I find useful is “One space, one use.”',\n", | |
" 'updated': '2021-03-01T04:13:02.170781Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530072,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 152094476,\n", | |
" 'location': 42,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 44434940, 'name': 'discard'}],\n", | |
" 'text': 'The central idea is to create an environment where doing the right thing is as easy as possible. Much of the battle of building better habits comes down to finding ways to reduce the friction associated with our good habits and increase the friction associated with our bad ones.',\n", | |
" 'updated': '2021-03-01T04:13:02.170717Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530072,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 152094475,\n", | |
" 'location': 41,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 34986709, 'name': 'discard'}],\n", | |
" 'text': 'Problem #1: Winners and losers have the same goals.',\n", | |
" 'updated': '2021-03-01T04:13:02.170649Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530072,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 152094474,\n", | |
" 'location': 40,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 35158283, 'name': 'discard'}],\n", | |
" 'text': 'Complaining about not achieving success despite working hard is like complaining about an ice cube not melting when you heated it from twenty-five to thirty-one degrees. Your work was not wasted; it is just being stored. All the action happens at thirty-two degrees.',\n", | |
" 'updated': '2021-03-01T04:13:02.170551Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530096,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 151720294,\n", | |
" 'location': 39,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'That’s how it is when you get here; no bells and whistles, no radiant backlighting, no choirs of angels. As Layman P’ang put it, you’re “just an ordinary fellow who has completed his work.”',\n", | |
" 'updated': '2021-02-28T04:13:21.552483Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530096,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 151720293,\n", | |
" 'location': 38,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 36939488, 'name': 'discard'}],\n", | |
" 'text': 'That essentially defines the quest for enlightenment; the you that you think of as you (and that thinks of you as you, and so on) is not you, it’s just the character that the underlying truth of you is dreaming into brief existence. Enlightenment isn’t in the character, it’s in the underlying truth.',\n", | |
" 'updated': '2021-02-28T04:13:21.552413Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530096,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 151720292,\n", | |
" 'location': 37,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'On this journey, if you aren’t ashamed by how naive and foolish you were just a few days ago, you’ve stalled.',\n", | |
" 'updated': '2021-02-28T04:13:21.552345Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530096,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 151720291,\n", | |
" 'location': 36,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 34938301, 'name': 'spirituality'},\n", | |
" {'id': 34938288, 'name': 'philosophy'}],\n", | |
" 'text': 'Do you want to awaken? To stop being a false, artificial, self-benighted being? Then developing and sharpening this sense—the ability to detect fear and the source and emanations of fear—amounts to nothing more than disengaging your own autoimmune system; the subsystem of ego that keeps this poison from making you sick. Yes, to get it out you must let it in, breathe it deep, and allow yourself to become sickened by it. The way out is through, and there can be no rebirth without first a death.',\n", | |
" 'updated': '2021-02-28T04:13:21.552276Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530096,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 151720290,\n", | |
" 'location': 35,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Real Zen is about the hot and narrow pursuit of enlightenment; the shortest distance between asleep and awake. No rules, no ceremonies, no teachings, just the muddy, bloody battle of waking up.',\n", | |
" 'updated': '2021-02-28T04:13:21.552206Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530096,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 151720289,\n", | |
" 'location': 34,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 33515155, 'name': 'philosophy'}],\n", | |
" 'text': 'Stopping being smart was one of the smartest things I’ve ever done.',\n", | |
" 'updated': '2021-02-28T04:13:21.552136Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530096,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 151720288,\n", | |
" 'location': 33,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 40061317, 'name': 'philosophy'},\n", | |
" {'id': 40061316, 'name': 'favorite'}],\n", | |
" 'text': '“Solipsism is defined as the belief that the only thing you can know for sure is that you exist, and that any other true knowledge is impossible. But, like I say, it’s not really a belief, it’s just the way it is.”',\n", | |
" 'updated': '2021-02-28T04:13:21.552065Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530096,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 151720287,\n", | |
" 'location': 32,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 46101065, 'name': 'mind'}],\n", | |
" 'text': 'Self-realization isn’t about more, it’s about less. The only construction required for awakening is that which facilitates demolition.',\n", | |
" 'updated': '2021-02-28T04:13:21.551996Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530096,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 151720286,\n", | |
" 'location': 31,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 39470499, 'name': 'discard'}],\n", | |
" 'text': 'Everybody wants the radiance and the bliss and the union with the divine, and everyone seems to believe that spiritual enlightenment is the name for it when you have dipped yourself into the divine so many times that it has permanently altered your spiritual hue.',\n", | |
" 'updated': '2021-02-28T04:13:21.551926Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530096,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 151720285,\n", | |
" 'location': 30,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': '“The shortest and simplest way to address Randy’s question is to say that all belief systems are just the stories we create in order to deal with the void. Ego abhors a vacuum, so everybody’s scrambling to create the illusion of something where there’s nothing. Belief systems are simply the devices we use to explain away the unthinkable horror of no-self.”',\n", | |
" 'updated': '2021-02-28T04:13:21.551816Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6853231,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 151275033,\n", | |
" 'location': 9,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Intentions don’t matter. Actions do. That’s why being ethical is hard.',\n", | |
" 'updated': '2021-02-27T04:09:24.923115Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6853231,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 151275032,\n", | |
" 'location': 8,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 45525931, 'name': 'business'}],\n", | |
" 'text': 'Forty hour work weeks are a relic of the Industrial Age. Knowledge workers function like athletes—train and sprint, then rest and reassess.',\n", | |
" 'updated': '2021-02-27T04:09:24.923047Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6853231,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 151275031,\n", | |
" 'location': 7,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 38627448, 'name': 'philosophy'}],\n", | |
" 'text': 'Retirement is when you stop sacrificing today for an imaginary tomorrow. When today is complete, in and of itself, you’re retired.',\n", | |
" 'updated': '2021-02-27T04:09:24.922977Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6853231,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 151275030,\n", | |
" 'location': 6,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Reading science, math, and philosophy one hour per day will likely put you at the upper echelon of human success within seven years.',\n", | |
" 'updated': '2021-02-27T04:09:24.922907Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6853231,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 151275029,\n", | |
" 'location': 5,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Code and media are permissionless leverage. They’re the leverage behind the newly rich. You can create software and media that works for you while you sleep.',\n", | |
" 'updated': '2021-02-27T04:09:24.922837Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6853231,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 151275028,\n", | |
" 'location': 4,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 37974207, 'name': 'rationality'},\n", | |
" {'id': 37974206, 'name': 'favorite'}],\n", | |
" 'text': 'The most important skill for getting rich is becoming a perpetual learner.',\n", | |
" 'updated': '2021-02-27T04:09:24.922767Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6853231,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 151275027,\n", | |
" 'location': 3,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Whenever you can in life, optimize for independence rather than pay. If you have independence and you’re accountable on your output, as opposed to your input—that’s the dream.',\n", | |
" 'updated': '2021-02-27T04:09:24.922698Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6853231,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 151275026,\n", | |
" 'location': 2,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Getting rich is about knowing what to do, who to do it with, and when to do it.',\n", | |
" 'updated': '2021-02-27T04:09:24.922628Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6853231,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 151275025,\n", | |
" 'location': 1,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'You’re not going to get rich renting out your time. You must own equity—a piece of a business—to gain your financial freedom.',\n", | |
" 'updated': '2021-02-27T04:09:24.922555Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6853231,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 151275024,\n", | |
" 'location': 0,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 34689126, 'name': 'favorite'},\n", | |
" {'id': 34689125, 'name': 'rationality'}],\n", | |
" 'text': 'Seek wealth, not money or status. Wealth is having assets that earn while you sleep. Money is how we transfer time and wealth. Status is your place in the social hierarchy.',\n", | |
" 'updated': '2021-02-27T04:09:24.922441Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530080,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 150147431,\n", | |
" 'location': 29,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 40061333, 'name': 'discard'}],\n", | |
" 'text': 'Force-carrying particles can be grouped into four categories according to the strength of the force that they carry and the particles with which they interact.',\n", | |
" 'updated': '2021-02-25T04:09:14.785155Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530080,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 150147430,\n", | |
" 'location': 28,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 33203425, 'name': 'sciences'}],\n", | |
" 'text': 'This behavior of the universe could have been predicted from Newton’s theory of gravity at any time in the nineteenth, the eighteenth, or even the late seventeenth century. Yet so strong was the belief in a static universe that it persisted into the early twentieth century.',\n", | |
" 'updated': '2021-02-25T04:09:14.785115Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530080,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 150147429,\n", | |
" 'location': 27,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 36891977, 'name': 'discard'}],\n", | |
" 'text': 'The lack of an absolute standard of rest meant that one could not determine whether two events that took place at different times occurred in the same position in space.',\n", | |
" 'updated': '2021-02-25T04:09:14.785075Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530080,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 150147428,\n", | |
" 'location': 26,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 34494048, 'name': 'physics'}],\n", | |
" 'text': 'All this seems fairly straightforward, but the remarkable fact is that there are particles that do not look the same if one turns them through just one revolution: you have to turn them through two complete revolutions! Such particles are said to have spin ½.',\n", | |
" 'updated': '2021-02-25T04:09:14.785034Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530080,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 150147427,\n", | |
" 'location': 25,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 37001611, 'name': 'physics'},\n", | |
" {'id': 37001609, 'name': 'favorite'}],\n", | |
" 'text': 'The fourth category is the strong nuclear force, which holds the quarks together in the proton and neutron, and holds the protons and neutrons together in the nucleus of an atom.',\n", | |
" 'updated': '2021-02-25T04:09:14.784993Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530080,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 150147426,\n", | |
" 'location': 24,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'There are a number of different varieties of quarks: there are six “flavors,” which we call up, down, strange, charmed, bottom, and top.',\n", | |
" 'updated': '2021-02-25T04:09:14.784953Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530080,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 150147425,\n", | |
" 'location': 23,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 34938315, 'name': 'physics'}],\n", | |
" 'text': 'As far as we are concerned, events before the big bang can have no consequences, so they should not form part of a scientific model of the universe.',\n", | |
" 'updated': '2021-02-25T04:09:14.784912Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530080,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 150147424,\n", | |
" 'location': 22,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'In general relativity, bodies always follow straight lines in four-dimensional space-time, but they nevertheless appear to us to move along curved paths in our three-dimensional space.',\n", | |
" 'updated': '2021-02-25T04:09:14.784870Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530080,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 150147423,\n", | |
" 'location': 21,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'There was a young lady of Wight Who travelled much faster than light. She departed one day, In a relative way, And arrived on the previous night.',\n", | |
" 'updated': '2021-02-25T04:09:14.784827Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530080,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 150147422,\n", | |
" 'location': 20,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Since the structure of molecules and their reactions with each other underlie all of chemistry and biology, quantum mechanics allows us in principle to predict nearly everything we see around us, within the limits set by the uncertainty principle.',\n", | |
" 'updated': '2021-02-25T04:09:14.784756Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530084,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 149195011,\n", | |
" 'location': 40,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Arms themselves can prompt a man to use them.’',\n", | |
" 'updated': '2021-02-23T04:09:29.059121Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530084,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 149195010,\n", | |
" 'location': 39,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'It is a written text based on an oral tradition, which is not at all the same as being an actual oral composition. Moreover, these texts are far too long for any singer to perform them on a single occasion, and far too long for any individual to hold in memory without the use of writing. Songs that had an influence on the Homeric poems were sung for hundreds of years in preliterate Greece; but none of them was The Odyssey.',\n", | |
" 'updated': '2021-02-23T04:09:29.059083Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530084,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 149195009,\n", | |
" 'location': 38,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': '“Now, son, soon you will have experience of fighting in battle, the true test of worth. You must not shame your father’s family; for years we have been known across the world for courage and manliness.”',\n", | |
" 'updated': '2021-02-23T04:09:29.059027Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530084,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 149195008,\n", | |
" 'location': 37,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 36832076, 'name': 'discard'}],\n", | |
" 'text': 'Odysseus longs to recover his own identity, not as a victim of shipwreck or a coddled plaything of a powerful goddess, but as a master of his home and household, as a father and as a husband.',\n", | |
" 'updated': '2021-02-23T04:09:29.058989Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530084,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 149195007,\n", | |
" 'location': 36,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Athena, with her gray eyes glinting, gave160 thoughtful Penelope a new idea: to let the suitors see her, so desire would open up inside them like a sail, and so her son and husband would respect her.',\n", | |
" 'updated': '2021-02-23T04:09:29.058951Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530084,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 149195006,\n", | |
" 'location': 35,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Xenia is thus a networking tool that allows for the expansion of Greek power, from the unit of the family to the city-state and then across the Mediterranean world. It is the means by which unrelated elite families can connect to one another as equals, without having to fight for dominance.',\n", | |
" 'updated': '2021-02-23T04:09:29.058891Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530084,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 149195005,\n", | |
" 'location': 34,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 35088011, 'name': 'discard'}],\n", | |
" 'text': 'They would have wept until the rosy Dawn began to touch the sky, but shining-eyed Athena intervened. She held night back, restraining golden Dawn beside the Ocean, and would not let her yoke her swift young colts, Shining and Bright.',\n", | |
" 'updated': '2021-02-23T04:09:29.058852Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530084,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 149195004,\n", | |
" 'location': 33,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Did you lose somebody at Troy? A man from your wife’s family, perhaps her father or brother? Ties of marriage are the closest after the bonds of blood. Or else perhaps you lost the friend who knew you best of all? A friend can be as close as any brother.”',\n", | |
" 'updated': '2021-02-23T04:09:29.058814Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530084,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 149195003,\n", | |
" 'location': 32,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 43454196, 'name': 'philosophy'}],\n", | |
" 'text': 'When the gods bestow on us good fortune, and our legs are spry and limber, we think that nothing can ever can go wrong; but when the gods bring misery and pain, we have to bear our suffering with calm.',\n", | |
" 'updated': '2021-02-23T04:09:29.058773Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530084,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 149195002,\n", | |
" 'location': 31,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The goddess answered, ‘No, you fool! Your mind is still obsessed with deeds of war. But now you must surrender to the gods. She is not mortal. She is deathless evil, terrible, wild and cruel. You cannot fight her. The best solution and the only way120 is flight.',\n", | |
" 'updated': '2021-02-23T04:09:29.058680Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530077,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 149194764,\n", | |
" 'location': 29,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 39714758, 'name': 'discard'}],\n", | |
" 'text': 'But the whole problem of discovering what was the matter, and figuring out what you have to do to fix it—that was interesting to me, like a puzzle.',\n", | |
" 'updated': '2021-02-23T04:09:21.270337Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530077,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 149194763,\n", | |
" 'location': 28,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'That was a very good way to get educated, working on the senior problems and learning how to pronounce things.',\n", | |
" 'updated': '2021-02-23T04:09:21.270258Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530077,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 149194762,\n", | |
" 'location': 27,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Ordinarily it would take me about fifteen minutes to get a hallucination going, but on a few occasions, when I smoked some marijuana beforehand, it came very quickly. But fifteen minutes was fast enough for me.',\n", | |
" 'updated': '2021-02-23T04:09:21.270186Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530077,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 149194761,\n", | |
" 'location': 26,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'You must have been in a situation like this when you didn’t ask them right away. Right away it would have been OK. But now they’ve been talking a little bit too long. You hesitated too long. If you ask them now they’ll say, “What are you wasting my time all this time for?”',\n", | |
" 'updated': '2021-02-23T04:09:21.270124Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530077,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 149194760,\n", | |
" 'location': 25,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'In summary, the idea is to try to give all of the information to help others to judge the value of your contribution; not just the information that leads to judgment in one particular direction or another.',\n", | |
" 'updated': '2021-02-23T04:09:21.270065Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530077,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 149194759,\n", | |
" 'location': 24,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'When a person has been negative to you, and then you do something like that, they’re usually a hundred percent the other way, kind of to compensate. He got me other jobs, and kept telling everybody what a tremendous genius I was, saying, “He fixes radios by thinking!” The whole idea of thinking, to fix a radio—a little boy stops and thinks, and figures out how to do it—he never thought that was possible.',\n", | |
" 'updated': '2021-02-23T04:09:21.270007Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530077,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 149194758,\n", | |
" 'location': 23,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'So I find that teaching and the students keep life going, and I would never accept any position in which somebody has invented a happy situation for me where I don’t have to teach.',\n", | |
" 'updated': '2021-02-23T04:09:21.269949Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530077,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 149194757,\n", | |
" 'location': 22,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'So Nick the Greek was really an educated character. He was a very nice and engaging man. I thanked him for the explanation; now I understood it. I have to understand the world, you see.',\n", | |
" 'updated': '2021-02-23T04:09:21.269891Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530077,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 149194756,\n", | |
" 'location': 21,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': '“Don’t you know how to square numbers near 50?” he says. “You square 50—that’s 2500—and subtract 100 times the difference of your number from 50 (in this case it’s 2), so you have 2300. If you want the correction, square the difference and add it on. That makes 2304.”',\n", | |
" 'updated': '2021-02-23T04:09:21.269832Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530077,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 149194755,\n", | |
" 'location': 20,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'So I got this new attitude. Now that I am burned out and I’ll never accomplish anything, I’ve got this nice position at the university teaching classes which I rather enjoy, and just like I read the Arabian Nights for pleasure, I’m going to play with physics, whenever I want to, without worrying about any importance whatsoever.',\n", | |
" 'updated': '2021-02-23T04:09:21.269737Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530105,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 148814305,\n", | |
" 'location': 39,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'A cheap LED flashlight, powered by a solar-charged battery, will surely soon transform the life of some of the 1.6 billion people who do not have mains electricity, African peasants prominent among them.',\n", | |
" 'updated': '2021-02-22T04:09:07.564785Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530105,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 148814304,\n", | |
" 'location': 38,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32668028, 'name': 'discard'}],\n", | |
" 'text': 'Nike’s sweatshops in Vietnam, for example, pay wages three times as high as local state owned factories and have far better facilities. That drives up wages and standards. During the period of most rapid expansion of trade and out-sourcing, child labour has halved since 1980: if that is driving down standards, let there be more of it.',\n", | |
" 'updated': '2021-02-22T04:09:07.564723Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530105,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 148814303,\n", | |
" 'location': 37,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 46101139, 'name': 'politics'}],\n", | |
" 'text': 'Human beings are a species that stops its own population expansions once the division of labour reaches the point at which individuals are all trading goods and services with each other, rather than trying to be self-sufficient. The more interdependent and well-off we all become, the more population will stabilise well within the resources of the planet.',\n", | |
" 'updated': '2021-02-22T04:09:07.564666Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530105,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 148814302,\n", | |
" 'location': 36,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'According to the anthropologist Joe Henrich, human beings learn skills from each other by copying prestigious individuals, and they innovate by making mistakes that are very occasionally improvements – that is how culture evolves.',\n", | |
" 'updated': '2021-02-22T04:09:07.564599Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530105,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 148814301,\n", | |
" 'location': 35,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'In other words, the best that can be said for sure about the demographic transition is that countries lower their birth rates as they grow healthier, wealthier, better educated, more urbanised and more emancipated.',\n", | |
" 'updated': '2021-02-22T04:09:07.564531Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530105,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 148814300,\n", | |
" 'location': 34,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 40585445, 'name': 'rationality'}],\n", | |
" 'text': 'Rich people are happier than poor people; rich countries have happier people than poor countries; and people get happier as they get richer. The earlier study simply had samples too small to find significant differences. In all three categories of comparison – within countries, between countries and between times – extra income does indeed buy general well-being.',\n", | |
" 'updated': '2021-02-22T04:09:07.564464Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530105,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 148814299,\n", | |
" 'location': 33,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The extraordinary thing about exchange is that it breeds: the more of it you do, the more of it you can do. And it calls forth innovation.',\n", | |
" 'updated': '2021-02-22T04:09:07.564397Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530105,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 148814298,\n", | |
" 'location': 32,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 33092717, 'name': 'discard'}],\n", | |
" 'text': 'If you choose to spend that spare time consuming somebody else’s production then you can enrich him in turn; if you choose to spend it producing for his consumption then you have also further enriched yourself.',\n", | |
" 'updated': '2021-02-22T04:09:07.564331Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530105,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 148814297,\n", | |
" 'location': 31,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 46671045, 'name': 'business'}],\n", | |
" 'text': 'The scientist and historian Terence Kealey points out that entrepreneurs are rational and if they find that wealth can more easily be stolen than created, then they will steal it: ‘Humanity’s great battle over the last 10,000 years has been the battle against monopoly.’',\n", | |
" 'updated': '2021-02-22T04:09:07.564263Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530105,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 148814296,\n", | |
" 'location': 30,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32668056, 'name': 'discard'}],\n", | |
" 'text': 'The experience has left me mistrustful of markets in capital and assets, yet passionately in favour of markets in goods and services.',\n", | |
" 'updated': '2021-02-22T04:09:07.564166Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 147107543,\n", | |
" 'location': 29,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The Fisher (sexy-son, good-taste) advocates are those who insist that the reason peahens prefer beautiful males is that they seek heritable beauty itself to pass on to their sons, so that those sons may in turn attract females. The Good-geners (healthy-offspring, good-sense) are those who believe that peahens prefer beautiful males because beauty is a sign of good genetic qualities—disease resistance, vigor, strength—and that the females seek to pass these qualities on to their offspring.',\n", | |
" 'updated': '2021-02-18T04:08:25.689619Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 147107542,\n", | |
" 'location': 28,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32571556, 'name': 'biology'}],\n", | |
" 'text': 'Poise, self assurance, optimism, efficiency, perseverance, courage, decisiveness, intelligence, ambition—these are the things that cause men to rise to the top of their professions. And not coincidentally, these are the things women find attractive. They are clues to future status.',\n", | |
" 'updated': '2021-02-18T04:08:25.689551Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 147107541,\n", | |
" 'location': 27,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 36114851, 'name': 'discard'}],\n", | |
" 'text': 'Such evolutionary novelties as agriculture, metal, and writing arrived less than three hundred generations ago, far too recently to have left much imprint on my mind.',\n", | |
" 'updated': '2021-02-18T04:08:25.689483Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 147107540,\n", | |
" 'location': 26,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32571419, 'name': 'discard'}],\n", | |
" 'text': 'Females choose; their choosiness is inherited; they prefer exaggerated ornaments; exaggerated ornaments are a burden to males. That much is now uncontroversial. Thus far Darwin was right.',\n", | |
" 'updated': '2021-02-18T04:08:25.689416Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 147107539,\n", | |
" 'location': 25,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'A gazelle on the African savanna is trying not to be eaten by cheetahs, but it is also trying to outrun other gazelles when a cheetah attacks. What matters to the gazelle is being faster than other gazelles, not being faster than cheetahs.',\n", | |
" 'updated': '2021-02-18T04:08:25.689349Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 147107538,\n", | |
" 'location': 24,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Then Richard Dawkins of Oxford University effectively invented the notion that because bodies do not replicate themselves but are grown, whereas genes do replicate themselves, it inevitably follows that the body is merely an evolutionary vehicle for the gene, rather than vice versa.',\n", | |
" 'updated': '2021-02-18T04:08:25.689286Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 147107537,\n", | |
" 'location': 23,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32667987, 'name': 'biology'}],\n", | |
" 'text': 'The fashion in evolutionary science now is to scoff at progress; evolution is a treadmill, not a ladder.',\n", | |
" 'updated': '2021-02-18T04:08:25.689217Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 147107536,\n", | |
" 'location': 22,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Why do human beings have two sexes? Because in mobile animals hermaphrodites are less good at doing two things at once than males and females are at each doing his or her own thing. Therefore, ancestral hermaphroditic animals were outcompeted by ancestral sexed animals.',\n", | |
" 'updated': '2021-02-18T04:08:25.689148Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 147107535,\n", | |
" 'location': 21,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Sex causes the differences between individuals but ensures that those differences never diverge far from a golden mean for the whole species.',\n", | |
" 'updated': '2021-02-18T04:08:25.689075Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 147107534,\n", | |
" 'location': 20,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Monogamy, enforced by law, religion, or sanction, does seem to reduce murderous competition between men.',\n", | |
" 'updated': '2021-02-18T04:08:25.688973Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 5891154,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 147107477,\n", | |
" 'location': 19,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 37974212, 'name': 'philosophy'},\n", | |
" {'id': 37974211, 'name': 'rationality'},\n", | |
" {'id': 37974209, 'name': 'favorite'}],\n", | |
" 'text': 'I am convinced that we are not made for clear-cut, well-delineated schedules. We are made to live like firemen, with downtime for lounging and meditating between calls, under the protection of protective uncertainty.',\n", | |
" 'updated': '2021-02-18T04:08:24.333769Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 5891154,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 147107476,\n", | |
" 'location': 18,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'In the markets, there is a category of traders who have inverse rare events, for whom volatility is often a bearer of good news. These traders lose money frequently, but in small amounts, and make money rarely, but in large amounts. I call them crisis hunters. I am happy to be one of them.',\n", | |
" 'updated': '2021-02-18T04:08:24.333731Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 5891154,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 147107475,\n", | |
" 'location': 17,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'There are only two types of theories: 1. Theories that are known to be wrong, as they were tested and adequately rejected (he calls them falsified). Theories that have not yet been known to be wrong, not falsified yet, but are exposed to be proved wrong.',\n", | |
" 'updated': '2021-02-18T04:08:24.333693Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 5891154,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 147107474,\n", | |
" 'location': 16,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Mathematics is principally a tool to meditate, rather than to compute.',\n", | |
" 'updated': '2021-02-18T04:08:24.333655Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 5891154,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 147107473,\n", | |
" 'location': 15,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32393577, 'name': 'rationality'},\n", | |
" {'id': 32393575, 'name': 'favorite'}],\n", | |
" 'text': 'Psychologists call this overestimation of what one knew at the time of the event due to subsequent information the hindsight bias, the “I knew it all along” effect.',\n", | |
" 'updated': '2021-02-18T04:08:24.333617Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 5891154,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 147107472,\n", | |
" 'location': 14,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The epiphany I had in my career in randomness came when I understood that I was not intelligent enough, nor strong enough, to even try to fight my emotions. Besides, I believe that I need my emotions to formulate my ideas and get the energy to execute them.',\n", | |
" 'updated': '2021-02-18T04:08:24.333578Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 5891154,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 147107471,\n", | |
" 'location': 13,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'These are men with bold ideas, but highly critical of their own ideas; they try to find whether their ideas are right by trying first to find whether they are not perhaps wrong. They work with bold conjectures and severe attempts at refuting their own conjectures.',\n", | |
" 'updated': '2021-02-18T04:08:24.333540Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 5891154,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 147107470,\n", | |
" 'location': 12,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 43689000, 'name': 'philosophy'}],\n", | |
" 'text': 'It took me an entire lifetime to find out what my generator is. It is: We favor the visible, the embedded, the personal, the narrated, and the tangible; we scorn the abstract. Everything good (aesthetics, ethics) and wrong (Fooled by Randomness) with us seems to flow from it.',\n", | |
" 'updated': '2021-02-18T04:08:24.333500Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 5891154,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 147107469,\n", | |
" 'location': 11,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 37001613, 'name': 'rationality'}],\n", | |
" 'text': 'This is one of the many reasons that journalism may be the greatest plague we face today—as the world becomes more and more complicated and our minds are trained for more and more simplification.',\n", | |
" 'updated': '2021-02-18T04:08:24.333459Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 5891154,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 147107468,\n", | |
" 'location': 10,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': '(It takes a huge investment in introspection to learn that the thirty or more hours spent “studying” the news last month neither had any predictive ability during your activities of that month nor did it impact your current knowledge of the world.',\n", | |
" 'updated': '2021-02-18T04:08:24.333397Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7480765,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2021-02-01T17:35:14.564176Z',\n", | |
" 'id': 139868125,\n", | |
" 'location': None,\n", | |
" 'location_type': 'none',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 30807961, 'name': 'philosophy'},\n", | |
" {'id': 30807960, 'name': 'favorite'}],\n", | |
" 'text': 'Health frees your body.\\n\\nWealth frees your time.\\n\\nPurpose frees your spirit.\\n\\nWisdom frees your mind.',\n", | |
" 'updated': '2021-07-09T10:53:06.867546Z',\n", | |
" 'url': 'https://twitter.com/search?q=Health%20frees%20your%20body.%20%20Wealth%20frees%20your%20time.%20%20Purpose%20frees%20your%20spirit.%20%20Wisdom%20frees%20your%20mind.%20%28from%3A%40AscendantPower%29'},\n", | |
" {'book_id': 7386678,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 137477842,\n", | |
" 'location': 9,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Being a good company doesn’t matter when things go well, but it can be the difference between life and death when things go wrong. Things always go wrong. Being a good company is an end in itself.',\n", | |
" 'updated': '2021-01-29T04:45:13.951948Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7386678,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 137477841,\n", | |
" 'location': 8,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'It turns out that is exactly what product strategy is all about—figuring out the right product is the innovator’s job, not the customer’s job.',\n", | |
" 'updated': '2021-01-29T04:45:13.951874Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7386678,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 137477840,\n", | |
" 'location': 7,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Note to self: It’s a good idea to ask, “What am I not doing?”',\n", | |
" 'updated': '2021-01-29T04:45:13.951799Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7386678,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 137477839,\n", | |
" 'location': 6,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32796638, 'name': 'discard'}],\n", | |
" 'text': '“Gentlemen, I’ve done many deals in my lifetime and through that process, I’ve developed a methodology, a way of doing things, a philosophy if you will. Within that philosophy, I have certain beliefs. I believe in artificial deadlines. I believe in playing one against the other. I believe in doing everything and anything short of illegal or immoral to get the damned deal done.”',\n", | |
" 'updated': '2021-01-29T04:45:13.951718Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7386678,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 137477838,\n", | |
" 'location': 5,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Perhaps the most important thing that I learned as an entrepreneur was to focus on what I needed to get right and stop worrying about all the things that I did wrong or might do wrong.',\n", | |
" 'updated': '2021-01-29T04:45:13.951609Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7386678,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 137477837,\n", | |
" 'location': 4,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 31236380, 'name': 'rationality'}],\n", | |
" 'text': 'There are no shortcuts to knowledge, especially knowledge gained from personal experience. Following conventional wisdom and relying on shortcuts can be worse than knowing nothing at all.',\n", | |
" 'updated': '2021-01-29T04:45:13.939524Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7386678,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 137477836,\n", | |
" 'location': 3,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Former secretary of state Colin Powell says that leadership is the ability to get someone to follow you even if only out of curiosity.',\n", | |
" 'updated': '2021-01-29T04:45:13.939447Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7386678,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 137477835,\n", | |
" 'location': 2,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 35854707, 'name': 'business'}],\n", | |
" 'text': 'During this time I learned the most important rule of raising money privately: Look for a market of one. You only need one investor to say yes, so it’s best to ignore the other thirty who say “no.”',\n", | |
" 'updated': '2021-01-29T04:45:13.939371Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7386678,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 137477834,\n", | |
" 'location': 1,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'An early lesson I learned in my career was that whenever a large organization attempts to do anything, it always comes down to a single person who can delay the entire project.',\n", | |
" 'updated': '2021-01-29T04:45:13.939292Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7386678,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 137477833,\n", | |
" 'location': 0,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Startup CEOs should not play the odds. When you are building a company, you must believe there is an answer and you cannot pay attention to your odds of finding it. You just have to find it. It matters not whether your chances are nine in ten or one in a thousand; your task is the same.',\n", | |
" 'updated': '2021-01-29T04:45:13.939181Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7352625,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 136694726,\n", | |
" 'location': 9,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 33203386, 'name': 'rationality'}],\n", | |
" 'text': 'The first step to thinking clearly is to question what we think we know about the past.',\n", | |
" 'updated': '2021-01-27T01:06:11.011931Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7352625,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 136694725,\n", | |
" 'location': 8,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32393570, 'name': 'business'}],\n", | |
" 'text': 'Creating value is not enough—you also need to capture some of the value you create.',\n", | |
" 'updated': '2021-01-27T01:06:11.011892Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7352625,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 136694724,\n", | |
" 'location': 7,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 36939491, 'name': 'discard'}],\n", | |
" 'text': 'The most contrarian thing of all is not to oppose the crowd but to think for yourself.',\n", | |
" 'updated': '2021-01-27T01:06:11.011854Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7352625,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 136694723,\n", | |
" 'location': 6,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The biggest secret in venture capital is that the best investment in a successful fund equals or outperforms the entire rest of the fund combined.',\n", | |
" 'updated': '2021-01-27T01:06:11.011816Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7352625,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 136694722,\n", | |
" 'location': 5,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'As you craft a plan to expand to adjacent markets, don’t disrupt: avoid competition as much as possible.',\n", | |
" 'updated': '2021-01-27T01:06:11.011777Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7352625,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 136694721,\n", | |
" 'location': 4,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'If you focus on near-term growth above all else, you miss the most important question you should be asking: will this business still be around a decade from now? Numbers alone won’t tell you the answer; instead you must think critically about the qualitative characteristics of your business.',\n", | |
" 'updated': '2021-01-27T01:06:11.011738Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7352625,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 136694720,\n", | |
" 'location': 3,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'A startup is the largest endeavor over which you can have definite mastery. You can have agency not just over your own life, but over a small and important part of the world. It begins by rejecting the unjust tyranny of Chance. You are not a lottery ticket.',\n", | |
" 'updated': '2021-01-27T01:06:11.011700Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7352625,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 136694719,\n", | |
" 'location': 2,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'All happy companies are different: each one earns a monopoly by solving a unique problem. All failed companies are the same: they failed to escape competition.',\n", | |
" 'updated': '2021-01-27T01:06:11.011661Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7352625,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 136694718,\n", | |
" 'location': 1,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 29975959, 'name': 'business'}],\n", | |
" 'text': 'The perfect target market for a startup is a small group of particular people concentrated together and served by few or no competitors.',\n", | |
" 'updated': '2021-01-27T01:06:11.011591Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7352625,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 136694717,\n", | |
" 'location': 0,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 34098482, 'name': 'business'}],\n", | |
" 'text': 'As a good rule of thumb, proprietary technology must be at least 10 times better than its closest substitute in some important dimension to lead to a real monopolistic advantage.',\n", | |
" 'updated': '2021-01-27T01:06:11.011526Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530044,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 135980377,\n", | |
" 'location': 39,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'If universal basic support is aimed at improving the objective conditions of the average person in 2050, it has a fair chance of succeeding. But if it is aimed at making people subjectively more satisfied with their lot and preventing social discontent, it is likely to fail.',\n", | |
" 'updated': '2021-01-25T04:35:38.247763Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530044,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 135980376,\n", | |
" 'location': 38,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 29975966, 'name': 'rationality'}],\n", | |
" 'text': 'Technology isn’t bad. If you know what you want in life, technology can help you get it. But if you don’t know what you want in life, it will be all too easy for technology to shape your aims for you and take control of your life.',\n", | |
" 'updated': '2021-01-25T04:35:38.247646Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530044,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 135980375,\n", | |
" 'location': 37,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 34986833, 'name': 'society'}],\n", | |
" 'text': 'The main handicap of authoritarian regimes in the twentieth century—the attempt to concentrate all information in one place—might become their decisive advantage in the twenty-first century.',\n", | |
" 'updated': '2021-01-25T04:35:38.247483Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530044,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 135980374,\n", | |
" 'location': 36,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 30635529, 'name': 'society'}],\n", | |
" 'text': 'Property is a prerequisite for long-term inequality.',\n", | |
" 'updated': '2021-01-25T04:35:38.247300Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530044,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 135980373,\n", | |
" 'location': 35,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Humans vote with their feet. In my travels around the world I have met numerous people in many countries who wish to immigrate to the United States, Germany, Canada, or Australia. I have met a few who want to move to China or Japan. But I have yet to meet a single person who dreams of immigrating to Russia.',\n", | |
" 'updated': '2021-01-25T04:35:38.247115Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530044,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 135980372,\n", | |
" 'location': 34,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Truth and power can travel together only so far. Sooner or later they go their separate paths. If you want power, at some point you will have to spread fictions. If you want to know the truth about the world, at some point you will have to renounce power.',\n", | |
" 'updated': '2021-01-25T04:35:38.246925Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530044,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 135980371,\n", | |
" 'location': 33,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 40592535, 'name': 'philosophy'}],\n", | |
" 'text': 'By 2050 a useless class might emerge due not merely to an absolute lack of jobs or a lack of relevant education but also to insufficient mental stamina.',\n", | |
" 'updated': '2021-01-25T04:35:38.246723Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530044,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 135980370,\n", | |
" 'location': 32,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 35163758, 'name': 'society'}],\n", | |
" 'text': 'First, if you want reliable information, pay good money for it. If you get your news for free, you might well be the product.',\n", | |
" 'updated': '2021-01-25T04:35:38.246611Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530044,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 135980369,\n", | |
" 'location': 31,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Feelings are therefore not the opposite of rationality—they embody evolutionary rationality.',\n", | |
" 'updated': '2021-01-25T04:35:38.246472Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530044,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 135980368,\n", | |
" 'location': 30,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 34938270, 'name': 'society'},\n", | |
" {'id': 34938268, 'name': 'rationality'}],\n", | |
" 'text': 'Religions, rites, and rituals will remain important as long as the power of humankind rests on mass cooperation and as long as mass cooperation rests on belief in shared fictions.',\n", | |
" 'updated': '2021-01-25T04:35:38.246228Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530103,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 134825369,\n", | |
" 'location': 29,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 35190748, 'name': 'philosophy'}],\n", | |
" 'text': 'The more fearless a person is, the less mind he uses. The more fearful a person, the more he uses the mind.',\n", | |
" 'updated': '2021-01-22T04:53:03.620171Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530103,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 134825368,\n", | |
" 'location': 28,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 34792620, 'name': 'philosophy'},\n", | |
" {'id': 34792619, 'name': 'favorite'}],\n", | |
" 'text': 'If a man knows what peace is, and what mind is, he cannot write a book entitled Peace of Mind, because mind is the cause of all unpeace, all restlessness. Peace is when there is no mind. So peace of mind–no commodity like this exists.',\n", | |
" 'updated': '2021-01-22T04:53:03.620037Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530103,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 134825367,\n", | |
" 'location': 27,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 29605452, 'name': 'philosophy'}],\n", | |
" 'text': 'Intelligence is aliveness, it is spontaneity. It is openness, it is vulnerability. It is impartiality, it is the courage to function without conclusions.',\n", | |
" 'updated': '2021-01-22T04:53:03.619891Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530103,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 134825366,\n", | |
" 'location': 26,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 29845808, 'name': 'philosophy'}],\n", | |
" 'text': 'The heart is always ready to take the risk, the heart is a gambler. The head is a businessman. The head always calculates–it is cunning.',\n", | |
" 'updated': '2021-01-22T04:53:03.619559Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530103,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 134825365,\n", | |
" 'location': 25,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 35191100, 'name': 'philosophy'}],\n", | |
" 'text': 'A man really becomes a man when he accepts total responsibitity–he is responsible for whatsoever he is. This is the first courage, the greatest courage.',\n", | |
" 'updated': '2021-01-22T04:53:03.619424Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530103,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 134825364,\n", | |
" 'location': 24,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 34792627, 'name': 'philosophy'}],\n", | |
" 'text': 'A man really becomes a man when he accepts total responsibility—he is responsible for whatsoever he is. This is the first courage, the greatest courage.',\n", | |
" 'updated': '2021-01-22T04:53:03.619288Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530103,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 134825363,\n", | |
" 'location': 23,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'DON’T LISTEN TO THE SCRIPTURES—listen to your own heart. That is the only scripture I prescribe: listen very attentively, very consciously, and you will never be wrong. And listening to your own heart, you will never be divided. Listening to your own heart, you will start moving in the right direction, without ever thinking of what is right and what is wrong.',\n", | |
" 'updated': '2021-01-22T04:53:03.619128Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530103,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 134825362,\n", | |
" 'location': 22,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 38883755, 'name': 'favorite'},\n", | |
" {'id': 38883753, 'name': 'risk'},\n", | |
" {'id': 38883750, 'name': 'freedom'}],\n", | |
" 'text': 'Life can only be lived dangerously—there is no other way to live it. It is only through danger that life attains to maturity, growth. One needs to be an adventurer, always ready to risk the known for the unknown. And once one has tasted the joys of freedom and fearlessness, one never repents because then one knows what it means to live at the optimum. Then one knows what it means to burn your life’s torch from both ends together. And even a single moment of that intensity is more gratifying than the whole eternity of mediocre living.',\n", | |
" 'updated': '2021-01-22T04:53:03.618994Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530103,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 134825361,\n", | |
" 'location': 21,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 29975953, 'name': 'philosophy'},\n", | |
" {'id': 29975952, 'name': 'favorite'}],\n", | |
" 'text': 'Start with a simple exercise: always remember, whenever there is a choice, choose the unknown, the risky, the dangerous, the insecure, and you will not be at a loss.',\n", | |
" 'updated': '2021-01-22T04:53:03.618856Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530103,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 134825360,\n", | |
" 'location': 20,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'So don’t be hesitant, don’t be worried too much about going wrong. That is one of the problems: people have been taught never to do anything wrong, and then they become so hesitant, so fearful, so frightened of doing wrong, that they become stuck. They cannot move, something wrong may happen. So they become like rocks, they lose all movement.',\n", | |
" 'updated': '2021-01-22T04:53:03.618690Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530041,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 134825353,\n", | |
" 'location': 40,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'All these cooperation networks – from the cities of ancient Mesopotamia to the Qin and Roman empires – were ‘imagined orders’. The social norms that sustained them were based neither on ingrained instincts nor on personal acquaintances, but rather on belief in shared myths.',\n", | |
" 'updated': '2021-01-22T04:53:03.122106Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530041,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 134825352,\n", | |
" 'location': 39,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32571455, 'name': 'philosophy'},\n", | |
" {'id': 32571454, 'name': 'favorite'}],\n", | |
" 'text': 'Buddha agreed with modern biology and New Age movements that happiness is independent of external conditions. Yet his more important and far more profound insight was that true happiness is also independent of our inner feelings. Indeed, the more significance we give our feelings, the more we crave them, and the more we suffer. Buddha’s recommendation was to stop not only the pursuit of external achievements, but also the pursuit of inner feelings.',\n", | |
" 'updated': '2021-01-22T04:53:03.121965Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530041,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 134825351,\n", | |
" 'location': 38,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 30635704, 'name': 'biology'}],\n", | |
" 'text': 'The wholesome and varied diet, the relatively short working week, and the rarity of infectious diseases have led many experts to define pre-agricultural forager societies as ‘the original affluent societies’.',\n", | |
" 'updated': '2021-01-22T04:53:03.121825Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530041,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 134825350,\n", | |
" 'location': 37,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32199953, 'name': 'philosophy'}],\n", | |
" 'text': 'Voltaire said about God that ‘there is no God, but don’t tell that to my servant, lest he murder me at night’.',\n", | |
" 'updated': '2021-01-22T04:53:03.121676Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530041,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 134825349,\n", | |
" 'location': 36,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'So why study history? Unlike physics or economics, history is not a means for making accurate predictions. We study history not to know the future but to widen our horizons, to understand that our present situation is neither natural nor inevitable, and that we consequently have many more possibilities before us than we imagine.',\n", | |
" 'updated': '2021-01-22T04:53:03.121503Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530041,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 134825348,\n", | |
" 'location': 35,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 29845692, 'name': 'biology'},\n", | |
" {'id': 29845690, 'name': 'society'}],\n", | |
" 'text': 'The first universal order to appear was economic: the monetary order. The second universal order was political: the imperial order. The third universal order was religious: the order of universal religions such as Buddhism, Christianity and Islam.',\n", | |
" 'updated': '2021-01-22T04:53:03.121348Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530041,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 134825347,\n", | |
" 'location': 34,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'UNDERSTANDING HUMAN HISTORY IN THE millennia following the Agricultural Revolution boils down to a single question: how did humans organise themselves in mass-cooperation networks, when they lacked the biological instincts necessary to sustain such networks? The short answer is that humans created imagined orders and devised scripts. These two inventions filled the gaps left by our biological inheritance.',\n", | |
" 'updated': '2021-01-22T04:53:03.121208Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530041,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 134825346,\n", | |
" 'location': 33,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 34986809, 'name': 'discard'}],\n", | |
" 'text': 'The fundamental insight of polytheism, which distinguishes it from monotheism, is that the supreme power governing the world is devoid of interests and biases, and therefore it is unconcerned with the mundane desires, cares and worries of humans.',\n", | |
" 'updated': '2021-01-22T04:53:03.121057Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530041,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 134825345,\n", | |
" 'location': 32,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 39470502, 'name': 'biology'},\n", | |
" {'id': 39470501, 'name': 'evolution'}],\n", | |
" 'text': 'Just 6 million years ago, a single female ape had two daughters. One became the ancestor of all chimpanzees, the other is our own grandmother.',\n", | |
" 'updated': '2021-01-22T04:53:03.120895Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530041,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 134825344,\n", | |
" 'location': 31,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32096121, 'name': 'rationality'}],\n", | |
" 'text': 'The Scientific Revolution has not been a revolution of knowledge. It has been above all a revolution of ignorance. The great discovery that launched the Scientific Revolution was the discovery that humans do not know the answers to their most important questions.',\n", | |
" 'updated': '2021-01-22T04:53:03.120693Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7231875,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 133605849,\n", | |
" 'location': 9,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 31315345, 'name': 'discard'}],\n", | |
" 'text': '“Simply put, your job is to prepare yourself and your business for growth.',\n", | |
" 'updated': '2021-01-18T17:58:36.336274Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7231875,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 133605848,\n", | |
" 'location': 8,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32199963, 'name': 'discard'}],\n", | |
" 'text': 'Orchestration is the elimination of discretion, or choice, at the operating level of your business.',\n", | |
" 'updated': '2021-01-18T17:58:36.336195Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7231875,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 133605847,\n", | |
" 'location': 7,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 33203408, 'name': 'favorite'},\n", | |
" {'id': 33203407, 'name': 'rationality'}],\n", | |
" 'text': 'I believe it’s true that the difference between great people and everyone else is that great people create their lives actively, while everyone else is created by their lives, passively waiting to see where life takes them next.',\n", | |
" 'updated': '2021-01-18T17:58:36.336117Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7231875,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 133605846,\n", | |
" 'location': 6,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 33857651, 'name': 'business'}],\n", | |
" 'text': '“The purpose of going into business is to get free of a job so you can create jobs for other people.',\n", | |
" 'updated': '2021-01-18T17:58:36.336039Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7231875,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 133605845,\n", | |
" 'location': 5,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 47503579, 'name': 'discard'}],\n", | |
" 'text': 'The question you need to keep asking yourself is: How can I give my customer the results he wants systematically rather than personally? Put another way: How can I create a business whose results are systems-dependent rather than people-dependent? Systems-dependent rather than expert-dependent.',\n", | |
" 'updated': '2021-01-18T17:58:36.335960Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7231875,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 133605844,\n", | |
" 'location': 4,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 30635533, 'name': 'biology'}],\n", | |
" 'text': 'Thus, the Entrepreneurial Model does not start with a picture of the business to be created but of the customer for whom the business is to be created. It understands that without a clear picture of that customer, no business can succeed.',\n", | |
" 'updated': '2021-01-18T17:58:36.335879Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7231875,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 133605843,\n", | |
" 'location': 3,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'A Mature company is founded on a broader perspective, an entrepreneurial perspective, a more intelligent point of view. About building a business that works not because of you but without you.',\n", | |
" 'updated': '2021-01-18T17:58:36.335780Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7231875,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 133605842,\n", | |
" 'location': 2,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 30497102, 'name': 'business'}],\n", | |
" 'text': 'Your Strategic Objective is a very clear statement of what your business has to ultimately do for you to achieve your Primary Aim.',\n", | |
" 'updated': '2021-01-18T17:58:36.335680Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7231875,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 133605841,\n", | |
" 'location': 1,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 29975814, 'name': 'business'}],\n", | |
" 'text': 'That Fatal Assumption is: if you understand the technical work of a business, you understand a business that does that technical work.',\n", | |
" 'updated': '2021-01-18T17:58:36.335544Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 7231875,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 133605840,\n", | |
" 'location': 0,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 34098442, 'name': 'discard'}],\n", | |
" 'text': 'What you do in your model is not nearly as important as doing what you do the same way, each and every time.',\n", | |
" 'updated': '2021-01-18T17:58:36.335412Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530106,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 131887586,\n", | |
" 'location': 50,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Tumour suppressors are the opposite of oncogenes. Whereas oncogenes cause cancer if they are jammed on, tumour-suppressor genes cause cancer if they are jammed off.',\n", | |
" 'updated': '2021-01-14T04:14:53.076004Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530106,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 131887585,\n", | |
" 'location': 49,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'America, bastion of individual liberty, sterilised more than 100,000 people for feeble-mindedness, under more than 30 state and federal laws passed between 1910 and 1935.',\n", | |
" 'updated': '2021-01-14T04:14:53.075932Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530106,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 131887584,\n", | |
" 'location': 48,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'It is we that have retained the primitive molecular features of the Lucas in our cells; bacteria are much more ‘highly evolved’ than we are.',\n", | |
" 'updated': '2021-01-14T04:14:53.075857Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530106,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 131887583,\n", | |
" 'location': 47,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Cortisol levels rise in response not to the amount of work you do, but to the degree to which you are ordered about by other people.',\n", | |
" 'updated': '2021-01-14T04:14:53.075774Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530106,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 131887582,\n", | |
" 'location': 46,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32199976, 'name': 'discard'}],\n", | |
" 'text': 'As a result, each Alu gene is probably a ‘pseudogene’. Pseudogenes are, to follow a common analogy, rusting wrecks of genes that have been holed below the waterline by a serious mutation and sunk. They now lie on the bottom of the genomic ocean, gradually growing rustier (that is, accumulating more mutations) until they no longer even resemble the gene they once were.',\n", | |
" 'updated': '2021-01-14T04:14:53.075640Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530106,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 131887581,\n", | |
" 'location': 45,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The influence upon our intelligence of events that happened in the womb is three times as great as anything our parents did to us after our birth.',\n", | |
" 'updated': '2021-01-14T04:14:53.047241Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530106,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 131887580,\n", | |
" 'location': 44,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 30497218, 'name': 'favorite'},\n", | |
" {'id': 30497189, 'name': 'biology'}],\n", | |
" 'text': 'I am going to repeat myself for emphasis. Far from behaviour being at the mercy of our biology, our biology is often at the mercy of our behaviour.',\n", | |
" 'updated': '2021-01-14T04:14:53.047165Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530106,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 131887579,\n", | |
" 'location': 43,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The Baldwin effect is about the delicate balance between cultural and genetic evolution. They are not opposites, but comrades, trading influence with each other to get best results.',\n", | |
" 'updated': '2021-01-14T04:14:53.047083Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530106,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 131887578,\n", | |
" 'location': 42,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32096125, 'name': 'biology'}],\n", | |
" 'text': 'The subject of learning lies in the provinces of neurosciences and psychology. It is the opposite of instinct. Instinct is genetically-determined behaviour; learning is behaviour modified by experience.',\n", | |
" 'updated': '2021-01-14T04:14:53.046999Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530106,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 131887577,\n", | |
" 'location': 41,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The idea of the genome as a book is not, strictly speaking, even a metaphor. It is literally true. A book is a piece of digital information, written in linear, one-dimensional and one-directional form and defined by a code that transliterates a small alphabet of signs into a large lexicon of meanings through the order of their groupings. So is a genome.',\n", | |
" 'updated': '2021-01-14T04:14:53.046870Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530089,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 130760352,\n", | |
" 'location': 39,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'To understand the actual you must be in direct communion with it; your relationship with it cannot be through the screen of the ideal, or through the screen of the past, of tradition, of experience.',\n", | |
" 'updated': '2021-01-11T05:52:07.047360Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530089,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 130760351,\n", | |
" 'location': 38,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 33092744, 'name': 'philosophy'},\n", | |
" {'id': 33092743, 'name': 'favorite'}],\n", | |
" 'text': 'To think creatively is to bring about harmony between mind, emotion, and action. That is, if you are convinced of an action, without the search of a reward at the end, then that action, being the result of intelligence, releases all hindrances that have been placed on the mind through the lack of understanding.',\n", | |
" 'updated': '2021-01-11T05:52:07.047167Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530089,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 130760350,\n", | |
" 'location': 37,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Now, each one, more or less, is consumed by desires whose objects vary according to environment, temperament, and inheritance. According to your particular condition, to your particular education and upbringing, religious, social, and economic, you have established certain objectives whose attainment you are ceaselessly pursuing, and this pursuit has become paramount in your lives.',\n", | |
" 'updated': '2021-01-11T05:52:07.046978Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530089,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 130760349,\n", | |
" 'location': 36,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Most minds are seeking a culmination, a goal, an achievement, and are molding themselves upon the idea of success, and such thought, such thinking is continually limiting itself, whereas if there is no idea of achievement but only the continual movement of thought as understanding, as intelligence, then that movement of thought is creative.',\n", | |
" 'updated': '2021-01-11T05:52:07.046792Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530089,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 130760348,\n", | |
" 'location': 35,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 38627466, 'name': 'philosophy'}],\n", | |
" 'text': 'So you will see how absurd is the whole structure that you have built, looking for external help, depending on others for your comfort, for your happiness, for your strength. These can only be found within yourselves.',\n", | |
" 'updated': '2021-01-11T05:52:07.046593Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530089,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 130760347,\n", | |
" 'location': 34,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 39632266, 'name': 'favorite'},\n", | |
" {'id': 31315353, 'name': 'rationality'},\n", | |
" {'id': 31315352, 'name': 'philosophy'}],\n", | |
" 'text': 'So as I said, I am not putting forward an ideal to be imitated, a goal to be found; but my purpose is, rather, to awaken that thought by which the mind can liberate itself from these things which we have established, which we have taken for granted as being true.',\n", | |
" 'updated': '2021-01-11T05:52:07.046403Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530089,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 130760346,\n", | |
" 'location': 33,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'All following is detrimental to completeness.',\n", | |
" 'updated': '2021-01-11T05:52:07.046204Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530089,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 130760345,\n", | |
" 'location': 32,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'I have only one purpose: to make man free, to urge him toward freedom, to help him to break away from all limitations, for that alone will give him eternal happiness, will give him the unconditioned realization of the self.',\n", | |
" 'updated': '2021-01-11T05:52:07.046019Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530089,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 130760344,\n", | |
" 'location': 31,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 33092746, 'name': 'philosophy'}],\n", | |
" 'text': 'But if you understand the significance of environment, that is, wealth, poverty, exploitation, oppression, nationalities, religions, and all the inanities of social life in modern existence, not trying to overcome them but seeing their significance, then there must be individual action, and complete revolution of ideas and thought.',\n", | |
" 'updated': '2021-01-11T05:52:07.045788Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530089,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 130760343,\n", | |
" 'location': 30,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32142530, 'name': 'philosophy'}],\n", | |
" 'text': 'There is the family, the neighbor and the state, and by questioning their significance you will see that intelligence is spontaneous, not to be acquired, not to be cultivated. You have sown the seed of awareness and that produces the flower of intelligence.',\n", | |
" 'updated': '2021-01-11T05:52:07.045567Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530094,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 129975244,\n", | |
" 'location': 29,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'He becomes an appendage of the machine, and it is only the most simple, most monotonous, and most easily acquired knack, that is required of him.',\n", | |
" 'updated': '2021-01-09T04:14:38.875267Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530094,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 129975243,\n", | |
" 'location': 28,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 30807958, 'name': 'discard'}],\n", | |
" 'text': 'The proletariat, the lowest stratum of our present society, cannot stir, cannot raise itself up, without the whole superincumbent strata of official society being sprung into the air.',\n", | |
" 'updated': '2021-01-09T04:14:38.875215Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530094,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 129975242,\n", | |
" 'location': 27,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The modern laborer, on the contrary, instead of rising with the progress of industry, sinks deeper and deeper below the conditions of existence of his own class. He becomes a pauper, and pauperism develops more rapidly than population and wealth.',\n", | |
" 'updated': '2021-01-09T04:14:38.875163Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530094,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 129975241,\n", | |
" 'location': 26,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32667985, 'name': 'discard'}],\n", | |
" 'text': 'Finally, in times when the class struggle nears the decisive hour, the process of dissolution going on within the ruling class, in fact within the whole range of society, assumes such a violent, glaring character, that a small section of the ruling class cuts itself adrift, and joins the revolutionary class, the class that holds the future in its hands.',\n", | |
" 'updated': '2021-01-09T04:14:38.875109Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530094,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 129975240,\n", | |
" 'location': 25,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'But not only has the bourgeoisie forged the weapons that bring death to itself; it has also called into existence the men who are to wield those weapons--the modern working class--the proletarians.',\n", | |
" 'updated': '2021-01-09T04:14:38.875041Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530094,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 129975239,\n", | |
" 'location': 24,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 29845662, 'name': 'society'}],\n", | |
" 'text': 'The less the skill and exertion of strength implied in manual labour, in other words, the more modern industry becomes developed, the more is the labour of men superseded by that of women.',\n", | |
" 'updated': '2021-01-09T04:14:38.874960Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530094,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 129975238,\n", | |
" 'location': 23,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The lower strata of the middle class--the small tradespeople, shopkeepers, retired tradesmen generally, the handicraftsmen and peasants--all these sink gradually into the proletariat, partly because their diminutive capital does not suffice for the scale on which Modern Industry is carried on, and is swamped in the competition with the large capitalists, partly because their specialized skill is rendered worthless by the new methods of production. Thus the proletariat is recruited from all classes of the population.',\n", | |
" 'updated': '2021-01-09T04:14:38.874907Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530094,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 129975237,\n", | |
" 'location': 22,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Political power, properly so called, is merely the organised power of one class for oppressing another.',\n", | |
" 'updated': '2021-01-09T04:14:38.874854Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530094,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 129975236,\n", | |
" 'location': 21,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The lower middle class, the small manufacturer, the shopkeeper, the artisan, the peasant, all these fight against the bourgeoisie, to save from extinction their existence as fractions of the middle class. They are therefore not revolutionary, but conservative. Nay more, they are reactionary, for they try to roll back the wheel of history.',\n", | |
" 'updated': '2021-01-09T04:14:38.874799Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530094,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 129975235,\n", | |
" 'location': 20,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 37220963, 'name': 'discard'}],\n", | |
" 'text': 'Each step in the development of the bourgeoisie was accompanied by a corresponding political advance of that class.',\n", | |
" 'updated': '2021-01-09T04:14:38.874696Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3156597,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 128850991,\n", | |
" 'location': 35,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'An apple was no sphere, but he understood it to be flying through space along with the rest of the earth’s contents, spinning across 25,000 miles each day.',\n", | |
" 'updated': '2021-01-06T04:16:00.458956Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3156597,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 128850990,\n", | |
" 'location': 34,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 31315369, 'name': 'discard'}],\n", | |
" 'text': 'Symbols recorded information, spared the memory, just as the printed book did.',\n", | |
" 'updated': '2021-01-06T04:16:00.458878Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3156597,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 128850989,\n", | |
" 'location': 33,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32571564, 'name': 'physics'},\n", | |
" {'id': 32571563, 'name': 'sciences'}],\n", | |
" 'text': 'Galileo had said that bodies fall with constant acceleration, no matter how far they are from the earth; Newton sensed that this must be wrong. And it would not be enough for gravity to fade in proportion to distance. He estimated that the earth attracted an apple 4,000 times as powerfully as it attracted the distant moon. If the ratio—like brightness, and like apparent area—depended on the square of distance, that might answer pretty nearly.',\n", | |
" 'updated': '2021-01-06T04:16:00.458799Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3156597,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 128850988,\n", | |
" 'location': 32,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 30807963, 'name': 'discard'}],\n", | |
" 'text': 'Diction, grammar, and orthography were fluid; they had barely begun to crystallize. Even proper names lacked approved spelling. Weights and measures were a hodgepodge. Travelers and mail made their way without addresses, unique names and numbers as coordinates for places. When Newton sent a letter to the Secretary of the Royal Society, he directed it To Mr Henry Oldenburge at his house about the middle of the old Palmail in St Jamses Fields in Westminster.',\n", | |
" 'updated': '2021-01-06T04:16:00.458716Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3156597,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 128850987,\n", | |
" 'location': 31,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 37515951, 'name': 'physics'}],\n", | |
" 'text': '“A dwarf standing on the shoulders of a Giant may see farther than a Giant himself.”',\n", | |
" 'updated': '2021-01-06T04:16:00.458622Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3156597,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 128850986,\n", | |
" 'location': 30,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'He began with foundation stones of knowledge: time, space, motion. I do not define time, space, place, and motion, as being well known to all, he wrote in midlife—then a reclusive professor, recondite theologian and alchemist, seldom leaving his room in Trinity College, Cambridge.6 But he did mean to define these terms. He salvaged them from the haze of everyday language. He standardized them. In defining them, he married them, each to the others.',\n", | |
" 'updated': '2021-01-06T04:16:00.458516Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530091,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 126680675,\n", | |
" 'location': 49,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The Master gives himself up to whatever the moment brings. He knows that he is going to die, and he has nothing left to hold on to: no illusions in his mind, no resistances in his body. He doesn’t think about his actions; they flow from the core of his being. He holds nothing back from life; therefore he is ready for death, as a man is ready for sleep after a good day’s work.',\n", | |
" 'updated': '2021-01-02T05:39:13.777591Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530091,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 126680674,\n", | |
" 'location': 48,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 34986690, 'name': 'philosophy'},\n", | |
" {'id': 34986689, 'name': 'favorite'}],\n", | |
" 'text': 'If you close your mind in judgments and traffic with desires, your heart will be troubled. If you keep your mind from judging and aren’t led by the senses, your heart will find peace.',\n", | |
" 'updated': '2021-01-02T05:39:13.777477Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530091,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 126680673,\n", | |
" 'location': 47,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 41844252, 'name': 'philosophy'}],\n", | |
" 'text': 'When taxes are too high, people go hungry. When the government is too intrusive, people lose their spirit. Act for the people’s benefit. Trust them; leave them alone.',\n", | |
" 'updated': '2021-01-02T05:39:13.777421Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530091,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 126680672,\n", | |
" 'location': 46,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32199969, 'name': 'discard'}],\n", | |
" 'text': 'If you want to shrink something: For example, defects in your character. When suppressed or ignored, they continue; but when allowed to be present in your awareness, they eventually wither away. Or, as Blake said from a slightly different perspective, “The road of excess leads to the palace of wisdom.”',\n", | |
" 'updated': '2021-01-02T05:39:13.777326Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530091,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 126680671,\n", | |
" 'location': 45,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'She who is centered in the Tao can go where she wishes, without danger. She perceives the universal harmony, even amid great pain, because she has found peace in her heart.',\n", | |
" 'updated': '2021-01-02T05:39:13.777241Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530091,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 126680670,\n", | |
" 'location': 44,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 27576049, 'name': 'discard'}],\n", | |
" 'text': 'Things arise and she lets them come; things disappear and she lets them go. She has but doesn’t possess, acts but doesn’t expect. When her work is done, she forgets it. That is why it lasts forever.',\n", | |
" 'updated': '2021-01-02T05:39:13.777187Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530091,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 126680669,\n", | |
" 'location': 43,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The Master views the parts with compassion, because he understands the whole.',\n", | |
" 'updated': '2021-01-02T05:39:13.777109Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530091,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 126680668,\n", | |
" 'location': 42,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 41451443, 'name': 'philosophy'},\n", | |
" {'id': 41451442, 'name': 'favorite'}],\n", | |
" 'text': 'If you want to govern the people, you must place yourself below them. If you want to lead the people, you must learn how to follow them.',\n", | |
" 'updated': '2021-01-02T05:39:13.777004Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530091,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 126680667,\n", | |
" 'location': 41,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The Master can keep giving because there is no end to her wealth. She acts without expectation, succeeds without taking credit, and doesn’t think that she is better than anyone else.',\n", | |
" 'updated': '2021-01-02T05:39:13.776943Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530091,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 126680666,\n", | |
" 'location': 40,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 30497157, 'name': 'favorite'},\n", | |
" {'id': 30497156, 'name': 'philosophy'}],\n", | |
" 'text': 'When they think that they know the answers, people are difficult to guide. When they know that they don’t know, people can find their own way.',\n", | |
" 'updated': '2021-01-02T05:39:13.776789Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530086,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 125520847,\n", | |
" 'location': 39,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The fundamental ideas of prospect theory are that reference points exist, and that losses loom larger than corresponding gains.',\n", | |
" 'updated': '2020-12-31T04:45:30.525153Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530086,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 125520846,\n", | |
" 'location': 38,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 39919469, 'name': 'rationality'}],\n", | |
" 'text': 'The prevalent tendency to underweight or ignore distributional information is perhaps the major source of error in forecasting. Planners should therefore make every effort to frame the forecasting problem so as to facilitate utilizing all the distributional information that is available.',\n", | |
" 'updated': '2020-12-31T04:45:30.525100Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530086,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 125520845,\n", | |
" 'location': 37,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The essential keys to disciplined Bayesian reasoning can be simply summarized: Anchor your judgment of the probability of an outcome on a plausible base rate. Question the diagnosticity of your evidence.',\n", | |
" 'updated': '2020-12-31T04:45:30.525047Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530086,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 125520844,\n", | |
" 'location': 36,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 28320028, 'name': 'biology'}],\n", | |
" 'text': 'As cognitive scientists have emphasized in recent years, cognition is embodied; you think with your body, not only with your brain.',\n", | |
" 'updated': '2020-12-31T04:45:30.524990Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530086,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 125520843,\n", | |
" 'location': 35,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The research suggests a surprising conclusion: to maximize predictive accuracy, final decisions should be left to formulas, especially in low-validity environments.',\n", | |
" 'updated': '2020-12-31T04:45:30.524937Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530086,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 125520842,\n", | |
" 'location': 34,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 29845680, 'name': 'rationality'}],\n", | |
" 'text': 'Hindsight bias has pernicious effects on the evaluations of decision makers. It leads observers to assess the quality of a decision not by whether the process was sound but by whether its outcome was good or bad.',\n", | |
" 'updated': '2020-12-31T04:45:30.524882Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530086,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 125520841,\n", | |
" 'location': 33,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 28699257, 'name': 'rationality'}],\n", | |
" 'text': 'System 1 is impulsive and intuitive; System 2 is capable of reasoning, and it is cautious, but at least for some people it is also lazy.',\n", | |
" 'updated': '2020-12-31T04:45:30.524829Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530086,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 125520840,\n", | |
" 'location': 32,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 34494037, 'name': 'rationality'}],\n", | |
" 'text': 'Remember this rule: intuition cannot be trusted in the absence of stable regularities in the environment.',\n", | |
" 'updated': '2020-12-31T04:45:30.524776Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530086,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 125520839,\n", | |
" 'location': 31,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'We are far too willing to reject the belief that much of what we see in life is random.',\n", | |
" 'updated': '2020-12-31T04:45:30.524721Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530086,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 125520838,\n", | |
" 'location': 30,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The technical definition of heuristic is a simple procedure that helps find adequate, though often imperfect, answers to difficult questions. The word comes from the same root as eureka.',\n", | |
" 'updated': '2020-12-31T04:45:30.524628Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6847936,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 124145626,\n", | |
" 'location': 9,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Possible helpful questions: - \\xa0 \\xa0 \\xa0 \\xa0 What is a bottleneck in your business right now? - \\xa0 \\xa0 \\xa0 \\xa0Areas that have been overlooked for too long? - \\xa0 \\xa0 \\xa0 \\xa0 Anything keeping you up at night right now? - \\xa0 \\xa0 \\xa0 \\xa0 \\xa0What is the “least solved” problem on your plate? - \\xa0 \\xa0 \\xa0 \\xa0 What’s taking up most of your focus these days?',\n", | |
" 'updated': '2020-12-28T04:57:46.485653Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6847936,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 124145625,\n", | |
" 'location': 8,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The long game has costs. And there are always temptations from the path.',\n", | |
" 'updated': '2020-12-28T04:57:46.485588Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6847936,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 124145624,\n", | |
" 'location': 7,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The more obviously and closely your job is tied to creating revenue, the more valuable the skill and the safer the career.',\n", | |
" 'updated': '2020-12-28T04:57:46.485478Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6847936,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 124145623,\n", | |
" 'location': 6,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'A long-term plan is not a necessary piece of success. A long-term perspective is.',\n", | |
" 'updated': '2020-12-28T04:57:46.485427Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6847936,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 124145622,\n", | |
" 'location': 5,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Seek out a career that will let you be proud of your work. Where you have the autonomy to do the job that you believe should be done.',\n", | |
" 'updated': '2020-12-28T04:57:46.485376Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6847936,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 124145621,\n", | |
" 'location': 4,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'You are far more likely to move toward your goals by helping other people with theirs than by waiting for them to offer to help you with yours.',\n", | |
" 'updated': '2020-12-28T04:57:46.485323Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6847936,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 124145620,\n", | |
" 'location': 3,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Help first. Help first. Help first. It’s key to building relationships – even with the ultra successful.',\n", | |
" 'updated': '2020-12-28T04:57:46.485269Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6847936,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 124145619,\n", | |
" 'location': 2,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'So, when you are choosing a career, look up. Look at the ceiling. See how high you can go, and if you plan to work your ass off -- do it somewhere with room to rise.',\n", | |
" 'updated': '2020-12-28T04:57:46.485164Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6847936,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 124145618,\n", | |
" 'location': 1,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Go to coffees, get on calls, and send good follow-up emails. Ask smart questions, do your homework, and always be on time. Read continuously, send authors notes, and remember that no one is immune to a kind word.',\n", | |
" 'updated': '2020-12-28T04:57:46.485059Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6847936,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 124145617,\n", | |
" 'location': 0,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Overlapping skills will set you up to win more opportunities, and be more uniquely valuable to places where you can really apply all of your talents and create much more value than an average hire could.',\n", | |
" 'updated': '2020-12-28T04:57:46.484904Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530105,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 124145606,\n", | |
" 'location': 29,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'There is no equilibrium in nature; there is only constant dynamism. As Heraclitus put it, ‘Nothing endures but change.’',\n", | |
" 'updated': '2020-12-28T04:57:44.590870Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530105,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 124145605,\n", | |
" 'location': 28,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The United Nations estimates that poverty was reduced more in the last fifty years than in the previous 500.',\n", | |
" 'updated': '2020-12-28T04:57:44.590826Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530105,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 124145604,\n", | |
" 'location': 27,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32571543, 'name': 'rationality'}],\n", | |
" 'text': 'Today, of Americans officially designated as ‘poor’, 99 per cent have electricity, running water, flush toilets, and a refrigerator; 95 per cent have a television, 88 per cent a telephone, 71 per cent a car and 70 per cent air conditioning.',\n", | |
" 'updated': '2020-12-28T04:57:44.590783Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530105,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 124145603,\n", | |
" 'location': 26,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Where commerce thrives, creativity and compassion both flourish.',\n", | |
" 'updated': '2020-12-28T04:57:44.590739Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530105,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 124145602,\n", | |
" 'location': 25,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32393585, 'name': 'discard'}],\n", | |
" 'text': 'There was nothing special about the brains of the moderns; it was their trade networks that made the difference – their collective brains.',\n", | |
" 'updated': '2020-12-28T04:57:44.590695Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530105,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 124145601,\n", | |
" 'location': 24,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Random violence makes the news precisely because it is so rare; routine kindness does not make the news precisely because it is so commonplace.',\n", | |
" 'updated': '2020-12-28T04:57:44.590651Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530105,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 124145600,\n", | |
" 'location': 23,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'As a broad generalisation, the more people trust each other in a society, the more prosperous that society is, and trust growth seems to precede income growth.',\n", | |
" 'updated': '2020-12-28T04:57:44.590606Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530105,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 124145599,\n", | |
" 'location': 22,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'So one way to raise your standard of living would be to lower somebody else’s: buy a slave. That was indeed how people got rich for thousands of years.',\n", | |
" 'updated': '2020-12-28T04:57:44.590560Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530105,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 124145598,\n", | |
" 'location': 21,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 39043678, 'name': 'business'}],\n", | |
" 'text': 'The success of human beings depends crucially, but precariously, on numbers and connections. A few hundred people cannot sustain a sophisticated technology: trade is a vital part of the story.',\n", | |
" 'updated': '2020-12-28T04:57:44.590514Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530105,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 124145597,\n", | |
" 'location': 20,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'By exchanging, human beings discovered ‘the division of labour’, the specialisation of efforts and talents for mutual gain.',\n", | |
" 'updated': '2020-12-28T04:57:44.590431Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530117,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 123186923,\n", | |
" 'location': 39,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 47069264, 'name': 'discard'}],\n", | |
" 'text': 'The inability to predict outliers implies the inability to predict the course of history, given the share of these events in the dynamics of events.',\n", | |
" 'updated': '2020-12-26T04:48:07.909833Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530117,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 123186922,\n", | |
" 'location': 38,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Plans fail because of what we have called tunneling, the neglect of sources of uncertainty outside the plan itself.',\n", | |
" 'updated': '2020-12-26T04:48:07.909735Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530117,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 123186921,\n", | |
" 'location': 37,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'In general, positive Black Swans take time to show their effect while negative ones happen very quickly—it is much easier and much faster to destroy than to build.',\n", | |
" 'updated': '2020-12-26T04:48:07.909680Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530117,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 123186920,\n", | |
" 'location': 36,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Note here that I am not saying causes do not exist; do not use this argument to avoid trying to learn from history. All I am saying is that it is not so simple; be suspicious of the “because” and handle it with care—particularly in situations where you suspect silent evidence.',\n", | |
" 'updated': '2020-12-26T04:48:07.909581Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530117,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 123186919,\n", | |
" 'location': 35,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Thus Mandelbrot’s fractals allow us to account for a few Black Swans, but not all. I said earlier that some Black Swans arise because we ignore sources of randomness. Others arise when we overestimate the fractal exponent. A gray swan concerns modelable extreme events, a black swan is about unknown unknowns.',\n", | |
" 'updated': '2020-12-26T04:48:07.909453Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530117,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 123186918,\n", | |
" 'location': 34,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 26790402, 'name': 'favorite'},\n", | |
" {'id': 26790401, 'name': 'philosophy'}],\n", | |
" 'text': 'To me utopia is an epistemocracy, a society in which anyone of rank is an epistemocrat, and where epistemocrats manage to be elected. It would be a society governed from the basis of the awareness of ignorance, not knowledge.',\n", | |
" 'updated': '2020-12-26T04:48:07.909360Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530117,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 123186917,\n", | |
" 'location': 33,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 26735443, 'name': 'rationality'}],\n", | |
" 'text': 'Those who spend too much time with their noses glued to maps will tend to mistake the map for the territory.',\n", | |
" 'updated': '2020-12-26T04:48:07.909270Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530117,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 123186916,\n", | |
" 'location': 32,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'In other words, good news is good news first; how good matters rather little. So to have a pleasant life you should spread these small “affects” across time as evenly as possible. Plenty of mildly good news is preferable to one single lump of great news.',\n", | |
" 'updated': '2020-12-26T04:48:07.909199Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530117,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 123186915,\n", | |
" 'location': 31,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The same property in reverse applies to our unhappiness. It is better to lump all your pain into a brief period rather than have it spread out over a longer one.',\n", | |
" 'updated': '2020-12-26T04:48:07.909141Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530117,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 123186914,\n", | |
" 'location': 30,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Similarly, the speculator George Soros, when making a financial bet, keeps looking for instances that would prove his initial theory wrong. This, perhaps, is true self-confidence: the ability to look at the world without the need to find signs that stroke one’s ego.',\n", | |
" 'updated': '2020-12-26T04:48:07.909013Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530092,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 120986037,\n", | |
" 'location': 39,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 36114767, 'name': 'philosophy'},\n", | |
" {'id': 36114766, 'name': 'favorite'}],\n", | |
" 'text': 'The life of perfection is the simple life. — A simple life is one of plainness, in which profit is discarded, cleverness abandoned, selfishness eliminated, and desires reduced.',\n", | |
" 'updated': '2020-12-19T05:40:47.327221Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530092,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 120986036,\n", | |
" 'location': 38,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The law of harmony. — The law of harmony, in which one should be in harmony with, and not in opposition to, the strength and force of the opposition. This means that one should do nothing that is not natural or spontaneous; the important thing is not to strain in any way.',\n", | |
" 'updated': '2020-12-19T05:40:47.327160Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530092,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 120986035,\n", | |
" 'location': 37,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 30900203, 'name': 'philosophy'}],\n", | |
" 'text': 'The law of self-will. — A self-willed man obeys a different law, the one law I, too, hold absolutely sacred — the human law in himself, his own individual will.',\n", | |
" 'updated': '2020-12-19T05:40:47.327108Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530092,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 120986034,\n", | |
" 'location': 36,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Let the spiritual grow up through the common. — Live content with small means; seek elegance rather than luxury, and refinement rather than fashion. Be worthy, not respectable, wealthy, not rich; study hard, think quietly, talk gently, act frankly; bear all cheerfully, do all bravely, await occasions, hurry never. In a word, let the spiritual, unbidden and unconscious, grow up through the common.',\n", | |
" 'updated': '2020-12-19T05:40:47.327054Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530092,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 120986033,\n", | |
" 'location': 35,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 28320032, 'name': 'philosophy'}],\n", | |
" 'text': 'Balance your thoughts with action. — If you spend too much time thinking about a thing, you’ll never get it done.',\n", | |
" 'updated': '2020-12-19T05:40:47.326999Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530092,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 120986032,\n", | |
" 'location': 34,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 33515156, 'name': 'favorite'},\n", | |
" {'id': 30807970, 'name': 'philosophy'}],\n", | |
" 'text': 'The three keys to success. — Persistence, persistence, and persistence. The Power can be created and maintained through daily practice — continuous effort.',\n", | |
" 'updated': '2020-12-19T05:40:47.326945Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530092,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 120986031,\n", | |
" 'location': 33,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'An intelligent mind is constantly learning. — An intelligent mind is one which is constantly learning, never concluding — styles and patterns have come to conclusion, therefore they [have] ceased to be intelligent.',\n", | |
" 'updated': '2020-12-19T05:40:47.326891Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530092,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 120986030,\n", | |
" 'location': 32,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 35087997, 'name': 'discard'}],\n", | |
" 'text': 'Being in the Now. Can you hear the wind? And can you hear the birds singing? You have to HEAR IT. Empty your mind. You know how water fills a cup? It BECOMES that cup. You have to think about nothing. You have to BECOME nothing.',\n", | |
" 'updated': '2020-12-19T05:40:47.326833Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530092,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 120986029,\n", | |
" 'location': 31,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'There is no anxiety in the Now. — When you are in the NOW, you can’t be anxious, because the excitement flows immediately into ongoing spontaneous activity.',\n", | |
" 'updated': '2020-12-19T05:40:47.326761Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530092,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 120986028,\n", | |
" 'location': 30,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Don’t seek, but allow. — Do not seek IT, for it will come when least expected. Don’t seek or run away.',\n", | |
" 'updated': '2020-12-19T05:40:47.326667Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3269139,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 120986017,\n", | |
" 'location': 39,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 26390177, 'name': 'rationality'}],\n", | |
" 'text': 'When asked how he accomplished his astonishing discoveries, Newton replied unhelpfully, “By thinking upon them.”',\n", | |
" 'updated': '2020-12-19T05:40:46.682436Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3269139,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 120986016,\n", | |
" 'location': 38,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'There is much more to the world than we can see. Beyond the ultraviolet is the X-ray part of the spectrum, and beyond the X-rays are the gamma rays. At lower frequencies, on the other side of red, is the infrared part of the spectrum.',\n", | |
" 'updated': '2020-12-19T05:40:46.682360Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3269139,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 120986015,\n", | |
" 'location': 37,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'If you wish to make an apple pie from scratch, you must first invent the universe.',\n", | |
" 'updated': '2020-12-19T05:40:46.682261Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3269139,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 120986014,\n", | |
" 'location': 36,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 26735587, 'name': 'discard'}],\n", | |
" 'text': 'Plato and Aristotle were comfortable in a slave society. They offered justifications for oppression. They served tyrants.',\n", | |
" 'updated': '2020-12-19T05:40:46.682211Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3269139,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 120986013,\n", | |
" 'location': 35,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'If a human disagrees with you, let him live. In a hundred billion galaxies, you will not find another.',\n", | |
" 'updated': '2020-12-19T05:40:46.682166Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3269139,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 120986012,\n", | |
" 'location': 34,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 34098468, 'name': 'biology'},\n", | |
" {'id': 34098467, 'name': 'favorite'}],\n", | |
" 'text': 'Every one of your hundred trillion cells contains a complete library of instructions on how to make every part of you.',\n", | |
" 'updated': '2020-12-19T05:40:46.682120Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3269139,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 120986011,\n", | |
" 'location': 33,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Far more species have become extinct in the history of the Earth than exist today; they are the terminated experiments of evolution.',\n", | |
" 'updated': '2020-12-19T05:40:46.682074Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3269139,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 120986010,\n", | |
" 'location': 32,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'An oak tree and I are made of the same stuff. If you go far enough back, we have a common ancestor.',\n", | |
" 'updated': '2020-12-19T05:40:46.682027Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3269139,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 120986009,\n", | |
" 'location': 31,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 30807969, 'name': 'physics'}],\n", | |
" 'text': 'Modern physics and chemistry have reduced the complexity of the sensible world to an astonishing simplicity: three units put together in various patterns make, essentially, everything.',\n", | |
" 'updated': '2020-12-19T05:40:46.681977Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3269139,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 120986008,\n", | |
" 'location': 30,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'There are some hundred billion (1011) galaxies, each with, on the average, a hundred billion stars. In all the galaxies, there are perhaps as many planets as stars, 1011 × 1011 = 1022, ten billion trillion.',\n", | |
" 'updated': '2020-12-19T05:40:46.681833Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530091,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 119919662,\n", | |
" 'location': 39,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Do you want to improve the world: Ramana Maharshi said, Wanting to reform the world without discovering one’s true self is like trying to cover the world with leather to avoid the pain of walking on stones and thorns. It is much simpler to wear shoes.',\n", | |
" 'updated': '2020-12-15T04:38:12.458485Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530091,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 119919661,\n", | |
" 'location': 38,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'If you let yourself be blown to and fro, you lose touch with your root. If you let restlessness move you, you lose touch with who you are.',\n", | |
" 'updated': '2020-12-15T04:38:12.458429Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530091,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 119919660,\n", | |
" 'location': 37,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'A good athlete can enter a state of body-awareness in which the right stroke or the right movement happens by itself, effortlessly, without any interference of the conscious will. This is a paradigm for non-action: the purest and most effective form of action. The game plays the game; the poem writes the poem; we can’t tell the dancer from the dance.',\n", | |
" 'updated': '2020-12-15T04:38:12.458377Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530091,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 119919659,\n", | |
" 'location': 36,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Confront the difficult while it is still easy; accomplish the great task by a series of small acts.',\n", | |
" 'updated': '2020-12-15T04:38:12.458326Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530091,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 119919658,\n", | |
" 'location': 35,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'There is no greater illusion than fear, no greater wrong than preparing to defend yourself, no greater misfortune than having an enemy. Whoever can see through all fear will always be safe.',\n", | |
" 'updated': '2020-12-15T04:38:12.458275Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530091,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 119919657,\n", | |
" 'location': 34,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 34411343, 'name': 'discard'}],\n", | |
" 'text': 'When the Tao is lost, there is goodness. When goodness is lost, there is morality. When morality is lost, there is ritual. Ritual is the husk of true faith, the beginning of chaos.',\n", | |
" 'updated': '2020-12-15T04:38:12.458217Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530091,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 119919656,\n", | |
" 'location': 33,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 26700355, 'name': 'philosophy'}],\n", | |
" 'text': 'The mark of a moderate man is freedom from his own ideas. Tolerant like the sky, all-pervading like sunlight, firm like a mountain, supple like a tree in the wind, he has no destination in view and makes use of anything life happens to bring his way.',\n", | |
" 'updated': '2020-12-15T04:38:12.458166Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530091,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 119919655,\n", | |
" 'location': 32,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Open yourself to the Tao, then trust your natural responses; and everything will fall into place.',\n", | |
" 'updated': '2020-12-15T04:38:12.458114Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530091,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 119919654,\n", | |
" 'location': 31,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Give evil nothing to oppose and it will disappear by itself.',\n", | |
" 'updated': '2020-12-15T04:38:12.458060Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530091,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 119919653,\n", | |
" 'location': 30,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The best athlete wants his opponent at his best. The best general enters the mind of his enemy. The best businessman serves the communal good. The best leader follows the will of the people. All of them embody the virtue of non-competition. Not that they don’t love to compete, but they do it in the spirit of play. In this they are like children and in harmony with the Tao.',\n", | |
" 'updated': '2020-12-15T04:38:12.457967Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6648254,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 118830870,\n", | |
" 'location': 9,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 34689130, 'name': 'biology'},\n", | |
" {'id': 34689129, 'name': 'rationality'},\n", | |
" {'id': 34689128, 'name': 'favorite'}],\n", | |
" 'text': 'The three most harmful addictions are heroin, carbohydrates, and a monthly salary.',\n", | |
" 'updated': '2020-12-11T15:53:56.625689Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6648254,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 118830869,\n", | |
" 'location': 8,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 36891862, 'name': 'favorite'},\n", | |
" {'id': 36891861, 'name': 'rationality'},\n", | |
" {'id': 36891860, 'name': 'philosophy'}],\n", | |
" 'text': 'People focus on role models; it is more effective to find antimodels—people you don’t want to resemble when you grow up.',\n", | |
" 'updated': '2020-12-11T15:53:56.625630Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6648254,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 118830868,\n", | |
" 'location': 7,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Your brain is most intelligent when you don’t instruct it on what to do—something people who take showers discover on occasion.',\n", | |
" 'updated': '2020-12-11T15:53:56.625572Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6648254,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 118830867,\n", | |
" 'location': 6,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Work destroys your soul by stealthily invading your brain during the hours not officially spent working; be selective about professions.',\n", | |
" 'updated': '2020-12-11T15:53:56.625514Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6648254,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 118830866,\n", | |
" 'location': 5,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'They think that intelligence is about noticing things that are relevant (detecting patterns); in a complex world, intelligence consists in ignoring things that are irrelevant (avoiding false patterns).',\n", | |
" 'updated': '2020-12-11T15:53:56.625456Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6648254,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 118830865,\n", | |
" 'location': 4,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Someone who says “I am busy” is either declaring incompetence (and lack of control of his life) or trying to get rid of you.',\n", | |
" 'updated': '2020-12-11T15:53:56.625397Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6648254,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 118830864,\n", | |
" 'location': 3,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 36832155, 'name': 'philosophy'},\n", | |
" {'id': 36832154, 'name': 'favorite'}],\n", | |
" 'text': 'You exist if and only if you are free to do things without a visible objective, with no justification and, above all, outside the dictatorship of someone else’s narrative.',\n", | |
" 'updated': '2020-12-11T15:53:56.625338Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6648254,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 118830863,\n", | |
" 'location': 2,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The characteristic feature of the loser is to bemoan, in general terms, mankind’s flaws, biases, contradictions, and irrationality—without exploiting them for fun and profit.',\n", | |
" 'updated': '2020-12-11T15:53:56.625263Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6648254,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 118830862,\n", | |
" 'location': 1,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 26735359, 'name': 'philosophy'},\n", | |
" {'id': 26735358, 'name': 'favorite'}],\n", | |
" 'text': 'If you know, in the morning, what your day looks like with any precision, you are a little bit dead—the more precision, the more dead you are.',\n", | |
" 'updated': '2020-12-11T15:53:56.625168Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6648254,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 118830861,\n", | |
" 'location': 0,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'You will be civilized on the day you can spend a long period doing nothing, learning nothing, and improving nothing, without feeling the slightest amount of guilt.',\n", | |
" 'updated': '2020-12-11T15:53:56.625033Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 6635549,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-12-10T11:45:04.856731Z',\n", | |
" 'id': 118421845,\n", | |
" 'location': None,\n", | |
" 'location_type': 'page',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 25448575, 'name': 'philosophy'},\n", | |
" {'id': 25448571, 'name': 'favorite'}],\n", | |
" 'text': 'The curious mind embraces science; the gifted and sensitive, the arts; the practical, business; the leftover becomes an economist.',\n", | |
" 'updated': '2020-12-10T11:45:04.872306Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530104,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 117937224,\n", | |
" 'location': 30,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32571545, 'name': 'discard'}],\n", | |
" 'text': 'Men and women alike possess the qualities which make a guardian; they differ only in their comparative strength or weakness.',\n", | |
" 'updated': '2020-12-09T05:39:59.082510Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530104,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 117937223,\n", | |
" 'location': 29,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 34098465, 'name': 'favorite'},\n", | |
" {'id': 34098464, 'name': 'philosophy'}],\n", | |
" 'text': 'The answer is, that the two blend in one, and are two faces of the same truth; for justice is the order of the State, and the State is the visible embodiment of justice under the conditions of human society. The one is the soul and the other is the body, and the Greek ideal of the State, as of the individual, is a fair mind in a fair body.',\n", | |
" 'updated': '2020-12-09T05:39:59.082423Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530104,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 117937222,\n", | |
" 'location': 28,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 34938319, 'name': 'discard'}],\n", | |
" 'text': 'He was the greatest metaphysical genius whom the world has seen; and in him, more than in any other ancient thinker, the germs of future knowledge are contained.',\n", | |
" 'updated': '2020-12-09T05:39:59.082337Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530104,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 117937221,\n", | |
" 'location': 27,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The first care of the rulers is to be education, of which an outline is drawn after the old Hellenic model, providing only for an improved religion and morality, and more simplicity in music and gymnastic, a manlier strain of poetry, and greater harmony of the individual and the State.',\n", | |
" 'updated': '2020-12-09T05:39:59.082250Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530104,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 117937220,\n", | |
" 'location': 26,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'And we have admitted that justice is the excellence of the soul, and injustice the defect of the soul? That has been admitted. Then the just soul and the just man will live well, and the unjust man will live ill? That is what your argument proves.',\n", | |
" 'updated': '2020-12-09T05:39:59.082162Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530104,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 117937219,\n", | |
" 'location': 25,\n", | |
" 'location_type': 'order',\n", | |
" 'note': 'Is knowledge only acquirable empirically ?',\n", | |
" 'tags': [{'id': 36444619, 'name': 'philosophy'}],\n", | |
" 'text': 'That there is a truth higher than experience, of which the mind bears witness to herself, is a conviction which in our own generation has been enthusiastically asserted, and is perhaps gaining ground.',\n", | |
" 'updated': '2020-12-09T05:39:59.082073Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530104,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 117937218,\n", | |
" 'location': 24,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 37001612, 'name': 'discard'}],\n", | |
" 'text': 'And that is what I mean when I say that in all states there is the same principle of justice, which is the interest of the government; and as the government must be supposed to have power, the only reasonable conclusion is, that everywhere there is one principle of justice, which is the interest of the stronger.',\n", | |
" 'updated': '2020-12-09T05:39:59.081989Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530104,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 117937217,\n", | |
" 'location': 23,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Then he who is a good keeper of anything is also a good thief? That, I suppose, is to be inferred. Then if the just man is good at keeping money, he is good at stealing it.',\n", | |
" 'updated': '2020-12-09T05:39:59.081902Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530104,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 117937216,\n", | |
" 'location': 22,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Simonides, then, after the manner of poets, would seem to have spoken darkly of the nature of justice; for he really meant to say that justice is the giving to each man what is proper to him, and this he termed a debt. That must have been his meaning, he said.',\n", | |
" 'updated': '2020-12-09T05:39:59.081811Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530104,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 117937215,\n", | |
" 'location': 21,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'And as they have nothing but their persons which they can call their own, suits and complaints will have no existence among them; they will be delivered from all those quarrels of which money or children or relations are the occasion.',\n", | |
" 'updated': '2020-12-09T05:39:59.081663Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 117544817,\n", | |
" 'location': 19,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'So we are left with an enigma. Sex serves the species but at the expense of the individual. Individuals could abandon sex and rapidly outcompete their sexual rivals. But they do not. Sex must therefore in some mysterious manner “pay its way” for the individual as well as for the species.',\n", | |
" 'updated': '2020-12-08T05:50:30.693744Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 117544816,\n", | |
" 'location': 18,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32199950, 'name': 'discard'}],\n", | |
" 'text': 'As we shall see, the lesson they teach is that we are designed for a system of monogamy plagued by adultery.',\n", | |
" 'updated': '2020-12-08T05:50:30.693644Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 117544815,\n", | |
" 'location': 17,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'In the world of the Red Queen, any evolutionary progress will be relative as long as your foe is animate and depends heavily on you or suffers heavily if you thrive, like the seals and the bears. Thus the Red Queen will be especially hard at work among predators and their prey, parasites and their hosts, and males and females of the same species. Every creature on earth is in a Red Queen chess tournament with its parasites (or hosts), its predators (or prey), and, above all, with its mate.',\n", | |
" 'updated': '2020-12-08T05:50:30.693530Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 117544814,\n", | |
" 'location': 16,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Wealth and power are means to women; women are means to genetic eternity.',\n", | |
" 'updated': '2020-12-08T05:50:30.693413Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 117544813,\n", | |
" 'location': 15,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 47503540, 'name': 'discard'}],\n", | |
" 'text': 'Sex, according to the Red Queen theory, has nothing to do with adapting to the inanimate world—becoming bigger or better camouflaged or more tolerant of cold or better at flying—but is all about combating the enemy that fights back.',\n", | |
" 'updated': '2020-12-08T05:50:30.693295Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 117544812,\n", | |
" 'location': 14,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 25515774, 'name': 'biology'}],\n", | |
" 'text': 'Evolving is not a goal but a means to solving a problem.',\n", | |
" 'updated': '2020-12-08T05:50:30.693180Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 117544811,\n", | |
" 'location': 13,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 46935630, 'name': 'biology'}],\n", | |
" 'text': 'In courtship, as in the world of advertising, there is a discrepancy of interests between the buyer and the seller. The female needs to know the truth about the male: his health, wealth, and genes. The male wants to exaggerate the information. The female wants the truth; the male wants to lie. The very word seduction implies trickery and manipulation.',\n", | |
" 'updated': '2020-12-08T05:50:30.693064Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 117544810,\n", | |
" 'location': 12,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 33011942, 'name': 'biology'}],\n", | |
" 'text': 'In short, the reason adultery is so common in colonial birds is that it enables a male bird to have more young and enables a female bird to have better young.',\n", | |
" 'updated': '2020-12-08T05:50:30.692932Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 117544809,\n", | |
" 'location': 11,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 41451440, 'name': 'discard'}],\n", | |
" 'text': 'Only when the two interests coincided would it act selflessly.',\n", | |
" 'updated': '2020-12-08T05:50:30.692809Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 4547404,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 117544808,\n", | |
" 'location': 10,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The nature of the human male, then, is to take opportunities, if they are granted him, for polygamous mating and to use wealth, power, and violence as means to sexual ends in the competition with other men—though usually not at the expense of sacrificing a secure monogamous relationship.',\n", | |
" 'updated': '2020-12-08T05:50:30.692539Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530081,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 116807673,\n", | |
" 'location': 29,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'When Faust, in a line immortalized among schoolmasters and greeted with a shudder of astonishment by the Philistine, says: “Two souls, alas, do dwell within my breast!” he has forgotten Mephisto and a whole crowd of other souls that he has in his breast likewise.',\n", | |
" 'updated': '2020-12-05T06:11:54.477095Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530081,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 116807672,\n", | |
" 'location': 28,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32667988, 'name': 'discard'}],\n", | |
" 'text': 'And even the unhappiest life has its sunny moments and its little flowers of happiness between sand and stone.',\n", | |
" 'updated': '2020-12-05T06:11:54.477007Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530081,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 116807671,\n", | |
" 'location': 27,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 28320036, 'name': 'philosophy'}],\n", | |
" 'text': 'I believe that the struggle against death, the unconditional and self-willed determination to live, is the motive power behind the lives and activities of all outstanding men.',\n", | |
" 'updated': '2020-12-05T06:11:54.476913Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530081,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 116807670,\n", | |
" 'location': 26,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 26699928, 'name': 'discard'}],\n", | |
" 'text': 'I’m going to give you a piece off the little bone. So open your mouth. Oh, what a fright you are! There he goes, squinting round the room in case any one sees him taking a bite from my fork. Don’t be afraid, you prodigal son, I won’t make a scandal. But it’s a poor fellow who can’t take his pleasure without asking other people’s permission.”',\n", | |
" 'updated': '2020-12-05T06:11:54.476817Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530081,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 116807669,\n", | |
" 'location': 25,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32571470, 'name': 'discard'}],\n", | |
" 'text': 'My regret was for the present day, for all the countless hours and days that I lost in mere passivity and that brought me nothing, not even the shocks of awakening.',\n", | |
" 'updated': '2020-12-05T06:11:54.476723Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530081,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 116807668,\n", | |
" 'location': 24,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 40758852, 'name': 'philosophy'},\n", | |
" {'id': 40758849, 'name': 'poetry'},\n", | |
" {'id': 40758847, 'name': 'favorite'}],\n", | |
" 'text': 'In reality, however, every ego, so far from being a unity is in the highest degree a manifold world, a constellated heaven, a chaos of forms, of states and stages, of inheritances and potentialities.',\n", | |
" 'updated': '2020-12-05T06:11:54.476632Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530081,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 116807667,\n", | |
" 'location': 23,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 26790316, 'name': 'favorite'},\n", | |
" {'id': 26790315, 'name': 'philosophy'}],\n", | |
" 'text': 'What he had not learned, however, was this: to find contentment in himself and his own life.',\n", | |
" 'updated': '2020-12-05T06:11:54.476537Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530081,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 116807666,\n", | |
" 'location': 22,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Man is not capable of thought in any high degree, and even the most spiritual and highly cultivated of men habitually sees the world and himself through the lenses of delusive formulas and artless simplifications—and most of all himself.',\n", | |
" 'updated': '2020-12-05T06:11:54.476447Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530081,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 116807665,\n", | |
" 'location': 21,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'And all this, I said, just as today was the case with the beginnings of wireless, would be of no more service to man than as an escape from himself and his true aims, and a means of surrounding himself with an ever closer mesh of distractions and useless activities.',\n", | |
" 'updated': '2020-12-05T06:11:54.476350Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530081,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 116807664,\n", | |
" 'location': 20,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 40759068, 'name': 'philosophy'}],\n", | |
" 'text': 'Instead of narrowing your world and simplifying your soul, you will have to absorb more and more of the world and at last take all of it up in your painfully expanded soul, if you are ever to find peace.',\n", | |
" 'updated': '2020-12-05T06:11:54.476192Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530114,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 116556016,\n", | |
" 'location': 29,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Thus cause and effect are the whole essence and nature of matter; its being is its acting.',\n", | |
" 'updated': '2020-12-04T05:05:00.573163Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530114,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 116556015,\n", | |
" 'location': 28,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'This procedure distinguishes our method of consideration wholly and entirely from every philosophy ever attempted. All previous systems started either from the object or from the subject, and therefore sought to explain the one from the other, and this according to the principle of sufficient reason. We, on the other hand, deny the relation between object and subject to the dominion of this principle, and leave to it only the object.',\n", | |
" 'updated': '2020-12-04T05:05:00.573003Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530114,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 116556014,\n", | |
" 'location': 27,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'But the illusion remains unshakable in all the cases mentioned, in spite of all abstract knowledge; for the understanding is completely and totally different from the faculty of reason, a cognitive faculty that has been added to man alone; and indeed the understanding is in itself irrational, even in man. Reason can always only know; perception remains free from its influence, and belongs to the understanding alone.',\n", | |
" 'updated': '2020-12-04T05:05:00.572831Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530114,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 116556013,\n", | |
" 'location': 26,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 29597708, 'name': 'favorite'},\n", | |
" {'id': 29597707, 'name': 'philosophy'}],\n", | |
" 'text': 'Conversely, all causality, hence all matter, and consequently the whole of reality, is only for the understanding, through the understanding, in the understanding.',\n", | |
" 'updated': '2020-12-04T05:05:00.572651Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530114,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 116556012,\n", | |
" 'location': 25,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The subjective correlative of matter or of causality, for the two are one and the same, is the understanding, and it is nothing more than this.',\n", | |
" 'updated': '2020-12-04T05:05:00.572488Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530114,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 116556011,\n", | |
" 'location': 24,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The composer reveals the innermost nature of the world, and expresses the profoundest wisdom in a language that his reasoning faculty does not understand, just as a magnetic somnambulist gives information about things of which she has no conception when she is awake. Therefore in the composer, more than in any other artist, the man is entirely separate and distinct from the artist.',\n", | |
" 'updated': '2020-12-04T05:05:00.572317Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530114,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 116556010,\n", | |
" 'location': 23,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'This world is the succession of the representations of this consciousness, the form of its knowing, and apart from this loses all meaning, and is nothing at all.',\n", | |
" 'updated': '2020-12-04T05:05:00.572140Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530114,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 116556009,\n", | |
" 'location': 22,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The world is entirely representation, and as such requires the knowing subject as the supporter of its existence. That long course of time itself, filled with innumerable changes, through which matter rose from form to form, till finally there came into existence the first knowing animal, the whole of this time itself is alone thinkable in the identity of a consciousness.',\n", | |
" 'updated': '2020-12-04T05:05:00.571971Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530114,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 116556008,\n", | |
" 'location': 21,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'It then becomes clear and certain to him that he does not know a sun and an earth, but only an eye that sees a sun, a hand that feels an earth; that the world around him is there only as representation, in other words, only in reference to another thing, namely that which represents, and this is himself.',\n", | |
" 'updated': '2020-12-04T05:05:00.571804Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530114,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 116556007,\n", | |
" 'location': 20,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Thus change, i.e., variation occurring according to the causal law, always concerns a particular part of space and a particular part of time, simultaneously and in union. Consequently, causality unites space and time.',\n", | |
" 'updated': '2020-12-04T05:05:00.571593Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530086,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 116243810,\n", | |
" 'location': 29,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 30808483, 'name': 'rationality'}],\n", | |
" 'text': 'The most effortful forms of slow thinking are those that require you to think fast.',\n", | |
" 'updated': '2020-12-03T05:39:59.610728Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530086,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 116243809,\n", | |
" 'location': 28,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'To derive the most useful information from multiple sources of evidence, you should always try to make these sources independent of each other.',\n", | |
" 'updated': '2020-12-03T05:39:59.610646Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530086,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 116243808,\n", | |
" 'location': 27,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 35158213, 'name': 'rationality'}],\n", | |
" 'text': 'Self-control and deliberate thought apparently draw on the same limited budget of effort.',\n", | |
" 'updated': '2020-12-03T05:39:59.610572Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530086,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 116243807,\n", | |
" 'location': 26,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Whether professionals have a chance to develop intuitive expertise depends essentially on the quality and speed of feedback, as well as on sufficient opportunity to practice.',\n", | |
" 'updated': '2020-12-03T05:39:59.610498Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530086,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 116243806,\n", | |
" 'location': 25,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The Alar tale illustrates a basic limitation in the ability of our mind to deal with small risks: we either ignore them altogether or give them far too much weight—nothing in between.',\n", | |
" 'updated': '2020-12-03T05:39:59.610423Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530086,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 116243805,\n", | |
" 'location': 24,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'In summary, most of what you (your System 2) think and do originates in your System 1, but System 2 takes over when things get difficult, and it normally has the last word.',\n", | |
" 'updated': '2020-12-03T05:39:59.610348Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530086,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 116243804,\n", | |
" 'location': 23,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 26790273, 'name': 'rationality'}],\n", | |
" 'text': 'Cognitive strain, whatever its source, mobilizes System 2, which is more likely to reject the intuitive answer suggested by System 1.',\n", | |
" 'updated': '2020-12-03T05:39:59.610272Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530086,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 116243803,\n", | |
" 'location': 22,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The tendency to like (or dislike) everything about a person—including things you have not observed—is known as the halo effect.',\n", | |
" 'updated': '2020-12-03T05:39:59.610197Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530086,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 116243802,\n", | |
" 'location': 21,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Nothing in life is as important as you think it is when you are thinking about it.',\n", | |
" 'updated': '2020-12-03T05:39:59.610119Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530086,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 116243801,\n", | |
" 'location': 20,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 25517531, 'name': 'rationality'}],\n", | |
" 'text': 'A general limitation of the human mind is its imperfect ability to reconstruct past states of knowledge, or beliefs that have changed. Once you adopt a new view of the world (or of any part of it), you immediately lose much of your ability to recall what you used to believe before your mind changed.',\n", | |
" 'updated': '2020-12-03T05:39:59.610015Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530084,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 112235347,\n", | |
" 'location': 30,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The cognate word xenos can mean both “stranger” and “friend”; it is the root from which we get the English word “xenophobia,” the fear of strangers or foreigners, as well as the sadly less common “xenophilia,” the love of strangers or of unknown objects.',\n", | |
" 'updated': '2020-11-22T05:46:41.028254Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530084,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 112235346,\n", | |
" 'location': 29,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 26699935, 'name': 'discard'}],\n", | |
" 'text': 'There is a grand architecture to the storytelling, which might seem to imply the careful planning of a single architect, or architects.',\n", | |
" 'updated': '2020-11-22T05:46:41.028069Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530084,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 112235345,\n", | |
" 'location': 28,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'But death is universal. Even gods cannot protect the people that they love, when fate and cruel death catch up with them.”',\n", | |
" 'updated': '2020-11-22T05:46:41.027885Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530084,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 112235344,\n", | |
" 'location': 27,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 24998913, 'name': 'discard'}],\n", | |
" 'text': 'Eating is important in The Odyssey, and eating the wrong things or eating in the wrong way results in violence or death.',\n", | |
" 'updated': '2020-11-22T05:46:41.027699Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530084,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 112235343,\n", | |
" 'location': 26,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32393588, 'name': 'philosophy'}],\n", | |
" 'text': 'The worst thing humans suffer is homelessness; we must endure this life because of desperate hunger; we endure, as migrants with no home.',\n", | |
" 'updated': '2020-11-22T05:46:41.027514Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530084,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 112235342,\n", | |
" 'location': 25,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Homer is usually described in Greek sources not as a singer (aoidos) or rhapsode (“song-stitcher”), but as a poet, poetes—a word that means “maker.”',\n", | |
" 'updated': '2020-11-22T05:46:41.027326Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530084,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 112235341,\n", | |
" 'location': 24,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 24530008, 'name': 'discard'}],\n", | |
" 'text': 'The early Dawn was born; her fingers bloomed.',\n", | |
" 'updated': '2020-11-22T05:46:41.027136Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530084,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 112235340,\n", | |
" 'location': 23,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'There is no way to hide a hungry belly. It is insistent, and the curse of hunger is why we sail across relentless seas, and plunder other people.”',\n", | |
" 'updated': '2020-11-22T05:46:41.026940Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530084,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 112235339,\n", | |
" 'location': 22,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 30900208, 'name': 'discard'}],\n", | |
" 'text': 'Translation always, necessarily, involves interpretation; there is no such thing as a translation that provides anything like a transparent window through which a reader can see the original.',\n", | |
" 'updated': '2020-11-22T05:46:41.026750Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530084,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 112235338,\n", | |
" 'location': 21,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32668055, 'name': 'philosophy'},\n", | |
" {'id': 32668053, 'name': 'rationality'}],\n", | |
" 'text': 'Unlike the English word “wisdom,” which tends to suggest a staid, peaceful, possibly moral kind of intelligence acquired by long years of experience, metis suggests cunning plots and deception employed in the service of self-interest. It is not necessarily seen as a bad thing; metis is a very useful quality for a person who hopes to survive in a dangerous environment.',\n", | |
" 'updated': '2020-11-22T05:46:41.026525Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530041,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 111283132,\n", | |
" 'location': 30,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'How do you cause people to believe in an imagined order such as Christianity, democracy or capitalism? First, you never admit that the order is imagined. You always insist that the order sustaining society is an objective reality created by the great gods or by the laws of nature.',\n", | |
" 'updated': '2020-11-19T05:33:35.266772Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530041,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 111283131,\n", | |
" 'location': 29,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'As Nietzsche put it, if you have a why to live, you can bear almost any how. A meaningful life can be extremely satisfying even in the midst of hardship, whereas a meaningless life is a terrible ordeal no matter how comfortable it is.',\n", | |
" 'updated': '2020-11-19T05:33:35.266695Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530041,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 111283130,\n", | |
" 'location': 28,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 36641186, 'name': 'discard'}],\n", | |
" 'text': 'What potential did Europe develop in the early modern period that enabled it to dominate the late modern world? There are two complementary answers to this question: modern science and capitalism.',\n", | |
" 'updated': '2020-11-19T05:33:35.266619Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530041,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 111283129,\n", | |
" 'location': 27,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 41603142, 'name': 'currency'},\n", | |
" {'id': 41603141, 'name': 'money'},\n", | |
" {'id': 41603140, 'name': 'business'},\n", | |
" {'id': 34987732, 'name': 'society'},\n", | |
" {'id': 34987730, 'name': 'favorite'}],\n", | |
" 'text': 'Money is based on two universal principles: a. Universal convertibility: with money as an alchemist, you can turn land into loyalty, justice into health, and violence into knowledge. Universal trust: with money as a go-between, any two people can cooperate on any project.',\n", | |
" 'updated': '2020-11-19T05:33:35.266541Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530041,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 111283128,\n", | |
" 'location': 26,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Hierarchies serve an important function. They enable complete strangers to know how to treat one another without wasting the time and energy needed to become personally acquainted.',\n", | |
" 'updated': '2020-11-19T05:33:35.266464Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530041,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 111283127,\n", | |
" 'location': 25,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Telling effective stories is not easy. The difficulty lies not in telling the story, but in convincing everyone else to believe it. Much of history revolves around this question: how does one convince millions of people to believe particular stories about gods, or nations, or limited liability companies? Yet when it succeeds, it gives Sapiens immense power, because it enables millions of strangers to cooperate and work towards common goals.',\n", | |
" 'updated': '2020-11-19T05:33:35.266381Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530041,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 111283126,\n", | |
" 'location': 24,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The most important thing to know about prehistoric humans is that they were insignificant animals with no more impact on their environment than gorillas, fireflies or jellyfish.',\n", | |
" 'updated': '2020-11-19T05:33:35.266296Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530041,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 111283125,\n", | |
" 'location': 23,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'If happiness is determined by expectations, then two pillars of our society – mass media and the advertising industry – may unwittingly be depleting the globe’s reservoirs of contentment.',\n", | |
" 'updated': '2020-11-19T05:33:35.266218Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530041,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 111283124,\n", | |
" 'location': 22,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Romanticism tells us that in order to make the most of our human potential we must have as many different experiences as we can.',\n", | |
" 'updated': '2020-11-19T05:33:35.266126Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530041,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 111283123,\n", | |
" 'location': 21,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'We believe in a particular order not because it is objectively true, but because believing in it enables us to cooperate effectively and forge a better society.',\n", | |
" 'updated': '2020-11-19T05:33:35.266026Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530106,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 110755612,\n", | |
" 'location': 40,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 23704818, 'name': 'biology'}],\n", | |
" 'text': 'Mother Nature concealed a dirty little secret in the genome. Each gene is far more complicated than it needs to be, it is broken up into many different ‘paragraphs’ (called exons) and in between lie long stretches (called introns) of random nonsense and repetitive bursts of wholly irrelevant sense, some of which contain real genes of a completely different (and sinister) kind.',\n", | |
" 'updated': '2020-11-17T05:38:58.145872Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530106,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 110755611,\n", | |
" 'location': 39,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'RNA is a chemical substance that links the two worlds of DNA and protein. It is used mainly in the translation of the message from the alphabet of DNA to the alphabet of proteins. But in the way it behaves, it leaves little doubt that it is the ancestor of both. RNA was Greece to DNA’s Rome: Homer to her Virgil.',\n", | |
" 'updated': '2020-11-17T05:38:58.145827Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530106,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 110755610,\n", | |
" 'location': 38,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'It has been known for twenty years that impulsive, antisocial and depressed people – including prisoners, violent offenders and failed suicides—have generally lower cholesterol levels than the population at large.',\n", | |
" 'updated': '2020-11-17T05:38:58.145782Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530106,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 110755609,\n", | |
" 'location': 37,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'After all, it is less than 300,000 human generations since the common ancestor of both species lived in central Africa. If you held hands with your mother, and she held hands with hers, and she with hers, the line would stretch only from New York to Washington before you were holding hands with the ‘missing link’ – the common ancestor with chimpanzees.',\n", | |
" 'updated': '2020-11-17T05:38:58.145736Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530106,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 110755608,\n", | |
" 'location': 36,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'In the case of spoken language, where we have a strong instinct, but a flexible one, it would clearly be madness for natural selection to go the whole hog and make even the vocabulary of the language instinctive.',\n", | |
" 'updated': '2020-11-17T05:38:58.145690Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530106,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 110755607,\n", | |
" 'location': 35,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 23704827, 'name': 'biology'}],\n", | |
" 'text': 'The genome is a very clever book, because in the right conditions it can both photocopy itself and read itself. The photocopying is known as REPLICATION, and the reading as TRANSLATION.',\n", | |
" 'updated': '2020-11-17T05:38:58.145645Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530106,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 110755606,\n", | |
" 'location': 34,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 34791224, 'name': 'discard'}],\n", | |
" 'text': 'The queen buys the loyalty of those other workers to herself rather than to their sister workers by mating with several males to ensure that most workers are only half-sisters of each other and therefore share little genetic common interest.',\n", | |
" 'updated': '2020-11-17T05:38:58.145599Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530106,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 110755605,\n", | |
" 'location': 33,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Bacteria dropped the old RNAs when they invaded hot places like hot springs or subterranean rocks where temperatures can reach 170 °C—to minimise mistakes caused by heat, it paid to simplify the machinery.',\n", | |
" 'updated': '2020-11-17T05:38:58.145551Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530106,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 110755604,\n", | |
" 'location': 32,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'To be sure, there were a few lone voices of dissent. One or two intellectuals remained suspicious, among them Hilaire Belloc and G. K. Chesterton, who wrote that ‘eugenicists had discovered how to combine hardening of the heart with softening of the head’. But be in no doubt that most Britons were in favour of eugenic laws.',\n", | |
" 'updated': '2020-11-17T05:38:58.145498Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530106,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 110755603,\n", | |
" 'location': 31,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Thus it is with the human body. The egg divides once, then each daughter cell divides again, and so on. In just forty-seven doublings, the resulting body has more than 100 trillion cells.',\n", | |
" 'updated': '2020-11-17T05:38:58.145184Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530044,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109782619,\n", | |
" 'location': 29,\n", | |
" 'location_type': 'order',\n", | |
" 'note': 'Bitcoin?',\n", | |
" 'tags': [{'id': 34689082, 'name': 'rationality'}],\n", | |
" 'text': 'In fact, false stories have an intrinsic advantage over the truth when it comes to uniting people. If you want to gauge group loyalty, requiring people to believe an absurdity is a far better test than asking them to believe the truth.',\n", | |
" 'updated': '2020-11-14T05:21:22.105924Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530044,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109782618,\n", | |
" 'location': 28,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'If we manage to combine a universal economic safety net with strong communities and meaningful pursuits, losing our jobs to algorithms might actually turn out to be a blessing.',\n", | |
" 'updated': '2020-11-14T05:21:22.105777Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530044,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109782617,\n", | |
" 'location': 27,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 23704828, 'name': 'discard'}],\n", | |
" 'text': 'Both of these cases may seem to smack of racism. But in fact, they are not racist. They are “culturist.” People continue to conduct a heroic struggle against traditional racism without noticing that the battlefront has shifted. Traditional racism is waning, but the world is now full of “culturists.”',\n", | |
" 'updated': '2020-11-14T05:21:22.105628Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530044,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109782616,\n", | |
" 'location': 26,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'If you want to know the ultimate truth of life, rites and rituals are a huge obstacle. But if you are interested in social stability and harmony, as Confucius was, truth is often a liability, whereas rites and rituals are among your best allies.',\n", | |
" 'updated': '2020-11-14T05:21:22.105468Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530044,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109782615,\n", | |
" 'location': 25,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'These potential advantages of connectivity and updatability are so huge that at least in some lines of work it might make sense to replace all humans with computers, even if individually some humans still do a better job than the machines.',\n", | |
" 'updated': '2020-11-14T05:21:22.105312Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530044,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109782614,\n", | |
" 'location': 24,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 29597850, 'name': 'rationality'},\n", | |
" {'id': 29597848, 'name': 'biology'}],\n", | |
" 'text': 'If by “free will” you mean the freedom to do what you desire, then yes, humans have free will. But if by “free will” you mean the freedom to choose what to desire, then no, humans have no free will.',\n", | |
" 'updated': '2020-11-14T05:21:22.105142Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530044,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109782613,\n", | |
" 'location': 23,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'If liberalism, nationalism, Islam, or some novel creed wishes to shape the world of the year 2050, it will need not only to make sense of artificial intelligence, Big Data algorithms, and bioengineering but also to incorporate them into a new and meaningful narrative.',\n", | |
" 'updated': '2020-11-14T05:21:22.104970Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530044,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109782612,\n", | |
" 'location': 22,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The system is structured in such a way that those who make no effort to know can remain in blissful ignorance, and those who do make an effort will find it very difficult to discover the truth.',\n", | |
" 'updated': '2020-11-14T05:21:22.104799Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530044,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109782611,\n", | |
" 'location': 21,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 24998920, 'name': 'biology'}],\n", | |
" 'text': 'Vaunted “human intuition” is in reality “pattern recognition.”',\n", | |
" 'updated': '2020-11-14T05:21:22.104623Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530044,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109782610,\n", | |
" 'location': 20,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 39043722, 'name': 'favorite'},\n", | |
" {'id': 39043711, 'name': 'philosophy'}],\n", | |
" 'text': 'The Buddha taught that the three basic realities of the universe are that everything is constantly changing, nothing has any enduring essence, and nothing is completely satisfying.',\n", | |
" 'updated': '2020-11-14T05:21:22.104419Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530096,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109515597,\n", | |
" 'location': 29,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'In the simplest terms, enlightenment is impersonal, whereas what is commonly peddled as enlightenment is personal in the extreme.',\n", | |
" 'updated': '2020-11-13T05:46:11.714688Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530096,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109515596,\n", | |
" 'location': 28,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': '“Think for yourself. That’s the golden rule. Think for yourself. Make it your mantra. Tattoo it on the inside of your eyelids.”',\n", | |
" 'updated': '2020-11-13T05:46:11.714610Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530096,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109515595,\n", | |
" 'location': 27,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 23442708, 'name': 'philosophy'},\n", | |
" {'id': 23442707, 'name': 'favorite'}],\n", | |
" 'text': 'Your moments of blackest despair are really your most honest moments; your most lucid moments. That’s when you’re seeing without your protective lenses. That’s when you pull back the curtain and see things as they are.”',\n", | |
" 'updated': '2020-11-13T05:46:11.714532Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530096,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109515594,\n", | |
" 'location': 26,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 23315691, 'name': 'discard'}],\n", | |
" 'text': '“Sounds simple, doesn’t it? Yes, that’s all there is to it. Just write down what you know is true, or what you think is true, and keep writing until you’ve come up with something that is true.”',\n", | |
" 'updated': '2020-11-13T05:46:11.714448Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530096,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109515593,\n", | |
" 'location': 25,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'There is a benefit, however, to realizing that who you are has little or nothing to do with you. It may be difficult to imagine not taking yourself personally, but it can be done when you see clearly that who you are has little or nothing to do with you.”',\n", | |
" 'updated': '2020-11-13T05:46:11.714338Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530096,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109515592,\n", | |
" 'location': 24,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'What are you doing? Why are you doing it? Where is this going? If you know, you’ll succeed. If you don’t, you won’t. That’s not just pretty talk, that’s the law.',\n", | |
" 'updated': '2020-11-13T05:46:11.714258Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530096,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109515591,\n", | |
" 'location': 23,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 39332977, 'name': 'biology'},\n", | |
" {'id': 39332973, 'name': 'rationality'},\n", | |
" {'id': 39332971, 'name': 'philosophy'},\n", | |
" {'id': 39332967, 'name': 'favorite'}],\n", | |
" 'text': 'Fear, regardless of what face it wears, is the engine that drives humans as individuals and humanity as a species. Simply put, humans are fear-based creatures. It may be tempting to say that we are equal parts rational and emotional, balanced between left and right brain, but it’s not true. We are primarily emotional and our ruling emotion is fear.',\n", | |
" 'updated': '2020-11-13T05:46:11.714172Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530096,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109515590,\n", | |
" 'location': 22,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': '“As to suffering,” I continued, “forget it. It’s a non-issue. Suffering just means you’re having a bad dream. Happiness means you’re having a good dream. Enlightenment means getting out of the dream altogether. Words like suffering and happiness and compassion are just bags of rocks. Eventually, you’ll have to set them down if you want to keep going.”',\n", | |
" 'updated': '2020-11-13T05:46:11.714089Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530096,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109515589,\n", | |
" 'location': 21,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 23315712, 'name': 'discard'}],\n", | |
" 'text': 'If I were to reduce this book and my teachings to their essence, I would say it all comes down to nothing more than this: Think for yourself and figure out what’s true. Ask yourself what’s true until you know. Everything else in this book, everything else I have to say on the subject, turns on that center.',\n", | |
" 'updated': '2020-11-13T05:46:11.714003Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530096,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109515588,\n", | |
" 'location': 20,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 23308618, 'name': 'discard'}],\n", | |
" 'text': 'The giver is always the true recipient. It’s one of those universal laws that keeps everything balanced.',\n", | |
" 'updated': '2020-11-13T05:46:11.713870Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3156597,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109515577,\n", | |
" 'location': 29,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 29975837, 'name': 'discard'}],\n", | |
" 'text': 'He wrote to read, copying out books and manuscripts verbatim, sometimes the same text again and again.',\n", | |
" 'updated': '2020-11-13T05:46:10.997751Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3156597,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109515576,\n", | |
" 'location': 28,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'In 1649, soon after Isaac turned six, Charles Stuart, the king, was beheaded at the wall of his palace.',\n", | |
" 'updated': '2020-11-13T05:46:10.997626Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3156597,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109515575,\n", | |
" 'location': 27,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'He opened the nearly blank thousand-page commonplace book he had inherited from his stepfather and named it his Waste Book.5 He began filling it with reading notes. These mutated seamlessly into original research. He set himself problems; considered them obsessively; calculated answers, and asked new questions. He pushed past the frontier of knowledge (though he did not know this).',\n", | |
" 'updated': '2020-11-13T05:46:10.997515Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3156597,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109515574,\n", | |
" 'location': 26,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'It was a testament to how far pure reason could take a philosopher; and to how involuted and self-referential a chain of reasoning could become, with nothing to feed on but itself.',\n", | |
" 'updated': '2020-11-13T05:46:10.997405Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3156597,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109515573,\n", | |
" 'location': 25,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': '“Phantasie is helped,” he noted, “by good aire fasting moderate wine.” But it is also “spoiled by drunkenesse, Gluttony, too much study.” He added: from too much study, and from extreme passion, “cometh madnesse.”',\n", | |
" 'updated': '2020-11-13T05:46:10.997306Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3156597,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109515572,\n", | |
" 'location': 24,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'That is the fundamental theorem of the calculus, the piece of mathematics that became essential knowledge for building engines and measuring dynamics. Time and space—joined. Speed and area—two abstractions, seemingly disjoint, revealed as cognate.',\n", | |
" 'updated': '2020-11-13T05:46:10.997205Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3156597,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109515571,\n", | |
" 'location': 23,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 24144745, 'name': 'discard'}],\n", | |
" 'text': 'We are Newtonians, fervent and devout, when we speak of forces and masses, of action and reaction; when we say that a sports team or political candidate has momentum; when we note the inertia of a tradition or bureaucracy; and when we stretch out an arm and feel the force of gravity all around, pulling earthward.',\n", | |
" 'updated': '2020-11-13T05:46:10.997094Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3156597,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109515570,\n", | |
" 'location': 22,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'As soon as the art of flying is discovered, he said, we should manage to transplant colonies to that other world. After all, time is the father of truth; ages passed before men crossed the seas and found other men at the far side of the world; surely other excellent mysteries remain to be discovered.',\n", | |
" 'updated': '2020-11-13T05:46:10.996981Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3156597,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109515569,\n", | |
" 'location': 21,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 23704811, 'name': 'mathematics'},\n", | |
" {'id': 23704807, 'name': 'favorite'}],\n", | |
" 'text': 'At twenty-four, Newton believed he could marshal a complete science of motion, if only he could find the appropriate lexicon, if only he could set words in the correct order. Writing mathematics, he could invent his own symbols and form them into a mosaic. Writing in English, he was constrained by the language at hand.',\n", | |
" 'updated': '2020-11-13T05:46:10.996877Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3156597,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109515568,\n", | |
" 'location': 20,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'He set authority aside. Later he came back to this page and inscribed an epigraph borrowed from Aristotle’s justification for dissenting from his teacher. Aristotle had said, “Plato is my friend, but truth my greater friend.”',\n", | |
" 'updated': '2020-11-13T05:46:10.996705Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3269139,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109515567,\n", | |
" 'location': 29,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Traveling close to the speed of light you would hardly age at all, but your friends and your relatives back home would be aging at the usual rate.',\n", | |
" 'updated': '2020-11-13T05:46:10.533839Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3269139,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109515566,\n", | |
" 'location': 28,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The possibility of a runaway greenhouse effect suggests that we have to be careful: Even a one- or two-degree rise in the global temperature can have catastrophic consequences.',\n", | |
" 'updated': '2020-11-13T05:46:10.533752Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3269139,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109515565,\n", | |
" 'location': 27,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 23442713, 'name': 'physics'}],\n", | |
" 'text': 'Just before his death he wrote: “I do not know what I may appear to the world; but to myself I seem to have been only like a boy, playing on the seashore, and diverting myself, in now and then finding a smoother pebble or a prettier shell than ordinary, while the great ocean of truth lay all undiscovered before me.”',\n", | |
" 'updated': '2020-11-13T05:46:10.533644Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3269139,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109515564,\n", | |
" 'location': 26,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32199975, 'name': 'discard'}],\n", | |
" 'text': 'Our corn, or maize, has been bred for ten thousand generations to be more tasty and nutritious than its scrawny ancestors; indeed, it is so changed that it cannot even reproduce without human intervention.',\n", | |
" 'updated': '2020-11-13T05:46:10.533558Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3269139,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109515563,\n", | |
" 'location': 25,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Life had arisen almost immediately after the origin of the Earth, which suggests that life may be an inevitable chemical process on an Earth-like planet. But life did not evolve much beyond blue-green algae for three billion years, which suggests that large lifeforms with specialized organs are hard to evolve, harder even than the origin of life. Perhaps there are many other planets that today have abundant microbes but no big beasts and vegetables.',\n", | |
" 'updated': '2020-11-13T05:46:10.533471Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3269139,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109515562,\n", | |
" 'location': 24,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 23308670, 'name': 'discard'}],\n", | |
" 'text': 'Carl wanted everyone to come on this voyage; to experience the power of the scientific perspective and the wonders it reveals. His secret was to recapture the person he was before he understood the concept and then retrace his own thought steps toward comprehension. He inspired legions to study, teach, and do science.',\n", | |
" 'updated': '2020-11-13T05:46:10.533384Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3269139,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109515561,\n", | |
" 'location': 23,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32571472, 'name': 'discard'}],\n", | |
" 'text': 'A comet is made mostly of ice—water (H2O) ice, with a little methane (CH4) ice, and some ammonia (NH3) ice. Striking the Earth’s atmosphere, a modest cometary fragment would produce a great radiant fireball and a mighty blast wave, which would burn trees, level forests and be heard around the world.',\n", | |
" 'updated': '2020-11-13T05:46:10.533297Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3269139,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109515560,\n", | |
" 'location': 22,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'But oxygen tends to make organic molecules fall to pieces. Despite our fondness for it, it is fundamentally a poison for unprotected organic matter. The transition to an oxidizing atmosphere posed a supreme crisis in the history of life, and a great many organisms, unable to cope with oxygen, perished.',\n", | |
" 'updated': '2020-11-13T05:46:10.533207Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3269139,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109515559,\n", | |
" 'location': 21,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 24144742, 'name': 'rationality'}],\n", | |
" 'text': 'If I finish a book a week, I will read only a few thousand books in my lifetime, about a tenth of a percent of the contents of the greatest libraries of our time. The trick is to know which books to read.',\n", | |
" 'updated': '2020-11-13T05:46:10.533111Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 3269139,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 109515558,\n", | |
" 'location': 20,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'It is dedicated to the proposition that the public is far more intelligent than it has generally been given credit for; that the deepest scientific questions on the nature and origin of the world excite the interests and passions of enormous numbers of people.',\n", | |
" 'updated': '2020-11-13T05:46:10.532937Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530072,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 108623061,\n", | |
" 'location': 39,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 24144763, 'name': 'rationality'}],\n", | |
" 'text': 'Success is not a goal to reach or a finish line to cross. It is a system to improve, an endless process to refine.',\n", | |
" 'updated': '2020-11-10T05:04:39.689758Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530072,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 108623060,\n", | |
" 'location': 38,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 26546048, 'name': 'discard'}],\n", | |
" 'text': 'The most practical way to change who you are is to change what you do.',\n", | |
" 'updated': '2020-11-10T05:04:39.689712Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530072,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 108623059,\n", | |
" 'location': 37,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': '“When nothing seems to help, I go and look at a stonecutter hammering away at his rock, perhaps a hundred times without as much as a crack showing in it. Yet at the hundred and first blow it will split in two, and I know it was not that last blow that did it—but all that had gone before.”',\n", | |
" 'updated': '2020-11-10T05:04:39.689666Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530072,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 108623058,\n", | |
" 'location': 36,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 24625015, 'name': 'discard'}],\n", | |
" 'text': 'We imitate the habits of three groups in particular: The close. The powerful.',\n", | |
" 'updated': '2020-11-10T05:04:39.689620Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530072,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 108623057,\n", | |
" 'location': 35,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 23315709, 'name': 'discard'}],\n", | |
" 'text': 'Becoming the best version of yourself requires you to continuously edit your beliefs, and to upgrade and expand your identity.',\n", | |
" 'updated': '2020-11-10T05:04:39.689574Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530072,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 108623056,\n", | |
" 'location': 34,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32200113, 'name': 'rationality'}],\n", | |
" 'text': 'Every action you take is a vote for the type of person you wish to become.',\n", | |
" 'updated': '2020-11-10T05:04:39.689528Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530072,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 108623055,\n", | |
" 'location': 33,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The 1st Law of Behavior Change is to make it obvious. Strategies like implementation intentions and habit stacking are among the most practical ways to create obvious cues for your habits and design a clear plan for when and where to take action.',\n", | |
" 'updated': '2020-11-10T05:04:39.689483Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530072,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 108623054,\n", | |
" 'location': 32,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The backbone of this book is my four-step model of habits—cue, craving, response, and reward—and the four laws of behavior change that evolve out of these steps.',\n", | |
" 'updated': '2020-11-10T05:04:39.689436Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530072,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 108623053,\n", | |
" 'location': 31,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Temptation bundling works by linking an action you want to do with an action you need to do.',\n", | |
" 'updated': '2020-11-10T05:04:39.689387Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530072,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 108623052,\n", | |
" 'location': 30,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 23315677, 'name': 'discard'}],\n", | |
" 'text': 'Men are born soft and supple; dead, they are stiff and hard. Plants are born tender and pliant; dead, they are brittle and dry. Thus whoever is stiff and inflexible is a disciple of death. Whoever is soft and yielding is a disciple of life. The hard and stiff will be broken. The soft and supple will prevail.',\n", | |
" 'updated': '2020-11-10T05:04:39.689304Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530103,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 108623051,\n", | |
" 'location': 19,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'If you feel there is fear in your being, love more. Be courageous in love, take courage. Be adventurous in love; love more, and love unconditionally, because the more you love the less will be the fear.',\n", | |
" 'updated': '2020-11-10T05:04:38.588647Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530103,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 108623050,\n", | |
" 'location': 18,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Forget all about what you have been told, “This is right and this is wrong.” Life is not so fixed. The thing that is right today may be wrong tomorrow, the thing that is wrong this moment may be right the next moment.',\n", | |
" 'updated': '2020-11-10T05:04:38.588550Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530103,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 108623049,\n", | |
" 'location': 17,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 37220962, 'name': 'philosophy'}],\n", | |
" 'text': 'The experience does not depend on the object. The experience depends on the experiencer, on the quality of experiencing.',\n", | |
" 'updated': '2020-11-10T05:04:38.588458Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530103,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 108623048,\n", | |
" 'location': 16,\n", | |
" 'location_type': 'order',\n", | |
" 'note': 'Buddha, be egoistic',\n", | |
" 'tags': [{'id': 23704900, 'name': 'favorite'},\n", | |
" {'id': 23704899, 'name': 'philosophy'}],\n", | |
" 'text': 'My responsibility is toward my heart, not toward anybody else in the world. So is your responsibility only toward your own being. Don’t go against it, because going against it is committing suicide, is destroying yourself.',\n", | |
" 'updated': '2020-11-10T05:04:38.588362Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530103,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 108623047,\n", | |
" 'location': 15,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 41663480, 'name': 'antifragile'},\n", | |
" {'id': 41663475, 'name': 'unknown'},\n", | |
" {'id': 41663473, 'name': 'favorite'}],\n", | |
" 'text': 'Committing many mistakes, one learns what is a mistake and how not to commit it. Knowing what is error, one comes closer and closer to what is truth. It is an individual. exploration; you cannot depend on others conclusions.',\n", | |
" 'updated': '2020-11-10T05:04:38.588266Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530103,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 108623046,\n", | |
" 'location': 14,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'THE GREATEST FEAR IN THE WORLD IS OF THE OPINIONS OF OTHERS. And the moment you are unafraid of the crowd you are no longer a sheep, you become a lion. A great roar arises in your heart, the roar of freedom.',\n", | |
" 'updated': '2020-11-10T05:04:38.588173Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530103,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 108623045,\n", | |
" 'location': 13,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 40759072, 'name': 'favorite'},\n", | |
" {'id': 40759071, 'name': 'philosophy'}],\n", | |
" 'text': 'Why are you afraid? What can the world do to you? People can laugh at you; it will do them good—laughter is always a medicine, healthful.',\n", | |
" 'updated': '2020-11-10T05:04:38.588075Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530103,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 108623044,\n", | |
" 'location': 12,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 41844251, 'name': 'unknown'}],\n", | |
" 'text': 'Life is like that. You cannot prepare for it, you cannot be ready for it. That’s its beauty, that’s its wonder, that it always takes you unawares, it always comes as a surprise. If you have eyes you will see that each moment is a surprise and no ready-made answer is ever applicable.',\n", | |
" 'updated': '2020-11-10T05:04:38.587983Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530103,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 108623043,\n", | |
" 'location': 11,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 33857982, 'name': 'philosophy'}],\n", | |
" 'text': 'Life is not a problem. To look at it as a problem is to take a wrong step. It is a mystery to be lived, loved, experienced.',\n", | |
" 'updated': '2020-11-10T05:04:38.587869Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530103,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': None,\n", | |
" 'id': 108623042,\n", | |
" 'location': 10,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'In the beginning there is not much difference between the coward and the courageous person. The only difference is, the coward listens to his fears and follows them, and the courageous person puts them aside and goes ahead. The courageous person goes into the unknown in spite of all the fears.',\n", | |
" 'updated': '2020-11-10T05:04:38.587718Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530117,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-06T05:05:54.873576Z',\n", | |
" 'id': 107493961,\n", | |
" 'location': 29,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'If you engage in a Black Swan–dependent activity, it is better to be part of a group.',\n", | |
" 'updated': '2020-11-06T05:05:54.873582Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530117,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-06T05:05:54.873532Z',\n", | |
" 'id': 107493960,\n", | |
" 'location': 28,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 24625300, 'name': 'discard'}],\n", | |
" 'text': 'In a famous argument, the logician W. V. Quine showed that there exist families of logically consistent interpretations and theories that can match a given series of facts. Such insight should warn us that mere absence of nonsense may not be sufficient to make something true.',\n", | |
" 'updated': '2020-11-06T05:05:54.873537Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530117,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-06T05:05:54.873487Z',\n", | |
" 'id': 107493959,\n", | |
" 'location': 27,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'A life saved is a statistic; a person hurt is an anecdote. Statistics are invisible; anecdotes are salient. Likewise, the risk of a Black Swan is invisible.',\n", | |
" 'updated': '2020-11-06T05:05:54.873492Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530117,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-06T05:05:54.873442Z',\n", | |
" 'id': 107493958,\n", | |
" 'location': 26,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The problem is that our ideas are sticky: once we produce a theory, we are not likely to change our minds—so those who delay developing their theories are better off.',\n", | |
" 'updated': '2020-11-06T05:05:54.873448Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530117,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-06T05:05:54.873395Z',\n", | |
" 'id': 107493957,\n", | |
" 'location': 25,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'You need a story to displace a story. Metaphors and stories are far more potent (alas) than ideas; they are also easier to remember and more fun to read. If I have to go after what I call the narrative disciplines, my best tool is a narrative. Ideas come and go, stories stay.',\n", | |
" 'updated': '2020-11-06T05:05:54.873402Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530117,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-06T05:05:54.873320Z',\n", | |
" 'id': 107493956,\n", | |
" 'location': 24,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The neglect of silent evidence is endemic to the way we study comparative talent, particularly in activities that are plagued with winner-take-all attributes. We may enjoy what we see, but there is no point reading too much into success stories because we do not see the full picture.',\n", | |
" 'updated': '2020-11-06T05:05:54.873328Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530117,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-06T05:05:54.873276Z',\n", | |
" 'id': 107493955,\n", | |
" 'location': 23,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 26546053, 'name': 'rationality'}],\n", | |
" 'text': 'The Black Swan asymmetry allows you to be confident about what is wrong, not about what you believe is right.',\n", | |
" 'updated': '2020-11-06T05:05:54.873282Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530117,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-06T05:05:54.873231Z',\n", | |
" 'id': 107493954,\n", | |
" 'location': 22,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32571471, 'name': 'discard'}],\n", | |
" 'text': 'What matters is not how often you are right, but how large your cumulative errors are.',\n", | |
" 'updated': '2020-11-06T05:05:54.873237Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530117,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-06T05:05:54.873182Z',\n", | |
" 'id': 107493953,\n", | |
" 'location': 21,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Memory is more of a self-serving dynamic revision machine: you remember the last time you remembered the event and, without realizing it, change the story at every subsequent remembrance.',\n", | |
" 'updated': '2020-11-06T05:05:54.873189Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530117,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-06T05:05:54.873077Z',\n", | |
" 'id': 107493952,\n", | |
" 'location': 20,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'I can state the supreme law of Mediocristan as follows: When your sample is large, no single instance will significantly change the aggregate or the total. The largest observation will remain impressive, but eventually insignificant, to the sum.',\n", | |
" 'updated': '2020-11-06T05:05:54.873101Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530094,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-06T05:05:50.772175Z',\n", | |
" 'id': 107493911,\n", | |
" 'location': 19,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'In short, the Communists everywhere support every revolutionary movement against the existing social and political order of things.',\n", | |
" 'updated': '2020-11-06T05:05:50.772185Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530094,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-06T05:05:50.772079Z',\n", | |
" 'id': 107493910,\n", | |
" 'location': 18,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The need of a constantly expanding market for its products chases the bourgeoisie over the whole surface of the globe.',\n", | |
" 'updated': '2020-11-06T05:05:50.772098Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530094,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-06T05:05:50.771821Z',\n", | |
" 'id': 107493909,\n", | |
" 'location': 17,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The development of Modern Industry, therefore, cuts from under its feet the very foundation on which the bourgeoisie produces and appropriates products. What the bourgeoisie, therefore, produces, above all, is its own grave-diggers. Its fall and the victory of the proletariat are equally inevitable.',\n", | |
" 'updated': '2020-11-06T05:05:50.771831Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530094,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-06T05:05:50.771744Z',\n", | |
" 'id': 107493908,\n", | |
" 'location': 16,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'This organisation of the proletarians into a class, and consequently into a political party, is continually being upset again by the competition between the workers themselves. But it ever rises up again, stronger, firmer, mightier.',\n", | |
" 'updated': '2020-11-06T05:05:50.771754Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530094,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-06T05:05:50.771668Z',\n", | |
" 'id': 107493907,\n", | |
" 'location': 15,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'All that we want to do away with, is the miserable character of this appropriation, under which the labourer lives merely to increase capital, and is allowed to live only in so far as the interest of the ruling class requires it.',\n", | |
" 'updated': '2020-11-06T05:05:50.771678Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530094,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-06T05:05:50.771579Z',\n", | |
" 'id': 107493906,\n", | |
" 'location': 14,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 23308679, 'name': 'discard'}],\n", | |
" 'text': 'The real fruit of their battles lies, not in the immediate result, but in the ever-expanding union of the workers. This union is helped on by the improved means of communication that are created by modern industry and that place the workers of different localities in contact with one another.',\n", | |
" 'updated': '2020-11-06T05:05:50.771588Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530094,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-06T05:05:50.771506Z',\n", | |
" 'id': 107493905,\n", | |
" 'location': 13,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'These labourers, who must sell themselves piece-meal, are a commodity, like every other article of commerce, and are consequently exposed to all the vicissitudes of competition, to all the fluctuations of the market.',\n", | |
" 'updated': '2020-11-06T05:05:50.771515Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530094,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-06T05:05:50.771431Z',\n", | |
" 'id': 107493904,\n", | |
" 'location': 12,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 28319881, 'name': 'discard'}],\n", | |
" 'text': 'It has resolved personal worth into exchange value, and in place of the numberless and feasible chartered freedoms, has set up that single, unconscionable freedom--Free Trade. In one word, for exploitation, veiled by religious and political illusions, naked, shameless, direct, brutal exploitation.',\n", | |
" 'updated': '2020-11-06T05:05:50.771441Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530094,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-06T05:05:50.771339Z',\n", | |
" 'id': 107493903,\n", | |
" 'location': 11,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'It compels all nations, on pain of extinction, to adopt the bourgeois mode of production; it compels them to introduce what it calls civilisation into their midst, i.e., to become bourgeois themselves. In one word, it creates a world after its own image.',\n", | |
" 'updated': '2020-11-06T05:05:50.771350Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530094,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-06T05:05:50.771192Z',\n", | |
" 'id': 107493902,\n", | |
" 'location': 10,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 34986816, 'name': 'discard'}],\n", | |
" 'text': 'Society as a whole is more and more splitting up into two great hostile camps, into two great classes, directly facing each other: Bourgeoisie and Proletariat.',\n", | |
" 'updated': '2020-11-06T05:05:50.771221Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530082,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-05T05:15:38.303782Z',\n", | |
" 'id': 107305408,\n", | |
" 'location': 19,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'He always seems to be merely playing without business-affairs, they never fully become a part of him, they never rule over him, he is never afraid of failure, he is never upset by a loss.”',\n", | |
" 'updated': '2020-11-05T05:15:38.303787Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530082,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-05T05:15:38.303737Z',\n", | |
" 'id': 107305407,\n", | |
" 'location': 18,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 37515932, 'name': 'philosophy'}],\n", | |
" 'text': 'When he ferried travellers of the ordinary kind, childlike people, businessmen, warriors, women, these people did not seem alien to him as they used to: he understood them, he understood and shared their life, which was not guided by thoughts and insight, but solely by urges and wishes, he felt like them.',\n", | |
" 'updated': '2020-11-05T05:15:38.303742Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530082,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-05T05:15:38.303693Z',\n", | |
" 'id': 107305406,\n", | |
" 'location': 17,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 33092722, 'name': 'favorite'},\n", | |
" {'id': 23315707, 'name': 'philosophy'}],\n", | |
" 'text': '“What is meditation? What is leaving one’s body? What is fasting? What is holding one’s breath? It is fleeing from the self, it is a short escape of the agony of being a self, it is a short numbing of the senses against the pain and the pointlessness of life.',\n", | |
" 'updated': '2020-11-05T05:15:38.303698Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530082,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-05T05:15:38.303649Z',\n", | |
" 'id': 107305405,\n", | |
" 'location': 16,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': '“I can think. I can wait. I can fast.”',\n", | |
" 'updated': '2020-11-05T05:15:38.303654Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530082,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-05T05:15:38.303603Z',\n", | |
" 'id': 107305404,\n", | |
" 'location': 15,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Om is the bow, the arrow is soul, The Brahman is the arrow’s target, That one should incessantly hit.',\n", | |
" 'updated': '2020-11-05T05:15:38.303608Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530082,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-05T05:15:38.303557Z',\n", | |
" 'id': 107305403,\n", | |
" 'location': 14,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': '“It is good,” he thought, “to get a taste of everything for oneself, which one needs to know. That lust for the world and riches do not belong to the good things, I have already learned as a child. I have known it for a long time, but I have experienced only now. And now I know it, don’t just know it in my memory, but in my eyes, in my heart, in my stomach. Good for me, to know this!”',\n", | |
" 'updated': '2020-11-05T05:15:38.303563Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530082,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-05T05:15:38.303505Z',\n", | |
" 'id': 107305402,\n", | |
" 'location': 13,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Siddhartha does nothing, he waits, he thinks, he fasts, but he passes through the things of the world like a rock through water, without doing anything, without stirring; he is drawn, he lets himself fall. His goal attracts him, because he doesn’t let anything enter his soul which might oppose the goal.',\n", | |
" 'updated': '2020-11-05T05:15:38.303510Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530082,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-05T05:15:38.303458Z',\n", | |
" 'id': 107305401,\n", | |
" 'location': 12,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'He envied them for the one thing that was missing from him and that they had, the importance they were able to attach to their lives, the amount of passion in their joys and fears, the fearful but sweet happiness of being constantly in love.',\n", | |
" 'updated': '2020-11-05T05:15:38.303465Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530082,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-05T05:15:38.303409Z',\n", | |
" 'id': 107305400,\n", | |
" 'location': 11,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'I want to learn from myself, want to be my student, want to get to know myself, the secret of Siddhartha.”',\n", | |
" 'updated': '2020-11-05T05:15:38.303416Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530082,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-05T05:15:38.303300Z',\n", | |
" 'id': 107305399,\n", | |
" 'location': 10,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Slowly blossomed, slowly ripened in Siddhartha the realisation, the knowledge, what wisdom actually was, what the goal of his long search was. It was nothing but a readiness of the soul, an ability, a secret art, to think every moment, while living his life, the thought of oneness, to be able to feel and inhale the oneness.',\n", | |
" 'updated': '2020-11-05T05:15:38.303324Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530105,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-03T07:09:46.772132Z',\n", | |
" 'id': 106805739,\n", | |
" 'location': 19,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'True barter requires that you give up something you value in exchange for something else you value slightly more.',\n", | |
" 'updated': '2020-11-03T07:09:46.772138Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530105,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-03T07:09:46.772089Z',\n", | |
" 'id': 106805738,\n", | |
" 'location': 18,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'So this is what poverty means. You are poor to the extent that you cannot afford to sell your time for sufficient price to buy the services you need, and rich to the extent that you can afford to buy not just the services you need but also those you crave.',\n", | |
" 'updated': '2020-11-03T07:09:46.772094Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530105,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-03T07:09:46.772045Z',\n", | |
" 'id': 106805737,\n", | |
" 'location': 17,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 35088006, 'name': 'discard'}],\n", | |
" 'text': 'In other words, we may soon be living in a post-capitalist, post-corporate world, where individuals are free to come together in temporary aggregations to share, collaborate and innovate, where websites enable people to find employers, employees, customers and clients anywhere in the world.',\n", | |
" 'updated': '2020-11-03T07:09:46.772050Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530105,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-03T07:09:46.772000Z',\n", | |
" 'id': 106805736,\n", | |
" 'location': 16,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32199970, 'name': 'discard'}],\n", | |
" 'text': 'Today, a car emits less pollution travelling at full speed than a parked car did in 1970 from leaks.',\n", | |
" 'updated': '2020-11-03T07:09:46.772006Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530105,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-03T07:09:46.771953Z',\n", | |
" 'id': 106805735,\n", | |
" 'location': 15,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32796580, 'name': 'biology'}],\n", | |
" 'text': 'An evolutionary bargain seems to have been struck: in exchange for sexual exclusivity, the man brings meat and protects the fire from thieves and bullies; in exchange for help rearing the children, the woman brings veg and does much of the cooking. This may explain why human beings are the only great apes with long pair bonds.',\n", | |
" 'updated': '2020-11-03T07:09:46.771959Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530105,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-03T07:09:46.771908Z',\n", | |
" 'id': 106805734,\n", | |
" 'location': 14,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Specialisation encouraged innovation, because it encouraged the investment of time in a tool-making tool. That saved time, and prosperity is simply time saved, which is proportional to the division of labour. The more human beings diversified as consumers and specialised as producers, and the more they then exchanged, the better off they have been, are and will be. And the good news is that there is no inevitable end to this process. The more people are drawn into the global division of labour, the more people can specialise and exchange, the wealthier we will all be.',\n", | |
" 'updated': '2020-11-03T07:09:46.771914Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530105,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-03T07:09:46.771862Z',\n", | |
" 'id': 106805733,\n", | |
" 'location': 13,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 26699938, 'name': 'discard'}],\n", | |
" 'text': 'The argument is not that exchange teaches people to be kind; it is that exchange teaches people to recognise their enlightened self-interest lies in seeking cooperation.',\n", | |
" 'updated': '2020-11-03T07:09:46.771869Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530105,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-03T07:09:46.771793Z',\n", | |
" 'id': 106805732,\n", | |
" 'location': 12,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'There is no such thing as unproductive employment, so long as people are prepared to buy the service you are offering. Today, 1 per cent works in agriculture and 24 per cent in industry, leaving 75 per cent to offer movies, restaurant meals, insurance broking and aromatherapy.',\n", | |
" 'updated': '2020-11-03T07:09:46.771804Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530105,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-03T07:09:46.771711Z',\n", | |
" 'id': 106805731,\n", | |
" 'location': 11,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 26735439, 'name': 'biology'}],\n", | |
" 'text': 'Humanity is experiencing an extraordinary burst of evolutionary change, driven by good old-fashioned Darwinian natural selection. But it is selection among ideas, not among genes.',\n", | |
" 'updated': '2020-11-03T07:09:46.771725Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530105,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-11-03T07:09:46.771563Z',\n", | |
" 'id': 106805730,\n", | |
" 'location': 10,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'This is what I mean by the collective brain. As Friedrich Hayek first clearly saw, knowledge ‘never exists in concentrated or integrated form but solely as the dispersed bits of incomplete and frequently contradictory knowledge which all the separate individuals possess’.',\n", | |
" 'updated': '2020-11-03T07:09:46.771592Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530089,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-26T05:03:07.489740Z',\n", | |
" 'id': 104158997,\n", | |
" 'location': 29,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 22345767, 'name': 'philosophy'}],\n", | |
" 'text': 'Thus, regeneration is only possible in the present, not in the future, not tomorrow. A man who relies on time as a means through which he can gain happiness or realize truth or God is merely deceiving himself; he is living in ignorance and, therefore, in conflict.',\n", | |
" 'updated': '2020-10-26T05:03:07.489746Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530089,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-26T05:03:07.489692Z',\n", | |
" 'id': 104158996,\n", | |
" 'location': 28,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'But you begin to consider family, friends, ideals, beliefs, traditions, the established order of things, only when you are still clinging to a particular safety, when there is not that inward richness, but merely the dependence on external stimulation for that inward richness.',\n", | |
" 'updated': '2020-10-26T05:03:07.489698Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530089,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-26T05:03:07.489645Z',\n", | |
" 'id': 104158995,\n", | |
" 'location': 27,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 22786053, 'name': 'philosophy'}],\n", | |
" 'text': 'Let us examine how we have created religions and in what manner we are enslaved to them. If you deeply examine them as they are, you will see that they are nothing but the vested interest of organized belief—holding, separating, and exploiting man.',\n", | |
" 'updated': '2020-10-26T05:03:07.489652Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530089,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-26T05:03:07.489572Z',\n", | |
" 'id': 104158994,\n", | |
" 'location': 26,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 28699221, 'name': 'favorite'},\n", | |
" {'id': 22345769, 'name': 'philosophy'}],\n", | |
" 'text': 'A consistent thinker is a thoughtless person, because he conforms to a pattern; he repeats phrases and thinks in a groove. We cannot understand existence abstractly or theoretically. To understand life is to understand ourselves, and that is both the beginning and the end of education.',\n", | |
" 'updated': '2020-10-26T05:03:07.489585Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530089,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-26T05:03:07.489484Z',\n", | |
" 'id': 104158993,\n", | |
" 'location': 25,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'You react to the past because the present has lost its significance, or because you want to avoid the present; so you go back to the past and live in that emotional thrill, in that reaction of surging memory, because the present has little value.',\n", | |
" 'updated': '2020-10-26T05:03:07.489497Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530089,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-26T05:03:07.489400Z',\n", | |
" 'id': 104158992,\n", | |
" 'location': 24,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 22345765, 'name': 'philosophy'}],\n", | |
" 'text': 'Again and again, Krishnamurti declared that people do not need guidance, they need awakening.',\n", | |
" 'updated': '2020-10-26T05:03:07.489412Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530089,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-26T05:03:07.489310Z',\n", | |
" 'id': 104158991,\n", | |
" 'location': 23,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Out of the desire to immortalize that which is false you create religions, sociological systems and divisions, political methods, economic panaceas, and moral standards.',\n", | |
" 'updated': '2020-10-26T05:03:07.489317Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530089,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-26T05:03:07.489236Z',\n", | |
" 'id': 104158990,\n", | |
" 'location': 22,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Krishnamurti was an exact embodiment of his doctrine of “choiceless awareness.”',\n", | |
" 'updated': '2020-10-26T05:03:07.489249Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530089,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-26T05:03:07.489157Z',\n", | |
" 'id': 104158989,\n", | |
" 'location': 21,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': '“May I just ask just one question?” put in one of the others. “In what manner should one live one’s daily life?” As though one were living for that single day, for that single hour.',\n", | |
" 'updated': '2020-10-26T05:03:07.489164Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530089,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-26T05:03:07.489058Z',\n", | |
" 'id': 104158988,\n", | |
" 'location': 20,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The understanding of the actual is possible only when the ideal, the what should be, is erased from the mind; that is, only when the false is seen as the false.',\n", | |
" 'updated': '2020-10-26T05:03:07.489080Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530091,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-25T05:19:21.091515Z',\n", | |
" 'id': 103737170,\n", | |
" 'location': 29,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 26390189, 'name': 'philosophy'}],\n", | |
" 'text': 'The path into the light seems dark, the path forward seems to go back, the direct path seems long, true power seems weak, true purity seems tarnished, true steadfastness seems changeable, true clarity seems obscure, the greatest art seems unsophisticated, the greatest love seems indifferent, the greatest wisdom seems childish.',\n", | |
" 'updated': '2020-10-25T05:19:21.091528Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530091,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-25T05:19:21.091425Z',\n", | |
" 'id': 103737169,\n", | |
" 'location': 28,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'He who stands on tiptoe doesn’t stand firm. He who rushes ahead doesn’t go far. He who tries to shine dims his own light. He who defines himself can’t know who he really is. He who has power over others can’t empower himself. He who clings to his work will create nothing that endures. If you want to accord with the Tao, just do your job, then let go.',\n", | |
" 'updated': '2020-10-25T05:19:21.091438Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530091,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-25T05:19:21.091333Z',\n", | |
" 'id': 103737168,\n", | |
" 'location': 27,\n", | |
" 'location_type': 'order',\n", | |
" 'note': \"They turn to society's game\",\n", | |
" 'tags': [{'id': 23308705, 'name': 'favorite'},\n", | |
" {'id': 22346022, 'name': 'philosophy'}],\n", | |
" 'text': 'When they lose their sense of awe, people turn to religion. When they no longer trust themselves, they begin to depend upon authority.',\n", | |
" 'updated': '2020-10-25T05:19:21.091346Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530091,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-25T05:19:21.091240Z',\n", | |
" 'id': 103737167,\n", | |
" 'location': 26,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 22745587, 'name': 'philosophy'},\n", | |
" {'id': 22745586, 'name': 'favorite'}],\n", | |
" 'text': 'Colors blind the eye. Sounds deafen the ear. Flavors numb the taste. Thoughts weaken the mind. Desires wither the heart. The Master observes the world but trusts his inner vision. He allows things to come and go. His heart is open as the sky.',\n", | |
" 'updated': '2020-10-25T05:19:21.091253Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530091,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-25T05:19:21.091154Z',\n", | |
" 'id': 103737166,\n", | |
" 'location': 25,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 22202312, 'name': 'philosophy'},\n", | |
" {'id': 22202311, 'name': 'favorite'}],\n", | |
" 'text': 'The Master’s power is like this. He lets all things come and go effortlessly, without desire. He never expects results; thus he is never disappointed. He is never disappointed; thus his spirit never grows old.',\n", | |
" 'updated': '2020-10-25T05:19:21.091167Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530091,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-25T05:19:21.091070Z',\n", | |
" 'id': 103737165,\n", | |
" 'location': 24,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 22345719, 'name': 'philosophy'}],\n", | |
" 'text': 'In the pursuit of knowledge, every day something is added. In the practice of the Tao, every day something is dropped. Less and less do you need to force things, until finally you arrive at non-action. When nothing is done, nothing is left undone. True mastery can be gained by letting things go their own way. It can’t be gained by interfering.',\n", | |
" 'updated': '2020-10-25T05:19:21.091081Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530091,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-25T05:19:21.090986Z',\n", | |
" 'id': 103737164,\n", | |
" 'location': 23,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 22009098, 'name': 'philosophy'},\n", | |
" {'id': 22009097, 'name': 'favorite'}],\n", | |
" 'text': 'We join spokes together in a wheel, but it is the center hole that makes the wagon move. We shape clay into a pot, but it is the emptiness inside that holds whatever we want. We hammer wood for a house, but it is the inner space that makes it livable. We work with being, but non-being is what we use.',\n", | |
" 'updated': '2020-10-25T05:19:21.090999Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530091,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-25T05:19:21.090877Z',\n", | |
" 'id': 103737163,\n", | |
" 'location': 22,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'If you realize that all things change, there is nothing you will try to hold on to. If you aren’t afraid of dying, there is nothing you can’t achieve.',\n", | |
" 'updated': '2020-10-25T05:19:21.090890Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530091,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-25T05:19:21.090780Z',\n", | |
" 'id': 103737162,\n", | |
" 'location': 21,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'When there is no desire, all things are at peace.',\n", | |
" 'updated': '2020-10-25T05:19:21.090797Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530091,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-25T05:19:21.090591Z',\n", | |
" 'id': 103737161,\n", | |
" 'location': 20,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32142563, 'name': 'philosophy'},\n", | |
" {'id': 32142561, 'name': 'favorite'}],\n", | |
" 'text': 'Men are born soft and supple; dead, they are stiff and hard. Plants are born tender and pliant; dead, they are brittle and dry. Thus whoever is stiff and inflexible is a disciple of death. Whoever is soft and yielding is a disciple of life. The hard and stiff will be broken. The soft and supple will prevail.',\n", | |
" 'updated': '2020-10-25T05:19:21.090625Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530042,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-21T04:49:21.533390Z',\n", | |
" 'id': 102488467,\n", | |
" 'location': 29,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Science isn’t characterized by methodological naturalism but by methodological empiricism—the idea that knowledge is derived from our experience of the world, rather than by thought alone.',\n", | |
" 'updated': '2020-10-21T04:49:21.533403Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530042,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-21T04:49:21.533289Z',\n", | |
" 'id': 102488466,\n", | |
" 'location': 28,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 22007617, 'name': 'discard'}],\n", | |
" 'text': 'There’s no reason for us to pretend that subjective experiences don’t exist, or on the other hand that they “are” something happening in the brain. They are essential concepts within a way of talking about things happening in our brains, and that makes all the difference.',\n", | |
" 'updated': '2020-10-21T04:49:21.533302Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530042,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-21T04:49:21.533188Z',\n", | |
" 'id': 102488465,\n", | |
" 'location': 27,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 41451455, 'name': 'favorite'},\n", | |
" {'id': 22786030, 'name': 'rationality'}],\n", | |
" 'text': 'Bayes’s Theorem is one of those insights that can change the way we go through life. Each of us comes equipped with a rich variety of beliefs, for or against all sorts of propositions. Bayes teaches us (1) never to assign perfect certainty to any such belief; (2) always to be prepared to update our credences when new evidence comes along; and (3) how exactly such evidence alters the credences we assign. It’s a road map for coming closer and closer to the truth.',\n", | |
" 'updated': '2020-10-21T04:49:21.533200Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530042,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-21T04:49:21.533072Z',\n", | |
" 'id': 102488464,\n", | |
" 'location': 26,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 37220960, 'name': 'discard'}],\n", | |
" 'text': 'Psychologist Jonathan Haidt has argued that Plato gives too much credit to the charioteer, and that a better metaphor would be a small rider atop a giant elephant. The rider—our conscious self—exerts some control, but the majority of the power resides in the elephant beneath.',\n", | |
" 'updated': '2020-10-21T04:49:21.533085Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530042,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-21T04:49:21.532971Z',\n", | |
" 'id': 102488463,\n", | |
" 'location': 25,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'When the entropy of a system is as high as it can get, we say that the system is in equilibrium. In equilibrium, time has no arrow.',\n", | |
" 'updated': '2020-10-21T04:49:21.532985Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530042,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-21T04:49:21.532867Z',\n", | |
" 'id': 102488462,\n", | |
" 'location': 24,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Bayes’s main idea, now known simply as Bayes’s Theorem, is a way to think about credences. It allows us to answer the following question. Imagine that we have certain credences assigned to different beliefs. Then we gather some information, and learn something new. How does that new information change the credences we have assigned? That’s the question we need to be asking ourselves over and over, as we learn new things about the world.',\n", | |
" 'updated': '2020-10-21T04:49:21.532881Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530042,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-21T04:49:21.532765Z',\n", | |
" 'id': 102488461,\n", | |
" 'location': 23,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'How far will this process of unification and simplification go? It’s impossible to say for sure. But we have a reasonable guess, based on our progress thus far: it will go all the way. We will ultimately understand the world as a single, unified reality, not caused or sustained or influenced by anything outside itself. That’s a big deal.',\n", | |
" 'updated': '2020-10-21T04:49:21.532778Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530042,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-21T04:49:21.532662Z',\n", | |
" 'id': 102488460,\n", | |
" 'location': 22,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'What we might want to ask is: “What is the reason why it makes sense to talk about ‘reasons why’?” And there’s a good answer, namely: because of the arrow of time.',\n", | |
" 'updated': '2020-10-21T04:49:21.532675Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530042,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-21T04:49:21.532556Z',\n", | |
" 'id': 102488459,\n", | |
" 'location': 21,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 34098450, 'name': 'physics'},\n", | |
" {'id': 34098447, 'name': 'favorite'},\n", | |
" {'id': 34098446, 'name': 'sciences'}],\n", | |
" 'text': 'What matters to life is that our environment here on Earth is very far from equilibrium, and will be for billions of years. The sun is a hot spot in a cold sky. Because of that, the energy we receive in the form of solar photons is almost entirely free energy, ready to be turned into useful work.',\n", | |
" 'updated': '2020-10-21T04:49:21.532570Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530042,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-21T04:49:21.532393Z',\n", | |
" 'id': 102488458,\n", | |
" 'location': 20,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'This principle goes by a simple, if potentially misleading, name: conservation of information. Just as conservation of momentum implies that the universe can just keep on moving, without any unmoved mover behind the scenes, conservation of information implies that each moment contains precisely the right amount of information to determine every other moment.',\n", | |
" 'updated': '2020-10-21T04:49:21.532425Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 5891154,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-20T02:29:09.901755Z',\n", | |
" 'id': 102058927,\n", | |
" 'location': 9,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Remember that nobody accepts randomness in his own success, only his failure.',\n", | |
" 'updated': '2020-10-20T02:29:09.901783Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 5891154,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-20T02:29:09.901592Z',\n", | |
" 'id': 102058926,\n", | |
" 'location': 8,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 24998903, 'name': 'discard'}],\n", | |
" 'text': 'Mild success can be explainable by skills and labor. Wild success is attributable to variance.',\n", | |
" 'updated': '2020-10-20T02:29:09.901619Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 5891154,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-20T02:29:09.901418Z',\n", | |
" 'id': 102058925,\n", | |
" 'location': 7,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'Heroes are heroes because they are heroic in behavior, not because they won or lost.',\n", | |
" 'updated': '2020-10-20T02:29:09.901446Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 5891154,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-20T02:29:09.901244Z',\n", | |
" 'id': 102058924,\n", | |
" 'location': 6,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 22977181, 'name': 'probability'},\n", | |
" {'id': 22977178, 'name': 'rationality'}],\n", | |
" 'text': 'Probability is not a mere computation of odds on the dice or more complicated variants; it is the acceptance of the lack of certainty in our knowledge and the development of methods for dealing with our ignorance.',\n", | |
" 'updated': '2020-10-20T02:29:09.901268Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 5891154,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-20T02:29:09.901081Z',\n", | |
" 'id': 102058923,\n", | |
" 'location': 5,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'As a derivatives trader I noticed that people do not like to insure against something abstract; the risk that merits their attention is always something vivid.',\n", | |
" 'updated': '2020-10-20T02:29:09.901109Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 5891154,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-20T02:29:09.900912Z',\n", | |
" 'id': 102058922,\n", | |
" 'location': 4,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'I remind myself of Einstein’s remark that common sense is nothing but a collection of misconceptions acquired by age eighteen. Furthermore, What sounds intelligent in a conversation or a meeting, or, particularly, in the media, is suspicious.',\n", | |
" 'updated': '2020-10-20T02:29:09.900940Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 5891154,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-20T02:29:09.900711Z',\n", | |
" 'id': 102058921,\n", | |
" 'location': 3,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'No amount of observations of white swans can allow the inference that all swans are white, but the observation of a single black swan is sufficient to refute that conclusion.',\n", | |
" 'updated': '2020-10-20T02:29:09.900737Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 5891154,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-20T02:29:09.900545Z',\n", | |
" 'id': 102058920,\n", | |
" 'location': 2,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The flipside, which deserves to be considered as well (in fact it is even more of our concern), is that things that come with little help from luck are more resistant to randomness.',\n", | |
" 'updated': '2020-10-20T02:29:09.900572Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 5891154,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-20T02:29:09.900374Z',\n", | |
" 'id': 102058919,\n", | |
" 'location': 1,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [{'id': 32199932, 'name': 'rationality'}],\n", | |
" 'text': 'A mistake is not something to be determined after the fact, but in the light of the information until that point.',\n", | |
" 'updated': '2020-10-20T02:29:09.900402Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 5891154,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-20T02:29:09.900181Z',\n", | |
" 'id': 102058918,\n", | |
" 'location': 0,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'My lesson from Soros is to start every meeting at my boutique by convincing everyone that we are a bunch of idiots who know nothing and are mistake-prone, but happen to be endowed with the rare privilege of knowing it.',\n", | |
" 'updated': '2020-10-20T02:29:09.900216Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530092,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-18T04:47:00.143621Z',\n", | |
" 'id': 100796499,\n", | |
" 'location': 29,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The reward of doing. — The doer alone learns.',\n", | |
" 'updated': '2020-10-18T04:47:00.143631Z',\n", | |
" 'url': None},\n", | |
" {'book_id': 2530092,\n", | |
" 'color': '',\n", | |
" 'highlighted_at': '2020-10-18T04:47:00.143550Z',\n", | |
" 'id': 100796498,\n", | |
" 'location': 28,\n", | |
" 'location_type': 'order',\n", | |
" 'note': '',\n", | |
" 'tags': [],\n", | |
" 'text': 'The Now is all-inclusive. - NOTHING EXISTS EXCEPT THE HERE AND NOW.',\n", | |
" 'updated': '2020-10-18T04:47:00.143560Z',\n", | |
" 'url': None},\n", | |
" ...]" | |
] | |
}, | |
"metadata": { | |
"tags": [] | |
}, | |
"execution_count": 28 | |
} | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"metadata": { | |
"colab": { | |
"base_uri": "https://localhost:8080/" | |
}, | |
"id": "Gz-Yt_SyuUNt", | |
"outputId": "85cb7d61-8ebd-406e-a170-2360cd1055b6" | |
}, | |
"source": [ | |
"out_file_name = \"readwise-0.0.1.jsonl\"\n", | |
"count_file = 0\n", | |
"df = pd.DataFrame(highlights)\n", | |
"with open(out_file_name, \"a+\") as outfile:\n", | |
" for i, v in df.iterrows():\n", | |
" json.dump({\n", | |
" \"prompt\": f\"\",\n", | |
" \"completion\": f\" {v.text}\\n###\\n\",\n", | |
" }, outfile)\n", | |
" outfile.write('\\n')\n", | |
"\n", | |
"def get_model_by_dataset_name(dataset_name):\n", | |
" return [e for e in openai.FineTune.list()[\"data\"] if e[\"training_files\"][0][\"filename\"] == dataset_name][0]\n", | |
"openai_file = openai.File.create(\n", | |
" file=open(out_file_name),\n", | |
" purpose=\"fine-tune\"\n", | |
")\n", | |
"fine_tune = openai.FineTune.create(\n", | |
" training_file=openai_file[\"id\"],\n", | |
" model=\"curie\",\n", | |
")" | |
], | |
"execution_count": 52, | |
"outputs": [ | |
{ | |
"output_type": "stream", | |
"text": [ | |
"Upload progress: 100%|██████████| 1.66M/1.66M [00:00<00:00, 2.34Mit/s]\n" | |
], | |
"name": "stderr" | |
} | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"metadata": { | |
"colab": { | |
"base_uri": "https://localhost:8080/" | |
}, | |
"id": "s1UKw0f5xoxX", | |
"outputId": "605a8399-7f4f-43a7-9e1e-ad96078f40f7" | |
}, | |
"source": [ | |
"fine_tune = get_model_by_dataset_name(out_file_name)\n", | |
"print(\"not trained yet\" if fine_tune[\"fine_tuned_model\"] == None else \"ready to use\")" | |
], | |
"execution_count": 59, | |
"outputs": [ | |
{ | |
"output_type": "stream", | |
"text": [ | |
"ready to use\n" | |
], | |
"name": "stdout" | |
} | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"metadata": { | |
"colab": { | |
"base_uri": "https://localhost:8080/" | |
}, | |
"id": "mNkUw70fxX_Y", | |
"outputId": "616eedfb-d6e9-4da9-dc48-e9288fdabc4a" | |
}, | |
"source": [ | |
"o = openai.Completion.create(\n", | |
" model=fine_tune[\"fine_tuned_model\"],\n", | |
" prompt=\"Biology\",\n", | |
" max_tokens=200,\n", | |
" temperature=0.7,\n", | |
" frequency_penalty=0.1,\n", | |
" presence_penalty=0.1,\n", | |
")\n", | |
"pprint(o[\"choices\"][0][\"text\"])" | |
], | |
"execution_count": 75, | |
"outputs": [ | |
{ | |
"output_type": "stream", | |
"text": [ | |
"('\\n'\n", | |
" '###\\n'\n", | |
" 'The classical virtues are those that promoted the survival and reproduction '\n", | |
" 'of the human genes in the evolutionary battle for existence.\\n'\n", | |
" '###\\n'\n", | |
" 'The land was ours, you may imagine, there being no natives. The island was '\n", | |
" 'very small, and there was only one village on it, so that everybody knew '\n", | |
" 'every other person on the island.\\n'\n", | |
" '###\\n'\n", | |
" 'The only way to become excellent is to be endlessly fascinated by doing the '\n", | |
" 'same thing over and over. You have to fall in love with boredom.\\n'\n", | |
" '###\\n'\n", | |
" 'The two greatest philosophical points of view (both discovered by Germans). '\n", | |
" '(a) That of becoming and that of evolution. (b) That based upon the values '\n", | |
" 'of existence (but the Germans failed to understand its political aspect).\\n'\n", | |
" '###\\n'\n", | |
" 'If you get easily bored, it means that your BS detector is functioning '\n", | |
" 'properly; if you forget what you are doing, it means that your curiosity is '\n", | |
" 'functioning properly; if you feel hungry and tired, it means that you are '\n", | |
" 'thinking about the true')\n" | |
], | |
"name": "stdout" | |
} | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": { | |
"id": "rqs5CSqYyxaL" | |
}, | |
"source": [ | |
"# Next ideas of OpenAI + Readwise:\n", | |
"- Build a classification dataset based on highlight <-> tag & train\n", | |
"- Try to build a better search engine than readwise using OpenAI semantic search\n", | |
"- Plenty of other fun things to try\n" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": { | |
"id": "OM1JpB6zzSsH" | |
}, | |
"source": [ | |
"# Next ideas of OpenAI + Second brain tools (Obsidian)\n", | |
"- Implement completion within the editor (just like gmail etc.)\n", | |
"- Note summaries\n", | |
"- Note classification\n", | |
"- rytr.me but better :p" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment