diff --git a/.github/codeql/codeql-config.yml b/.github/codeql/codeql-config.yml new file mode 100644 index 00000000..c2f51361 --- /dev/null +++ b/.github/codeql/codeql-config.yml @@ -0,0 +1,7 @@ +paths-ignore: + - "_scripts/cronitor-analytics-setup.js" + - "_scripts/open-panel-analytics-setup.js" + - "_scripts/search.liquid.js" + - "_scripts/giscus-setup.js" + - "_scripts/google-analytics-setup.js" + - "_scripts/photoswipe-setup.js" diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..946c3b27 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,16 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + + - package-ecosystem: "bundler" + directory: "/" + schedule: + interval: "weekly" diff --git a/.github/workflows/axe.yml b/.github/workflows/axe.yml index afa3c922..e07382df 100644 --- a/.github/workflows/axe.yml +++ b/.github/workflows/axe.yml @@ -25,7 +25,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout ๐๏ธ - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Ruby uses: ruby/setup-ruby@v1 with: @@ -59,7 +59,7 @@ jobs: echo "CHROMIUM_VERSION=$CHROMIUM_VERSION" >> $GITHUB_ENV - name: Setup Chrome ๐ id: setup-chrome - uses: browser-actions/setup-chrome@v1 + uses: browser-actions/setup-chrome@v2 with: chrome-version: ${{ env.CHROMIUM_VERSION }} - name: Install chromedriver ๐ diff --git a/.github/workflows/broken-links-site.yml b/.github/workflows/broken-links-site.yml index a62684d2..c5e577fd 100644 --- a/.github/workflows/broken-links-site.yml +++ b/.github/workflows/broken-links-site.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout ๐๏ธ - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Ruby uses: ruby/setup-ruby@v1 with: @@ -40,7 +40,7 @@ jobs: npm install -g purgecss purgecss -c purgecss.config.js - name: Link Checker ๐ - uses: lycheeverse/lychee-action@v2.0.2 + uses: lycheeverse/lychee-action@v2.8.0 with: fail: true # only check local links diff --git a/.github/workflows/broken-links.yml b/.github/workflows/broken-links.yml index d23c0117..d8b60abb 100644 --- a/.github/workflows/broken-links.yml +++ b/.github/workflows/broken-links.yml @@ -44,10 +44,10 @@ jobs: # only run on the main repo if: github.repository == 'alshedivat/al-folio' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Link Checker ๐ - uses: lycheeverse/lychee-action@v2.0.2 + uses: lycheeverse/lychee-action@v2.8.0 with: fail: true # removed md files that include liquid tags diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index d09a3b57..3f75b586 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -57,14 +57,15 @@ jobs: # your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v3 + uses: github/codeql-action/init@v4 with: languages: ${{ matrix.language }} build-mode: ${{ matrix.build-mode }} + config-file: .github/codeql/codeql-config.yml # If you wish to specify custom queries, you can do so here or in a config file. # By default, queries listed here will override any specified in a config file. # Prefix the list here with "+" to use these queries and those in the config file. @@ -89,6 +90,6 @@ jobs: exit 1 - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@v4 with: category: "/language:${{matrix.language}}" diff --git a/.github/workflows/deploy-docker-tag.yml b/.github/workflows/deploy-docker-tag.yml index d7710e26..0093f70a 100644 --- a/.github/workflows/deploy-docker-tag.yml +++ b/.github/workflows/deploy-docker-tag.yml @@ -20,7 +20,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Set up QEMU uses: docker/setup-qemu-action@v3 @@ -41,7 +41,7 @@ jobs: password: ${{ secrets.DOCKER_PASSWORD }} - name: Build and push - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . platforms: linux/amd64,linux/arm64/v8 diff --git a/.github/workflows/deploy-image.yml b/.github/workflows/deploy-image.yml index 7ddd8f65..ad457e9b 100644 --- a/.github/workflows/deploy-image.yml +++ b/.github/workflows/deploy-image.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Set up QEMU uses: docker/setup-qemu-action@v3 @@ -36,7 +36,7 @@ jobs: password: ${{ secrets.DOCKER_PASSWORD }} - name: Build and push - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . push: true diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 5fb7e8ae..7d3f2e49 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -70,14 +70,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout ๐๏ธ - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Ruby ๐ uses: ruby/setup-ruby@v1 with: ruby-version: "3.3.5" bundler-cache: true - name: Setup Python ๐ - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: "3.13" cache: "pip" # caching pip dependencies diff --git a/.github/workflows/docker-slim.yml b/.github/workflows/docker-slim.yml index b342ef66..7f9e7caa 100644 --- a/.github/workflows/docker-slim.yml +++ b/.github/workflows/docker-slim.yml @@ -25,7 +25,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Login uses: docker/login-action@v3 diff --git a/.github/workflows/lighthouse-badger.yml b/.github/workflows/lighthouse-badger.yml index addec2d3..59f784d1 100644 --- a/.github/workflows/lighthouse-badger.yml +++ b/.github/workflows/lighthouse-badger.yml @@ -46,12 +46,12 @@ jobs: echo "BRANCH=$BRANCH" >> $GITHUB_ENV env: REPO_BRANCH: ${{ env.REPO_BRANCH }} - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: repository: ${{ env.REPOSITORY }} token: ${{ secrets.LIGHTHOUSE_BADGER_TOKEN }} ref: ${{ env.BRANCH }} - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: repository: "myactionway/lighthouse-badges" path: temp_lighthouse_badges_nested diff --git a/.github/workflows/prettier-comment-on-pr.yml b/.github/workflows/prettier-comment-on-pr.yml index e95075ce..1714b019 100644 --- a/.github/workflows/prettier-comment-on-pr.yml +++ b/.github/workflows/prettier-comment-on-pr.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: PR comment with html diff ๐ฌ - uses: thollander/actions-comment-pull-request@v2 + uses: thollander/actions-comment-pull-request@v3 with: comment_tag: prettier-failed pr_number: ${{ github.event.client_payload.pr_number }} diff --git a/.github/workflows/prettier-html.yml b/.github/workflows/prettier-html.yml index 3dc4326e..adb3556c 100644 --- a/.github/workflows/prettier-html.yml +++ b/.github/workflows/prettier-html.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout gh-pages branch - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: gh-pages diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml index 60446c8d..51e5de05 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout ๐๏ธ - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Node.js โ๏ธ uses: actions/setup-node@v4 - name: Install Prettier ๐พ @@ -35,14 +35,14 @@ jobs: - name: Upload html diff โฌ๏ธ id: artifact-upload if: ${{ failure() && steps.prettier.conclusion == 'failure' }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: HTML Diff path: diff.html retention-days: 7 - name: Dispatch information to repository ๐ฃ๏ธ if: ${{ failure() && steps.prettier.conclusion == 'failure' && github.event_name == 'pull_request' }} - uses: peter-evans/repository-dispatch@v2 + uses: peter-evans/repository-dispatch@v4 with: event-type: prettier-failed-on-pr client-payload: '{"pr_number": "${{ github.event.number }}", "artifact_url": "${{ steps.artifact-upload.outputs.artifact-url }}", "run_id": "${{ github.run_id }}"}' diff --git a/.github/workflows/update-citations.yml b/.github/workflows/update-citations.yml index 3335d7ec..838cc2ac 100644 --- a/.github/workflows/update-citations.yml +++ b/.github/workflows/update-citations.yml @@ -13,13 +13,13 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 # See CUSTOMIZE.md for details on how to set up PAT for triggering subsequent workflows # with: # token: ${{ secrets.PAT }} - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v6 with: python-version: "3.13" diff --git a/.github/workflows/update-tocs.yml b/.github/workflows/update-tocs.yml index 3567ee82..6da6aae1 100644 --- a/.github/workflows/update-tocs.yml +++ b/.github/workflows/update-tocs.yml @@ -18,13 +18,13 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 5 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 # OR "2" -> To retrieve the preceding commit. - name: Get changed files id: changed-files - uses: tj-actions/changed-files@ed68ef82c095e0d48ec87eccea555d944a631a4c # v46 + uses: tj-actions/changed-files@24d32ffd492484c1d75e0c0b894501ddb9d30d62 # v46 with: files: ./*.md @@ -45,6 +45,6 @@ jobs: - name: Commit changes if: steps.changed-files.outputs.any_changed == 'true' - uses: stefanzweifel/git-auto-commit-action@v5.0.1 + uses: stefanzweifel/git-auto-commit-action@v7.0.0 with: commit_message: Auto update markdown TOC diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 00000000..dd3e51c0 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,17 @@ +# Security Policy + +## Supported Versions + +| Version | Supported | +| ------- | ------------------ | +| 0.1.x | :white_check_mark: | +| 0.0.x | :x: | + +(not applicable, really) + +## Reporting a Vulnerability + +Please report any vulnerability as issue, with PR if possible. + +Updates on reported vulnerabilities are _not_ guaranteed to be dealt with in a timely fashion: if the vulnerability is accepted a patch will be deployed as soon as it is ready, when +declined the corresponding issue will be closed, possibly with an explanation. diff --git a/_config.yml b/_config.yml index 737e395e..00200e84 100644 --- a/_config.yml +++ b/_config.yml @@ -18,8 +18,8 @@ keywords: jekyll, jekyll-theme, academic-website, portfolio-website # add your o lang: en # the language of your site (for example: en, fr, cn, ru, etc.) icon: โ๏ธ # the emoji used as the favicon (alternatively, provide image name in /assets/img/) -url: https://alshedivat.github.io # the base hostname & protocol for your site -baseurl: /al-folio # the subpath of your site, e.g. /blog/. Leave blank for root +url: https://prosodiac.github.io # the base hostname & protocol for your site +baseurl: # the subpath of your site, e.g. /blog/. Leave blank for root last_updated: false # set to true if you want to display last updated in the footer impressum_path: # set to path to include impressum link in the footer, use the same path as permalink in a page, helps to conform with EU GDPR back_to_top: true # set to false to disable the back to top button diff --git a/_data/citations.yml b/_data/citations.yml index ad2436d6..8bc2d99b 100644 --- a/_data/citations.yml +++ b/_data/citations.yml @@ -1,5 +1,5 @@ metadata: - last_updated: '2026-01-05' + last_updated: '2026-02-20' papers: qc6CJjYAAAAJ:-1WLWRmjvKAC: citations: 4 @@ -18,7 +18,7 @@ papers: title: 'The Palestine Troubles: Einstein''s Protest, Zionism''s Basis and Achievement; the Mandatory''s Task' year: '1929' qc6CJjYAAAAJ:-LHtoeeytlUC: - citations: 2519 + citations: 2512 title: 'Albert Einstein: Philosopher Scientist' year: '1969' qc6CJjYAAAAJ:-R_Z4shfoosC: @@ -26,27 +26,27 @@ papers: title: 'Albert Einstein] to Paul Ehrenfest: Letter, 22 Jul 1917' year: Unknown Year qc6CJjYAAAAJ:-Viv1fr_sjoC: - citations: 143 + citations: 137 title: The special theory of relativity year: '1905' qc6CJjYAAAAJ:-_cDHGlXAtsC: - citations: 7846 + citations: 7970 title: Sitzungsberichte der Preussischen Akad. d year: '1917' qc6CJjYAAAAJ:-fj4grS0xi0C: - citations: 92 + citations: 90 title: 'Conceptions scientifiques, morales et sociales: traduit de l''anglais par Maurice Solovine' year: '1952' qc6CJjYAAAAJ:-l7FTdOV6Y0C: - citations: 193 + citations: 192 title: Brownian motion year: '1936' qc6CJjYAAAAJ:-qpA3cGbmHsC: - citations: 540 + citations: 533 title: On the Relation between the Expansion and the Mean Density of the Universe year: '1932' qc6CJjYAAAAJ:-vzq6BoH5oUC: - citations: 24 + citations: 23 title: "Bemerkung zu der Abhandlung von WR He\" Beitrag zur Theorie der Viskosit\xE4t heterogener Systeme\"" year: Unknown Year qc6CJjYAAAAJ:00hq1xGbIBsC: @@ -54,7 +54,7 @@ papers: title: In Memory of Emmy Noether, Visiting Professor of Mathematics, Bryn Mawr College, 1922-April 1935 year: Unknown Year qc6CJjYAAAAJ:041faMmbr2QC: - citations: 39 + citations: 43 title: La relatividad year: '1970' qc6CJjYAAAAJ:0765WKWsAZMC: @@ -62,7 +62,7 @@ papers: title: Remarks to the essays appearing in this collected volume year: '1951' qc6CJjYAAAAJ:08ZZubdj9fEC: - citations: 30 + citations: 32 title: 'Einstein''s 1912 manuscript on the special theory of relativity: a facsimile' year: '1996' qc6CJjYAAAAJ:0D9gKr9vLLUC: @@ -70,11 +70,11 @@ papers: title: Elementary Considerations on the Interpretation of the Foundations of Quantum Mechanics year: '2011' qc6CJjYAAAAJ:0EnyYjriUFMC: - citations: 1174 + citations: 1181 title: 'The Born Einstein Letters: correspondence between Albert Einstein and Max and Hedwig Born from 1916 to 1955 with commentaries by Max Born. Translated by Irene Born' year: '1971' qc6CJjYAAAAJ:0KZCP5UExFUC: - citations: 37 + citations: 35 title: 'Einstein''s Annalen papers: the complete collection 1901-1922' year: '2005' qc6CJjYAAAAJ:0KrOiVmbFBYC: @@ -82,7 +82,7 @@ papers: title: "Zeitungen gleichen Sparb\xFCchern: dass sie voll geschrieben sind, bedeutet noch nichts." year: Unknown Year qc6CJjYAAAAJ:0SnApaDgcCoC: - citations: 71 + citations: 66 title: podolsky B and Rosen N 1935 Phys year: Unknown Year qc6CJjYAAAAJ:0UEtxawf5sEC: @@ -110,7 +110,7 @@ papers: title: Correspondencia con Michele Besso:(1903-1955) year: '1994' qc6CJjYAAAAJ:0t1ZDozeHsAC: - citations: 4 + citations: 5 title: Essays in science year: '1954' qc6CJjYAAAAJ:0wD49__q8KEC: @@ -126,15 +126,15 @@ papers: title: "Albert Einstein] to Michael Pol\xE1nyi: Letter, 8 May 1915" year: Unknown Year qc6CJjYAAAAJ:17ZO-CJnx_8C: - citations: 241 + citations: 242 title: "Die Nordstr\xF6msche gravitationstheorie vom standpunkt des absoluten Differentialkalk\xFCls" year: '1914' qc6CJjYAAAAJ:1AS7WB7zg6gC: - citations: 80 + citations: 78 title: "L'\xE9ther et la th\xE9orie de la relativit\xE9" year: '1921' qc6CJjYAAAAJ:1DhOeZtQFr0C: - citations: 423 + citations: 491 title: Principle Points of the General Theory of Relativity year: '1918' qc6CJjYAAAAJ:1EM7I_rJWO4C: @@ -154,15 +154,15 @@ papers: title: "Albert Einstein] to Constantin Carath\xE9odory: Letter, 6 Sep 1916" year: Unknown Year qc6CJjYAAAAJ:1QLOHW2CHAAC: - citations: 91 + citations: 93 title: Letter to M Besso year: '1942' qc6CJjYAAAAJ:1cQOl6Zi554C: - citations: 14 + citations: 13 title: La lucha contra la guerra year: '1986' qc6CJjYAAAAJ:1l3MdapXzAoC: - citations: 392 + citations: 376 title: 'Hedwig und Max Born: Briefwechsel 1916-1955' year: '1969' qc6CJjYAAAAJ:1lB6hEDIqXYC: @@ -178,7 +178,7 @@ papers: title: Winter Inquiry Land year: Unknown Year qc6CJjYAAAAJ:1xBWf43XMUgC: - citations: 40 + citations: 38 title: "Ueber die thermodynamische Theorie der Potentialdifferenz zwischen Metallen und vollst\xE4ndig dissociirten L\xF6sungen ihrer Salze und \xFCber eine elektrische Methode zur Erforschung \u2026" year: '2005' qc6CJjYAAAAJ:2168PZyDXAcC: @@ -194,11 +194,11 @@ papers: title: "Die Einstein-Sammlung der ETH-Bibliothek in Z\xFCrich: ein Ueberblick f\xFCr Ben\xFCtzer der Handschriften-Abteilung" year: '1970' qc6CJjYAAAAJ:2C0LhDdYSbcC: - citations: 1491 + citations: 1513 title: "Le principe de relativit\xE9 et ses cons\xE9quences dans la physique moderne" year: '1910' qc6CJjYAAAAJ:2KloaMYe4IUC: - citations: 32 + citations: 31 title: The Einstein Reader year: '2006' qc6CJjYAAAAJ:2Q0AJrNhS-QC: @@ -210,7 +210,7 @@ papers: title: 'Albert Einstein] to Conrad Habicht: Letter, 15 Apr 1904' year: Unknown Year qc6CJjYAAAAJ:2ZctHUgIzyAC: - citations: 470 + citations: 460 title: "La g\xE9om\xE9trie et l'exp\xE9rience" year: '1921' qc6CJjYAAAAJ:2hfDYGh-f1UC: @@ -218,11 +218,11 @@ papers: title: Planck-Medaille year: '1928' qc6CJjYAAAAJ:2mus-XyGPC0C: - citations: 62 + citations: 35 title: Demonstration of the non-existence of gravitational fields with a non-vanishing total mass free of singularities year: '1941' qc6CJjYAAAAJ:35r97b3x0nAC: - citations: 6 + citations: 7 title: "Sur le probl\xE8me cosmologique: th\xE9orie de la gravitation g\xE9n\xE9ralis\xE9e" year: '1951' qc6CJjYAAAAJ:3ERjdSgnfPsC: @@ -246,11 +246,11 @@ papers: title: A generalization of the relativistic theory of gravitation, II year: '1946' qc6CJjYAAAAJ:3pYxbvHKFu8C: - citations: 276 + citations: 268 title: Briefwechsel 1916-1955 year: '1972' qc6CJjYAAAAJ:3s1wT3WcHBgC: - citations: 78 + citations: 74 title: A brief outline of the development of the theory of relativity year: '1921' qc6CJjYAAAAJ:3s2jc9hNhkQC: @@ -258,7 +258,7 @@ papers: title: Relativity in Newtonian Mechanics and the Michelson-Morley Experiment year: Unknown Year qc6CJjYAAAAJ:3vbIHxFL9FgC: - citations: 146 + citations: 344 title: "Experimenteller Nachweis der Amp\xE8reschen Molekularstr\xF6me" year: '1915' qc6CJjYAAAAJ:3z7foVzkq2cC: @@ -270,15 +270,15 @@ papers: title: Nachtrag zu meiner Arbeit:Thermodynamische Begruendung des photochemischen Aequivalentgesetzes'(from Annalen der Physik 1912) year: '1993' qc6CJjYAAAAJ:4Bh_hC5jS3YC: - citations: 6976 + citations: 7045 title: Graviton Mass and Inertia Mass year: '1911' qc6CJjYAAAAJ:4DMP91E08xMC: - citations: 533 + citations: 531 title: The Origins of the General Theory of Relativity year: '1933' qc6CJjYAAAAJ:4E1Y8I9HL1wC: - citations: 10 + citations: 7 title: Gravitationstheorie year: '1913' qc6CJjYAAAAJ:4EsMycecMEYC: @@ -290,23 +290,23 @@ papers: title: 'Albert Einstein] to Mileva Einstein-Maric: Letter, 17 Apr 1908' year: Unknown Year qc6CJjYAAAAJ:4JMBOYKVnBMC: - citations: 2905 + citations: 2922 title: Quantentheorie des einatomigen idealen Gases year: '1924' qc6CJjYAAAAJ:4QKQTXcH0q8C: - citations: 75 + citations: 76 title: "Kritisches zu einer von Hrn. de Sitter gegebenen L\xF6sung der Gravitationsgleichungen" year: '1918' qc6CJjYAAAAJ:4S6zbAYdD6oC: - citations: 14 + citations: 15 title: Naturwissenschaft und Religion year: '1960' qc6CJjYAAAAJ:4TOpqqG69KYC: - citations: 33 + citations: 34 title: 'Die Evolution der Physik: Von Newton bis zur Quantentheorie' year: '1956' qc6CJjYAAAAJ:4UtermoNRQAC: - citations: 51 + citations: 49 title: Autobiographische Skizze year: '1956' qc6CJjYAAAAJ:4ZjPyBmb-CUC: @@ -318,7 +318,7 @@ papers: title: Einstein on science year: '2000' qc6CJjYAAAAJ:4fKUyHm3Qg0C: - citations: 62 + citations: 69 title: 'Albert Einstein, Mileva Maric: The Love Letters' year: '2000' qc6CJjYAAAAJ:4hFrxpcac9AC: @@ -326,7 +326,7 @@ papers: title: "L'heure H at-elle sonn\xE9 pour le monde?: Effets accumulatifs des explosions nucl\xE9aires" year: '1955' qc6CJjYAAAAJ:4oJvMfeQlr8C: - citations: 20 + citations: 21 title: Vorschlag zu einem die Natur des elementaren Strahlungs-Emissionsprozesses betreffenden Experiment year: '1926' qc6CJjYAAAAJ:4sHRCyKql0sC: @@ -346,11 +346,11 @@ papers: title: 'Einstein, the Man and His Achievement: A Series of Broadcast Talks' year: '1967' qc6CJjYAAAAJ:5-tCjTwfAdEC: - citations: 455 + citations: 450 title: "Die Relativit\xE4tstheorie" year: '1915' qc6CJjYAAAAJ:5Hlrm_bZEgcC: - citations: 13 + citations: 14 title: "Einstein und \xD6sterreich: nach einem Vortrag in der Chemisch-Physikalischen Gesellschaft zu Wien im April 1979, hundert Jahre nach der Geburt des gro\xDFen Meisters" year: '1980' qc6CJjYAAAAJ:5LOebrzo1TYC: @@ -358,15 +358,15 @@ papers: title: 'Albert Einstein] to Hendrik A. Lorentz: Letter, 1 Jan 1916' year: Unknown Year qc6CJjYAAAAJ:5LPo_wSKItgC: - citations: 103 + citations: 110 title: "Bemerkung zu der Arbeit von A. Friedmann \u201E\xDCber die Kr\xFCmmung des Raumes \u201C" year: '1922' qc6CJjYAAAAJ:5McdzzY_mmwC: - citations: 42 + citations: 39 title: Correspondence 1916-1955 [entre] Albert Einstein, Max Born et Hedwig Born year: '1972' qc6CJjYAAAAJ:5UUbrqTvKfUC: - citations: 0 + citations: 1 title: Dr. Albert Einstein and American Colleagues, 1931 year: '1949' qc6CJjYAAAAJ:5Y1KH4bkPm0C: @@ -374,7 +374,7 @@ papers: title: 'Albert Einstein] to Carl Heinrich Becker: Letter, 25 Nov 1918' year: Unknown Year qc6CJjYAAAAJ:5Y7y0xowK3MC: - citations: 9 + citations: 10 title: "Fisica e realt\xE0" year: '1965' qc6CJjYAAAAJ:5awf1xo2G04C: @@ -386,19 +386,19 @@ papers: title: 'Albert Einstein] to Emil Beck: Letter, 30 Apr 1917' year: Unknown Year qc6CJjYAAAAJ:5bGIVMdsOr0C: - citations: 173 + citations: 172 title: My theory year: '1919' qc6CJjYAAAAJ:5pGZGXnFQ_sC: - citations: 9904 + citations: 10076 title: Sitzungsber. K year: '1925' qc6CJjYAAAAJ:5qfkUJPXOUwC: - citations: 160 + citations: 213 title: Unified field theory of gravitation and electricity year: '1925' qc6CJjYAAAAJ:5rMqqAh47xYC: - citations: 26 + citations: 23 title: "Pr\xFCfung der allgemeinen Relativit\xE4tstheorie" year: '1919' qc6CJjYAAAAJ:5y95FQUaxGgC: @@ -414,11 +414,11 @@ papers: title: 'Doctrines about the Universe: With Proof in the Form of a Letter to the Public and to Professor Einstein' year: '1821' qc6CJjYAAAAJ:6CdnuHuKHxIC: - citations: 79 + citations: 80 title: Refrigeration year: '1927' qc6CJjYAAAAJ:6DS7WFnF4J4C: - citations: 138 + citations: 137 title: Koniglich Preussische Akademie der Wissenschaften year: '1983' qc6CJjYAAAAJ:6Dd5luMImnEC: @@ -438,7 +438,7 @@ papers: title: "Conceptos, ambientes de aprendizaje:\xBF c\xF3mo aprendemos los humanos en diferentes contextos? Waleska Aldana Segura" year: Unknown Year qc6CJjYAAAAJ:6ftYtcnYaCAC: - citations: 335 + citations: 332 title: Ather and Relativitatstheorie. J year: '1920' qc6CJjYAAAAJ:6gD0efnhv6MC: @@ -450,15 +450,15 @@ papers: title: "La ley de gravitaci\xF3n de Einstein a prop\xF3sito de algunas cr\xEDticas recientes" year: '1927' qc6CJjYAAAAJ:6tHXJaRVc1QC: - citations: 95 + citations: 98 title: Sobranie nauchnykh trudov year: '1967' qc6CJjYAAAAJ:70eg2SAEIzsC: - citations: 61 + citations: 58 title: "Bietet die feldtheorie M\xF6glichkeiten f\xFCr die L\xF6sung des Quantenproblems?" year: '1923' qc6CJjYAAAAJ:7DJsn6tmoAwC: - citations: 322 + citations: 319 title: "\xC4ther und Relativit\xE4ts-theorie" year: '1920' qc6CJjYAAAAJ:7DTIKO_nxaIC: @@ -466,7 +466,7 @@ papers: title: 'Albert Einstein] to Hans Albert Einstein: Letter, 8 Jan 1917' year: Unknown Year qc6CJjYAAAAJ:7VEv-pLvLSsC: - citations: 337 + citations: 341 title: "Elementare Betrachtungen \xFCber die thermische Molekularbewegung in festen K\xF6rpern" year: '1911' qc6CJjYAAAAJ:7XUxBq3GufIC: @@ -478,7 +478,7 @@ papers: title: 'On the Non-existence of Regular Stationary Solutions of Relativistic Field Equations: Annals of Mathematics, Vol. 44, No. 2, April 1943;(received January 4, 1943)' year: '1943' qc6CJjYAAAAJ:7bRg-L-9LFcC: - citations: 15 + citations: 13 title: How I see the world year: '1991' qc6CJjYAAAAJ:7eciy3tyNvQC: @@ -486,15 +486,15 @@ papers: title: Strahlungs-Emission und-Absorption nach der Quantentheorie, 17 Jul 1916 year: Unknown Year qc6CJjYAAAAJ:7gse_HdimRUC: - citations: 8 + citations: 9 title: Why Do They Hate the Jews? year: '1938' qc6CJjYAAAAJ:7hTFQKV_Y-MC: - citations: 9 + citations: 8 title: 'Human Folly: To Disarm Or Perish?' year: '1955' qc6CJjYAAAAJ:7ioeYXKzaWoC: - citations: 29 + citations: 27 title: Komptonsche Experiment year: '1924' qc6CJjYAAAAJ:7q08wCQPkLwC: @@ -506,7 +506,7 @@ papers: title: 'Albert Einstein] to Johannes Stark: Letter, 17 Feb 1908' year: Unknown Year qc6CJjYAAAAJ:8AbLer7MMksC: - citations: 817 + citations: 57 title: 'The Collected Papers of Albert Einstein, Vol. 5: The Swiss Years: Correspondence, 1902-1914' year: '1995' qc6CJjYAAAAJ:8NHCvSvNRCIC: @@ -534,19 +534,19 @@ papers: title: Otto Stern Papers year: '1968' qc6CJjYAAAAJ:8aAMN6PqWdYC: - citations: 36 + citations: 34 title: "Sobre el humanismo: Escritos sobre pol\xEDtica, sociedad y ciencia" year: '1995' qc6CJjYAAAAJ:8dmKnlANe1sC: - citations: 2 + citations: 0 title: The Arabs and Palestine year: '1944' qc6CJjYAAAAJ:8gBurD7jEYQC: - citations: 9 + citations: 8 title: "Bemerkung zu der Arbeit von D. Mirimanoff \u201E\xDCber die Grundgleichungen\u2026\u201D \uFE01" year: '1909' qc6CJjYAAAAJ:8k81kl-MbHgC: - citations: 378 + citations: 374 title: Essays in science year: '2011' qc6CJjYAAAAJ:8moDcb_GFzgC: @@ -554,11 +554,11 @@ papers: title: 'Albert Einstein] to Erwin Freundlich: Letter, 19 Mar 1915' year: Unknown Year qc6CJjYAAAAJ:8p-ueveQw4wC: - citations: 9 + citations: 12 title: "Ciencia y religi\xF3n" year: '1984' qc6CJjYAAAAJ:8p8iYwVyaVcC: - citations: 26 + citations: 52 title: "Bemerkung zu der Franz Seletyschen Arbeit\u201D \uFE01Beitr\xE4ge zum kosmologischen System \u201E" year: '1922' qc6CJjYAAAAJ:8s22W2WWFy4C: @@ -566,7 +566,7 @@ papers: title: "Die Einstein-Dokumente im Archiv der Humboldt-Universit\xE4t zu Berlin" year: '1973' qc6CJjYAAAAJ:94rQ0kDLHKYC: - citations: 4531 + citations: 4514 title: Evolution of Physics year: '1954' qc6CJjYAAAAJ:9CGX2owmTHMC: @@ -574,15 +574,15 @@ papers: title: DIE NATLIRWISSENSCHAFTEN year: Unknown Year qc6CJjYAAAAJ:9LpHyFPp1DQC: - citations: 523 + citations: 550 title: "Riemann\u2010Geometrie mit Aufrechterhaltung des Begriffes des Fernparallelismus" year: '1928' qc6CJjYAAAAJ:9N3KX2BFTccC: - citations: 103 + citations: 99 title: Elementare Uberlegungen zur Interpretation der Grundlagen der Quanten-Mechanik year: '1953' qc6CJjYAAAAJ:9PbDelcLwNgC: - citations: 36 + citations: 34 title: On the theory of light production and light absorption year: '1906' qc6CJjYAAAAJ:9QTmwX2E1jEC: @@ -594,7 +594,7 @@ papers: title: On the general molecular theory of heat year: '1904' qc6CJjYAAAAJ:9bzyojSiTPoC: - citations: 4 + citations: 3 title: Pump, especially for refrigerating machine year: '1931' qc6CJjYAAAAJ:9fSugHr6AN8C: @@ -610,7 +610,7 @@ papers: title: "Cum v\u0103d eu lumea: o antologie" year: '1992' qc6CJjYAAAAJ:9tJtKg94vZsC: - citations: 206 + citations: 209 title: Do gravitational fields play an essential role in the structure of elementary particles? year: '1919' qc6CJjYAAAAJ:9tletLqOvukC: @@ -618,11 +618,11 @@ papers: title: "Fizika i real\u02B9nost\u02B9: sbornik state\u012D" year: '1965' qc6CJjYAAAAJ:9u2w3wkYHSMC: - citations: 92 + citations: 95 title: "Maxwell\u2019s influence on the development of the conception of physical reality" year: '1931' qc6CJjYAAAAJ:9xDRhSErrBIC: - citations: 89 + citations: 90 title: "Letter to Schr\xF6dinger" year: '1950' qc6CJjYAAAAJ:9xhnSCvx0jcC: @@ -630,7 +630,7 @@ papers: title: 'Albert Einstein] to Edgar Meyer: Letter, after 12 Oct 1918' year: Unknown Year qc6CJjYAAAAJ:A5aiAONn640C: - citations: 20 + citations: 19 title: Religion und Wissenschaft year: '1930' qc6CJjYAAAAJ:A8NefVh_EAoC: @@ -650,19 +650,19 @@ papers: title: "Einstein: \u0111\u1EDDi song v\xE0 t\u01AF\u1EDFng" year: '1982' qc6CJjYAAAAJ:AQkP-AuIKnwC: - citations: 12 + citations: 13 title: La relativit# a speciale year: '1920' qc6CJjYAAAAJ:AVQCy-ZCKIsC: - citations: 109 + citations: 112 title: "Planck\u2019s theory of radiation and the theory of specific heat" year: '1907' qc6CJjYAAAAJ:AYaE08C4-t8C: - citations: 17 + citations: 23 title: Prinzipien der Forschung year: '1918' qc6CJjYAAAAJ:A_-8YG8SPFQC: - citations: 12 + citations: 13 title: 'Albert Einstein] to Michele Besso: Letter, 11 Aug 1916' year: Unknown Year qc6CJjYAAAAJ:A_xf8jiGkywC: @@ -670,15 +670,15 @@ papers: title: 'Albert Einstein] to Wander de Haas: Letter, 7 Aug 1915' year: Unknown Year qc6CJjYAAAAJ:AbQWx2m_oG8C: - citations: 22 + citations: 23 title: "\xDCber ein den Elementarproze\xC3\u0178 der Lichtemission betreffendes Experiment" year: '1921' qc6CJjYAAAAJ:AdUz3-SiDfgC: - citations: 96 + citations: 88 title: 'Letters on Absolute Parallelism, 1929-1932: Correspondence Between Elie Cartan and Albert Einstein' year: '1979' qc6CJjYAAAAJ:AeQkyvggb0MC: - citations: 84 + citations: 88 title: The Theory of Opalescence of Homogeneous Liquids and Liquid Mixtures Near the Critical State year: '1993' qc6CJjYAAAAJ:Amrzk_ktLr0C: @@ -690,11 +690,11 @@ papers: title: Bivector fields year: '1944' qc6CJjYAAAAJ:B3FOqHPlNUQC: - citations: 24 + citations: 23 title: "Elektron und allgemeine Relativit\xE4tstheorie" year: '1925' qc6CJjYAAAAJ:BCdnXsLIVDwC: - citations: 26 + citations: 27 title: "Bemerkung zu P. Jordans Abhandlung \u201EZur Theorie der Quantenstrahlung\u201D" year: '1925' qc6CJjYAAAAJ:BJrLMYCRBhgC: @@ -702,15 +702,15 @@ papers: title: "Prinzipielles zur verallgemeinerten Relativit\xE4tstheorie und Gravitationstheorie.(German)" year: Unknown Year qc6CJjYAAAAJ:BPS1z4jHU5cC: - citations: 63 + citations: 59 title: "Zu Kaluzas Theorie des Zusammenhanges von Gravitation und Elektrizit\xE4t. Erste Mitteilung" year: '2006' qc6CJjYAAAAJ:BUYA1_V_uYcC: - citations: 116 + citations: 110 title: "La th\xE9orie de la relativit\xE9 restreinte et g\xE9n\xE9rale" year: '1990' qc6CJjYAAAAJ:BW2nPTmhBn4C: - citations: 285 + citations: 290 title: "\xDCber die im elektromagnetischen Felde auf ruhende K\xF6rper ausge\xFCbten ponderomotorischen Kr\xE4fte" year: '1908' qc6CJjYAAAAJ:BbFSz4cl-9EC: @@ -718,7 +718,7 @@ papers: title: VI. GRAVITATIONAL WAVES year: '1979' qc6CJjYAAAAJ:BjLbhSWBl98C: - citations: 200 + citations: 209 title: "Experimental proof of the existence of Amp\xE8re's molecular currents" year: '1915' qc6CJjYAAAAJ:BnRbUGEozz8C: @@ -726,7 +726,7 @@ papers: title: 'Albert Einstein] to Willem de Sitter: Letter, before 12 Mar 1917' year: Unknown Year qc6CJjYAAAAJ:BqipwSGYUEgC: - citations: 186 + citations: 188 title: Elementary derivation of the equivalence of mass and energy year: '1935' qc6CJjYAAAAJ:BtfE7wd9KvMC: @@ -734,7 +734,7 @@ papers: title: "Meine Antwort. Ueber die anti-relativit\xE4tstheoretische GmbH" year: '1920' qc6CJjYAAAAJ:BxcezVm2apwC: - citations: 9 + citations: 11 title: "Sur la th\xE9orie des quantit\xE9s lumineuses et la question de la localisation de l'\xE9nergie \xE9lectromagn\xE9tique" year: '1910' qc6CJjYAAAAJ:C-GuzCveMkwC: @@ -754,11 +754,11 @@ papers: title: Antrittsrede und Erwiderung von Max Planck am Leibniztag year: '2006' qc6CJjYAAAAJ:CC3C2HR4nz8C: - citations: 65 + citations: 61 title: "F\u0131sica e realidade" year: '2006' qc6CJjYAAAAJ:CCeGMaHljPEC: - citations: 58 + citations: 56 title: Zur affinen Feldtheorie year: '2006' qc6CJjYAAAAJ:CLPBug3NTQYC: @@ -766,15 +766,15 @@ papers: title: 'Albert Einstein] to Paul Seippel: Letter, 19 Aug 1917' year: Unknown Year qc6CJjYAAAAJ:CLQ-NLsb8zAC: - citations: 3110 + citations: 3122 title: Ideas and Opinions year: '1954' qc6CJjYAAAAJ:COU-sansr_wC: - citations: 101 + citations: 94 title: "Elie Cartan-Albert Einstein: lettres sur le parall\xE9lisme absolu 1929-1932" year: '1979' qc6CJjYAAAAJ:CQX_Vi8q7s0C: - citations: 1974 + citations: 1940 title: Introduction Einstein's Relativity year: '1992' qc6CJjYAAAAJ:CRQ797xmLJIC: @@ -786,15 +786,15 @@ papers: title: "Der Energiesatz in der allgemeinen Relativit\xE4tstheorie" year: '1918' qc6CJjYAAAAJ:CXI6bF9CpJ4C: - citations: 72 + citations: 70 title: "Untersuchungen \xFCber die Theorie der Brownschen Bewegung/Abhandlungen \xFCber die Brownsche Bewegung und verwandte Erscheinungen" year: '1999' qc6CJjYAAAAJ:CY3uIpTmi-gC: - citations: 125 + citations: 147 title: Einstein on Cosmic Religion and Other Opinions and Aphorisms year: '2009' qc6CJjYAAAAJ:CmbFvBriOyMC: - citations: 197 + citations: 185 title: "O significado da relatividade: com a teoria relativista do campo n\xE3o sim\xE9trico" year: '1958' qc6CJjYAAAAJ:CmeMDzcFUg4C: @@ -802,7 +802,7 @@ papers: title: LA GUERRE ILLEGALE CONTRE L'IRAK year: '2004' qc6CJjYAAAAJ:Cn5sofW4b3YC: - citations: 13 + citations: 9 title: "\xDCber die Untersuchung des \xC4therzustandes im magnetischen Felde" year: '1971' qc6CJjYAAAAJ:CoqsOaBEKcQC: @@ -814,11 +814,11 @@ papers: title: On the moral obligation of the scientist year: '1945' qc6CJjYAAAAJ:Cv-mv52rCCkC: - citations: 5216 + citations: 5230 title: On the motion of particles suspended in a liquid at rest, assumed by the molecular-kinetic theory of heat year: '1905' qc6CJjYAAAAJ:Cx2ibDnldiAC: - citations: 38 + citations: 37 title: On the quantum mechanics of radiation year: '1917' qc6CJjYAAAAJ:Cy13deThEpcC: @@ -846,7 +846,7 @@ papers: title: Theoretische Atomistik year: '1915' qc6CJjYAAAAJ:DIubQTN3OvUC: - citations: 130 + citations: 128 title: "Kovarianzeigenschaften der Feldgleichungen der auf die verallgemeinerte Relativit\xE4tstheorie gegr\xFCndeten Gravitationstheorie" year: '1914' qc6CJjYAAAAJ:DOLguN9Lh8sC: @@ -858,11 +858,11 @@ papers: title: Jarbuch der Radioaktivitat und Elektronik, 4, 411 (1907), reprinted in The Collected Papers of A. Einstein, vol. 2, 252 year: '1989' qc6CJjYAAAAJ:DQNrXyjhriIC: - citations: 2715 + citations: 2803 title: Die feldgleichungen der gravitation year: '1915' qc6CJjYAAAAJ:D_sINldO8mEC: - citations: 27 + citations: 26 title: Essays in humanism year: '2011' qc6CJjYAAAAJ:DejRBzv9GVYC: @@ -882,7 +882,7 @@ papers: title: 'Albert Einstein] to Arnold Sommerfeld: Letter, 9 Dec 1915' year: Unknown Year qc6CJjYAAAAJ:Dqu_ECg3lNoC: - citations: 4 + citations: 5 title: "Bemerkung zu meiner Arbeit:\u201EEine Beziehung zwischen dem elastischen Verhalten\u2026\u201D \uFE01" year: '2006' qc6CJjYAAAAJ:DrOLxFoABAwC: @@ -890,7 +890,7 @@ papers: title: 'The Origins of the General Theory of Relativity: Being the First Lecture on the George A. Gibson Foundation in the University of Glasgow, Delivered on June 20th, 1933' year: '1933' qc6CJjYAAAAJ:DtORCzn_ASQC: - citations: 101 + citations: 102 title: Quantum mechanics and reality year: '1948' qc6CJjYAAAAJ:DxlTmyU89zoC: @@ -918,7 +918,7 @@ papers: title: 'Albert Einstein] to Paul Ehrenfest: Letter, 8 Jul 1914' year: Unknown Year qc6CJjYAAAAJ:EF0m1YoOS5EC: - citations: 2 + citations: 3 title: Formal Relationship of the Riemannian Curvature Tensor to the Field Equations of Gravity year: '1927' qc6CJjYAAAAJ:EMrlLOzmm-AC: @@ -938,7 +938,7 @@ papers: title: 'Albert Einstein] to Romain Rolland: Letter, 22 Mar 1915' year: Unknown Year qc6CJjYAAAAJ:EYYDruWGBe4C: - citations: 152 + citations: 223 title: "The Collected Papers of Albert Einstein, Vol. 2, The Swiss Years: Writings, 1900\u20131909 (English Translation Supplement)" year: '1989' qc6CJjYAAAAJ:Ecsxi449JjsC: @@ -946,7 +946,7 @@ papers: title: "Sur le probl\xE8me de la formation de la personnalit\xE9 cr\xE9atrice d'Einstein." year: Unknown Year qc6CJjYAAAAJ:Ei5r6KrKXVQC: - citations: 1459 + citations: 1498 title: "Theorie der Opaleszenz von homogenen Fl\xFCssigkeiten und Fl\xFCssigkeitsgemischen in der N\xE4he des kritischen Zustandes" year: '2006' qc6CJjYAAAAJ:EpJ50YjRFhcC: @@ -962,7 +962,7 @@ papers: title: Matter, Fields of Information, and Incompleteness year: '1998' qc6CJjYAAAAJ:EsO17nB32j8C: - citations: 18 + citations: 19 title: Theory of the Opalescence of Homogeneous and of Mixed Liquids in the Neighborhood of the Critical Region year: '1910' qc6CJjYAAAAJ:EsrhoZGmrkoC: @@ -978,7 +978,7 @@ papers: title: Abstracts of Three Lectures on Relativity Delivered at Princeton University... May 11-13, 1921 year: '1921' qc6CJjYAAAAJ:F1-V36_CjEsC: - citations: 90 + citations: 85 title: Generation and conversion of light with regard to a heuristic point of view year: '1905' qc6CJjYAAAAJ:F4gwyMVh_r0C: @@ -986,11 +986,11 @@ papers: title: 'Einstein: Science and Religion' year: Unknown Year qc6CJjYAAAAJ:FKYJxdYMdFIC: - citations: 905 + citations: 980 title: "The Collected Papers of Albert Einstein, Volume 15 (Translation Supplement): The Berlin Years: Writings & Correspondence, June 1925\u2013May 1927" year: '2018' qc6CJjYAAAAJ:FKzTm0Bp8ZYC: - citations: 64 + citations: 74 title: Oeuvres choisies year: '1991' qc6CJjYAAAAJ:FP-YCU5gdjEC: @@ -1010,11 +1010,11 @@ papers: title: Impact of Science on the Development of Pacifism, before 9 Dec 1921 year: Unknown Year qc6CJjYAAAAJ:FTNwVkz-CAMC: - citations: 79 + citations: 80 title: Outline of a generalized theory of relativity and of a theory of gravitation year: '1913' qc6CJjYAAAAJ:FV77Gu53xKkC: - citations: 111 + citations: 120 title: the Theory of Gravitation year: '1974' qc6CJjYAAAAJ:FcH-RsB9iB0C: @@ -1058,11 +1058,11 @@ papers: title: "Vom Relativit\xE4ts-Prinzip, 26 Apr 1914" year: '2003' qc6CJjYAAAAJ:FzKuKYQlbrwC: - citations: 39 + citations: 36 title: Systematische Untersuchung fiber kompatible Feldgleichungen, welche von einem Riemannschen Raum mit Fernparallelismus gesetzt werden k6nnen year: '1931' qc6CJjYAAAAJ:G36d5HCDkJYC: - citations: 211 + citations: 214 title: Remarks on Bertrand Russell's theory of knowledge year: '1946' qc6CJjYAAAAJ:GCDlZl827dEC: @@ -1078,7 +1078,7 @@ papers: title: 'HA Lorentz: His Creative Genius and His Personality' year: '1953' qc6CJjYAAAAJ:GJVTs2krol4C: - citations: 131 + citations: 136 title: "Theoretische bemerkungen \xFCber die brownsche bewegung" year: '2010' qc6CJjYAAAAJ:GO2DTSf4MZMC: @@ -1086,7 +1086,7 @@ papers: title: Souvenir of the Einstein Meeting at the Royal Albert Hall, Tuesday, October 3, 1933 year: '1933' qc6CJjYAAAAJ:GO5CT2y9xrEC: - citations: 11 + citations: 14 title: Lettres d'amour et de science year: '1993' qc6CJjYAAAAJ:GOtIa6ILFcwC: @@ -1094,7 +1094,7 @@ papers: title: On Boltzmann's Principle and Some Immediate Consequences Thereof Translation by Bertrand Duplantier and Emily Parks from the original German text into French and English year: '2006' qc6CJjYAAAAJ:GUYAmugLYisC: - citations: 14 + citations: 10 title: "Bemerkungen zu unserer Arbeit:\u201E\xDCber die elektromagnetischen Grundgleichungen f\xFCr bewegte K\xF6rper\u201D \uFE01" year: '2006' qc6CJjYAAAAJ:GZelqfngyKEC: @@ -1102,7 +1102,7 @@ papers: title: Correspondence between Barrie Stavis and Albert Einstein year: '1990' qc6CJjYAAAAJ:GfAJFcoWUJEC: - citations: 52 + citations: 48 title: "\xDCber den gegenw\xE4rtigen Stand der Feld-Theorie" year: '1929' qc6CJjYAAAAJ:GgDznaKzj2MC: @@ -1110,7 +1110,7 @@ papers: title: "El gobierno de Felipe Calder\xF3n\xBF hacia un desarrollo humano sustentable? Susana Garcia jimenez" year: Unknown Year qc6CJjYAAAAJ:GnPB-g6toBAC: - citations: 172 + citations: 161 title: Einstein on peace year: '1968' qc6CJjYAAAAJ:GpOSJs1ZbLkC: @@ -1118,19 +1118,19 @@ papers: title: 'Zitate Aus Mein Weltbild: Sieben Radierungen Von Terry Haass' year: '1975' qc6CJjYAAAAJ:Gpwnp1kGG20C: - citations: 236 + citations: 255 title: Ernst Mach year: '1916' qc6CJjYAAAAJ:Grx829lh2T4C: - citations: 3012 + citations: 3029 title: Quantum theory of monatomic ideal gases year: '1924' qc6CJjYAAAAJ:GsgvGxwuA5UC: - citations: 17 + citations: 16 title: 'Correspondance 1903-1955: Albert Einstein, Michele Besso' year: '1979' qc6CJjYAAAAJ:GtLg2Ama23sC: - citations: 10 + citations: 19 title: "L'\xE9ther et la th\xE9orie de la relativit\xE9: La g\xE9om\xE9trie et l'exp\xE9rience" year: '1964' qc6CJjYAAAAJ:GtszHNlY0egC: @@ -1142,7 +1142,7 @@ papers: title: "Theorien verborgener Parameter, EPR-Korrelationen, Bell\u2019sche Ungleichung, GHZ-Zust ande" year: '1999' qc6CJjYAAAAJ:GzlcqhCAosUC: - citations: 495 + citations: 483 title: "QUANTEN\u2010MECHANIK UND WIRKLICHKEIT" year: '1948' qc6CJjYAAAAJ:H-nlc5mcmJQC: @@ -1154,7 +1154,7 @@ papers: title: Science Fiction and Fantasy year: '1980' qc6CJjYAAAAJ:H4IpxOyCX80C: - citations: 184 + citations: 174 title: "L'\xE9volution des id\xE9es en physique" year: '1963' qc6CJjYAAAAJ:HKviVsUxM5wC: @@ -1162,7 +1162,7 @@ papers: title: "Bemerkung zu Abrahams vorangehender Auseinandersetzung \u201ENochmals Relativit\xE4t und Gravitation\u201D \uFE01" year: '2006' qc6CJjYAAAAJ:HM9HXerLlEkC: - citations: 7 + citations: 6 title: Vincenzo Bellini year: '1935' qc6CJjYAAAAJ:HPvNdXBGwkEC: @@ -1174,19 +1174,19 @@ papers: title: Out of the Darkness/A Way Forward by Tom Parish year: Unknown Year qc6CJjYAAAAJ:HjGq7OYTVFUC: - citations: 5 + citations: 6 title: Riemann-Metrik mit Aufrechterhaltung des Begriffes der Fern-parallelismus, Preuss year: '1928' qc6CJjYAAAAJ:HklM7qHXWrUC: - citations: 455 + citations: 450 title: "Die Relativit\xE4tstheorie" year: '1925' qc6CJjYAAAAJ:Hl4CZ0n6gBQC: - citations: 20594 + citations: 21162 title: Uber einen die Erzeugung und Verwandlung des Lichtes betreffenden heurischen Gesichtpunkt year: '1905' qc6CJjYAAAAJ:HtEfBTGE9r8C: - citations: 182 + citations: 176 title: "La f\xEDsica: aventura del pensamiento" year: '1939' qc6CJjYAAAAJ:Hx6RvaqUy9IC: @@ -1194,11 +1194,11 @@ papers: title: 'Science: Conjectures and Refutations' year: '1997' qc6CJjYAAAAJ:HygtOXotxAUC: - citations: 184 + citations: 43 title: "Sur l'\xE9lectrodynamique des corps en mouvement" year: '1925' qc6CJjYAAAAJ:I6TX2FUo6loC: - citations: 91 + citations: 88 title: Theodore von Karman Anniversary Volume year: '1941' qc6CJjYAAAAJ:I8ubwoE7ciMC: @@ -1206,15 +1206,15 @@ papers: title: Zur Abwehr year: '1921' qc6CJjYAAAAJ:I9gX6wnfuA8C: - citations: 325 + citations: 322 title: "\xC4ther und Relativit\xE4tstheorie: Rede gehalten am 5. Mai 1920 an der Reichs-Universit\xE4t zu Leiden" year: '1920' qc6CJjYAAAAJ:IEpB_1CIIT4C: - citations: 3888 + citations: 3884 title: 'THE EVOLUTION OF PHYSICS: THE GROWTH OF IDEAS FROM THE EARLY CON CEPTS TO RELATIVITY AND QUANTA.' year: '1938' qc6CJjYAAAAJ:IHkkN1K1AlAC: - citations: 63 + citations: 65 title: "Beitr\xE4ge zur Quantentheorie" year: '1914' qc6CJjYAAAAJ:IMJZBBnUFLgC: @@ -1222,11 +1222,11 @@ papers: title: 'Albert Einstein] to Werner Weisbach: Letter, 14 Oct 1916' year: Unknown Year qc6CJjYAAAAJ:IT1MJ6E3JesC: - citations: 60 + citations: 59 title: Sehallausbreitung in teilweise disseziierten Gasen. year: '1920' qc6CJjYAAAAJ:IWHjjKOFINEC: - citations: 708 + citations: 770 title: Cosmological considerations on the general theory of relativity year: '1986' qc6CJjYAAAAJ:IZKZNMMMWs0C: @@ -1242,11 +1242,11 @@ papers: title: 'Albert Einstein] to Elsa Einstein: Letter, 30 Aug 1915' year: Unknown Year qc6CJjYAAAAJ:IfvCfoBprpQC: - citations: 773 + citations: 13 title: 'The collected papers of Albert Einstein. Vol 4, The Swiss years: writings, 1912-1914 [English translation]' year: Unknown Year qc6CJjYAAAAJ:IjCSPb-OGe4C: - citations: 1372 + citations: 1382 title: The gravitational equations and the problem of motion year: '1938' qc6CJjYAAAAJ:IkxDsZK-5NQC: @@ -1258,15 +1258,15 @@ papers: title: 'Zu Max Plancks sechzegstem Geburtstag: Ansprachen, gehalten am 26. April 1918 in der Deutschen Physikalischen Gesellschaft' year: '1918' qc6CJjYAAAAJ:IqrShC7OVU0C: - citations: 6364 + citations: 6411 title: Investigations on the theory of the Brownian movement, edited with notes by R year: '1926' qc6CJjYAAAAJ:IvSMUa3B7yYC: - citations: 6 + citations: 8 title: "Berichtigung zur Abhandlung:\u201E\xDCber die elektromagnetischen Grundgleichungen f\xFCr bewegte K\xF6rper\u201D \uFE01" year: '1908' qc6CJjYAAAAJ:J-pR_7NvFogC: - citations: 27 + citations: 830 title: 'The Swiss Years: Writings, 1914-1917' year: '1996' qc6CJjYAAAAJ:J4wmHkHhN-kC: @@ -1274,23 +1274,23 @@ papers: title: Memorial to Dr. David Eder year: '1936' qc6CJjYAAAAJ:JQOojiI6XY0C: - citations: 17 + citations: 16 title: Tables of Einstein Functions year: '1962' qc6CJjYAAAAJ:JQPmwQThujIC: - citations: 470 + citations: 460 title: "La g\xE9om\xE9trie et l'exp\xE9rience, par Albert Einstein; traduit par Maurice Solovine" year: '1921' qc6CJjYAAAAJ:JXi_AgyUMBAC: - citations: 101 + citations: 98 title: Relativistic theory of the non-symmetric field year: '1955' qc6CJjYAAAAJ:JZsVLox4iN8C: - citations: 2417 + citations: 2415 title: 'Autobiographisches in: Albert Einstein: Philosopher-Scientist' year: '1949' qc6CJjYAAAAJ:J_g5lzvAfSwC: - citations: 125 + citations: 131 title: Warum Krieg? year: '1972' qc6CJjYAAAAJ:JjPkQosUWiAC: @@ -1302,7 +1302,7 @@ papers: title: "La teor\xEDa de la relatividad especial y general al alcance de todos" year: '1923' qc6CJjYAAAAJ:JoZmwDi-zQgC: - citations: 29 + citations: 28 title: Das Raum-Feld-und Aether-Problem in der Physik year: '1930' qc6CJjYAAAAJ:K-tzbvM8PMoC: @@ -1314,7 +1314,7 @@ papers: title: Fundamental ideas and problems of the theory of relativity year: '2009' qc6CJjYAAAAJ:K4-iKlO5MD4C: - citations: 692 + citations: 716 title: A Heuristic Viewpoint Concerning the Production and Transformation of Light year: '1929' qc6CJjYAAAAJ:K6kyChav4UkC: @@ -1338,11 +1338,11 @@ papers: title: Planck units and wave-particle duality year: Unknown Year qc6CJjYAAAAJ:KIRwYnRZzWQC: - citations: 6 + citations: 5 title: Why socialism? year: '1951' qc6CJjYAAAAJ:KOc9rAu6-V4C: - citations: 373 + citations: 393 title: letter to Max Born year: '1926' qc6CJjYAAAAJ:KQ7zX_ltr48C: @@ -1354,7 +1354,7 @@ papers: title: Physiology and Pathophysiology of the Heart year: '1990' qc6CJjYAAAAJ:KVXOKlNwS8oC: - citations: 61 + citations: 62 title: 'Briefwechsel [zwischen] Albert Einstein und Arnold Sommerfeld: sechzig Briefe aus dem goldenen Zeitalter der modernen Physik' year: '1968' qc6CJjYAAAAJ:Kaaf24wrr50C: @@ -1370,11 +1370,11 @@ papers: title: "Die spezielle Relativit\xE4sthorie" year: '1912' qc6CJjYAAAAJ:KlAtU1dfN6UC: - citations: 444 + citations: 438 title: On the Influence of Gravitation on the Propagation of Light year: '1911' qc6CJjYAAAAJ:KqnX2w3egDsC: - citations: 96 + citations: 95 title: "Vier Vorlesungen \xFCber Relativit\xE4tstheorie gehalten im Mai 1921 an der Universit\xE4t Princeton" year: '1922' qc6CJjYAAAAJ:Kr3pDLWb32UC: @@ -1382,7 +1382,7 @@ papers: title: "Bemerkung zu der Notiz von W. Anderson\xBB Eine neue Erkl\xE4rung des kontinuierlichen Koronaspektrums \xAB" year: '1923' qc6CJjYAAAAJ:KxNY-X0OflYC: - citations: 9 + citations: 10 title: "La th\xE9orie du rayonnement et les quanta" year: '1911' qc6CJjYAAAAJ:L2Pn6qttGKUC: @@ -1390,11 +1390,11 @@ papers: title: 'Albert Einstein] to Mileva Einstein-Maric: Letter, after 17 Mar 1918' year: Unknown Year qc6CJjYAAAAJ:L7JqRCIhofwC: - citations: 6594 + citations: 6656 title: Sitzungsberichte der Preussischen Akademie der Wissenschaften zu Berlin year: '1915' qc6CJjYAAAAJ:L7vk9XBBNxgC: - citations: 11 + citations: 10 title: Emil Warburg als Forscher year: '1922' qc6CJjYAAAAJ:LA-8tw-JpD0C: @@ -1402,11 +1402,11 @@ papers: title: "Probleme kann man niemals mit der gleichen Denkweise l\xF6sen durch die sie entstanden sind." year: Unknown Year qc6CJjYAAAAJ:LAaCg2gyLagC: - citations: 276 + citations: 268 title: Briefwechsel 1916-1955 year: '1972' qc6CJjYAAAAJ:LGA7_l5-FVwC: - citations: 124 + citations: 128 title: Preussiche Akademie der Wissenchaften Berlin year: '1927' qc6CJjYAAAAJ:LIyjJRbbAUMC: @@ -1418,7 +1418,7 @@ papers: title: 'Relativity, Thermodynamics and Cosmology.(Scientific Books: Relativity, Thermodynamics and Cosmology)' year: '1934' qc6CJjYAAAAJ:LPZeul_q3PIC: - citations: 35 + citations: 33 title: "Beweis der Nichtexistenz eines \xFCberall regul\xE4ren zentrische symmetrischen Feldes nach der Feld-Theorie von Th. Kaluza" year: '1923' qc6CJjYAAAAJ:LSkeIYDkhQYC: @@ -1434,7 +1434,7 @@ papers: title: "Albert Einstein] to Constantin Carath\xE9odory: Letter, 10 Dec 1916" year: Unknown Year qc6CJjYAAAAJ:LWqeokA2EBkC: - citations: 79 + citations: 81 title: "\xDCber die G\xFCltigkeitsgrenze des Satzes vom thermodynamischen Gleichgewicht und \xFCber die M\xF6glichkeit einer neuen Bestimmung der Elementarquanta" year: '1907' qc6CJjYAAAAJ:LYDvBi7O6RsC: @@ -1446,7 +1446,7 @@ papers: title: A minor sidelight on a great man year: '1956' qc6CJjYAAAAJ:L_at8tGC9oEC: - citations: 52 + citations: 55 title: The Meaning of year: '1969' qc6CJjYAAAAJ:Lbh3VFZM3akC: @@ -1454,11 +1454,11 @@ papers: title: 'Albert Einstein] to Hedwig Born: Letter, 8 Feb 1918' year: Unknown Year qc6CJjYAAAAJ:LkGwnXOMwfcC: - citations: 2929 + citations: 2960 title: The foundation of the general theory of relativity year: '1916' qc6CJjYAAAAJ:LkrQC8aPkXYC: - citations: 5267 + citations: 5263 title: 'Relativity: The Special and the General Theory: a Popular Exposition by Albert Einstein; Transl. by Robert W. Lawson' year: '1961' qc6CJjYAAAAJ:Lmuc1furtc4C: @@ -1470,7 +1470,7 @@ papers: title: 'Albert Einstein] to Walter Schottky: Letter, 26 Sep 1917' year: Unknown Year qc6CJjYAAAAJ:LoiWQfKZB3kC: - citations: 12 + citations: 13 title: 'Albert Einstein] to Michele Besso: Letter, 3 Jan 1916' year: Unknown Year qc6CJjYAAAAJ:LpWf3qrnWeoC: @@ -1486,7 +1486,7 @@ papers: title: The Application of Catastrophe Theory year: Unknown Year qc6CJjYAAAAJ:LwieBGrN4GEC: - citations: 22 + citations: 20 title: Relativity, quanta, and cosmology in the development of the scientific thought of Albert Einstein year: '1981' qc6CJjYAAAAJ:LzOrNEA7mwcC: @@ -1502,31 +1502,31 @@ papers: title: 'Albert Einstein] to Paul Ehrenfest: Letter, 25 Aug 1916' year: Unknown Year qc6CJjYAAAAJ:M3NEmzRMIkIC: - citations: 83 + citations: 82 title: Two-body problem in general relativity theory year: '1936' qc6CJjYAAAAJ:M3ejUd6NZC8C: - citations: 418 + citations: 486 title: "Prinzipielles zur allgemeinen Relativit\xE4tstheorie" year: '1918' qc6CJjYAAAAJ:M8meJADSprsC: - citations: 197 + citations: 185 title: El significado de la relatividad year: '1971' qc6CJjYAAAAJ:MDX3w3dAD3YC: - citations: 907 + citations: 909 title: Zum quantensatz von Sommerfeld und Epstein year: '1917' qc6CJjYAAAAJ:MGPUR4WVBMEC: - citations: 81 + citations: 86 title: "Notiz zu der Arbeit von A. Friedmann \u201E\xDCber die Kr\xFCmmung des Raumes \u201C" year: '1923' qc6CJjYAAAAJ:ML0RJ9NH7IQC: - citations: 320 + citations: 324 title: New possibility for a unified field theory of gravitation and electricity year: '1928' qc6CJjYAAAAJ:MNNNGtAgD4EC: - citations: 16 + citations: 341 title: "Bemerkung zu dem Gesetz von E\xF6tv\xF6s" year: '1911' qc6CJjYAAAAJ:MTuJV9umhWMC: @@ -1538,15 +1538,15 @@ papers: title: "La corr\xE9lation de l'empirique et du rationnel dans l'oeuvre scientifique d'Einstein." year: Unknown Year qc6CJjYAAAAJ:MXK_kJrjxJIC: - citations: 632 + citations: 631 title: On a stationary system with spherical symmetry consisting of many gravitating masses year: '1939' qc6CJjYAAAAJ:MqTxh1vmwXEC: - citations: 2 + citations: 0 title: Physikalische Gesellschaft zu Berlin. Berlin, 12. Juni 1931 year: '2006' qc6CJjYAAAAJ:MvIMIWP2nqIC: - citations: 777 + citations: 26 title: 'The Collected Papers of Albert Einstein, Vol. 4: The Swiss Years: Writings, 1912-1914' year: '1996' qc6CJjYAAAAJ:Mx5hWS9ctUkC: @@ -1554,11 +1554,11 @@ papers: title: Einstein's Collected Writings year: '1960' qc6CJjYAAAAJ:N6_Y7JlWxwsC: - citations: 41 + citations: 39 title: Physikalische Grundlagen einer Gravitationstheorie year: '1914' qc6CJjYAAAAJ:NAGhd4NKCV8C: - citations: 141 + citations: 143 title: "K\xF6niglich Preu\xDFische Akademie der Wissenschaften Berlin" year: '1916' qc6CJjYAAAAJ:NGoJ35N4lvkC: @@ -1566,11 +1566,11 @@ papers: title: "Bemerkungen zu P. Harzers Abhandlung \xAB\xDCber die Mitf\xFChrung des Lichtes in Glas und die Aberration\xBB(AN 4748)" year: '1914' qc6CJjYAAAAJ:NJ774b8OgUMC: - citations: 22 + citations: 23 title: The advent of the quantum theory year: '1951' qc6CJjYAAAAJ:NM66qo_NnlUC: - citations: 915 + citations: 1012 title: 'The Collected Papers of Albert Einstein: English Translation' year: '1989' qc6CJjYAAAAJ:NMxIlDl6LWMC: @@ -1578,7 +1578,7 @@ papers: title: 'The Collected Papers of Albert Einstein, Volume 6: The Berlin Years: Writings, 1914-1917' year: '1997' qc6CJjYAAAAJ:NNXJ2mIwlScC: - citations: 6 + citations: 5 title: Albert Einstein, Michele Besso, correspondence, 1903-1955 year: '1972' qc6CJjYAAAAJ:NRnkAyzcrGMC: @@ -1598,19 +1598,19 @@ papers: title: 'Builders of the Universe: From the Bible to the Theory of Relativity' year: '1932' qc6CJjYAAAAJ:NYu48kWxaQAC: - citations: 12 + citations: 13 title: Albert Einstein] to Michele Besso:[A first] letter, 21 Jul 1916 year: Unknown Year qc6CJjYAAAAJ:NZNkWSpQBv0C: - citations: 71 + citations: 83 title: Zum Ehrenfestschen Paradoxon year: '1910' qc6CJjYAAAAJ:NnTm98qLMbgC: - citations: 571 + citations: 579 title: Mein weltbild year: '1934' qc6CJjYAAAAJ:Nnq8S6OXqDYC: - citations: 156 + citations: 110 title: "Allgemeine relativit\xE4tstheorie und bewegungsgesetz" year: '1927' qc6CJjYAAAAJ:Np1obAXpBq8C: @@ -1618,11 +1618,11 @@ papers: title: 'Albert Einstein] to Hermann Weyl: Letter, 15 Apr 1918' year: Unknown Year qc6CJjYAAAAJ:Ns2bVKt8YxIC: - citations: 501 + citations: 488 title: Sidelights on Relativity,... I. Ether and Relativity. II. Geometry and Experience year: '1922' qc6CJjYAAAAJ:Nufq_to8ts0C: - citations: 191 + citations: 198 title: "Das Prinzip von der Erhaltung der Schwerpunktsbewegung und die Tr\xE4gheit der Energie" year: '1906' qc6CJjYAAAAJ:Nw5Pwe77XXAC: @@ -1638,15 +1638,15 @@ papers: title: "Die Quantentheorie der spezifischen W\xE4rme" year: '1967' qc6CJjYAAAAJ:O0MA3yP7Y3UC: - citations: 234 + citations: 305 title: 'The Collected Papers of Albert Einstein, Volume 8: The Berlin Years: Correspondence, 1914-1918.' year: '1998' qc6CJjYAAAAJ:O3NaXMp0MMsC: - citations: 139 + citations: 137 title: How I created the theory of relativity year: '1982' qc6CJjYAAAAJ:OBae9N4Z9bMC: - citations: 22 + citations: 20 title: "L\u2019\xE9volution des id\xE9es en physique" year: '1978' qc6CJjYAAAAJ:OC7j4ufeY2cC: @@ -1654,7 +1654,7 @@ papers: title: 'Albert Einstein] to Friedrich Adler: Letter, 20 Oct 1918' year: Unknown Year qc6CJjYAAAAJ:ODN9lDrI8hIC: - citations: 16 + citations: 15 title: Appendix II. Generalization of gravitation theory year: '1953' qc6CJjYAAAAJ:OLNndOjO69MC: @@ -1662,15 +1662,15 @@ papers: title: 'Friedrich Wilhelm Foerster und Albert Einstein: Briefwechsel von 1935 bis 1954' year: '2001' qc6CJjYAAAAJ:OPs5gEIPXMUC: - citations: 7752 + citations: 7871 title: On gravitational waves Sitzungsber. preuss year: '1918' qc6CJjYAAAAJ:OTTXONDVkokC: - citations: 1 + citations: 3 title: On the relativity problem year: '2007' qc6CJjYAAAAJ:OVe_t5h5bhEC: - citations: 266 + citations: 267 title: "Mi visi\xF3n del mundo" year: '1985' qc6CJjYAAAAJ:Oi-j_DTgP3cC: @@ -1682,7 +1682,7 @@ papers: title: The Rise and Fall of the Great Ether year: '1993' qc6CJjYAAAAJ:OlbiQ0ttILcC: - citations: 187 + citations: 183 title: "Las teor\xEDas de la relatividad" year: '1922' qc6CJjYAAAAJ:Ow2R9nchCv8C: @@ -1694,23 +1694,23 @@ papers: title: On German Literature for Viola Da Gamba in the 16th and 17th Centuries year: '1977' qc6CJjYAAAAJ:P1qO8dLd1z8C: - citations: 198 + citations: 267 title: The Photoelectric Effect year: '1905' qc6CJjYAAAAJ:P9oYG7HA76QC: - citations: 13 + citations: 14 title: The military mentality year: '1947' qc6CJjYAAAAJ:PLWDSxI5WzYC: - citations: 42 + citations: 150 title: Deutsche Physikalische Gesellschaft year: '1915' qc6CJjYAAAAJ:PPAp3RzCAaIC: - citations: 61 + citations: 62 title: 'Briefwechsel: Albert Einstein, Arnold Sommerfeld: Sechzig Briefe Aus Dem Goldenen Zeitalter Der Modernen Physik' year: '1968' qc6CJjYAAAAJ:PQm_lTwdG-sC: - citations: 126 + citations: 122 title: "Einleitende Bemerkungen \xFCber Grundbegriffe (with French transl. Remarques pr\xE9liminaires sur les principes fondamentaux, by MA Tonnelat)" year: '1953' qc6CJjYAAAAJ:PVjk1bu6vJQC: @@ -1730,11 +1730,11 @@ papers: title: ADDRESS BEFORE STUDENT BODY CALIFORNIA INSTITUTE OF TECHNOLOGY year: '1938' qc6CJjYAAAAJ:PoEJn1poz0QC: - citations: 266 + citations: 312 title: 'Wissenschaftlicher Briefwechsel Mit Bohr, Einstein, Heisenberg, Ua: Scientific Correspondence with Bohr, Einstein, Heisenberg, Ao Volume 1: 1919-1929. 1919-1929' year: '1979' qc6CJjYAAAAJ:Q7hiZQKJ-pAC: - citations: 249 + citations: 218 title: 'Cosmic religion: with other opinions and aphorisms' year: '1931' qc6CJjYAAAAJ:Q9ss7R9eeXsC: @@ -1746,7 +1746,7 @@ papers: title: 'Albert Einstein] to Hans Albert Einstein: Letter, 24 Dec 1917' year: Unknown Year qc6CJjYAAAAJ:QBXC_7Xd1GUC: - citations: 13 + citations: 10 title: 'The new physics: the route into the atomic age' year: '1979' qc6CJjYAAAAJ:QDEWnZBrHwAC: @@ -1758,11 +1758,11 @@ papers: title: "Cien a\xF1os de relatividad: Los art\xEDculos de Albert Einstein de 1905 y 1906" year: '2004' qc6CJjYAAAAJ:QIV2ME_5wuYC: - citations: 720 + citations: 722 title: Does the inertia of a body depend upon its energy-content? year: '1905' qc6CJjYAAAAJ:QKtdBID3u5MC: - citations: 39 + citations: 34 title: Einstein und das Universum year: '1958' qc6CJjYAAAAJ:QSG1pgF8pGAC: @@ -1774,7 +1774,7 @@ papers: title: "L'actualit\xE9 constante de la th\xE9orie de gravitation d'Einstein." year: Unknown Year qc6CJjYAAAAJ:QXXbHxWZe5oC: - citations: 4 + citations: 3 title: My Attitude to Quantum Theory year: '1950' qc6CJjYAAAAJ:QYdC8u9Cj1oC: @@ -1782,7 +1782,7 @@ papers: title: Special and General relativity year: '1920' qc6CJjYAAAAJ:Q_E8KsG3g9MC: - citations: 13 + citations: 12 title: Correspondencia (1916-1955) year: '1999' qc6CJjYAAAAJ:QaLwMs-zPFMC: @@ -1802,7 +1802,7 @@ papers: title: Mein Weltbild, Herausgegeben von Carl Seelig, Neue, vom Verfasser durchgesehene und wesentlich erweiterte Auflage year: Unknown Year qc6CJjYAAAAJ:Qo9Q-PfIzZ0C: - citations: 18 + citations: 17 title: "Observa\xE7\xF5es sobre a situa\xE7\xE3o atual da teoria da luz" year: '1926' qc6CJjYAAAAJ:QoN_6baHBqgC: @@ -1814,7 +1814,7 @@ papers: title: F. General relativity and its general covariance year: Unknown Year qc6CJjYAAAAJ:QppYajJO_VYC: - citations: 17 + citations: 15 title: "Albert Einstein und Johannes Stark: Briefwechsel und Verh\xE4ltnis der beiden Nobelpreistr\xE4ger" year: '1966' qc6CJjYAAAAJ:Qqt8gOYqc0UC: @@ -1830,7 +1830,7 @@ papers: title: "Physikalische Gesellschaft zu Berlin und Deutsche Gesellschaft f\xFCr technische Physik. Berlin, 17. Juli 1931" year: '2006' qc6CJjYAAAAJ:R3hNpaxXUhUC: - citations: 292 + citations: 290 title: "Lettres \xE0 Maurice Solovine" year: '1956' qc6CJjYAAAAJ:R6aXIXmdpM0C: @@ -1838,11 +1838,11 @@ papers: title: Pourquoi le socialisme? year: '1993' qc6CJjYAAAAJ:RF4BjkDOTHkC: - citations: 971 + citations: 964 title: "Letters on Wave Mechanics: Correspondence with HA Lorentz, Max Planck, and Erwin Schr\xF6dinger" year: '2011' qc6CJjYAAAAJ:RJNGbXJAtMsC: - citations: 15 + citations: 16 title: 'The essential Einstein: his greatest works' year: '2008' qc6CJjYAAAAJ:RPps9qLA3-kC: @@ -1854,11 +1854,11 @@ papers: title: Bemerkungen iiber den Wandel der Problemstcllungen in der theoretischen Physik year: Unknown Year qc6CJjYAAAAJ:RfUwGJFMQ-0C: - citations: 4102 + citations: 4458 title: Zur quantentheorie der strahlung year: '1917' qc6CJjYAAAAJ:RgMnzfD6kpIC: - citations: 14 + citations: 15 title: Only then shall we find courage year: '1946' qc6CJjYAAAAJ:RmQ8dt0hH3oC: @@ -1878,11 +1878,11 @@ papers: title: "Kinetische Theorie des W\xE4rmegleichgewichtes und des zweiten Hauptsatzes der Thermodynamik" year: '1902' qc6CJjYAAAAJ:S9V7H-Nz35UC: - citations: 7438 + citations: 7505 title: On a Heuristic Point of View Toward the Emission and Transformation of Light year: '1905' qc6CJjYAAAAJ:SFOYbPikdlgC: - citations: 22 + citations: 21 title: Spaltung der natuerlichsten Feldgleichungen fuer Semi-Vektoren in Spinor-Gleichungen vom Dirac'schen Typus year: '1933' qc6CJjYAAAAJ:SLTdnKVCdHAC: @@ -1890,23 +1890,23 @@ papers: title: 'Albert Einstein] to Wilhelm Wien: Letter, 18 Mar 1916' year: Unknown Year qc6CJjYAAAAJ:SPgoriM2DtkC: - citations: 10 + citations: 11 title: 'Albert Einstein] to Max Born: Letter, after 29 Jun 1918' year: Unknown Year qc6CJjYAAAAJ:S_Qw7xXuMuIC: - citations: 835 + citations: 80 title: 'The collected papers of Albert Einstein: The Berlin years: correspondence, January-December 1921' year: '2009' qc6CJjYAAAAJ:S_fw-_riRmcC: - citations: 10 + citations: 11 title: Albert einstein to max born year: '2005' qc6CJjYAAAAJ:Se3iqnhoufwC: - citations: 980 + citations: 971 title: The world as I see it year: '2007' qc6CJjYAAAAJ:SenaEjHFqFYC: - citations: 7 + citations: 6 title: The Structure of Scientific Thought year: '1960' qc6CJjYAAAAJ:Sg-YnEhjH50C: @@ -1914,7 +1914,7 @@ papers: title: ALBERT EINSTEIN, UN HOMBRE UNIVERSAL year: Unknown Year qc6CJjYAAAAJ:ShjGdcaqzI0C: - citations: 190 + citations: 185 title: "\xDCber die elektromagnetischen Grundgleichungen f\xFCr bewegte K\xF6rper" year: '1908' qc6CJjYAAAAJ:Sipo1f_CKiIC: @@ -1926,7 +1926,7 @@ papers: title: 'Albert Einstein] to Wander and Geertruida de Haas: Letter, 3 Oct 1916' year: Unknown Year qc6CJjYAAAAJ:SrKkpNFED5gC: - citations: 414 + citations: 586 title: "Zum gegenw\xE4rtigen Stand des Strahlungsproblems" year: '1909' qc6CJjYAAAAJ:SrsqWtBqNIQC: @@ -1938,7 +1938,7 @@ papers: title: 'Albert Einstein] to Wladyslaw Natanson: Letter, 24 Aug 1915' year: Unknown Year qc6CJjYAAAAJ:SzsLJvG5eXAC: - citations: 2030 + citations: 1994 title: Autobiographical Notes, ed year: '1979' qc6CJjYAAAAJ:T64LSalLz9oC: @@ -1946,7 +1946,7 @@ papers: title: 'Albert Einstein] to Willem de Sitter: Letter, 23 Jan 1917' year: Unknown Year qc6CJjYAAAAJ:T8_be82Iz5gC: - citations: 158 + citations: 152 title: Zur Theorie des statischen Gravitationsfeldes year: '2006' qc6CJjYAAAAJ:TA1nTKmGtTgC: @@ -1958,11 +1958,11 @@ papers: title: Letters on wave mechanics year: '1967' qc6CJjYAAAAJ:TGemctCAZTQC: - citations: 37 + citations: 34 title: The new field theory year: '1929' qc6CJjYAAAAJ:TIZ-Mc8IlK0C: - citations: 1100 + citations: 1085 title: On the method of theoretical physics year: '1934' qc6CJjYAAAAJ:TKTY8N1AUUAC: @@ -1970,7 +1970,7 @@ papers: title: 'Albert Einstein] to Wilhelm Wien: Letter, 28 Feb 1916' year: Unknown Year qc6CJjYAAAAJ:TNEldfgDb5MC: - citations: 777 + citations: 26 title: 'The Collected Papers of Albert Einstein, Vol. 4: The Swiss Years: Writings, 1912-1914' year: '1996' qc6CJjYAAAAJ:TXgqPU86QykC: @@ -1986,15 +1986,15 @@ papers: title: "Filosofia e relativit\xE0" year: '1965' qc6CJjYAAAAJ:Tfl4UtY-dJUC: - citations: 66 + citations: 63 title: "Hamilton\u2019s principle and the general theory of relativity" year: '1916' qc6CJjYAAAAJ:TiIbgCYny7sC: - citations: 8957 + citations: 9058 title: "Zur Elektrodynamik bewegter K\xF6rper" year: Unknown Year qc6CJjYAAAAJ:TmnWbB_axlEC: - citations: 83 + citations: 82 title: Untersuchungen uber die Theorie der Brownschen Bewegung year: '1922' qc6CJjYAAAAJ:ToZsFq5dof0C: @@ -2002,7 +2002,7 @@ papers: title: "Les fondements de la th\xE9orie de la relativit\xE9 g\xE9n\xE9rale. Th\xE9orie unitaire de la gravitation et de l'electricit\xE9. Sur la structure cosmologique de l'espace." year: '1934' qc6CJjYAAAAJ:U5uP8zs9lfgC: - citations: 11 + citations: 9 title: Bemerkung zu E. Gehrckes Notiz year: '1918' qc6CJjYAAAAJ:UC7Jl7-kV0oC: @@ -2018,7 +2018,7 @@ papers: title: 'Albert Einstein] to Otto Naumann: Letter, 7 Dec 1915' year: Unknown Year qc6CJjYAAAAJ:ULOm3_A8WrAC: - citations: 322 + citations: 318 title: On the motion of particles in general relativity theory year: '1949' qc6CJjYAAAAJ:UO8fSLLLPykC: @@ -2038,7 +2038,7 @@ papers: title: "Bemerkung zu Herrn Schr\xF6dingers Notiz\" \xDCber ein L\xF6sungssystem der allgemein kovarianten Gravitationsgleichungen\", 3 M\xE4r 1918" year: Unknown Year qc6CJjYAAAAJ:UY3hNwcQ290C: - citations: 27 + citations: 25 title: "La teor\xEDa de la relatividad: Sus or\xEDgenes e impacto sobre el pensamiento moderno" year: '1983' qc6CJjYAAAAJ:UbXTy9l1WKIC: @@ -2046,11 +2046,11 @@ papers: title: The Effect of Autonomous Algorithms on Networking year: Unknown Year qc6CJjYAAAAJ:UeHWp8X0CEIC: - citations: 66 + citations: 60 title: "Sobre la electrodin\xE1mica de los cuerpos en movimiento" year: '2005' qc6CJjYAAAAJ:UebtZRa9Y70C: - citations: 971 + citations: 1007 title: "\xDCber die spezielle und die allgemeine Relativit\xE4tstheorie" year: '2008' qc6CJjYAAAAJ:UlRcoTO8nVoC: @@ -2058,11 +2058,11 @@ papers: title: On a Jewish Palestine. First Version, before 27 Jun 1921 year: Unknown Year qc6CJjYAAAAJ:Ul_CLA4dPeMC: - citations: 212 + citations: 208 title: 'Religion and Science: Irreconcilable?' year: '1948' qc6CJjYAAAAJ:UnhBtiQKoKQC: - citations: 26 + citations: 27 title: 'The Swiss Years: Writing 1900-1909:...' year: '1989' qc6CJjYAAAAJ:UoSa6IK8DwsC: @@ -2098,19 +2098,19 @@ papers: title: 'Albert Einstein] to Arnold Sommerfeld: Letter, 1 Jun 1918' year: Unknown Year qc6CJjYAAAAJ:VLnqNzywnoUC: - citations: 448 + citations: 422 title: "Das relativit\xE4tsprinzip: Eine sammlung von abhandlungen" year: '1915' qc6CJjYAAAAJ:VOx2b1Wkg3QC: - citations: 45 + citations: 32 title: "O princ\xEDpio da relatividade" year: '1983' qc6CJjYAAAAJ:VTkKiNFP83YC: - citations: 4 + citations: 6 title: "Relativit\xE0, Boringhieri" year: '1960' qc6CJjYAAAAJ:VXkaQG_c9EQC: - citations: 1 + citations: 2 title: "La educaci\xF3n y la Atenci\xF3n Primaria de la salud en la Complejidad Social" year: Unknown Year qc6CJjYAAAAJ:VaBbNeojGYwC: @@ -2134,7 +2134,7 @@ papers: title: Besprechungen year: '1922' qc6CJjYAAAAJ:VnuxuLaQPLMC: - citations: 50 + citations: 48 title: "Semi\u2010Vektoren und Spinoren" year: '1932' qc6CJjYAAAAJ:VoB_afVdn6EC: @@ -2158,11 +2158,11 @@ papers: title: THE FREEDOM OF LEARNING. year: '1936' qc6CJjYAAAAJ:W6h41lW4BooC: - citations: 27 + citations: 31 title: "L'\xE9tat actuel du probl\xE8me des chaleurs sp\xE9cifiques" year: '1912' qc6CJjYAAAAJ:W7OEmFMy1HYC: - citations: 1603 + citations: 1578 title: Lens-like action of a star by the deviation of light in the gravitational field year: '1936' qc6CJjYAAAAJ:WC4w5-ZrDNIC: @@ -2174,7 +2174,7 @@ papers: title: La discussion Einstein-Bohr. year: Unknown Year qc6CJjYAAAAJ:WF5omc3nYNoC: - citations: 1031 + citations: 1037 title: On gravitational waves year: '1937' qc6CJjYAAAAJ:WIVIxizkzXoC: @@ -2182,15 +2182,15 @@ papers: title: 'Albert Einstein] to Paul Ehrenfest: Letter, 26 Dec 1915' year: Unknown Year qc6CJjYAAAAJ:WIXB4To3Tx4C: - citations: 111 + citations: 105 title: "Relativit\xE4t und gravitation. Erwiderung auf eine bemerkung von M. Abraham" year: '1912' qc6CJjYAAAAJ:WM2K3OHRCGMC: - citations: 219 + citations: 216 title: "Notas autobiogr\xE1ficas" year: '2003' qc6CJjYAAAAJ:WMtz-WDmgKQC: - citations: 59 + citations: 56 title: "Newtons Mechanik und ihr Einflu\xDF auf die Gestaltung der theoretischen Physik" year: '1927' qc6CJjYAAAAJ:WQTnNU6cpycC: @@ -2218,7 +2218,7 @@ papers: title: Emission and absorption of radiation according to the quantum theory year: '1916' qc6CJjYAAAAJ:WtgKeONp1i0C: - citations: 186 + citations: 184 title: "Lettres a Maurice Solovine: reprod. en facsimil\xE9 et trad. en fran\xE7aise: avec une introduction et trois photographies" year: '1956' qc6CJjYAAAAJ:WxjA8IQWSGYC: @@ -2242,11 +2242,11 @@ papers: title: The collecteds of albert einstein v 9 the berlin years correspondence january 1919 april 1920 (hardback) year: '2004' qc6CJjYAAAAJ:X5QHDg3V9EEC: - citations: 2 + citations: 4 title: Science and synthesis year: '1971' qc6CJjYAAAAJ:X5YyAB84Iw4C: - citations: 294 + citations: 264 title: Philosopher-Scientist year: '1970' qc6CJjYAAAAJ:XK2cf6JOk9AC: @@ -2254,15 +2254,15 @@ papers: title: 'Gefaehrliche Freundschaft: Konsens in schwieriger Zeit' year: '1996' qc6CJjYAAAAJ:XOE35tnTnDYC: - citations: 49 + citations: 46 title: Space-time year: '1929' qc6CJjYAAAAJ:XR3BWSlh_xcC: - citations: 15 + citations: 13 title: "Sobre la teor\xEDa especial y la teoria general de la relatividad" year: '1983' qc6CJjYAAAAJ:XUAslYVNQLQC: - citations: 264 + citations: 121 title: Relativita year: '1960' qc6CJjYAAAAJ:XWcFhoZvYIAC: @@ -2274,7 +2274,7 @@ papers: title: 'Albert Einstein] to Paul Gruner: Letter, 11 Feb 1908' year: Unknown Year qc6CJjYAAAAJ:XZvG1uL-wj0C: - citations: 1146 + citations: 1133 title: 'On the method of theoretical physics: The Herbert Spencer lecture, delivered at Oxford 10 June 1933' year: '1933' qc6CJjYAAAAJ:Xc-mKOjpdrwC: @@ -2282,15 +2282,15 @@ papers: title: Relativistische Physik year: Unknown Year qc6CJjYAAAAJ:XdYaqolBBq8C: - citations: 30 + citations: 28 title: 'The Collected Papers of Albert Einstein, Volume 9: The Berlin Years: Correspondence, January 1919-April 1920' year: '2004' qc6CJjYAAAAJ:XdwVV_xN3QMC: - citations: 1445 + citations: 1453 title: Draft of a Generalized Theory of Relativity and a Theory of Gravitation year: '1913' qc6CJjYAAAAJ:XeErXHja3Z8C: - citations: 14 + citations: 15 title: "\xDCber die Interferenzeigenschaften des durch Kanalstrahlen emittierten Lichtes" year: '1926' qc6CJjYAAAAJ:XfMaBeGYgSgC: @@ -2302,15 +2302,15 @@ papers: title: 'Reise nach Japan Palestine Spanien 6 Oktober 1922-12.3. 23: Various places' year: '1923' qc6CJjYAAAAJ:XiSMed-E-HIC: - citations: 63 + citations: 64 title: What I believe year: '1956' qc6CJjYAAAAJ:Xnn2mF3JXD4C: - citations: 72 + citations: 70 title: "Untersuchungen \xFCber die Theorie der Brownschen Bewegung" year: '1922' qc6CJjYAAAAJ:XtJa11BXPS4C: - citations: 35 + citations: 36 title: Atomic war or peace year: '1947' qc6CJjYAAAAJ:Xtec1x7NZGAC: @@ -2322,7 +2322,7 @@ papers: title: "Research@ FrankfurtSchool in Zeiten der Finanzmarktkrise \u201EA Collection of Working Papers \u201C" year: Unknown Year qc6CJjYAAAAJ:Y0agIcFmOsQC: - citations: 1301 + citations: 1183 title: A correction on my work-A new determination of molecular dimensions year: '1969' qc6CJjYAAAAJ:Y1W0x10ZrwMC: @@ -2346,7 +2346,7 @@ papers: title: Essays in physics year: '1950' qc6CJjYAAAAJ:YK4ucWkmU_UC: - citations: 72 + citations: 73 title: 'Albert Einstein, the Human Side: New Glimpses from His Archives' year: '1981' qc6CJjYAAAAJ:YP-lgzILWVMC: @@ -2358,15 +2358,15 @@ papers: title: "Los fundamentos de la geometr\xEDa" year: '1948' qc6CJjYAAAAJ:YXPZ0dOdYS4C: - citations: 2 + citations: 1 title: 'Einstein''s Zurich Notebook: Transcription and Facsimile' year: '2007' qc6CJjYAAAAJ:YZzzgH80nR8C: - citations: 29 + citations: 31 title: The Late Emmy Noether year: '1935' qc6CJjYAAAAJ:YbLjypsZzowC: - citations: 90 + citations: 87 title: "\xBF Por qu\xE9 la Guerra?" year: '2001' qc6CJjYAAAAJ:YiBZ6_7J9mkC: @@ -2382,7 +2382,7 @@ papers: title: Physics, philosophy and scientific progress. year: '1950' qc6CJjYAAAAJ:YoqGh_aPxy4C: - citations: 78 + citations: 76 title: The common language of science year: '1941' qc6CJjYAAAAJ:YpRCXavlr0AC: @@ -2390,7 +2390,7 @@ papers: title: 'Albert Einstein] to Michele and Anna Besso-Winteler: Letter, 1 Aug 1917' year: Unknown Year qc6CJjYAAAAJ:YsMSGLbcyi4C: - citations: 2289 + citations: 2281 title: The particle problem in the general theory of relativity year: '1935' qc6CJjYAAAAJ:YvgfBAebZEkC: @@ -2402,7 +2402,7 @@ papers: title: Mi credo humanista year: '1991' qc6CJjYAAAAJ:ZDu_srLEjN8C: - citations: 145 + citations: 141 title: Preussische akademie der wissenschaften, Phys-math year: '1925' qc6CJjYAAAAJ:ZEcFV8kAgqMC: @@ -2426,23 +2426,23 @@ papers: title: "Bemerkung zu E. Gehrckes Notiz\" \xDCber den \xC4ther\", 29 Nov 1918" year: Unknown Year qc6CJjYAAAAJ:ZYLUaBFA95QC: - citations: 11 + citations: 12 title: 'Briefwechsel: Sechzig Briefe aus dem goldenen Zeitalter der modernen Physik' year: '1968' qc6CJjYAAAAJ:ZbQVaL1IMbQC: - citations: 625 + citations: 4018 title: Quanzeml~ orie der stralllung year: '1916' qc6CJjYAAAAJ:ZbiiB1Sm8G8C: - citations: 12 + citations: 13 title: 'Albert Einstein] to Michele Besso: Letter, 6 Apr 1916' year: Unknown Year qc6CJjYAAAAJ:ZeXyd9-uunAC: - citations: 319 + citations: 346 title: "Physik und realit\xE4t" year: '1936' qc6CJjYAAAAJ:ZfRJV9d4-WMC: - citations: 90 + citations: 92 title: Pourquoi la guerre? year: '1933' qc6CJjYAAAAJ:ZgPQhQxLujAC: @@ -2450,11 +2450,11 @@ papers: title: Mein Weltbild, hrsg. v year: '1977' qc6CJjYAAAAJ:Zk83zdSX4-UC: - citations: 5 + citations: 4 title: "L'\xE9vidence de la th\xE9orie de Einstein" year: '1923' qc6CJjYAAAAJ:ZnWe2zbntUIC: - citations: 2 + citations: 3 title: 'Relativiteit: speciale en algemene theorie' year: '1986' qc6CJjYAAAAJ:Zph67rFs4hoC: @@ -2470,7 +2470,7 @@ papers: title: 'Albert Einstein] to David Hilbert: Letter, 30 May 1916' year: Unknown Year qc6CJjYAAAAJ:ZysSsiWj_g4C: - citations: 21 + citations: 22 title: "Bemerkungen \xFCber periodische Schwankungen der Mondl\xE4nge, welche bisher nach der Newtonschen Mechanik nicht erkl\xE4rbar erschienen" year: '1919' qc6CJjYAAAAJ:_8B_re9sV0EC: @@ -2482,11 +2482,11 @@ papers: title: Gelegentliches von Albert Einstein year: '1929' qc6CJjYAAAAJ:_9Xh93LWpsYC: - citations: 43 + citations: 54 title: "\xDCber Friedrich Kottlers Abhandlung \u201C\xDCber Einsteins \xC4quivalenzhypothese und die Gravitation\u201D" year: '1916' qc6CJjYAAAAJ:_IsBomjs8bsC: - citations: 26 + citations: 24 title: "Lassen sich Brechungsexponenten der K\xF6rper f\xFCr R\xF6ntgenstrahlen experimentell ermitteln?" year: '1918' qc6CJjYAAAAJ:_Nt1UvVys9QC: @@ -2494,7 +2494,7 @@ papers: title: Gravitational and electromagnetic fields year: '1931' qc6CJjYAAAAJ:_Re3VWB3Y0AC: - citations: 134 + citations: 130 title: 'Einstein and the Poet: In Search of the Cosmic Man' year: '1983' qc6CJjYAAAAJ:_Ybze24A_UAC: @@ -2506,7 +2506,7 @@ papers: title: Theoretical remark on the superconductivity of metals year: '2005' qc6CJjYAAAAJ:_bh1rdP-zDcC: - citations: 43 + citations: 39 title: "Die Diracgleichungen f\xFCr Semivektoren" year: '1933' qc6CJjYAAAAJ:_inCrQx-FbQC: @@ -2514,19 +2514,19 @@ papers: title: "Depuis le principe d'\xE9quivalence jusqu'aux \xE9quations de la gravitation." year: Unknown Year qc6CJjYAAAAJ:_kc_bZDykSQC: - citations: 409 + citations: 403 title: A generalization of the relativistic theory of gravitation year: '1945' qc6CJjYAAAAJ:_mQi-xiA4oYC: - citations: 455 + citations: 450 title: "Die Relativit\xE4ts-Theorie" year: '1911' qc6CJjYAAAAJ:a2necdfpwlEC: - citations: 155 + citations: 187 title: "Eine Beziehung zwischen dem elastischen Verhalten und der spezifischen W\xE4rme bei festen K\xF6rpern mit einatomigem Molek\xFCl" year: '1911' qc6CJjYAAAAJ:a9-T7VOCCH8C: - citations: 3780 + citations: 3743 title: The Science and the Life of Albert Einstein year: '1982' qc6CJjYAAAAJ:aDdGf5um_jkC: @@ -2534,7 +2534,7 @@ papers: title: 'Albert Einstein] to Gustav Mie: Letter, 2 Jun 1917' year: Unknown Year qc6CJjYAAAAJ:aEPHIGigqugC: - citations: 4263 + citations: 4268 title: "Physics and Reality, in \u201CIdeas and Opinions\u201D" year: '1954' qc6CJjYAAAAJ:aEyKTaVlRPYC: @@ -2542,15 +2542,15 @@ papers: title: El mundo tal como yo lo veo year: '1989' qc6CJjYAAAAJ:aKos2Y7kUz0C: - citations: 107 + citations: 106 title: letter to Ernst Mach year: '1923' qc6CJjYAAAAJ:aMQnNzTHVu4C: - citations: 7 + citations: 6 title: 'Essays in Science (New York: Philosophical Library, 1934)' year: Unknown Year qc6CJjYAAAAJ:aXI_bbQgCfgC: - citations: 166 + citations: 169 title: "Die Ursache der M\xE4anderbildung der Flu\xDFl\xE4ufe und des sogenannten Baerschen Gesetzes" year: '1926' qc6CJjYAAAAJ:aXwx4OqTWR4C: @@ -2558,23 +2558,23 @@ papers: title: Einstein Appeals for War Resisters year: '1932' qc6CJjYAAAAJ:abCsMXLaarkC: - citations: 8 + citations: 7 title: "Religi\xF3n y ciencia" year: '2000' qc6CJjYAAAAJ:abG-DnoFyZgC: - citations: 291 + citations: 284 title: The fundamentals of theoretical physics year: '1950' qc6CJjYAAAAJ:ace9KxS0p5UC: - citations: 283 + citations: 282 title: Zur theorie der lichterzeugung und lichtabsorption year: '1906' qc6CJjYAAAAJ:adHtZc2wMuEC: - citations: 129 + citations: 126 title: "Neue M\xF6glichkeit f\xFCr eine einheitliche Feldtheorie von Gravitation und Elektrizit\xE4t" year: '1928' qc6CJjYAAAAJ:adgdM4TzidAC: - citations: 184 + citations: 43 title: "Sur l'\xE9lectrodynamique des corps en mouvement" year: '1905' qc6CJjYAAAAJ:ae0xyBWlIcIC: @@ -2582,7 +2582,7 @@ papers: title: "Albert Einstein] to Michael Pol\xE1nyi: Letter, 6 Jul 1915" year: Unknown Year qc6CJjYAAAAJ:afceBpUbn5YC: - citations: 59 + citations: 56 title: Atomic education urged by Einstein year: '1946' qc6CJjYAAAAJ:afcu1OVO0wMC: @@ -2602,7 +2602,7 @@ papers: title: 'Albert Einstein] to Hans Albert Einstein: Letter, 26 Nov 1916' year: Unknown Year qc6CJjYAAAAJ:bCjgOgSFrM0C: - citations: 1214 + citations: 1252 title: "Die plancksche theorie der strahlung und die theorie der spezifischen w\xE4rme" year: '1906' qc6CJjYAAAAJ:bEWYMUwI8FkC: @@ -2626,7 +2626,7 @@ papers: title: 'Albert Einstein] to Paul Hertz: Letter, 22 Aug 1915' year: Unknown Year qc6CJjYAAAAJ:bUu3lypoyhcC: - citations: 671 + citations: 808 title: On the quantum theory of radiation year: '1972' qc6CJjYAAAAJ:bcT4vkklUMwC: @@ -2634,11 +2634,11 @@ papers: title: "Briefe zur Wellenmechanik: Schr\xF6dinger, Planck, Einstein, Lorentz; mit 4 Portr" year: '1963' qc6CJjYAAAAJ:bczYY1dZPtQC: - citations: 93 + citations: 91 title: "M\xE9thode pour la d\xE9termination de valeurs statistiques d'observations concernant des grandeurs soumises a des fluctuations irr\xE9guli\xE8res" year: '1914' qc6CJjYAAAAJ:bf7w-NijnqMC: - citations: 14 + citations: 16 title: Kinetic theory of thermal equilibrium and of the second law of thermodynamics year: '1902' qc6CJjYAAAAJ:bgW0xdllhO4C: @@ -2654,7 +2654,7 @@ papers: title: "Zur Theorie der Radiometerkr\xE4fte" year: '1924' qc6CJjYAAAAJ:bnK-pcrLprsC: - citations: 30 + citations: 31 title: Unified field theory based on Riemannian metrics and distant parallelism year: '1930' qc6CJjYAAAAJ:boGf3zyra0UC: @@ -2662,11 +2662,11 @@ papers: title: 'The collected papers of Albert Einstein. vol. 9, The Berlin years: correspondence, January 1919-April 1920:[English translation]' year: Unknown Year qc6CJjYAAAAJ:brChLMnLtjYC: - citations: 160 + citations: 180 title: Relativity Principle and its Consequences in Modern Physics. Collection of Scientific Works, V. 1 year: '1965' qc6CJjYAAAAJ:bsl25C5uMOsC: - citations: 26 + citations: 25 title: Field theories, old and new year: '1960' qc6CJjYAAAAJ:btULBOGQ_gcC: @@ -2682,11 +2682,11 @@ papers: title: 'Relativity: an interpretation of Einstein''s theory' year: '1931' qc6CJjYAAAAJ:c3oc_9pK2TEC: - citations: 9 + citations: 8 title: The Fight Against War year: '1933' qc6CJjYAAAAJ:c4A-nLdbYHEC: - citations: 1561 + citations: 1533 title: 'Concepts of space: The history of theories of space in physics' year: '1969' qc6CJjYAAAAJ:c5LcigzBm8MC: @@ -2694,7 +2694,7 @@ papers: title: 'Albert Einstein] to Heinrich Zangger: Letter, 24 Jun 1918' year: Unknown Year qc6CJjYAAAAJ:cB__R-XWw9UC: - citations: 147 + citations: 159 title: "Aus meinen sp\xE4ten Jahren" year: '1952' qc6CJjYAAAAJ:cG0OFEevkNgC: @@ -2702,7 +2702,7 @@ papers: title: 'In Memory of Emmy Noether...: Abstract of Address Delivered by Professor Hermann Weyl... and Copy of Letter of Professor Albert Einstein' year: '1935' qc6CJjYAAAAJ:cNe27ouKFcQC: - citations: 7155 + citations: 7355 title: "Die grundlage der allgemeinen relativit\xE4tstheorie" year: '2006' qc6CJjYAAAAJ:cOfwuRB03ygC: @@ -2710,15 +2710,15 @@ papers: title: "Die spezielle relativit\xE4tstheorie Einsteins und die logik" year: '1924' qc6CJjYAAAAJ:cRMvf6lLvU8C: - citations: 274 + citations: 287 title: "Einige Argumente f\xFCr die Annahme einer molekularen Agitation beim absoluten Nullpunkt" year: '1913' qc6CJjYAAAAJ:cSdaV2aYdYsC: - citations: 420 + citations: 373 title: Spielen Gravitationsfelder im Aufbau der materiellen Elementarteilchen eine wesentliche Rolle? year: '1919' qc6CJjYAAAAJ:cTdzRpWJKHEC: - citations: 104 + citations: 114 title: Sitsungsber. Preus. Akad. Wiss year: '1915' qc6CJjYAAAAJ:caH3YpRUWsIC: @@ -2726,11 +2726,11 @@ papers: title: Theories and sociology of the history of science year: Unknown Year qc6CJjYAAAAJ:cdM53WF7QocC: - citations: 12 + citations: 13 title: 'Albert Einstein] to Michele Besso: Letter, 9 Mar 1917' year: Unknown Year qc6CJjYAAAAJ:cjagZD1ri60C: - citations: 260 + citations: 69 title: On the present status of the radiation problem year: '1909' qc6CJjYAAAAJ:co-xmOEWlm8C: @@ -2758,7 +2758,7 @@ papers: title: "Signification de la relativit\xE9: appendice \xE0 la cinqui\xE8me \xE9dition de\" The meaning of relativity\"(d\xE9cembre 1954). Compl\xE9ments" year: '1960' qc6CJjYAAAAJ:d4tt_xEv1X8C: - citations: 222 + citations: 216 title: Lichtgeschwindigkeit und statik des Gravitationsfeldes year: '1912' qc6CJjYAAAAJ:d6JCS5z0ckYC: @@ -2766,7 +2766,7 @@ papers: title: The establishment of an international bureau of meteorology year: '1927' qc6CJjYAAAAJ:dBIO0h50nwkC: - citations: 44 + citations: 46 title: Physics & reality year: '2003' qc6CJjYAAAAJ:dDz6LBb16w8C: @@ -2778,11 +2778,11 @@ papers: title: "Bemerkung zu der Abhandlung von E. Trefftz:\u201CDas statische Gravitationsfeld zweier Massenpunkte in der Einsteinschen Theorie\u201D" year: '2006' qc6CJjYAAAAJ:dJ-sGqsME_YC: - citations: 9 + citations: 8 title: "Correspondence 1903\u20131955, ed" year: '1972' qc6CJjYAAAAJ:dTyEYWd-f8wC: - citations: 184 + citations: 174 title: "L'\xE9volution des id\xE9es en physique: des premiers concepts aux th\xE9ories de la relativit\xE9 et des quanta" year: '1948' qc6CJjYAAAAJ:dX-nQPao9noC: @@ -2794,15 +2794,15 @@ papers: title: "L'Heure H at-elle sonn\xE9 pour le monde?: effets accumulatifs des explosions nucl\xE9aires. Pr\xE9c\xE9d\xE9 d'un Message de Albert Einstein" year: '1955' qc6CJjYAAAAJ:dZbaGXT4iR0C: - citations: 38 + citations: 41 title: Education year: '1950' qc6CJjYAAAAJ:dgXhHFWAKKUC: - citations: 10 + citations: 11 title: 'Albert Einstein] to Max Born: Letter, after 3 Jul 1918' year: Unknown Year qc6CJjYAAAAJ:dhFuZR0502QC: - citations: 198 + citations: 200 title: 'Corrections and additional remarks to our paper: The influence of the expansion of space on the gravitation fields surrounding the individual stars' year: '1946' qc6CJjYAAAAJ:dhZ1Wuf5EGsC: @@ -2818,7 +2818,7 @@ papers: title: Early life and education year: Unknown Year qc6CJjYAAAAJ:e3CVSTJ63dQC: - citations: 7 + citations: 6 title: "Der gegenw\xE4rtige Stand der Relativit\xE4tstheorie..." year: '1931' qc6CJjYAAAAJ:e3UXjaW_PBUC: @@ -2826,7 +2826,7 @@ papers: title: 'Albert Einstein] to Hans Albert Einstein: Letter, 4 Nov 1915' year: Unknown Year qc6CJjYAAAAJ:e84hm74t-eoC: - citations: 5687 + citations: 5738 title: "Eine neue bestimmung der molek\xFCldimensionen" year: '1906' qc6CJjYAAAAJ:eAUscmXIlQ8C: @@ -2842,7 +2842,7 @@ papers: title: Besprechungen year: '1918' qc6CJjYAAAAJ:eJXPG6dFmWUC: - citations: 485 + citations: 483 title: The theory of relativity year: '1996' qc6CJjYAAAAJ:eKGuBlYFiu8C: @@ -2850,7 +2850,7 @@ papers: title: "L'\xE9lectronique quantique et la th\xE9orie d'irradiation d'Einstein." year: Unknown Year qc6CJjYAAAAJ:eMMeJKvmdy0C: - citations: 12 + citations: 11 title: Det Moderne Verdensbillede year: '1939' qc6CJjYAAAAJ:ealulPZkXgsC: @@ -2870,7 +2870,7 @@ papers: title: 'A Letter from Einstein: Praises Dean Muelder''s Distinguished Lecture" The Idea of the Responsible Society"' year: '1955' qc6CJjYAAAAJ:eq2jaN3J8jMC: - citations: 66 + citations: 69 title: "\xDCber den Frieden: Weltordnung oder Weltuntergang?" year: '1976' qc6CJjYAAAAJ:esGtpfCv0y8C: @@ -2878,7 +2878,7 @@ papers: title: Butsurigaku wa ikani tsukuraretaka year: '1962' qc6CJjYAAAAJ:evX43VCCuoAC: - citations: 298 + citations: 312 title: 'Scientific Correspondence with Bohr, Einstein, Heisenberg and Others...: 1919-1929' year: '1979' qc6CJjYAAAAJ:f-E_jMG6T4AC: @@ -2894,7 +2894,7 @@ papers: title: "Kritisches zu einer von Hrn. De Sitter gegebenen L\xF6sung der Gravitationsgleichungen, 7 M\xE4r 1918" year: Unknown Year qc6CJjYAAAAJ:f2IySw72cVMC: - citations: 39 + citations: 36 title: Briefe an Maurice Solovine year: '1960' qc6CJjYAAAAJ:f36TrmluGJsC: @@ -2910,7 +2910,7 @@ papers: title: "Sushchnost\u02B9 teorii otnositel\u02B9nosti: Perevod s angli\u012Dskogo" year: '1955' qc6CJjYAAAAJ:fEOibwPWpKIC: - citations: 148 + citations: 122 title: "\xDCber den \xC4ther" year: '1924' qc6CJjYAAAAJ:fHS53ZCY-AEC: @@ -2918,11 +2918,11 @@ papers: title: 'Albert Einstein] to Kathia Adler: Letter, 20 Feb 1917' year: Unknown Year qc6CJjYAAAAJ:fLJJVVwU7EQC: - citations: 267 + citations: 351 title: "Ein einfaches Experiment zum Nachweis der Amp\xE8reschen Molekularstr\xF6me" year: '1916' qc6CJjYAAAAJ:fPk4N6BV_jEC: - citations: 66 + citations: 65 title: "Sobre a eletrodin\xE2mica dos corpos em movimento" year: '1983' qc6CJjYAAAAJ:fSKd39tHJ84C: @@ -2942,7 +2942,7 @@ papers: title: 'Albert Einstein] to Paul Ehrenfest: Letter, beginning Dec 1914' year: Unknown Year qc6CJjYAAAAJ:fh7vmlWxvT0C: - citations: 61 + citations: 62 title: 'Albert Einstein/Arnold Sommerfeld: Briefwechsel: Sechzig Briefe aus dem goldenen Zeitalter der modernen Physik' year: '1968' qc6CJjYAAAAJ:fixghrsIJ_wC: @@ -2958,15 +2958,15 @@ papers: title: Does Nature Violate Local Realism? year: '1997' qc6CJjYAAAAJ:g2bnS7N2_ggC: - citations: 29 + citations: 28 title: Testimorial from Professor Einstein (Appendix II) year: '1945' qc6CJjYAAAAJ:g2zAJ5Cw7N4C: - citations: 85 + citations: 88 title: On the limit of validity of the law of thermodynamic equilibrium and on the possibility of a new determination of the elementary quanta year: '1907' qc6CJjYAAAAJ:g5m5HwL7SMYC: - citations: 145 + citations: 146 title: TIME, SPACE, AND GRAVITATION. year: '1920' qc6CJjYAAAAJ:gKLIUvgTho8C: @@ -2974,7 +2974,7 @@ papers: title: "Comment on the Paper by WR He\xDF,\u2018Contribution to the theory of the viscosity of heterogeneous systems,\u2019" year: '1920' qc6CJjYAAAAJ:gNsIjQZ6FscC: - citations: 86 + citations: 87 title: Letter year: '1934' qc6CJjYAAAAJ:gUOu-QWEMMQC: @@ -2982,11 +2982,11 @@ papers: title: Zu Dr. Berliners siebzigstem Geburtstag year: '1932' qc6CJjYAAAAJ:gV6rEsy15s0C: - citations: 3433 + citations: 3515 title: Bemerkungen zu der Arbeit year: '1914' qc6CJjYAAAAJ:gYAb_yFic6IC: - citations: 32 + citations: 30 title: Zur Methodik der Theoretischen Physik year: '1934' qc6CJjYAAAAJ:gmHTDCtJMcoC: @@ -2994,7 +2994,7 @@ papers: title: "Folgerungen aus den Capillarit\xE4tserscheinungen" year: '1901' qc6CJjYAAAAJ:gqMmJtG4vxUC: - citations: 12 + citations: 13 title: 'Albert Einstein] to Michele Besso: Letter, 10 Dec 1915' year: Unknown Year qc6CJjYAAAAJ:h0mLeC6b6wcC: @@ -3002,27 +3002,27 @@ papers: title: Electrons et photons year: '1928' qc6CJjYAAAAJ:h7-KW5G1enMC: - citations: 119 + citations: 118 title: Induktion und Deduktion in der Physik year: '1919' qc6CJjYAAAAJ:hB2aVRuWZNwC: - citations: 4 + citations: 5 title: "Ejn\u0161tejnovskaja teorija otnosite\u013Enosti" year: '1972' qc6CJjYAAAAJ:hEXC_dOfxuUC: - citations: 392 + citations: 389 title: Reply to critics year: '1949' qc6CJjYAAAAJ:hEp1lTclR2YC: - citations: 310 + citations: 322 title: On the generalized theory of gravitation year: '1950' qc6CJjYAAAAJ:hKjooKYXoHIC: - citations: 56 + citations: 55 title: "\xDCber die formale Beziehung des Riemannschen Kr\xFCmmungstensors zu den Feldgleichungen der Gravitation" year: '1927' qc6CJjYAAAAJ:hMod-77fHWUC: - citations: 5071 + citations: 5082 title: "La relativit\xE9" year: '1964' qc6CJjYAAAAJ:hMwNgRnlwaMC: @@ -3030,23 +3030,23 @@ papers: title: 'Albert Einstein] to Hans Albert Einstein: Letter, 10 Sep 1914' year: Unknown Year qc6CJjYAAAAJ:hTqO-V9ugBQC: - citations: 184 + citations: 43 title: "Sur l'\xE9lectrodynamique des corps en mouvement" year: '1965' qc6CJjYAAAAJ:hUq98zRk74IC: - citations: 15 + citations: 13 title: EddingtonsTheorie und Hamiltonsches Prinzip year: '1925' qc6CJjYAAAAJ:hVd5agGqjXwC: - citations: 378 + citations: 3746 title: Physikalische Gesellschaft Zuerich year: '1916' qc6CJjYAAAAJ:hbz17DqrwuEC: - citations: 146 + citations: 344 title: Notiz zu unserer Arbeit year: '1915' qc6CJjYAAAAJ:hcF2OqvMasEC: - citations: 125 + citations: 131 title: Warum Krieg? year: '1933' qc6CJjYAAAAJ:he8YCnfqqkoC: @@ -3062,11 +3062,11 @@ papers: title: "Dialog \xFCber Einw\xE4nde gegen die Relativit\xE4tstheorie" year: '1918' qc6CJjYAAAAJ:htV_5D2kmyYC: - citations: 32 + citations: 29 title: The way out year: '1946' qc6CJjYAAAAJ:htyGaKyDgHMC: - citations: 31 + citations: 29 title: "Zwei strenge statische L\xF6sungen der Feldgleichungen der einheitlichen Feldtheorie" year: '1930' qc6CJjYAAAAJ:hy8If-OszRcC: @@ -3082,7 +3082,7 @@ papers: title: 'As it was: the UNESCO Courier December 1951' year: '1996' qc6CJjYAAAAJ:iH-uZ7U-co4C: - citations: 113 + citations: 114 title: Knowledge of past and future in quantum mechanics year: '1931' qc6CJjYAAAAJ:iKmOvsfbmGkC: @@ -3098,11 +3098,11 @@ papers: title: "Proceedings of the Second Marcel Grossmann Meeting on General Relativity: Organized and Held at the Internat. Centre for Theoret. Physics, Trieste, 5-11 July, 1979: Held in \u2026" year: '1982' qc6CJjYAAAAJ:iRaVAuoZnuIC: - citations: 17 + citations: 16 title: Geometria no euclidea y fisica year: '1926' qc6CJjYAAAAJ:i_7YvbSbtFEC: - citations: 8645 + citations: 8442 title: "Berichtigung zu meiner Arbeit:\u201EEine neue Bestimmung der Molek\xFCldimensionen\u201D \uFE01" year: '2006' qc6CJjYAAAAJ:ifIdVpG6JtcC: @@ -3114,7 +3114,7 @@ papers: title: Relativites restreinte et generale Relativite generale, cosmologie et theories unitaires year: '1994' qc6CJjYAAAAJ:inmFHauC9wsC: - citations: 241 + citations: 245 title: Statistische Untersuchung der Bewegung eines Resonators in einem Strahlungsfeld year: '1910' qc6CJjYAAAAJ:iomT83CKXisC: @@ -3122,7 +3122,7 @@ papers: title: "La th\xE9orie de la relativit\xE9 d'Einstein et la dialectique." year: Unknown Year qc6CJjYAAAAJ:isC4tDSrTZIC: - citations: 3793 + citations: 3897 title: "\xDCber Gravitationswellen" year: '1918' qc6CJjYAAAAJ:it4f3qIuXWYC: @@ -3134,19 +3134,19 @@ papers: title: Correspondance avec Michele Besso year: '1979' qc6CJjYAAAAJ:j3f4tGmQtD8C: - citations: 116 + citations: 117 title: Principles of research year: '1954' qc6CJjYAAAAJ:j5aT6aphRxQC: - citations: 178 + citations: 239 title: "Zum gegenw\xE4rtigen Stande des Gravitations-problems" year: '1914' qc6CJjYAAAAJ:j8SEvjWlNXcC: - citations: 183 + citations: 175 title: Letters on absolute parallelism year: '1979' qc6CJjYAAAAJ:j8pvxH-kN2QC: - citations: 52 + citations: 54 title: "Notiz zu E. Schr\xF6dingers Arbeit" year: '1918' qc6CJjYAAAAJ:jEJjQKk8aPQC: @@ -3158,19 +3158,19 @@ papers: title: Antwort auf eine Bemerkung von W. Anderson year: '1924' qc6CJjYAAAAJ:jPVjDSAV6m0C: - citations: 19 + citations: 17 title: Darstellung der Semi-Vektoren Als Gewohnliche Vektoren von Besonderem Differentiations Charakter year: '1934' qc6CJjYAAAAJ:jhmUvTrEinIC: - citations: 9 + citations: 10 title: 'Helle Zeit-dunkle Zeit: In memoriam Albert Einstein' year: '1956' qc6CJjYAAAAJ:jjenCjXDw2QC: - citations: 0 + citations: 2 title: My faith year: Unknown Year qc6CJjYAAAAJ:jmwITWCuk8IC: - citations: 14 + citations: 13 title: Einstein on the atomic bomb year: '1945' qc6CJjYAAAAJ:jtusTj6o6osC: @@ -3178,7 +3178,7 @@ papers: title: A memorial to PAM Dirac year: '1990' qc6CJjYAAAAJ:k4O5U3vRA4YC: - citations: 5456 + citations: 5594 title: The special and general theory year: '1920' qc6CJjYAAAAJ:k6nH7jlkaTkC: @@ -3186,27 +3186,27 @@ papers: title: The Einstein Centennial year: '1982' qc6CJjYAAAAJ:kF4WlwDc9qcC: - citations: 42 + citations: 43 title: Hedwig und Max Born year: '1916' qc6CJjYAAAAJ:kFzFP8IdBVAC: - citations: 378 + citations: 374 title: Einstein's essays in science year: '2009' qc6CJjYAAAAJ:kGbpvR7Ecy8C: - citations: 40 + citations: 38 title: Bivector fields II year: '1944' qc6CJjYAAAAJ:kMrClmKSQGwC: - citations: 251 + citations: 245 title: "Briefwechsel 1916\xB11955 von Albert Einstein und Hedwig und Max Born, Kommentiert von Max Born" year: '1969' qc6CJjYAAAAJ:kNdYIx-mwKoC: - citations: 491 + citations: 478 title: Sidelights on relativity year: '2009' qc6CJjYAAAAJ:kO05sadLmrgC: - citations: 69 + citations: 67 title: "Bemerkungen zu der Notiz von Hrn. Paul Ehrenfest:\u201D \uFE01Die Translation deformierbarer Elektronen und der Fl\xE4chensatz \u201E" year: '1907' qc6CJjYAAAAJ:kPzzr9KoCG0C: @@ -3222,11 +3222,11 @@ papers: title: "Albert Einstein] to Walter D\xE4llenbach: Letter, after 15 Feb 1917" year: Unknown Year qc6CJjYAAAAJ:kqeZabM7ilsC: - citations: 4006 + citations: 6669 title: Preuss, Sitzungsber year: '1915' qc6CJjYAAAAJ:l0_JBNIuc60C: - citations: 53 + citations: 56 title: Quoted in year: '1990' qc6CJjYAAAAJ:l1jknz_x7mgC: @@ -3234,11 +3234,11 @@ papers: title: Court Expert Opinion in the Matter of Signal Co. vs. Atlas Works, ca. 3 Dec 1921 year: Unknown Year qc6CJjYAAAAJ:l6Q3WhenKVUC: - citations: 578 + citations: 579 title: Geometrie und erfahrung year: '1921' qc6CJjYAAAAJ:l7t_Zn2s7bgC: - citations: 622 + citations: 634 title: Ether and the Theory of Relativity year: '2007' qc6CJjYAAAAJ:lAj_JhtUatoC: @@ -3254,7 +3254,7 @@ papers: title: The collecteds of albert einstein v 9 the berlin years correspondence january 1919-april 1920 english translation (paperback) year: '2004' qc6CJjYAAAAJ:lEqHes_HPG0C: - citations: 760 + citations: 788 title: 'The principle of relativity: a collection of original memoirs on the special and general theory of relativity' year: '1923' qc6CJjYAAAAJ:lIaPce-xyHYC: @@ -3262,23 +3262,23 @@ papers: title: "Privatgutachten zu dem Einspruch gegen die Patentanmeldung G43359 der Gesellschaft f\xFCr nautische Instrumente auf Grund des Pantentes 241637, 16 Jul 1918" year: Unknown Year qc6CJjYAAAAJ:lLDkS9sB7dAC: - citations: 36 + citations: 35 title: "Grundgedanken und Probleme der Relativit\xE4tstheorie" year: '1923' qc6CJjYAAAAJ:lLPirIASiZEC: - citations: 817 + citations: 838 title: "The Collected Papers of Albert Einstein, Volume 15 (Translation Supplement): The Berlin Years: Writings & Correspondence, June 1925\u2013May 1927" year: '2018' qc6CJjYAAAAJ:lOG7zRu2uA8C: - citations: 49 + citations: 64 title: The foundations of general relativity theory year: '1973' qc6CJjYAAAAJ:lPNvfOEJVFUC: - citations: 17 + citations: 18 title: "Die {\\ it Planck} sche Theorie der Strahlung und die Theorie der spezifischen W\xE4rme.(German)" year: Unknown Year qc6CJjYAAAAJ:lR2ECBI0YV4C: - citations: 121 + citations: 119 title: Quantentheoretische Bemerkungen zum Experiment von Stern und Gerlach year: '1922' qc6CJjYAAAAJ:lVu93_cgYy4C: @@ -3286,11 +3286,11 @@ papers: title: OPERATIONALISM AND FUNDAMENTAL MODELS OF PHYSICS year: '1983' qc6CJjYAAAAJ:lX_RDcPAamoC: - citations: 4 + citations: 3 title: Foreword to Concepts of Space, by Max Jammer year: '1954' qc6CJjYAAAAJ:ldfaerwXgEUC: - citations: 43 + citations: 40 title: Algebraic properties of the field in the relativistic theory of the asymmetric field year: '1954' qc6CJjYAAAAJ:lms347EBdh4C: @@ -3306,11 +3306,11 @@ papers: title: A new form of the general relativistic field equations year: '1955' qc6CJjYAAAAJ:mN77zE6YZBUC: - citations: 682 + citations: 722 title: Ueber spezielle und allgemeine Relativitaetstheorie, 127 year: '1969' qc6CJjYAAAAJ:mNm_27jwclsC: - citations: 13 + citations: 14 title: Open Letter to the General Assembly of the United Nations year: '1947' qc6CJjYAAAAJ:mSXQG6lSlFkC: @@ -3322,15 +3322,15 @@ papers: title: 'The collected papers of Albert Einstein. Vol. 1, The early years: 1879-1902:[English translation]' year: Unknown Year qc6CJjYAAAAJ:mVC4hKzE2FoC: - citations: 10 + citations: 13 title: "Berichtigung zu meiner Arbeit:\u201EDie Plancksche Theorie der Strahlung etc.\u201D \uFE01" year: '1907' qc6CJjYAAAAJ:mZB2-lCpWbQC: - citations: 10 + citations: 11 title: 'Albert Einstein] to Max Born: Letter, 27 Feb 1916' year: Unknown Year qc6CJjYAAAAJ:maZDTaKrznsC: - citations: 114 + citations: 116 title: The Bianchi identities in the generalized theory of gravitation year: '1950' qc6CJjYAAAAJ:mdGv78FIKkEC: @@ -3338,7 +3338,7 @@ papers: title: "UN GIORNO LE MACCHINE RIUSCIRANNO A RISOLVERE TUTTI I PROBLEMI, MA MAI NESSUNA DI ESSE POTR\xC0 PORNE UNO\u2026" year: Unknown Year qc6CJjYAAAAJ:mmBnJtEBTSAC: - citations: 12 + citations: 13 title: Albert Einstein] to Michele Besso:[A second] letter, 21 Jul 1916 year: Unknown Year qc6CJjYAAAAJ:mnAcAzq93VMC: @@ -3358,11 +3358,11 @@ papers: title: "L'article d'Einstein\" Remarques th\xE9oriques sur la superconductivit\xE9 des m\xE9taux\"." year: Unknown Year qc6CJjYAAAAJ:n1qY4L4uFdgC: - citations: 783 + citations: 24 title: 'The collected papers of Albert Einstein. Vol. 12, The Berlin years: correspondence, January-December 1921' year: Unknown Year qc6CJjYAAAAJ:n35PH7pn8T4C: - citations: 53 + citations: 52 title: "Grundgedanken und Methoden der Relativit\xE4tstheorie, in ihrer Entwicklung dargestellt" year: '1920' qc6CJjYAAAAJ:n94QCav8jycC: @@ -3374,11 +3374,11 @@ papers: title: "R\xF4le du principe d'\xE9quivalence et apparition de la th\xE9orie g\xE9n\xE9rale de la relativit\xE9." year: Unknown Year qc6CJjYAAAAJ:nOiSByfp82kC: - citations: 39 + citations: 36 title: "Systematische Untersuchung \xFCber kompatible Feldgleichungen, welche in einem Riemannschen Raume mit Fernparallelismus gesetzt werden k\xF6nnen" year: '1931' qc6CJjYAAAAJ:nU66GSXDKhoC: - citations: 29 + citations: 30 title: Elementare theorie der wasserwellen und des fluges year: '1916' qc6CJjYAAAAJ:nZtlP1Cc3DIC: @@ -3386,11 +3386,11 @@ papers: title: Einstein und die Interviewer, 10 Aug 1921 year: Unknown Year qc6CJjYAAAAJ:nazVBdFzvK0C: - citations: 172 + citations: 161 title: Einstein on Peace, ed. Otto Nathan and Heinz Norden year: '1960' qc6CJjYAAAAJ:njp6nI0QjqAC: - citations: 355 + citations: 447 title: "\xDCber die Entwickelung unserer Anschauungen \xFCber das Wesen und die Konstitution der Strahlung" year: '1909' qc6CJjYAAAAJ:nlKf13ul9_IC: @@ -3410,7 +3410,7 @@ papers: title: Os fundamentos da teoria da relatividade geral year: '1916' qc6CJjYAAAAJ:ntg98fmFLVcC: - citations: 408 + citations: 400 title: The elementary theory of the Brownian motion year: '1908' qc6CJjYAAAAJ:nvAonm6-wpUC: @@ -3418,11 +3418,11 @@ papers: title: "Neue Zugangswege zur Entw\xF6hnungs-behandlung in Sachsen, Sachsen-Anhalt und Th\xFCringen" year: Unknown Year qc6CJjYAAAAJ:nwfoItMF7hMC: - citations: 145 + citations: 432 title: "Teor\u0131a cu\xE1ntica de gases ideales monoat\xF3micos, Sitz" year: '1924' qc6CJjYAAAAJ:o4Qvs5Y5TLQC: - citations: 180 + citations: 975 title: The Early Years 1879-1902 year: '1987' qc6CJjYAAAAJ:o9ULDYDKYbIC: @@ -3430,19 +3430,19 @@ papers: title: "Bemerkung zu Herrn Schr\xF6dingers Notiz" year: '1918' qc6CJjYAAAAJ:oAywNP-vUhwC: - citations: 37 + citations: 38 title: Eine neue formale Deutung der Maxwellschen Feldgleichungen der Elektrodynamik year: '1916' qc6CJjYAAAAJ:oFKsPyNwwpYC: - citations: 85 + citations: 83 title: "\xDCber die M\xF6glichkeit einer neuen Pr\xFCfung des Relativit\xE4tsprinzips" year: '2006' qc6CJjYAAAAJ:oFWWKr2Zb18C: - citations: 148 + citations: 122 title: On the ether year: '1991' qc6CJjYAAAAJ:oJZlKik0E8QC: - citations: 11 + citations: 10 title: Albert Einstein year: '1999' qc6CJjYAAAAJ:oQQVFBP0nzwC: @@ -3454,7 +3454,7 @@ papers: title: 'Le pouvoir nu: propos sur la guerre et la paix, 1914-1955' year: '1991' qc6CJjYAAAAJ:oYLFIHfuHKwC: - citations: 238 + citations: 244 title: "Zum kosmologischen Problem der allgemeinen Relativit\xE4tstheorie" year: '1931' qc6CJjYAAAAJ:oea97a5D_h0C: @@ -3462,15 +3462,15 @@ papers: title: "\xDCber den gegenw\xE4rtigen Stand der allgemeinen Relativit\xE4tsteorie" year: '1930' qc6CJjYAAAAJ:ojlX30-wUrgC: - citations: 194 + citations: 191 title: Religion and science year: '1930' qc6CJjYAAAAJ:oldoQiaHq2UC: - citations: 124 + citations: 165 title: "Einheitliche Theorie von Gravitation und Elektrizit\xE4t. Zweite Abhandlung" year: '2006' qc6CJjYAAAAJ:oqD4_j7ulsYC: - citations: 19762 + citations: 20170 title: On the movement of small particles suspended in stationary liquids required by the molecular-kinetic theory of heat year: '1905' qc6CJjYAAAAJ:osi8XriVlOYC: @@ -3478,7 +3478,7 @@ papers: title: 'Albert Einstein] to Wander and Geertruida de Haas: Letter, 6 Jul 1915' year: Unknown Year qc6CJjYAAAAJ:oursBaop5wYC: - citations: 1503 + citations: 1491 title: Zur theorie der brownschen bewegung year: '1906' qc6CJjYAAAAJ:oy0z8GdgWhYC: @@ -3486,7 +3486,7 @@ papers: title: 'On the Nature of Spirit: Masculinity, Femininity, and Human Identity' year: Unknown Year qc6CJjYAAAAJ:oynPyU19kbsC: - citations: 67 + citations: 64 title: "Berichtigungen zu der Arbeit:\" \xDCber das Relativit\xE4tsprinzip und die aus demselben gezogenen Folgerungen\"" year: '1908' qc6CJjYAAAAJ:p2vkXumR6kMC: @@ -3506,7 +3506,7 @@ papers: title: B. Ho mann and L. Infeld year: '1938' qc6CJjYAAAAJ:p9YawgimX9oC: - citations: 38 + citations: 39 title: Albert Einstein und die Schweiz year: '1952' qc6CJjYAAAAJ:pGq6TLPqxssC: @@ -3518,15 +3518,15 @@ papers: title: Non-euclidean geometry and physics (1926) year: '2005' qc6CJjYAAAAJ:pRWBApOjXDcC: - citations: 72 + citations: 70 title: "Untersuchungen \xFCber die Theorie der Brownschen Bewegung" year: '1997' qc6CJjYAAAAJ:pUxgyZctzPYC: - citations: 65 + citations: 73 title: "Prinzipielles zur verallgemeinerten Relativit\xE4tstheorie und Gravitationstheorie" year: '1914' qc6CJjYAAAAJ:pa8xeX_DvI4C: - citations: 23 + citations: 22 title: B. Podolsky & N. Rosen, 1935 year: Unknown Year qc6CJjYAAAAJ:polMJLZb0X8C: @@ -3534,7 +3534,7 @@ papers: title: 'Albert Einstein] to Erwin Freundlich: Letter, between 1 and 25 Mar 1915' year: Unknown Year qc6CJjYAAAAJ:prKdS1S5QkMC: - citations: 0 + citations: 11 title: Creator and Rebel year: '1972' qc6CJjYAAAAJ:prvsfHNhuEoC: @@ -3554,7 +3554,7 @@ papers: title: What is the Responsibility of Scientists in War? year: Unknown Year qc6CJjYAAAAJ:q1ZQJjUA47MC: - citations: 230 + citations: 224 title: On the motion, required by the molecular-kinetic theory of heat, of particles suspended in a fluid at rest year: '1905' qc6CJjYAAAAJ:q2Dn1KgioksC: @@ -3570,15 +3570,15 @@ papers: title: 'Albert Einstein] to Tullio Levi-Civita: Letter, 2 Apr 1915' year: Unknown Year qc6CJjYAAAAJ:q3oQSFYPqjQC: - citations: 40 + citations: 39 title: "Quatre conf\xE9rences sur la th\xE9orie de la relativit\xE9 faites \xE0 l'Universit\xE9 de Princeton" year: '2005' qc6CJjYAAAAJ:qCpRzq7zkD8C: - citations: 2117 + citations: 2136 title: "Zur allgemeinen Relativit\xE4tstheorie" year: '1915' qc6CJjYAAAAJ:qPeb-qHga9sC: - citations: 310 + citations: 305 title: "Auf die Riemann-Metrik und den Fern-Parallelismus gegr\xFCndete einheitliche Feldtheorie" year: '1930' qc6CJjYAAAAJ:qbqt7gslDFUC: @@ -3590,15 +3590,15 @@ papers: title: "En busca del eslab\xF3n perdido entre educaci\xF3n y desarrollo: desaf\xEDos y retos para la universidad en Am\xE9rica Latina y el Caribe" year: Unknown Year qc6CJjYAAAAJ:qjMakFHDy7sC: - citations: 3141 + citations: 3186 title: On the electrodynamics of moving bodies year: '1905' qc6CJjYAAAAJ:qsWQJNntlusC: - citations: 3159 + citations: 3175 title: Ideas and opinions year: '1995' qc6CJjYAAAAJ:quBVm8e4N6QC: - citations: 62 + citations: 0 title: "Zu Kaluzas Theorie des Zusammenhanges von Gravitation und Elektrizit\xE4t. Zweite Mitteilung" year: '2006' qc6CJjYAAAAJ:qxL8FJ1GzNcC: @@ -3606,7 +3606,7 @@ papers: title: Geometrie und erfahrung year: '1921' qc6CJjYAAAAJ:qyhmnyLat1gC: - citations: 27330 + citations: 27264 title: Can quantum-mechanical description of physical reality be considered complete? year: '1935' qc6CJjYAAAAJ:qzuIxkxWBNsC: @@ -3618,11 +3618,11 @@ papers: title: La questione del metodo year: '1954' qc6CJjYAAAAJ:r0BpntZqJG4C: - citations: 198 + citations: 194 title: On the non-existence of regular stationary solutions of relativistic field equations year: '1943' qc6CJjYAAAAJ:r0s_y6AIs4IC: - citations: 0 + citations: 1 title: Waarom oorlog? year: '1986' qc6CJjYAAAAJ:r4zddjZt6C4C: @@ -3630,7 +3630,7 @@ papers: title: 'Albert Einstein] to Paul Ehrenfest: Letter, 25 May 1914' year: Unknown Year qc6CJjYAAAAJ:r7QigD7TRWAC: - citations: 12 + citations: 15 title: 'Scienza e vita: lettere 1916-1955' year: '1973' qc6CJjYAAAAJ:r8lgQMkXaCEC: @@ -3638,11 +3638,11 @@ papers: title: Oorlog als ziekte. Met een voorw. van Albert Einstein. Naar de Nederlandse vertaling bewerkt door C. van Emde Boas year: '1938' qc6CJjYAAAAJ:rCzfLUpcSPoC: - citations: 467 + citations: 449 title: "A evolu\xE7\xE3o da f\xEDsica: o desenvolvimento das ideias desde os primitivos conceitos at\xE9 \xE0 Relatividade e aos Quanta" year: '1939' qc6CJjYAAAAJ:rFyVMFCKTwsC: - citations: 334 + citations: 327 title: Elementare Theorie der Brownschen) Bewegung year: '1908' qc6CJjYAAAAJ:rKOGDx9nJ1EC: @@ -3650,11 +3650,11 @@ papers: title: "Gelegentliches: Zum f\xFCnfzigsten Geburtstag 14. M\xE4rz 1929 dargebracht von der Soncino-Gesellschaft der Freunde des J\xFCdischen Buches zu Berlin" year: '1929' qc6CJjYAAAAJ:rPbfW60zdgkC: - citations: 1165 + citations: 1168 title: Physics and reality year: '1936' qc6CJjYAAAAJ:rQcm2j6_ZE8C: - citations: 21 + citations: 20 title: Max Planck als Forscher year: '1913' qc6CJjYAAAAJ:rUiCm8s56TIC: @@ -3662,7 +3662,7 @@ papers: title: A new analysis of molecule dimensions year: '1968' qc6CJjYAAAAJ:rWqKpwLRvsIC: - citations: 2715 + citations: 2803 title: Die feldgleichungen der gravitation year: Unknown Year qc6CJjYAAAAJ:rbgNTKsR3fAC: @@ -3674,11 +3674,11 @@ papers: title: "Einheitliche Feldtheorie von Gravitation und Elektrizit\xE4t.(German)" year: Unknown Year qc6CJjYAAAAJ:rjBKtydo3wgC: - citations: 40 + citations: 38 title: "\xBF Por qu\xE9 socialismo?" year: '2001' qc6CJjYAAAAJ:rp474-M6Y4oC: - citations: 16 + citations: 62 title: "Einstein sagt: Zitate, Einf\xE4lle, Gedanken" year: '1999' qc6CJjYAAAAJ:rq4rw-O2q6QC: @@ -3686,7 +3686,7 @@ papers: title: 'The anthropomorphized product shelf: Symmetric multimodal human-environment interaction' year: '2006' qc6CJjYAAAAJ:rr29yNp9FasC: - citations: 22 + citations: 23 title: "\xDCber ein den Elementarproze\xDF der Lichtemission betreffendes Experiment" year: '2006' qc6CJjYAAAAJ:rsrKZ8bNWIsC: @@ -3710,7 +3710,7 @@ papers: title: 'Prospettive relativistiche: dell''etere e della geometria' year: '1922' qc6CJjYAAAAJ:s1ouQE5r0WUC: - citations: 17 + citations: 15 title: Mein Glaubensbekenntnis year: '1930' qc6CJjYAAAAJ:s2G-WRnXBicC: @@ -3722,19 +3722,19 @@ papers: title: "La th\xE9orie corpusculaire des rayons X et la structure des cristaux." year: Unknown Year qc6CJjYAAAAJ:sAujV351FBYC: - citations: 4792 + citations: 4797 title: The meaning of relativity year: '1950' qc6CJjYAAAAJ:sIDMtVbdO0QC: - citations: 20 + citations: 19 title: "\xDCber die gegenw\xE4rtige Krise der theoretischen Physik" year: '1922' qc6CJjYAAAAJ:sJK75vZXtG0C: - citations: 209 + citations: 204 title: Mis ideas y opiniones year: '2011' qc6CJjYAAAAJ:sNmaIFBj_lkC: - citations: 7 + citations: 6 title: Compton Effect year: '1966' qc6CJjYAAAAJ:sYWh8IhQ1GMC: @@ -3750,11 +3750,11 @@ papers: title: The Principles of humanism year: '1974' qc6CJjYAAAAJ:sgVRHlApM4oC: - citations: 68 + citations: 70 title: The laws of science and the laws of ethics year: '1950' qc6CJjYAAAAJ:sgsej9ZJWHMC: - citations: 3958 + citations: 4068 title: "N\xE4herungsweise Integration der Feldgleichungen der Gravitation" year: '1916' qc6CJjYAAAAJ:siTy-4AL0AwC: @@ -3762,7 +3762,7 @@ papers: title: "O conhecimento cient\xEDfico no nosso contexto social e hist\xF3rico: um ano de realiza\xE7\xF5es" year: '2008' qc6CJjYAAAAJ:sk-5v2XeZBgC: - citations: 21 + citations: 20 title: Theoretische Bemerkungen zur Supraleitung der Metalle year: '1922' qc6CJjYAAAAJ:spwacExez6wC: @@ -3782,11 +3782,11 @@ papers: title: Uproar in the Lecture Hall, 13 Feb 1920 year: Unknown Year qc6CJjYAAAAJ:t6usbXjVLHcC: - citations: 134 + citations: 140 title: The human side year: '1979' qc6CJjYAAAAJ:t7izwRedFcYC: - citations: 4 + citations: 2 title: Albert Einstein, il lato humano year: '1980' qc6CJjYAAAAJ:tHxcpc5o5bgC: @@ -3794,11 +3794,11 @@ papers: title: A. Einstein autobiographical notes year: '1970' qc6CJjYAAAAJ:tVzLobxzA7YC: - citations: 6 + citations: 7 title: "Geografia, ecologia da paisagem e teledetec\xE7\xE3o, enquadramento\u2013contextualiza\xE7\xE3o" year: '2004' qc6CJjYAAAAJ:tWiuw1KVSQEC: - citations: 92 + citations: 90 title: "La Th\xE9orie de la Relativit\xE9" year: '1935' qc6CJjYAAAAJ:tYdqGa2HnWcC: @@ -3814,15 +3814,15 @@ papers: title: "Nachtrag zu meiner Arbeit:\u201EThermodynamische Begr\xFCndung des photochemischen Aquivalentgesetzes\u201D \uFE01" year: '1912' qc6CJjYAAAAJ:tkaPQYYpVKoC: - citations: 16 + citations: 17 title: Physik als Abenteuer der Erkenntnis year: '1938' qc6CJjYAAAAJ:tltQ_bo2KloC: - citations: 19 + citations: 20 title: My Credo year: '1986' qc6CJjYAAAAJ:tntj4plCNvAC: - citations: 123 + citations: 122 title: Relativity and the Problem of Space year: '1954' qc6CJjYAAAAJ:tzPJaSocouwC: @@ -3834,15 +3834,15 @@ papers: title: "Die Kompatibilit\xE4t der Feldgleichungen in der einheitlichen Feldtheorie" year: '1930' qc6CJjYAAAAJ:uAPFzskPt0AC: - citations: 15 + citations: 14 title: "equations of motion\uFB01 one therefore could not doubt that the laws of nature are" year: '1907' qc6CJjYAAAAJ:uCYQzKCmtZwC: - citations: 1237 + citations: 1217 title: Out of my later years year: '1950' qc6CJjYAAAAJ:uH1VZYVfkoQC: - citations: 10 + citations: 11 title: 'Albert Einstein] to Max Born: Letter, 24 Jun 1918' year: Unknown Year qc6CJjYAAAAJ:uK1dVpBkok0C: @@ -3854,19 +3854,19 @@ papers: title: 'Albert Einstein] to Paul Hertz: Letter, between 14 Aug and 4 Nov 1915' year: Unknown Year qc6CJjYAAAAJ:uXirmJe02n4C: - citations: 82 + citations: 78 title: "Berichtigungen zu der Arbeit:\" \xDCber das Relativit\xE4tsprinzip und die aus demselben gezogenen Folgerungen\", 29 Feb 1908" year: Unknown Year qc6CJjYAAAAJ:u_mOZUIutIEC: - citations: 35 + citations: 34 title: "\xDCber eine Methode zur Bestimmung des Verh\xE4ltnisses der transversalen und longitudinalen Masse des Elektrons" year: '1906' qc6CJjYAAAAJ:ufKn5pxu7C0C: - citations: 28 + citations: 27 title: "Bemerkung zu meiner Arbeit \u201CZur allgemeinen Relativit\xE4tstheorie\u201D" year: '2006' qc6CJjYAAAAJ:ufrVoPGSRksC: - citations: 631 + citations: 634 title: The influence of the expansion of space on the gravitation fields surrounding the individual stars year: '1945' qc6CJjYAAAAJ:uh8FjILnQOkC: @@ -3878,7 +3878,7 @@ papers: title: "Lehrs\xE4tze \xFCber das Weltall: Mit Beweis in Form eines offenen Briefes an Professor Einstein. In einer von Gerhard R\xFChm bearbeiteten Neuauflage" year: '1965' qc6CJjYAAAAJ:ult01sCh7k0C: - citations: 310 + citations: 412 title: Wolfgang Pauli year: '2001' qc6CJjYAAAAJ:umqufdRvDiIC: @@ -3886,7 +3886,7 @@ papers: title: "Einstein \xFCber \u201Ewahre Kultur \u201Cund die Stellung der Geometrie im Wissenschaftssystem" year: '1979' qc6CJjYAAAAJ:uoeYKOKFegwC: - citations: 14 + citations: 15 title: Einstein on Humanism year: '1993' qc6CJjYAAAAJ:uqZYSrDi9MMC: @@ -3902,7 +3902,7 @@ papers: title: Overture to the comic opera Don Giovanni, K year: '1900' qc6CJjYAAAAJ:vCSeWdjOjw8C: - citations: 12 + citations: 13 title: 'Albert Einstein] to Michele Besso: Letter, 22 Sep 1917' year: Unknown Year qc6CJjYAAAAJ:vM5yiaU9oLoC: @@ -3918,19 +3918,19 @@ papers: title: Albert Einstein to Heinrich Zangger year: '2005' qc6CJjYAAAAJ:vRqMK49ujn8C: - citations: 26 + citations: 27 title: "Fysika jako dobrodru\u017Estv\xED pozn\xE1n\xED" year: '1958' qc6CJjYAAAAJ:vV6vV6tmYwMC: - citations: 157 + citations: 158 title: Living philosophies year: '1979' qc6CJjYAAAAJ:v_xunPV0uK0C: - citations: 69 + citations: 67 title: On the five-dimensional representation of gravitation and electricity year: '1941' qc6CJjYAAAAJ:viPVbuMW504C: - citations: 302 + citations: 396 title: Collected Scientific Works year: '1965' qc6CJjYAAAAJ:viTTOddtVMkC: @@ -3938,7 +3938,7 @@ papers: title: IDEAS PARA MEDITAR CON CALMA year: Unknown Year qc6CJjYAAAAJ:vj8KeYadoLsC: - citations: 63 + citations: 70 title: Diskussion year: '1920' qc6CJjYAAAAJ:vjZqxyZ7hS4C: @@ -3946,7 +3946,7 @@ papers: title: "Zum gegenw\xE4rtigen Stande des Problems der spezifischen W\xE4rme" year: '1911' qc6CJjYAAAAJ:vkz5F8TaVKkC: - citations: 29 + citations: 27 title: 'Albert Einstein, Max Born, Hedwig Born: Correspondance, 1916-1955' year: '1972' qc6CJjYAAAAJ:vlECJaBXBlQC: @@ -3962,7 +3962,7 @@ papers: title: "A educa\xE7\xE3o inclusiva e as transforma\xE7\xF5es dos processos de constru\xE7\xE3o do conhecimento" year: Unknown Year qc6CJjYAAAAJ:vq25oHwZT-8C: - citations: 17 + citations: 15 title: "Koniglich Preussische Akademie f\xFCr Wissenschaft 844 (1915);[Links] A. Einstein" year: '1916' qc6CJjYAAAAJ:vt8c2csMsvAC: @@ -3970,11 +3970,11 @@ papers: title: "Introduction aux th\xE8ories de M. Einstein en vue de leur application a l'astronomie" year: '1921' qc6CJjYAAAAJ:vytXtR8tOLIC: - citations: 457 + citations: 3079 title: B. preuss year: '1916' qc6CJjYAAAAJ:vzY-6mMDyDUC: - citations: 86 + citations: 87 title: 'The Berlin Years, Correspondence 1914-1918: English Translation' year: '1998' qc6CJjYAAAAJ:w1G5vK4DiEkC: @@ -3986,19 +3986,19 @@ papers: title: Considerations on electrodynamics, the ether, geometry and relativity year: '1972' qc6CJjYAAAAJ:w2UhwfzvF0QC: - citations: 431 + citations: 428 title: On a generalization of Kaluza's theory of electricity year: '1938' qc6CJjYAAAAJ:w7CBUyPWg-0C: - citations: 10 + citations: 9 title: Eine ableitung des theorems von Jacobi year: '1917' qc6CJjYAAAAJ:wEOyVsangm4C: - citations: 739 + citations: 740 title: Philosopher-Scientist, ed year: '1970' qc6CJjYAAAAJ:wGzT3bKASkAC: - citations: 273 + citations: 250 title: "\xDCber die vom Relativit\xE4tsprinzip geforderte Tr\xE4gheit der Energie" year: '1907' qc6CJjYAAAAJ:wNvz2w4be3AC: @@ -4018,23 +4018,23 @@ papers: title: "La teoria della relativit\xE0" year: '1987' qc6CJjYAAAAJ:wgKq3sYidysC: - citations: 512 + citations: 517 title: Concerning an heuristic point of view toward the emission and transformation of light year: '1965' qc6CJjYAAAAJ:wkm4DBaukwsC: - citations: 8 + citations: 12 title: "Antwort auf eine Abhandlung M. v. Laues \u201EEin Satz der Wahrscheinlichkeitsrechnung und seine Anwendung auf die Strahlungstheorie\u201D \uFE01" year: '1915' qc6CJjYAAAAJ:wlh7PBhwZ8MC: - citations: 12 + citations: 13 title: 'Albert Einstein] to Michele Besso: Letter, 6 Sep 1916' year: Unknown Year qc6CJjYAAAAJ:wuD5JclIwkYC: - citations: 223 + citations: 228 title: Science and religion year: '1940' qc6CJjYAAAAJ:wy5MF_2MSNEC: - citations: 12 + citations: 13 title: 'Albert Einstein] to Michele Besso: Letter, 9 Jul 1918' year: Unknown Year qc6CJjYAAAAJ:xMZGxf1v-3YC: @@ -4050,7 +4050,7 @@ papers: title: Why lnformation Technology lnspired but Cannot Deliver Knowledge Management year: '2004' qc6CJjYAAAAJ:xii_ZKWM4-0C: - citations: 44 + citations: 55 title: "Bemerkungen zu den P. Hertzschen Arbeiten:\u201E\xDCber die mechanischen Grundlagen der Thermodynamik\u201D \uFE01" year: '1911' qc6CJjYAAAAJ:xu-w60CxnpAC: @@ -4058,7 +4058,7 @@ papers: title: "Briefe zur Wellenmechanik [von][Erwin] Schr\xF6dinger,[Max] Planck,[ALbert] Einstein und [Hendrik Antoon] Lorentz" year: '1963' qc6CJjYAAAAJ:xvKSgulxyWUC: - citations: 6 + citations: 779 title: 'The collected papers of Albert Einstein: writings, 1912-1914. The Swiss years' year: '1966' qc6CJjYAAAAJ:xwIxJehhd2UC: @@ -4066,11 +4066,11 @@ papers: title: "Albert Einstein] to Rudolf F\xF6rster: Letter, 19 Feb 1918" year: Unknown Year qc6CJjYAAAAJ:xyKys1DtkaQC: - citations: 30 + citations: 75 title: Wissenschaftlicher Briefwechsel mit Bohr, Einstein, Heisenberg ua. Bd. 4. 1955-1956 year: '2001' qc6CJjYAAAAJ:yCjxvIMm6_oC: - citations: 16 + citations: 18 title: "Nachtr\xE4gliche Antwort auf eine Frage von Herrn Rei\xDFner" year: '1914' qc6CJjYAAAAJ:yG6gRY0c4kQC: @@ -4078,11 +4078,11 @@ papers: title: 'Albert Einstein] to Gustav Mie: Letter, 29 Dec 1917' year: Unknown Year qc6CJjYAAAAJ:yIeBiWEAh44C: - citations: 1297 + citations: 1313 title: "\xDCber den Einflu\xDF der Schwerkraft auf die Ausbreitung des Lichtes" year: '2006' qc6CJjYAAAAJ:yJjnfzR0HrkC: - citations: 864 + citations: 885 title: Strahlungs-emission und absorption nach der quantentheorie year: '1916' qc6CJjYAAAAJ:yKZlB_2wKysC: @@ -4090,23 +4090,23 @@ papers: title: 'Albert Einstein] to Paul Ehrenfest: Letter, 4 Sep 1918' year: Unknown Year qc6CJjYAAAAJ:yNlG6JgpFqoC: - citations: 237 + citations: 235 title: A generalized theory of gravitation year: '1948' qc6CJjYAAAAJ:yNohvu9kXXYC: - citations: 388 + citations: 432 title: Quantentheorie des idealen einatomigen Gases, Sitzber year: '1924' qc6CJjYAAAAJ:yS0fcbgecPsC: - citations: 21 + citations: 22 title: Education for independent thought year: '1952' qc6CJjYAAAAJ:yXZqsUWzai8C: - citations: 138 + citations: 141 title: "Koniglich Preu\u03B2ische Akademie der Wissenschaften" year: '1916' qc6CJjYAAAAJ:yZoBfgUKqwcC: - citations: 45 + citations: 42 title: "\xDCber eine naheliegende Erg\xE4nzung des Fundamentes der allgemeinen Relativit\xE4tstheorie" year: '1921' qc6CJjYAAAAJ:ypzvKOdbExQC: @@ -4122,7 +4122,7 @@ papers: title: "Z Einsteinovy Pra\u017Esk\xE9 korespondence" year: '1962' qc6CJjYAAAAJ:z2g7kDSNNyoC: - citations: 17 + citations: 22 title: "Eine neue elektrostatische Methode zur Messung kleiner Elektrizit\xE4tsmengen" year: '1908' qc6CJjYAAAAJ:zCpYd49hD24C: @@ -4134,7 +4134,7 @@ papers: title: "Sur les forces pond\xE9romotrices qui agissent sur des conducteurs ferromagn\xE9tiques dispos\xE9s dans un champ magn\xE9tique et parcourus par un courant" year: '1910' qc6CJjYAAAAJ:zG6RlwjYRPQC: - citations: 19 + citations: 18 title: Marian v. Smoluchowski year: '1917' qc6CJjYAAAAJ:zI9YInTrFVIC: @@ -4142,7 +4142,7 @@ papers: title: 'Albert Einstein] to Wander de Haas: Letter, 17 Mar 1915' year: Unknown Year qc6CJjYAAAAJ:zLWjf1WUPmwC: - citations: 19 + citations: 20 title: "Les fondements de la th\xE9orie de la relativit\xE9 g\xE9n\xE9rale" year: '1933' qc6CJjYAAAAJ:zLla2nKXDtwC: @@ -4158,11 +4158,11 @@ papers: title: Nonlinear Model Equations and Variational Principles year: Unknown Year qc6CJjYAAAAJ:z_wVstp3MssC: - citations: 24 + citations: 21 title: 'About Zionism: Speeches and Letters by Professor Albert Einstein' year: '1930' qc6CJjYAAAAJ:za7pDTvVV8kC: - citations: 16 + citations: 15 title: Zur Theorie der Lichtfortpflanzung in dispergierenden Medien year: '2006' qc6CJjYAAAAJ:ziRtHtnO-_kC: @@ -4174,6 +4174,6 @@ papers: title: "Albert Einstein] to Rudolf F\xF6rster: Letter, 17 Jan 1918" year: Unknown Year qc6CJjYAAAAJ:zxzvZ9-XIW8C: - citations: 72 + citations: 73 title: Albert Einstein, the human side year: '2013' diff --git a/_layouts/default.liquid b/_layouts/default.liquid index ea103706..3c2dea8b 100644 --- a/_layouts/default.liquid +++ b/_layouts/default.liquid @@ -13,6 +13,7 @@ {% endif %} {% include head.liquid %} + diff --git a/_plugins/openssl_verify_flags_patch.rb b/_plugins/openssl_verify_flags_patch.rb new file mode 100644 index 00000000..464479f7 --- /dev/null +++ b/_plugins/openssl_verify_flags_patch.rb @@ -0,0 +1,35 @@ +# _plugins/openssl_verify_flags_patch.rb + +require "openssl" + +# 1. Make sure DEFAULT_PARAMS doesn't include :verify_flags, +# since on your build SSLContext doesn't define verify_flags= +if OpenSSL::SSL::SSLContext.const_defined?(:DEFAULT_PARAMS) + params = OpenSSL::SSL::SSLContext::DEFAULT_PARAMS + + # Avoid calling a non-existent verify_flags= + params.delete(:verify_flags) + + # 2. Add a verify_callback that *only* ignores the CRL retrieval error, + # and otherwise keeps normal verification. + params[:verify_callback] = lambda do |preverify_ok, store_ctx| + error = store_ctx.error + + # Ignore only: X509_V_ERR_UNABLE_TO_GET_CRL + if error == OpenSSL::X509::V_ERR_UNABLE_TO_GET_CRL + true + else + preverify_ok + end + end +end + +# 3. Define a no-op verify_flags= so that if anything tries to set it +# at runtime, it doesn't crash. +class OpenSSL::SSL::SSLContext + unless method_defined?(:verify_flags=) + def verify_flags=(_flags) + # no-op: ignore verify_flags on this build + end + end +end diff --git a/assets/js/distillpub/template.v2.js b/assets/js/distillpub/template.v2.js index 4c7667ea..a622c553 100644 --- a/assets/js/distillpub/template.v2.js +++ b/assets/js/distillpub/template.v2.js @@ -2692,19 +2692,27 @@ d-citation-list .references .title { }, tokenize: function (text, grammar) { + // Make a prototype-less safe copy of grammar, to prevent prototype pollution + var safeGrammar = Object.create(null); + for (var key in grammar) { + if (Object.prototype.hasOwnProperty.call(grammar, key)) { + if (key === "__proto__" || key === "constructor" || key === "prototype") continue; + safeGrammar[key] = grammar[key]; + } + } var rest = grammar.rest; if (rest) { for (var token in rest) { - grammar[token] = rest[token]; + if (token === "__proto__" || token === "constructor" || token === "prototype") continue; + safeGrammar[token] = rest[token]; } - - delete grammar.rest; + // Don't mutate original grammar (could be shared by others) + //delete grammar.rest; } - var tokenList = new LinkedList(); addAfter(tokenList, tokenList.head, text); - matchGrammar(text, tokenList, grammar, tokenList.head, 0); + matchGrammar(text, tokenList, safeGrammar, tokenList.head, 0); return toArray(tokenList); }, @@ -3087,7 +3095,7 @@ d-citation-list .references .title { comment: //, prolog: /<\?[\s\S]+?\?>/, doctype: { - pattern: /"'[\]]|"[^"]*"|'[^']*')+(?:\[(?:(?!)*\]\s*)?>/i, + pattern: /"'[\]]|"[^"]*"|'[^']*')+(?:\[(?:(?!)*\]\s*)?>/i, greedy: true, }, cdata: //i, @@ -3330,7 +3338,7 @@ d-citation-list .references .title { Prism.languages.insertBefore("javascript", "keyword", { regex: { pattern: - /((?:^|[^$\w\xA0-\uFFFF."'\])\s])\s*)\/(?:\[(?:[^\]\\\r\n]|\\.)*]|\\.|[^/\\\[\r\n])+\/[gimyus]{0,6}(?=(?:\s|\/\*[\s\S]*?\*\/)*(?:$|[\r\n,.;:})\]]|\/\/))/, + /((?:^|[^$\w\xA0-\uFFFF."'\])\s])\s*)\/(?:\[(?:[^\]\\\r\n]|\\.)*]|\\.|[^/\\\[\r\n])+\/[gimyus]{0,6}(?=(?:\s|\/\*(?:[^*]|\*(?!\/))*\*\/)*(?:$|[\r\n,.;:})\]]|\/\/))/, lookbehind: true, greedy: true, }, @@ -4235,7 +4243,7 @@ ${css} if (this.hasAttribute("block")) { // normalize the tab indents - content = content.replace(/\n/, ""); + content = content.replace(/\n/g, ""); const tabs = content.match(/\s*/); content = content.replace(new RegExp("\n" + tabs, "g"), "\n"); content = content.trim(); @@ -4672,6 +4680,16 @@ d-references {