Jekyll i18n: Polyglot Plugin & Folder Method | Generated by AI

Home 2025.08

You’ve got three good paths for i18n in a Jekyll blog, from “batteries-included” to “bare-bones.” Here’s how each works and how to set it up.

1) Easiest: use a plugin (jekyll-polyglot)

Best if you can build locally or with CI. GitHub Pages’ built-in builder doesn’t allow most third-party plugins, so either build locally (jekyll build) and push the generated _site/, or use GitHub Actions to build and publish.

Install

gem install jekyll-polyglot
# or add to Gemfile:
# gem 'jekyll-polyglot'

_config.yml

plugins:
  - jekyll-polyglot

languages: ["en", "zh", "ja"]   # your languages
default_lang: "en"
exclude_from_localization: ["assets", "images", "CNAME"]  # keep static paths shared
parallel_localization: true

Content structure

_index.md               # optional landing
_posts/
  2024-05-01-hello.en.md
  2024-05-01-hello.zh.md
pages/
  about.en.md
  about.zh.md

Polyglot builds language-scoped URLs like /en/about/ and /zh/about/. It also exposes site.active_lang.

Language switcher (in your layout)

<nav class="lang-switch">
  
</nav>

A simpler approach with Polyglot is:

<nav>
  
</nav>

UI strings via data files Create _data/i18n.yml:

en:
  nav:
    home: "Home"
    posts: "Posts"
zh:
  nav:
    home: "主页"
    posts: "文章"

Use in templates:


SEO (hreflang) In <head> of your layout:



<link rel="alternate" hreflang="x-default" href="https://lzwjava.github.io//notes/2025-08-13-jekyll-i18n-polyglot-en" />

2) No plugin: per-language folders + Liquid

Best if you must use GitHub Pages’ built-in builder.

Structure

_en/
  index.md
  about.md
_zh/
  index.md
  about.md
_posts/
  en/
    2024-05-01-hello.md
  zh/
    2024-05-01-hello.md

_config.yml

defaults:
  - scope: { path: "_posts/en" }
    values: { lang: "en", permalink: "/en/:categories/:year/:month/:day/:title/" }
  - scope: { path: "_posts/zh" }
    values: { lang: "zh", permalink: "/zh/:categories/:year/:month/:day/:title/" }
  - scope: { path: "_en" }
    values: { lang: "en", permalink: "/en/:path/" }
  - scope: { path: "_zh" }
    values: { lang: "zh", permalink: "/zh/:path/" }

Set a current language Add in each page front matter:

---
layout: default
lang: en
---

or infer from path:


Cross-links between translations Use a shared identifier in front matter:

---
layout: post
lang: en
ref: hello-post
---

In the Chinese version:

---
layout: post
lang: zh
ref: hello-post
---

Then in the layout, find siblings:



  
    <a href="/original/1995-06-30-childhood-en">en</a>
  

  
    <a href="/original/2006-03-15-primary-school-en">en</a>
  

  
    <a href="/original/2008-07-15-qzone-en">en</a>
  

  
    <a href="/original/2010-07-17-world-cup-en">en</a>
  

  
    <a href="/original/2010-10-01-high-school-zh">zh</a>
  

  
    <a href="/original/2011-01-16-teacher-qiu-en">en</a>
  

  
    <a href="/original/2011-01-26-bee-en">en</a>
  

  
    <a href="/original/2011-01-26-disk-c-en">en</a>
  

  
    <a href="/original/2011-01-26-hello-beijing-en">en</a>
  

  
    <a href="/original/2011-01-26-usb-drive-en">en</a>
  

  
    <a href="/original/2011-04-04-chemistry-teacher-en">en</a>
  

  
    <a href="/original/2011-07-14-phone-factory-en">en</a>
  

  
    <a href="/original/2011-10-23-sports-en">en</a>
  

  
    <a href="/original/2011-11-12-noip-zh">zh</a>
  

  
    <a href="/original/2012-01-02-wife-en">en</a>
  

  
    <a href="/original/2012-01-29-volunteer-en">en</a>
  

  
    <a href="/original/2012-03-24-hiking-en">en</a>
  

  
    <a href="/original/2012-10-23-noip-fail-zh">zh</a>
  

  
    <a href="/original/2013-07-15-middle-shool-en">en</a>
  

  
    <a href="/original/2013-09-12-lisp-en">en</a>
  

  
    <a href="/original/2013-11-11-hamming-en">en</a>
  

  
    <a href="/original/2013-11-29-eclipse-emacs-en">en</a>
  

  
    <a href="/original/2014-01-09-bjfu-web-en">en</a>
  

  
    <a href="/original/2014-02-05-pg-zh">zh</a>
  

  
    <a href="/original/2014-03-10-ffmpeg-zh">zh</a>
  

  
    <a href="/original/2014-04-25-draw-zh">zh</a>
  

  
    <a href="/original/2014-04-25-flower-recognition-en">en</a>
  

  
    <a href="/original/2014-07-27-android-image-en">en</a>
  

  
    <a href="/original/2014-07-27-android-manifest-en">en</a>
  

  
    <a href="/original/2014-10-27-learn-zh">zh</a>
  

  
    <a href="/original/2014-11-20-leanchat-ios-en">en</a>
  

  
    <a href="/original/2015-04-29-lzalbum-en">en</a>
  

  
    <a href="/original/2015-06-09-copy-zh">zh</a>
  

  
    <a href="/original/2015-07-26-tabskiller-en">en</a>
  

  
    <a href="/original/2015-08-01-chrome-extension-en">en</a>
  

  
    <a href="/original/2015-09-24-dropout-zh">zh</a>
  

  
    <a href="/original/2015-10-08-code-review-server-en">en</a>
  

  
    <a href="/original/2015-10-23-info-plist-en">en</a>
  

  
    <a href="/original/2015-10-23-reveal-in-github-en">en</a>
  

  
    <a href="/original/2015-10-23-xcode-project-en">en</a>
  

  
    <a href="/original/2015-10-23-xib-en">en</a>
  

  
    <a href="/original/2015-12-08-code-review-web-en">en</a>
  

  
    <a href="/original/2016-01-28-weimg-server-en">en</a>
  

  
    <a href="/original/2016-01-31-weimg-ios-en">en</a>
  

  
    <a href="/original/2016-03-04-usa-visa-zh">zh</a>
  

  
    <a href="/original/2016-03-07-pingpp-en">en</a>
  

  
    <a href="/original/2016-04-08-codereview-frontend-en">en</a>
  

  
    <a href="/original/2016-04-08-codereview-stylus-en">en</a>
  

  
    <a href="/original/2016-04-11-usa-zh">zh</a>
  

  
    <a href="/original/2016-04-23-ios-test-zh">zh</a>
  

  
    <a href="/original/2016-05-03-git-zh">zh</a>
  

  
    <a href="/original/2016-05-14-creak-en">en</a>
  

  
    <a href="/original/2016-05-24-yytext-zh">zh</a>
  

  
    <a href="/original/2016-05-25-regex-zh">zh</a>
  

  
    <a href="/original/2016-05-29-websocket-zh">zh</a>
  

  
    <a href="/original/2016-06-01-parser-zh">zh</a>
  

  
    <a href="/original/2016-08-17-live-mobile-web-en">en</a>
  

  
    <a href="/original/2016-08-17-live-server-en">en</a>
  

  
    <a href="/original/2016-08-17-live-web-en">en</a>
  

  
    <a href="/original/2016-08-29-ceo-zh">zh</a>
  

  
    <a href="/original/2016-09-20-quzhibo-zh">zh</a>
  

  
    <a href="/original/2016-09-23-keynotes-en">en</a>
  

  
    <a href="/original/2016-09-23-streaming-zh">zh</a>
  

  
    <a href="/original/2017-01-06-srs-streaming-en">en</a>
  

  
    <a href="/original/2017-01-06-years-zh">zh</a>
  

  
    <a href="/original/2017-01-10-live-wxapp-en">en</a>
  

  
    <a href="/original/2017-03-28-lieyun-zh">zh</a>
  

  
    <a href="/original/2017-03-31-pencil-zh">zh</a>
  

  
    <a href="/original/2017-07-19-grow-zh">zh</a>
  

  
    <a href="/original/2017-08-17-startup-zh">zh</a>
  

  
    <a href="/original/2017-12-15-laravel-en">en</a>
  

  
    <a href="/original/2017-12-15-pm2-en">en</a>
  

  
    <a href="/original/2018-03-05-people-zh">zh</a>
  

  
    <a href="/original/2018-08-28-profit-zh">zh</a>
  

  
    <a href="/original/2018-10-21-reflections-zh">zh</a>
  

  
    <a href="/original/2019-01-01-yesterday-zh">zh</a>
  

  
    <a href="/original/2019-12-15-shutdown-zh">zh</a>
  

  
    <a href="/original/2019-12-28-success-zh">zh</a>
  

  
    <a href="/original/2020-01-05-future-zh">zh</a>
  

  
    <a href="/original/2020-01-09-house-zh">zh</a>
  

  
    <a href="/original/2020-01-15-china-economy-zh">zh</a>
  

  
    <a href="/original/2020-01-18-secrets-zh">zh</a>
  

  
    <a href="/original/2020-02-08-china-zh">zh</a>
  

  
    <a href="/original/2020-02-24-blog-en">en</a>
  

  
    <a href="/original/2020-02-26-truth-zh">zh</a>
  

  
    <a href="/original/2020-03-04-thanks-zh">zh</a>
  

  
    <a href="/original/2020-03-26-present-future-zh">zh</a>
  

  
    <a href="/original/2020-04-25-lvchensign-en">en</a>
  

  
    <a href="/original/2020-08-16-journey-zh">zh</a>
  

  
    <a href="/original/2020-10-22-job-zh">zh</a>
  

  
    <a href="/original/2020-11-05-desire-zh">zh</a>
  

  
    <a href="/original/2020-11-07-organic-zh">zh</a>
  

  
    <a href="/original/2020-11-08-growth-zh">zh</a>
  

  
    <a href="/original/2020-11-10-project-zh">zh</a>
  

  
    <a href="/original/2020-11-12-relationship-zh">zh</a>
  

  
    <a href="/original/2020-11-13-my-plan-zh">zh</a>
  

  
    <a href="/original/2020-11-24-science-zh">zh</a>
  

  
    <a href="/original/2020-11-25-think-zh">zh</a>
  

  
    <a href="/original/2020-11-28-viral-zh">zh</a>
  

  
    <a href="/original/2020-12-03-only-do-zh">zh</a>
  

  
    <a href="/original/2021-01-08-future-kids-zh">zh</a>
  

  
    <a href="/original/2021-01-25-english-zh">zh</a>
  

  
    <a href="/original/2021-02-16-learn-japanese-en">en</a>
  

  
    <a href="/original/2021-03-05-curiosity-courses-en">en</a>
  

  
    <a href="/original/2021-03-06-rust-zh">zh</a>
  

  
    <a href="/original/2021-03-07-web-zh">zh</a>
  

  
    <a href="/original/2021-03-09-google-access-en">en</a>
  

  
    <a href="/original/2021-03-10-distributed-zh">zh</a>
  

  
    <a href="/original/2021-03-12-ml-zh">zh</a>
  

  
    <a href="/original/2021-03-12-start-zh">zh</a>
  

  
    <a href="/original/2021-03-13-redis-zh">zh</a>
  

  
    <a href="/original/2021-03-14-oj-zh">zh</a>
  

  
    <a href="/original/2021-03-15-feynman-zh">zh</a>
  

  
    <a href="/original/2021-03-15-python-zh">zh</a>
  

  
    <a href="/original/2021-03-17-scrape-zh">zh</a>
  

  
    <a href="/original/2021-04-01-youtube-tv-zh">zh</a>
  

  
    <a href="/original/2021-06-04-algorithm-solutions-en">en</a>
  

  
    <a href="/original/2021-08-05-enterprise-wechat-en">en</a>
  

  
    <a href="/original/2021-08-05-ruby-on-rails-en">en</a>
  

  
    <a href="/original/2021-08-05-showmebug-zh">zh</a>
  

  
    <a href="/original/2022-09-30-recipe-en">en</a>
  

  
    <a href="/original/2022-10-28-driving-en">en</a>
  

  
    <a href="/original/2022-11-07-pcf-en">en</a>
  

  
    <a href="/original/2022-11-08-sharpest-en">en</a>
  

  
    <a href="/original/2022-12-02-good-buys-en">en</a>
  

  
    <a href="/original/2022-12-03-cloud-platforms-en">en</a>
  

  
    <a href="/original/2022-12-04-chat-gpt-en">en</a>
  

  
    <a href="/original/2022-12-11-learn-anything-en">en</a>
  

  
    <a href="/original/2022-12-28-creative-ideas-en">en</a>
  

  
    <a href="/original/2023-02-07-spring-en">en</a>
  

  
    <a href="/original/2023-04-20-macao-en">en</a>
  

  
    <a href="/original/2023-04-23-japanese-en">en</a>
  

  
    <a href="/original/2023-05-10-answers-en">en</a>
  

  
    <a href="/original/2023-05-22-hongkong-trip-en">en</a>
  

  
    <a href="/original/2023-05-30-neural-network-en">en</a>
  

  
    <a href="/original/2023-06-10-change-en">en</a>
  

  
    <a href="/original/2023-06-10-vision-restoration-en">en</a>
  

  
    <a href="/original/2023-06-13-astigmatism-en">en</a>
  

  
    <a href="/original/2023-06-16-10yo-en">en</a>
  

  
    <a href="/original/2023-07-03-zen-neural-en">en</a>
  

  
    <a href="/original/2023-07-07-azure-en">en</a>
  

  
    <a href="/original/2023-07-12-ml-job-en">en</a>
  

  
    <a href="/original/2023-07-21-agi-en">en</a>
  

  
    <a href="/original/2023-07-22-nihongo-en">en</a>
  

  
    <a href="/original/2023-07-25-learn-wisdom-en">en</a>
  

  
    <a href="/original/2023-07-28-bring-kids-en">en</a>
  

  
    <a href="/notes/2023-07-30-captions-en">en</a>
  

  
    <a href="/notes/2023-08-03-understand-nn-en">en</a>
  

  
    <a href="/original/2023-08-10-computer-en">en</a>
  

  
    <a href="/original/2023-08-18-llama-en">en</a>
  

  
    <a href="/original/2023-09-14-charging-story-en">en</a>
  

  
    <a href="/original/2023-09-17-neta-en">en</a>
  

  
    <a href="/original/2023-09-23-road-trip-tibet-en">en</a>
  

  
    <a href="/original/2023-09-28-from-neural-en">en</a>
  

  
    <a href="/original/2024-01-20-review-2023-en">en</a>
  

  
    <a href="/original/2024-06-07-aws-en">en</a>
  

  
    <a href="/original/2024-06-10-yw-posts-en">en</a>
  

  
    <a href="/original/2024-07-06-trace-en">en</a>
  

  
    <a href="/original/2024-07-07-bot-en">en</a>
  

  
    <a href="/original/2024-07-12-ocbc-en">en</a>
  

  
    <a href="/original/2024-08-24-suno-en">en</a>
  

  
    <a href="/original/2024-10-18-books-en">en</a>
  

  
    <a href="/original/2024-11-23-barely-clear-en">en</a>
  

  
    <a href="/original/2024-11-23-basketball-en">en</a>
  

  
    <a href="/original/2024-11-23-fresh-food-en">en</a>
  

  
    <a href="/original/2024-11-24-associate-degree-en">en</a>
  

  
    <a href="/original/2024-11-24-review-2024-en">en</a>
  

  
    <a href="/original/2024-11-25-housing-end-en">en</a>
  

  
    <a href="/original/2024-11-26-giffgaff-en">en</a>
  

  
    <a href="/original/2024-11-26-interview-en">en</a>
  

  
    <a href="/original/2024-11-27-learn-tips-en">en</a>
  

  
    <a href="/original/2024-11-28-ai-body-en">en</a>
  

  
    <a href="/original/2024-11-28-vision-progress-en">en</a>
  

  
    <a href="/original/2024-11-29-baby-game-en">en</a>
  

  
    <a href="/original/2024-11-29-money-tips-en">en</a>
  

  
    <a href="/original/2024-11-29-vision-tips-en">en</a>
  

  
    <a href="/original/2024-11-30-apps-en">en</a>
  

  
    <a href="/original/2024-11-30-apps-table-en">en</a>
  

  
    <a href="/original/2024-11-30-apps-text-en">en</a>
  

  
    <a href="/original/2024-11-30-mosquito-en">en</a>
  

  
    <a href="/original/2024-12-01-hair-en">en</a>
  

  
    <a href="/original/2024-12-01-input-en">en</a>
  

  
    <a href="/original/2024-12-01-shawl-en">en</a>
  

  
    <a href="/original/2024-12-02-gcp-en">en</a>
  

  
    <a href="/original/2024-12-03-developer-mode-en">en</a>
  

  
    <a href="/original/2024-12-04-fruit-en">en</a>
  

  
    <a href="/original/2024-12-08-places-en">en</a>
  

  
    <a href="/original/2024-12-08-things-en">en</a>
  

  
    <a href="/original/2024-12-09-libraries-en">en</a>
  

  
    <a href="/original/2024-12-10-bifocals-en">en</a>
  

  
    <a href="/original/2024-12-10-communication-en">en</a>
  

  
    <a href="/original/2024-12-10-firetv-en">en</a>
  

  
    <a href="/original/2024-12-10-life-tips-en">en</a>
  

  
    <a href="/original/2024-12-10-mortgage-en">en</a>
  

  
    <a href="/original/2024-12-10-parenting-en">en</a>
  

  
    <a href="/original/2024-12-10-real-estate-en">en</a>
  

  
    <a href="/original/2024-12-11-abstraction-en">en</a>
  

  
    <a href="/original/2024-12-11-categorization-en">en</a>
  

  
    <a href="/original/2024-12-11-reasoning-en">en</a>
  

  
    <a href="/original/2024-12-11-thinking-en">en</a>
  

  
    <a href="/original/2024-12-12-ai-tools-en">en</a>
  

  
    <a href="/original/2024-12-12-great-yin-wang-en">en</a>
  

  
    <a href="/original/2024-12-12-myopia-list-en">en</a>
  

  
    <a href="/original/2024-12-12-openai-price-en">en</a>
  

  
    <a href="/original/2024-12-12-projects-en">en</a>
  

  
    <a href="/original/2024-12-12-todd-becker-en">en</a>
  

  
    <a href="/original/2024-12-12-yin-wang-en">en</a>
  

  
    <a href="/original/2024-12-14-mac-apps-en">en</a>
  

  
    <a href="/original/2024-12-14-pixel-usb-en">en</a>
  

  
    <a href="/original/2024-12-16-awesome-cv-en">en</a>
  

  
    <a href="/original/2024-12-16-fixed-price-en">en</a>
  

  
    <a href="/original/2024-12-16-openwrt-hack-en">en</a>
  

  
    <a href="/original/2024-12-16-png-en">en</a>
  

  
    <a href="/original/2024-12-16-quora-lang-en">en</a>
  

  
    <a href="/original/2024-12-16-web-retrieval-en">en</a>
  

  
    <a href="/original/2024-12-17-avoid-death-en">en</a>
  

  
    <a href="/original/2024-12-17-gmbh-en">en</a>
  

  
    <a href="/original/2024-12-17-ios-settings-en">en</a>
  

  
    <a href="/original/2024-12-17-preexec-en">en</a>
  

  
    <a href="/original/2024-12-17-system-prompt-en">en</a>
  

  
    <a href="/original/2024-12-17-website-report-en">en</a>
  

  
    <a href="/original/2024-12-17-zsh-hooks-en">en</a>
  

  
    <a href="/original/2024-12-18-chatgpt-nested-en">en</a>
  

  
    <a href="/original/2024-12-18-disk-en">en</a>
  

  
    <a href="/original/2024-12-18-echo-en">en</a>
  

  
    <a href="/original/2024-12-18-future-world-en">en</a>
  

  
    <a href="/original/2024-12-18-gcp-speech-en">en</a>
  

  
    <a href="/original/2024-12-18-redsocks-en">en</a>
  

  
    <a href="/original/2024-12-18-repeatition-benefits-en">en</a>
  

  
    <a href="/original/2024-12-19-health-tools-en">en</a>
  

  
    <a href="/original/2024-12-19-server-provider-en">en</a>
  

  
    <a href="/original/2024-12-19-v2ray-en">en</a>
  

  
    <a href="/original/2024-12-20-azure-vm-en">en</a>
  

  
    <a href="/original/2024-12-20-gcp-compute-en">en</a>
  

  
    <a href="/original/2024-12-20-left-swipe-en">en</a>
  

  
    <a href="/original/2024-12-20-pin-en">en</a>
  

  
    <a href="/original/2024-12-20-ufw-en">en</a>
  

  
    <a href="/original/2024-12-20-v2ray-script-en">en</a>
  

  
    <a href="/original/2024-12-21-charging-en">en</a>
  

  
    <a href="/original/2024-12-22-confs-en">en</a>
  

  
    <a href="/original/2024-12-22-electric-vehicles-en">en</a>
  

  
    <a href="/original/2024-12-22-flashlight-charging-en">en</a>
  

  
    <a href="/original/2024-12-22-photo-room-en">en</a>
  

  
    <a href="/original/2024-12-22-three-phones-en">en</a>
  

  
    <a href="/original/2024-12-22-update-en">en</a>
  

  
    <a href="/notes/2024-12-24-android-lag-en">en</a>
  

  
    <a href="/original/2024-12-24-background-sound-en">en</a>
  

  
    <a href="/original/2024-12-24-multifocal-en">en</a>
  

  
    <a href="/original/2024-12-25-flutter-en">en</a>
  

  
    <a href="/original/2024-12-26-chatgpt-ios-en">en</a>
  

  
    <a href="/original/2024-12-26-track-en">en</a>
  

  
    <a href="/original/2024-12-27-gloves-en">en</a>
  

  
    <a href="/original/2024-12-27-markdown-en">en</a>
  

  
    <a href="/original/2024-12-28-ai-translation-en">en</a>
  

  
    <a href="/original/2024-12-28-focus-en">en</a>
  

  
    <a href="/original/2024-12-28-github-readme-en">en</a>
  

  
    <a href="/original/2024-12-28-hdmi-en">en</a>
  

  
    <a href="/original/2024-12-28-list-en">en</a>
  

  
    <a href="/original/2024-12-28-sync-en">en</a>
  

  
    <a href="/original/2024-12-29-cooking-en">en</a>
  

  
    <a href="/original/2024-12-29-diy-proxy-en">en</a>
  

  
    <a href="/original/2024-12-29-proxy-en">en</a>
  

  
    <a href="/original/2024-12-29-woman-en">en</a>
  

  
    <a href="/original/2024-12-30-face-en">en</a>
  

  
    <a href="/original/2024-12-31-ai-editor-en">en</a>
  

  
    <a href="/original/2024-12-31-links-en">en</a>
  

  
    <a href="/original/2024-12-31-testing-en">en</a>
  

  
    <a href="/original/2025-01-01-parking-en">en</a>
  

  
    <a href="/original/2025-01-02-ai-blockchain-en">en</a>
  

  
    <a href="/original/2025-01-02-batch-en">en</a>
  

  
    <a href="/original/2025-01-02-blockchain-crypto-en">en</a>
  

  
    <a href="/original/2025-01-03-auto-ss-config-en">en</a>
  

  
    <a href="/original/2025-01-03-communicate-en">en</a>
  

  
    <a href="/original/2025-01-03-dark-mode-en">en</a>
  

  
    <a href="/original/2025-01-03-embracing-change-en">en</a>
  

  
    <a href="/original/2025-01-03-magnet-en">en</a>
  

  
    <a href="/original/2025-01-03-programming-en">en</a>
  

  
    <a href="/original/2025-01-03-shadowsocks-en">en</a>
  

  
    <a href="/original/2025-01-03-status-en">en</a>
  

  
    <a href="/original/2025-01-04-conspiracy-en">en</a>
  

  
    <a href="/original/2025-01-04-github-search-en">en</a>
  

  
    <a href="/original/2025-01-04-naming-en">en</a>
  

  
    <a href="/original/2025-01-04-phone-music-en">en</a>
  

  
    <a href="/original/2025-01-05-charger-box-en">en</a>
  

  
    <a href="/original/2025-01-05-power-bank-en">en</a>
  

  
    <a href="/original/2025-01-05-reclining-pillow-en">en</a>
  

  
    <a href="/original/2025-01-05-research-en">en</a>
  

  
    <a href="/original/2025-01-06-agi-world-en">en</a>
  

  
    <a href="/original/2025-01-06-digital-memories-en">en</a>
  

  
    <a href="/original/2025-01-06-google-en">en</a>
  

  
    <a href="/original/2025-01-06-introduction-en">en</a>
  

  
    <a href="/original/2025-01-06-plan-2025-en">en</a>
  

  
    <a href="/original/2025-01-07-barrier-en">en</a>
  

  
    <a href="/original/2025-01-07-dma-en">en</a>
  

  
    <a href="/original/2025-01-07-hacking-en">en</a>
  

  
    <a href="/original/2025-01-07-proxy-ban-en">en</a>
  

  
    <a href="/original/2025-01-07-psd-en">en</a>
  

  
    <a href="/original/2025-01-08-advanced-markdown-en">en</a>
  

  
    <a href="/original/2025-01-08-ai-cheat-en">en</a>
  

  
    <a href="/original/2025-01-08-ai-code-en">en</a>
  

  
    <a href="/original/2025-01-08-ai-search-en">en</a>
  

  
    <a href="/original/2025-01-08-ai-workflow-en">en</a>
  

  
    <a href="/original/2025-01-08-cofounder-en">en</a>
  

  
    <a href="/original/2025-01-08-dirb-en">en</a>
  

  
    <a href="/original/2025-01-08-gpts-en">en</a>
  

  
    <a href="/original/2025-01-08-greptimedb-en">en</a>
  

  
    <a href="/original/2025-01-08-he-she-en">en</a>
  

  
    <a href="/original/2025-01-08-limit-edge-en">en</a>
  

  
    <a href="/original/2025-01-08-o1-en">en</a>
  

  
    <a href="/original/2025-01-08-prompt-context-en">en</a>
  

  
    <a href="/original/2025-01-08-rrc-en">en</a>
  

  
    <a href="/original/2025-01-08-tsp-en">en</a>
  

  
    <a href="/original/2025-01-08-turbolist3r-en">en</a>
  

  
    <a href="/original/2025-01-08-verb-en">en</a>
  

  
    <a href="/original/2025-01-08-workflow-agent-en">en</a>
  

  
    <a href="/original/2025-01-09-app-choices-en">en</a>
  

  
    <a href="/original/2025-01-09-fruit-damage-en">en</a>
  

  
    <a href="/original/2025-01-09-gpts-from-conversation-en">en</a>
  

  
    <a href="/original/2025-01-09-greptime-portal-en">en</a>
  

  
    <a href="/original/2025-01-09-lese-me-en">en</a>
  

  
    <a href="/original/2025-01-09-mute-en">en</a>
  

  
    <a href="/notes/2025-01-09-potential-flaws-en">en</a>
  

  
    <a href="/original/2025-01-09-ragflow-en">en</a>
  

  
    <a href="/original/2025-01-11-contact-en">en</a>
  

  
    <a href="/original/2025-01-11-disclaimer-en">en</a>
  

  
    <a href="/original/2025-01-11-donate-en">en</a>
  

  
    <a href="/original/2025-01-11-github-actions-en">en</a>
  

  
    <a href="/original/2025-01-11-notes-en">en</a>
  

  
    <a href="/original/2025-01-11-original-en">en</a>
  

  
    <a href="/original/2025-01-11-papers-en">en</a>
  

  
    <a href="/original/2025-01-11-portfolio-en">en</a>
  

  
    <a href="/original/2025-01-11-resume-en">en</a>
  

  
    <a href="/original/2025-01-11-subscribe-en">en</a>
  

  
    <a href="/original/2025-01-13-gitmessageai-en">en</a>
  

  
    <a href="/original/2025-01-13-house-finances-en">en</a>
  

  
    <a href="/original/2025-01-14-error-en">en</a>
  

  
    <a href="/original/2025-01-14-reserved-ip-en">en</a>
  

  
    <a href="/original/2025-01-14-search-en">en</a>
  

  
    <a href="/original/2025-01-14-status-page-en">en</a>
  

  
    <a href="/original/2025-01-15-context-length-en">en</a>
  

  
    <a href="/original/2025-01-15-google-maps-en">en</a>
  

  
    <a href="/original/2025-01-15-language-support-en">en</a>
  

  
    <a href="/original/2025-01-15-tailpipe-en">en</a>
  

  
    <a href="/original/2025-01-15-ultra-paygo-en">en</a>
  

  
    <a href="/notes/2025-01-16-active-learning-en"></a>
  

  
    <a href="/notes/2025-01-16-always-en"></a>
  

  
    <a href="/notes/2025-01-16-chinese-en"></a>
  

  
    <a href="/notes/2025-01-16-chinese-zh"></a>
  

  
    <a href="/notes/2025-01-16-competitive-programming-en"></a>
  

  
    <a href="/notes/2025-01-16-computer-organization-en"></a>
  

  
    <a href="/notes/2025-01-16-electronic-en"></a>
  

  
    <a href="/notes/2025-01-16-electronic-zh"></a>
  

  
    <a href="/original/2025-01-16-farming-en">en</a>
  

  
    <a href="/notes/2025-01-16-japanese-quotes-en">en</a>
  

  
    <a href="/notes/2025-01-16-java-interview-en"></a>
  

  
    <a href="/notes/2025-01-16-law-en"></a>
  

  
    <a href="/notes/2025-01-16-law-zh"></a>
  

  
    <a href="/notes/2025-01-16-leadership-en"></a>
  

  
    <a href="/notes/2025-01-16-linear-algebra-points-en"></a>
  

  
    <a href="/notes/2025-01-16-linear-algebra-zh"></a>
  

  
    <a href="/notes/2025-01-16-maozedong-en"></a>
  

  
    <a href="/notes/2025-01-16-maozedong-zh"></a>
  

  
    <a href="/notes/2025-01-16-microcomputer-en"></a>
  

  
    <a href="/notes/2025-01-16-microcomputer-zh"></a>
  

  
    <a href="/original/2025-01-16-model-training-en">en</a>
  

  
    <a href="/notes/2025-01-16-moral-en"></a>
  

  
    <a href="/notes/2025-01-16-moral-zh"></a>
  

  
    <a href="/notes/2025-01-16-nihongo2-en">en</a>
  

  
    <a href="/notes/2025-01-16-nlp-tasks-en"></a>
  

  
    <a href="/original/2025-01-17-ai-papers-en">en</a>
  

  
    <a href="/original/2025-01-17-conversation-style-en">en</a>
  

  
    <a href="/original/2025-01-17-investing-en">en</a>
  

  
    <a href="/original/2025-01-17-projector-en">en</a>
  

  
    <a href="/original/2025-01-18-bedroom-en">en</a>
  

  
    <a href="/original/2025-01-18-deep-think-en">en</a>
  

  
    <a href="/original/2025-01-18-scale-pdf-en">en</a>
  

  
    <a href="/original/2025-01-18-speech-to-text-en">en</a>
  

  
    <a href="/original/2025-01-18-structure-en">en</a>
  

  
    <a href="/original/2025-01-20-function-compute-en">en</a>
  

  
    <a href="/original/2025-01-21-calorie-en">en</a>
  

  
    <a href="/original/2025-01-21-github-desktop-font-en">en</a>
  

  
    <a href="/original/2025-01-21-lamp-en">en</a>
  

  
    <a href="/original/2025-01-21-wattage-en">en</a>
  

  
    <a href="/original/2025-01-22-x-en">en</a>
  

  
    <a href="/original/2025-01-23-cable-tester-en">en</a>
  

  
    <a href="/original/2025-01-23-hot-water-en">en</a>
  

  
    <a href="/original/2025-01-24-deepseek-v3-conv-en">en</a>
  

  
    <a href="/original/2025-01-24-disk-space-en">en</a>
  

  
    <a href="/original/2025-01-24-fc-oss-en">en</a>
  

  
    <a href="/notes/2025-01-24-frontend-interview-en"></a>
  

  
    <a href="/notes/2025-01-24-ios-interview-en"></a>
  

  
    <a href="/notes/2025-01-24-ml-conv-en"></a>
  

  
    <a href="/notes/2025-01-24-ml-points-en"></a>
  

  
    <a href="/original/2025-01-24-squid-dante-en">en</a>
  

  
    <a href="/original/2025-01-25-deepseek-use-en">en</a>
  

  
    <a href="/original/2025-01-25-lightsail-en">en</a>
  

  
    <a href="/original/2025-01-25-llama-cpp-en">en</a>
  

  
    <a href="/original/2025-01-25-mmlu-en">en</a>
  

  
    <a href="/original/2025-01-25-ollama-en">en</a>
  

  
    <a href="/original/2025-01-25-startup-items-en">en</a>
  

  
    <a href="/original/2025-01-26-mesh-router-en">en</a>
  

  
    <a href="/original/2025-01-26-wifi-en">en</a>
  

  
    <a href="/original/2025-01-27-lightning-ethernet-en">en</a>
  

  
    <a href="/original/2025-01-28-ai-tips-en">en</a>
  

  
    <a href="/original/2025-01-28-api-wrappers-en">en</a>
  

  
    <a href="/original/2025-01-28-cloud-providers-en">en</a>
  

  
    <a href="/original/2025-01-28-finetune-en">en</a>
  

  
    <a href="/original/2025-01-28-kids-en">en</a>
  

  
    <a href="/original/2025-01-28-shared-objects-en">en</a>
  

  
    <a href="/original/2025-01-28-zsh-profile-en">en</a>
  

  
    <a href="/original/2025-01-29-ai-thoughts-en">en</a>
  

  
    <a href="/original/2025-01-29-daily-life-en">en</a>
  

  
    <a href="/original/2025-01-29-hetzner-en">en</a>
  

  
    <a href="/original/2025-01-30-brew-list-en">en</a>
  

  
    <a href="/original/2025-01-30-command-control-en">en</a>
  

  
    <a href="/original/2025-01-30-commands-en">en</a>
  

  
    <a href="/original/2025-01-30-data-en">en</a>
  

  
    <a href="/original/2025-01-30-gem-en">en</a>
  

  
    <a href="/original/2025-01-30-maven-en">en</a>
  

  
    <a href="/original/2025-01-30-network-tips-en">en</a>
  

  
    <a href="/original/2025-01-30-pip-list-en">en</a>
  

  
    <a href="/original/2025-01-31-chat-en">en</a>
  

  
    <a href="/notes/2025-01-31-computer-organization-zh"></a>
  

  
    <a href="/notes/2025-01-31-constitution-en">en</a>
  

  
    <a href="/original/2025-01-31-holiday-en">en</a>
  

  
    <a href="/notes/2025-01-31-legal-diff-en">en</a>
  

  
    <a href="/original/2025-01-31-metal-en">en</a>
  

  
    <a href="/notes/2025-01-31-mind-machine-en"></a>
  

  
    <a href="/original/2025-01-31-mistral-en">en</a>
  

  
    <a href="/notes/2025-01-31-network-en"></a>
  

  
    <a href="/notes/2025-01-31-network-zh"></a>
  

  
    <a href="/notes/2025-01-31-predictions-en"></a>
  

  
    <a href="/original/2025-01-31-productivity-tips-en">en</a>
  

  
    <a href="/original/2025-01-31-prompts-en">en</a>
  

  
    <a href="/original/2025-01-31-reranker-en">en</a>
  

  
    <a href="/original/2025-02-01-conda-en">en</a>
  

  
    <a href="/original/2025-02-02-archlinux-en">en</a>
  

  
    <a href="/original/2025-02-02-gpg-en">en</a>
  

  
    <a href="/original/2025-02-02-grok-api-en">en</a>
  

  
    <a href="/original/2025-02-02-outdoor-cooking-en">en</a>
  

  
    <a href="/original/2025-02-02-ssh-en">en</a>
  

  
    <a href="/original/2025-02-02-ubuntu-en">en</a>
  

  
    <a href="/original/2025-02-03-aliyun-elastic-ip-en">en</a>
  

  
    <a href="/original/2025-02-03-bandwidth-en">en</a>
  

  
    <a href="/original/2025-02-03-internet-freedom-en">en</a>
  

  
    <a href="/notes/2025-02-04-as-en">en</a>
  

  
    <a href="/notes/2025-02-04-basic-electronics-conv-en"></a>
  

  
    <a href="/original/2025-02-04-bce-embedding-en">en</a>
  

  
    <a href="/notes/2025-02-04-computer-networks-conv-en"></a>
  

  
    <a href="/notes/2025-02-04-computer-organization-conv-en"></a>
  

  
    <a href="/notes/2025-02-04-deepseek-conv-en"></a>
  

  
    <a href="/notes/2025-02-04-java-questions-en">en</a>
  

  
    <a href="/original/2025-02-04-jokes-en">en</a>
  

  
    <a href="/original/2025-02-04-lighter-en">en</a>
  

  
    <a href="/notes/2025-02-04-linear-algebra-conv-en"></a>
  

  
    <a href="/notes/2025-02-04-microcomputer-conv-en"></a>
  

  
    <a href="/original/2025-02-04-openwrt-reset-en">en</a>
  

  
    <a href="/original/2025-02-04-selenium-en">en</a>
  

  
    <a href="/original/2025-02-04-speech-recognition-en">en</a>
  

  
    <a href="/original/2025-02-04-wifi-speed-en">en</a>
  

  
    <a href="/original/2025-02-05-emf-meter-en">en</a>
  

  
    <a href="/original/2025-02-05-ffmpeg-commands-en">en</a>
  

  
    <a href="/original/2025-02-06-tiger-en">en</a>
  

  
    <a href="/original/2025-02-07-conda-linux-en">en</a>
  

  
    <a href="/original/2025-02-07-ipv6-en">en</a>
  

  
    <a href="/original/2025-02-07-lan-ip-en">en</a>
  

  
    <a href="/original/2025-02-07-linux-bashrc-en">en</a>
  

  
    <a href="/original/2025-02-07-network-interface-en">en</a>
  

  
    <a href="/original/2025-02-07-open-router-en">en</a>
  

  
    <a href="/notes/2025-02-07-universities-en">en</a>
  

  
    <a href="/original/2025-02-07-useful-commands-en">en</a>
  

  
    <a href="/original/2025-02-08-floating-ip-en">en</a>
  

  
    <a href="/original/2025-02-08-gift-en">en</a>
  

  
    <a href="/notes/2025-02-08-numpy-en"></a>
  

  
    <a href="/notes/2025-02-08-torch-en"></a>
  

  
    <a href="/original/2025-02-09-open-webui-en">en</a>
  

  
    <a href="/original/2025-02-09-ssh-config-en">en</a>
  

  
    <a href="/notes/2025-02-10-bytecode-en">en</a>
  

  
    <a href="/notes/2025-02-10-computer-organization-exam-en">en</a>
  

  
    <a href="/notes/2025-02-10-computer-organization-exam-zh">zh</a>
  

  
    <a href="/notes/2025-02-10-computer-organization-exam1-en">en</a>
  

  
    <a href="/original/2025-02-10-verbose-en">en</a>
  

  
    <a href="/notes/2025-02-10-x64-assembly-conv">en</a>
  

  
    <a href="/notes/2025-02-11-brew-upgrade-en">en</a>
  

  
    <a href="/original/2025-02-11-driving-tips-en">en</a>
  

  
    <a href="/original/2025-02-11-git-lfs-en">en</a>
  

  
    <a href="/original/2025-02-11-p2p-proxy-en">en</a>
  

  
    <a href="/original/2025-02-11-piratebay-en">en</a>
  

  
    <a href="/original/2025-02-12-cursor-spring-en">en</a>
  

  
    <a href="/original/2025-02-12-earning-money-en">en</a>
  

  
    <a href="/original/2025-02-12-losing-money-en">en</a>
  

  
    <a href="/original/2025-02-13-elevenlabs-en">en</a>
  

  
    <a href="/original/2025-02-13-evaluating-candidates-en">en</a>
  

  
    <a href="/original/2025-02-13-jina-ai-en">en</a>
  

  
    <a href="/original/2025-02-13-systemd-service-en">en</a>
  

  
    <a href="/original/2025-02-15-english-practice-en">en</a>
  

  
    <a href="/notes/2025-02-16-image-compression-en">en</a>
  

  
    <a href="/original/2025-02-16-linear-algebra-en">en</a>
  

  
    <a href="/notes/2025-02-16-linear-algebra-image-en"></a>
  

  
    <a href="/original/2025-02-16-netplan-en">en</a>
  

  
    <a href="/notes/2025-02-16-shell-commands-en"></a>
  

  
    <a href="/original/2025-02-18-working-en">en</a>
  

  
    <a href="/notes/2025-02-20-curl-en">en</a>
  

  
    <a href="/notes/2025-02-20-node-openssl-en">en</a>
  

  
    <a href="/notes/2025-02-20-powershell-en">en</a>
  

  
    <a href="/original/2025-02-20-second-hand-en">en</a>
  

  
    <a href="/notes/2025-02-22-android-rom-en">en</a>
  

  
    <a href="/original/2025-02-22-information-export-en">en</a>
  

  
    <a href="/original/2025-02-22-openwrt-invasion-en">en</a>
  

  
    <a href="/notes/2025-02-22-openwrt-wireless-en">en</a>
  

  
    <a href="/original/2025-02-22-society-en">en</a>
  

  
    <a href="/original/2025-02-22-travel-en">en</a>
  

  
    <a href="/original/2025-02-23-commute-en">en</a>
  

  
    <a href="/notes/2025-02-24-analyze-dependencies-en">en</a>
  

  
    <a href="/notes/2025-02-24-analyze-packages-en">en</a>
  

  
    <a href="/notes/2025-02-24-analyze-poms-en">en</a>
  

  
    <a href="/notes/2025-02-24-java-packages-conv-en">en</a>
  

  
    <a href="/notes/2025-02-24-java-packages-en">en</a>
  

  
    <a href="/notes/2025-02-24-outlook-en">en</a>
  

  
    <a href="/notes/2025-02-24-vscode-java-en">en</a>
  

  
    <a href="/notes/2025-02-24-vscode-java-issue-en">en</a>
  

  
    <a href="/notes/2025-02-24-vscode-ls-en">en</a>
  

  
    <a href="/notes/2025-02-24-vscode-settings-en">en</a>
  

  
    <a href="/notes/2025-02-24-vscode-wrap-en">en</a>
  

  
    <a href="/notes/2025-02-24-websphere-app-en">en</a>
  

  
    <a href="/notes/2025-02-24-websphere-eclipse-en">en</a>
  

  
    <a href="/notes/2025-02-24-websphere-en">en</a>
  

  
    <a href="/notes/2025-02-24-websphere-vscode-en">en</a>
  

  
    <a href="/notes/2025-02-25-analyze-spring-boot-en">en</a>
  

  
    <a href="/notes/2025-02-25-process-id-en">en</a>
  

  
    <a href="/notes/2025-02-25-proxy-check-en">en</a>
  

  
    <a href="/notes/2025-02-25-ps-options-en">en</a>
  

  
    <a href="/notes/2025-02-25-visualize-dependencies-en">en</a>
  

  
    <a href="/notes/2025-02-25-websphere-jvm-en">en</a>
  

  
    <a href="/notes/2025-02-25-websphere-verbose-en">en</a>
  

  
    <a href="/notes/2025-02-25-windows-terminal-en">en</a>
  

  
    <a href="/notes/2025-02-26-checkstyle-en">en</a>
  

  
    <a href="/notes/2025-02-26-curl-downloads-en">en</a>
  

  
    <a href="/notes/2025-02-26-dbeaver-en">en</a>
  

  
    <a href="/notes/2025-02-26-eclipse-jdk-en">en</a>
  

  
    <a href="/notes/2025-02-26-eclipse-startup-en">en</a>
  

  
    <a href="/notes/2025-02-26-flyway-en">en</a>
  

  
    <a href="/notes/2025-02-26-insomnia-en">en</a>
  

  
    <a href="/notes/2025-02-26-jar-war-en">en</a>
  

  
    <a href="/notes/2025-02-26-java-features-en">en</a>
  

  
    <a href="/notes/2025-02-26-jdbc-en">en</a>
  

  
    <a href="/notes/2025-02-26-jmeter-en">en</a>
  

  
    <a href="/notes/2025-02-26-junit-en">en</a>
  

  
    <a href="/notes/2025-02-26-jvm-bit-en">en</a>
  

  
    <a href="/notes/2025-02-26-liquibase-en">en</a>
  

  
    <a href="/notes/2025-02-26-maven-plugins-en">en</a>
  

  
    <a href="/notes/2025-02-26-mistral-agents-en">en</a>
  

  
    <a href="/notes/2025-02-26-mistral-embedding-en">en</a>
  

  
    <a href="/notes/2025-02-26-mistral-function-en">en</a>
  

  
    <a href="/notes/2025-02-26-mockito-en">en</a>
  

  
    <a href="/notes/2025-02-26-mysql-en">en</a>
  

  
    <a href="/notes/2025-02-26-postgresql-en">en</a>
  

  
    <a href="/notes/2025-02-26-python-requests-en">en</a>
  

  
    <a href="/notes/2025-02-26-servlet-maven-en">en</a>
  

  
    <a href="/notes/2025-02-26-shortcut-punch-en">en</a>
  

  
    <a href="/notes/2025-02-26-spring-compatibility-en">en</a>
  

  
    <a href="/notes/2025-02-26-spring-data-jpa-en">en</a>
  

  
    <a href="/notes/2025-02-26-spring-http-en">en</a>
  

  
    <a href="/notes/2025-02-26-spring-mvc-en">en</a>
  

  
    <a href="/notes/2025-02-26-spring-plugin-en">en</a>
  

  
    <a href="/notes/2025-02-26-surfire-en">en</a>
  

  
    <a href="/notes/2025-02-26-visualvm-en">en</a>
  

  
    <a href="/notes/2025-02-26-websphere-deployment-en">en</a>
  

  
    <a href="/notes/2025-02-26-websphere-java-servlet-en">en</a>
  

  
    <a href="/notes/2025-02-26-websphere-spring-en">en</a>
  

  
    <a href="/notes/2025-02-27-advanced-data-structures-en">en</a>
  

  
    <a href="/notes/2025-02-27-advanced-git-en">en</a>
  

  
    <a href="/notes/2025-02-27-bean-definition-en">en</a>
  

  
    <a href="/notes/2025-02-27-biology-en"></a>
  

  
    <a href="/notes/2025-02-27-bit-en">en</a>
  

  
    <a href="/notes/2025-02-27-chemistry-en"></a>
  

  
    <a href="/notes/2025-02-27-computer-organization-note-en"></a>
  

  
    <a href="/notes/2025-02-27-console-safari-en">en</a>
  

  
    <a href="/notes/2025-02-27-deepsearch-en">en</a>
  

  
    <a href="/notes/2025-02-27-deepseek-r1-conv-en"></a>
  

  
    <a href="/notes/2025-02-27-deepseek-v3-en">en</a>
  

  
    <a href="/notes/2025-02-27-docker-daemon-en">en</a>
  

  
    <a href="/notes/2025-02-27-eclipse-ide-en">en</a>
  

  
    <a href="/notes/2025-02-27-fsevents-en">en</a>
  

  
    <a href="/notes/2025-02-27-gradle-en">en</a>
  

  
    <a href="/notes/2025-02-27-graph-en">en</a>
  

  
    <a href="/notes/2025-02-27-headphone-en">en</a>
  

  
    <a href="/notes/2025-02-27-java-multithreading-en">en</a>
  

  
    <a href="/notes/2025-02-27-java-nio-en">en</a>
  

  
    <a href="/notes/2025-02-27-java-runtimes-en">en</a>
  

  
    <a href="/notes/2025-02-27-java-xml-en">en</a>
  

  
    <a href="/notes/2025-02-27-kafka-en">en</a>
  

  
    <a href="/notes/2025-02-27-linear-algebra-note-en"></a>
  

  
    <a href="/notes/2025-02-27-log4j-en">en</a>
  

  
    <a href="/notes/2025-02-27-lombok-en">en</a>
  

  
    <a href="/notes/2025-02-27-management-en">en</a>
  

  
    <a href="/notes/2025-02-27-miscellaneous-ai-en">en</a>
  

  
    <a href="/notes/2025-02-27-netty-en">en</a>
  

  
    <a href="/notes/2025-02-27-penetration-en">en</a>
  

  
    <a href="/notes/2025-02-27-physics-en"></a>
  

  
    <a href="/notes/2025-02-27-searching-en">en</a>
  

  
    <a href="/original/2025-02-27-shangzanwifi-en">en</a>
  

  
    <a href="/original/2025-02-27-shortcuts-en">en</a>
  

  
    <a href="/notes/2025-02-27-sorting-en">en</a>
  

  
    <a href="/notes/2025-02-27-spring-aop-en">en</a>
  

  
    <a href="/notes/2025-02-27-spring-bean-exception-en">en</a>
  

  
    <a href="/notes/2025-02-27-spring-data-jdbc-en">en</a>
  

  
    <a href="/notes/2025-02-27-spring-data-redis-en">en</a>
  

  
    <a href="/notes/2025-02-27-spring-internal-en">en</a>
  

  
    <a href="/notes/2025-02-27-spring-ioc-en">en</a>
  

  
    <a href="/notes/2025-02-27-spring-schedule-en">en</a>
  

  
    <a href="/notes/2025-02-27-string-en">en</a>
  

  
    <a href="/notes/2025-02-27-system-info-en">en</a>
  

  
    <a href="/notes/2025-02-27-thread-synchronization-en">en</a>
  

  
    <a href="/notes/2025-02-27-vscode-wrap-extensions-en">en</a>
  

  
    <a href="/notes/2025-02-27-windows-networking-en">en</a>
  

  
    <a href="/notes/2025-02-28-classin-en">en</a>
  

  
    <a href="/notes/2025-02-28-db2-mac-en">en</a>
  

  
    <a href="/notes/2025-02-28-http-codes-en">en</a>
  

  
    <a href="/notes/2025-02-28-http-headers-en">en</a>
  

  
    <a href="/notes/2025-02-28-http-upload-en">en</a>
  

  
    <a href="/notes/2025-02-28-https-en">en</a>
  

  
    <a href="/notes/2025-02-28-ibm-db2-en">en</a>
  

  
    <a href="/notes/2025-02-28-insomnia-features-en">en</a>
  

  
    <a href="/notes/2025-02-28-japanese-sentences-en">en</a>
  

  
    <a href="/notes/2025-02-28-microsoft-teams-en">en</a>
  

  
    <a href="/notes/2025-02-28-mysql-workbench-en">en</a>
  

  
    <a href="/notes/2025-02-28-npm-auth-tokens-en">en</a>
  

  
    <a href="/notes/2025-02-28-npm-config-en">en</a>
  

  
    <a href="/notes/2025-02-28-npm-en">en</a>
  

  
    <a href="/notes/2025-02-28-npm-registry-en">en</a>
  

  
    <a href="/notes/2025-02-28-payslip-en">en</a>
  

  
    <a href="/notes/2025-02-28-postman-en">en</a>
  

  
    <a href="/notes/2025-02-28-servicenow-en">en</a>
  

  
    <a href="/notes/2025-02-28-software-center-en">en</a>
  

  
    <a href="/notes/2025-02-28-squirrel-sql-en">en</a>
  

  
    <a href="/notes/2025-02-28-teams-messages-en">en</a>
  

  
    <a href="/notes/2025-02-28-test-npm-registry-en">en</a>
  

  
    <a href="/notes/2025-02-28-upload-audio-files-en">en</a>
  

  
    <a href="/notes/2025-02-28-use-jmeter-en">en</a>
  

  
    <a href="/notes/2025-02-28-using-vscode-en">en</a>
  

  
    <a href="/notes/2025-02-28-xai-en">en</a>
  

  
    <a href="/notes/2025-02-28-zoom-analysis-en">en</a>
  

  
    <a href="/notes/2025-02-28-zoom-en">en</a>
  

  
    <a href="/notes/2025-03-01-cache-systems-en">en</a>
  

  
    <a href="/notes/2025-03-01-cloudflare-en">en</a>
  

  
    <a href="/notes/2025-03-01-dns-en">en</a>
  

  
    <a href="/notes/2025-03-01-insomnia-ssl-en">en</a>
  

  
    <a href="/notes/2025-03-01-kafka-fast-en">en</a>
  

  
    <a href="/notes/2025-03-01-kuberenetes-en">en</a>
  

  
    <a href="/notes/2025-03-01-latency-numbers-en">en</a>
  

  
    <a href="/notes/2025-03-01-memory-storage-en">en</a>
  

  
    <a href="/notes/2025-03-01-redis-fast-en">en</a>
  

  
    <a href="/notes/2025-03-01-use-kuberenetes-en">en</a>
  

  
    <a href="/notes/2025-03-01-websites-en">en</a>
  

  
    <a href="/notes/2025-03-02-router-en">en</a>
  

  
    <a href="/notes/2025-03-02-two-routers-en">en</a>
  

  
    <a href="/notes/2025-03-03-aarch64-en">en</a>
  

  
    <a href="/notes/2025-03-03-jdbc-url-en">en</a>
  

  
    <a href="/notes/2025-03-03-openshift-en">en</a>
  

  
    <a href="/notes/2025-03-03-spring-boot-cli-en">en</a>
  

  
    <a href="/notes/2025-03-03-spring-properties-en">en</a>
  

  
    <a href="/notes/2025-03-03-squirrel-db2-en">en</a>
  

  
    <a href="/notes/2025-03-03-websphere-works-en">en</a>
  

  
    <a href="/notes/2025-03-04-afnetworking-en">en</a>
  

  
    <a href="/notes/2025-03-04-android-support-en">en</a>
  

  
    <a href="/notes/2025-03-04-application-context-en">en</a>
  

  
    <a href="/notes/2025-03-04-azure-pipeline-en">en</a>
  

  
    <a href="/notes/2025-03-04-babel-en">en</a>
  

  
    <a href="/notes/2025-03-04-build-helper-maven-en">en</a>
  

  
    <a href="/notes/2025-03-04-butter-knife-en">en</a>
  

  
    <a href="/notes/2025-03-04-cocopods-en">en</a>
  

  
    <a href="/notes/2025-03-04-enhance-vue-en">en</a>
  

  
    <a href="/notes/2025-03-04-epoll-en">en</a>
  

  
    <a href="/notes/2025-03-04-es6-promise-en">en</a>
  

  
    <a href="/notes/2025-03-04-eventbus-en">en</a>
  

  
    <a href="/notes/2025-03-04-exec-maven-plugin-en">en</a>
  

  
    <a href="/notes/2025-03-04-fastjson-en">en</a>
  

  
    <a href="/notes/2025-03-04-fmdb-en">en</a>
  

  
    <a href="/notes/2025-03-04-font-awesome-en">en</a>
  

  
    <a href="/notes/2025-03-04-fxforms-en">en</a>
  

  
    <a href="/notes/2025-03-04-github-markdown-css-en">en</a>
  

  
    <a href="/notes/2025-03-04-google-analytics-en">en</a>
  

  
    <a href="/notes/2025-03-04-google-cloud-java-en">en</a>
  

  
    <a href="/notes/2025-03-04-h2-test-en">en</a>
  

  
    <a href="/notes/2025-03-04-hls-js-en">en</a>
  

  
    <a href="/notes/2025-03-04-http-session-en">en</a>
  

  
    <a href="/notes/2025-03-04-httpmine-en">en</a>
  

  
    <a href="/notes/2025-03-04-image-loader-en">en</a>
  

  
    <a href="/notes/2025-03-04-iversion-en">en</a>
  

  
    <a href="/notes/2025-03-04-jacoco-maven-plugin-en">en</a>
  

  
    <a href="/notes/2025-03-04-java-concurrency-en">en</a>
  

  
    <a href="/notes/2025-03-04-java-jwt-en">en</a>
  

  
    <a href="/notes/2025-03-04-javax-json-en">en</a>
  

  
    <a href="/notes/2025-03-04-jenkinsfile-en">en</a>
  

  
    <a href="/notes/2025-03-04-jndi-en">en</a>
  

  
    <a href="/notes/2025-03-04-joda-time-en">en</a>
  

  
    <a href="/notes/2025-03-04-jquery-en">en</a>
  

  
    <a href="/notes/2025-03-04-jsbadgeview-en">en</a>
  

  
    <a href="/notes/2025-03-04-json-processing-en">en</a>
  

  
    <a href="/notes/2025-03-04-kafka-packages-en">en</a>
  

  
    <a href="/notes/2025-03-04-leancloud-im-ios-en">en</a>
  

  
    <a href="/notes/2025-03-04-leancloud-ios-en">en</a>
  

  
    <a href="/notes/2025-03-04-leancloud-realtime-en">en</a>
  

  
    <a href="/notes/2025-03-04-markdown-js-en">en</a>
  

  
    <a href="/notes/2025-03-04-maven-dependency-plugin-en">en</a>
  

  
    <a href="/notes/2025-03-04-maven-release-plugin-en">en</a>
  

  
    <a href="/notes/2025-03-04-mbprogress-hud-en">en</a>
  

  
    <a href="/notes/2025-03-04-mingw64-en">en</a>
  

  
    <a href="/notes/2025-03-04-mingw64-paths-en">en</a>
  

  
    <a href="/notes/2025-03-04-moment-js-en">en</a>
  

  
    <a href="/notes/2025-03-04-node-debug-en">en</a>
  

  
    <a href="/notes/2025-03-04-oracle-squirrel-en">en</a>
  

  
    <a href="/notes/2025-03-04-php-excel-en">en</a>
  

  
    <a href="/notes/2025-03-04-php-ffmpeg-en">en</a>
  

  
    <a href="/notes/2025-03-04-php-pili-en">en</a>
  

  
    <a href="/notes/2025-03-04-php-qiniu-sdk-en">en</a>
  

  
    <a href="/notes/2025-03-04-php-qrcode-en">en</a>
  

  
    <a href="/notes/2025-03-04-php-rabbitmq-en">en</a>
  

  
    <a href="/notes/2025-03-04-php-redis-en">en</a>
  

  
    <a href="/notes/2025-03-04-popmenu-ios-en">en</a>
  

  
    <a href="/notes/2025-03-04-publish-android-app-en">en</a>
  

  
    <a href="/notes/2025-03-04-publish-chrome-en">en</a>
  

  
    <a href="/notes/2025-03-04-publish-ios-iapp-en">en</a>
  

  
    <a href="/notes/2025-03-04-reactor-core-en">en</a>
  

  
    <a href="/notes/2025-03-04-reflection-java-en">en</a>
  

  
    <a href="/notes/2025-03-04-retrieve-key-en">en</a>
  

  
    <a href="/notes/2025-03-04-self-study-exam-en">en</a>
  

  
    <a href="/notes/2025-03-04-serializable-en">en</a>
  

  
    <a href="/notes/2025-03-04-spring-boot-packages-en">en</a>
  

  
    <a href="/notes/2025-03-04-spring-data-rest-en">en</a>
  

  
    <a href="/notes/2025-03-04-spring-runner-en">en</a>
  

  
    <a href="/notes/2025-03-04-swagger-en">en</a>
  

  
    <a href="/notes/2025-03-04-vuejs-en">en</a>
  

  
    <a href="/notes/2025-03-04-webpack-en">en</a>
  

  
    <a href="/notes/2025-03-04-websphere-aes-en">en</a>
  

  
    <a href="/notes/2025-03-04-websphere-ear-en">en</a>
  

  
    <a href="/notes/2025-03-04-websphere-jndi-en">en</a>
  

  
    <a href="/notes/2025-03-04-wechat-js-sdk-en">en</a>
  

  
    <a href="/notes/2025-03-05-apache-poi-en">en</a>
  

  
    <a href="/notes/2025-03-05-cryptography-java-en">en</a>
  

  
    <a href="/notes/2025-03-05-diverge-git-en">en</a>
  

  
    <a href="/notes/2025-03-05-eclipse-project-en">en</a>
  

  
    <a href="/notes/2025-03-05-filter-config-en">en</a>
  

  
    <a href="/notes/2025-03-05-functional-java-en">en</a>
  

  
    <a href="/notes/2025-03-05-installation-source-en">en</a>
  

  
    <a href="/notes/2025-03-05-instantiation-exception-en">en</a>
  

  
    <a href="/notes/2025-03-05-missing-jar-en">en</a>
  

  
    <a href="/notes/2025-03-05-oral-report-en">en</a>
  

  
    <a href="/notes/2025-03-05-soap-en">en</a>
  

  
    <a href="/notes/2025-03-05-stream-java-en">en</a>
  

  
    <a href="/notes/2025-03-05-xml-config-beans-en">en</a>
  

  
    <a href="/notes/2025-03-05-xml-sax-en">en</a>
  

  
    <a href="/notes/2025-03-06-argparse4j-en">en</a>
  

  
    <a href="/notes/2025-03-06-auto-prefixer-en">en</a>
  

  
    <a href="/notes/2025-03-06-benchmark-java-en">en</a>
  

  
    <a href="/notes/2025-03-06-bootstrap-en">en</a>
  

  
    <a href="/notes/2025-03-06-browser-sync-en">en</a>
  

  
    <a href="/notes/2025-03-06-chokidar-en">en</a>
  

  
    <a href="/notes/2025-03-06-concurrently-en">en</a>
  

  
    <a href="/notes/2025-03-06-hamcrest-en">en</a>
  

  
    <a href="/notes/2025-03-06-ibm-db2-basic-en">en</a>
  

  
    <a href="/notes/2025-03-06-java-opensource-projects-en">en</a>
  

  
    <a href="/notes/2025-03-06-javax-ws-en">en</a>
  

  
    <a href="/notes/2025-03-06-jetty-en">en</a>
  

  
    <a href="/notes/2025-03-06-jline-reader-en">en</a>
  

  
    <a href="/notes/2025-03-06-joptsimple-en">en</a>
  

  
    <a href="/notes/2025-03-06-nio-charset-en">en</a>
  

  
    <a href="/notes/2025-03-06-postcss-en">en</a>
  

  
    <a href="/notes/2025-03-06-python-guide-en">en</a>
  

  
    <a href="/notes/2025-03-06-python-oop-en">en</a>
  

  
    <a href="/notes/2025-03-06-regex-java-en">en</a>
  

  
    <a href="/notes/2025-03-06-rocksdb-java-en">en</a>
  

  
    <a href="/notes/2025-03-06-sasl-authentication-en">en</a>
  

  
    <a href="/notes/2025-03-06-sass-en">en</a>
  

  
    <a href="/notes/2025-03-06-scala-collection-en">en</a>
  

  
    <a href="/notes/2025-03-06-security-auth-java-en">en</a>
  

  
    <a href="/notes/2025-03-06-security-java-en">en</a>
  

  
    <a href="/notes/2025-03-06-shelljs-en">en</a>
  

  
    <a href="/notes/2025-03-06-squirrel-db2-issues-en">en</a>
  

  
    <a href="/notes/2025-03-06-ssl-java-en">en</a>
  

  
    <a href="/notes/2025-03-06-yammer-metrics-en">en</a>
  

  
    <a href="/notes/2025-03-07-computer-networks-note-en">en</a>
  

  
    <a href="/notes/2025-03-07-keytool-import-en">en</a>
  

  
    <a href="/notes/2025-03-07-websphere-jdk-en">en</a>
  

  
    <a href="/notes/2025-03-08-coffee-en">en</a>
  

  
    <a href="/notes/2025-03-10-angular-en">en</a>
  

  
    <a href="/notes/2025-03-10-deadlock-en">en</a>
  

  
    <a href="/notes/2025-03-10-gcp-cost-en">en</a>
  

  
    <a href="/notes/2025-03-10-hongkong-servers-en">en</a>
  

  
    <a href="/notes/2025-03-10-liberty-tools-en">en</a>
  

  
    <a href="/notes/2025-03-10-liberty-tools-params-en">en</a>
  

  
    <a href="/notes/2025-03-10-spring-boot-multithreads-en">en</a>
  

  
    <a href="/notes/2025-03-10-spring-boot-properties-en">en</a>
  

  
    <a href="/notes/2025-03-10-verbose-output-en">en</a>
  

  
    <a href="/notes/2025-03-10-webpack-issue-en">en</a>
  

  
    <a href="/notes/2025-03-13-configure-launch-json-en">en</a>
  

  
    <a href="/notes/2025-03-13-debug-spring-boot-vscode-en">en</a>
  

  
    <a href="/notes/2025-03-13-ibm-db2-locking-en">en</a>
  

  
    <a href="/notes/2025-03-13-sql-transaction-rollback-en">en</a>
  

  
    <a href="/notes/2025-03-14-actions-cron-en">en</a>
  

  
    <a href="/notes/2025-03-14-ai-platforms-en">en</a>
  

  
    <a href="/notes/2025-03-14-change-request-en">en</a>
  

  
    <a href="/notes/2025-03-14-clean-log-en">en</a>
  

  
    <a href="/notes/2025-03-14-coding-prompts-en">en</a>
  

  
    <a href="/notes/2025-03-14-copilot-en">en</a>
  

  
    <a href="/notes/2025-03-14-cyber-security-en">en</a>
  

  
    <a href="/notes/2025-03-14-deep-thinking-models-en">en</a>
  

  
    <a href="/notes/2025-03-14-deep-thinking-models-jina-en">en</a>
  

  
    <a href="/notes/2025-03-14-development-prompts-en">en</a>
  

  
    <a href="/notes/2025-03-14-language-prompts-en">en</a>
  

  
    <a href="/notes/2025-03-14-ledger-en">en</a>
  

  
    <a href="/notes/2025-03-14-mirai-e-en">en</a>
  

  
    <a href="/notes/2025-03-14-nytimes-en">en</a>
  

  
    <a href="/notes/2025-03-14-pineapple-en">en</a>
  

  
    <a href="/notes/2025-03-14-read-logs-en">en</a>
  

  
    <a href="/notes/2025-03-14-spring-boot-source-code-en">en</a>
  

  
    <a href="/notes/2025-03-14-sql-select-en">en</a>
  

  
    <a href="/notes/2025-03-14-swift-transactions-en">en</a>
  

  
    <a href="/notes/2025-03-14-symphony-en">en</a>
  

  
    <a href="/notes/2025-03-14-tools-security-en">en</a>
  

  
    <a href="/notes/2025-03-14-tsubomi-en">en</a>
  

  
    <a href="/notes/2025-03-14-yuki-no-hana-en">en</a>
  

  
    <a href="/notes/2025-03-15-dependabot-en">en</a>
  

  
    <a href="/notes/2025-03-15-git-fetch-en">en</a>
  

  
    <a href="/notes/2025-03-15-github-action-trigger-en">en</a>
  

  
    <a href="/notes/2025-03-15-install-deb-en">en</a>
  

  
    <a href="/notes/2025-03-15-jbake-en">en</a>
  

  
    <a href="/notes/2025-03-15-linux-system-info-en">en</a>
  

  
    <a href="/notes/2025-03-15-movies-en">en</a>
  

  
    <a href="/notes/2025-03-15-movies-lan-en">en</a>
  

  
    <a href="/notes/2025-03-15-nginx-forbidden-en">en</a>
  

  
    <a href="/notes/2025-03-15-outline-client-ubuntu-en">en</a>
  

  
    <a href="/notes/2025-03-15-python-module-en">en</a>
  

  
    <a href="/notes/2025-03-15-python-module-issue-en">en</a>
  

  
    <a href="/notes/2025-03-15-remap-keys-en">en</a>
  

  
    <a href="/notes/2025-03-15-series-en">en</a>
  

  
    <a href="/notes/2025-03-15-tech-movies-en">en</a>
  

  
    <a href="/notes/2025-03-15-the-pirate-bay-educational-en">en</a>
  

  
    <a href="/notes/2025-03-15-ubuntu-desktop-en">en</a>
  

  
    <a href="/notes/2025-03-15-ubuntu-vlc-en">en</a>
  

  
    <a href="/notes/2025-03-16-arduino-emitter-en">en</a>
  

  
    <a href="/notes/2025-03-16-arduino-en">en</a>
  

  
    <a href="/notes/2025-03-16-arduino-kirchhoff-en">en</a>
  

  
    <a href="/notes/2025-03-16-arduino-mesh-en">en</a>
  

  
    <a href="/notes/2025-03-16-arduino-mosfet-en">en</a>
  

  
    <a href="/notes/2025-03-16-breakingbad-s01e01-en">en</a>
  

  
    <a href="/notes/2025-03-16-cp-rsync-en">en</a>
  

  
    <a href="/notes/2025-03-16-firetv-mkv-en">en</a>
  

  
    <a href="/notes/2025-03-16-ftp-en">en</a>
  

  
    <a href="/notes/2025-03-16-icmp-c-en">en</a>
  

  
    <a href="/notes/2025-03-16-infuse-issue-en">en</a>
  

  
    <a href="/notes/2025-03-16-mac-console-en">en</a>
  

  
    <a href="/notes/2025-03-16-monitor-media-en">en</a>
  

  
    <a href="/notes/2025-03-16-networking-system-calls-en">en</a>
  

  
    <a href="/notes/2025-03-16-nfs-en">en</a>
  

  
    <a href="/original/2025-03-16-nytimes-update-en">en</a>
  

  
    <a href="/notes/2025-03-16-outdoor-spots-en"></a>
  

  
    <a href="/notes/2025-03-16-qbittorrent-sha1-en">en</a>
  

  
    <a href="/notes/2025-03-16-seeding-en">en</a>
  

  
    <a href="/notes/2025-03-16-sftp-en">en</a>
  

  
    <a href="/notes/2025-03-16-sha1-en">en</a>
  

  
    <a href="/notes/2025-03-16-smb-en">en</a>
  

  
    <a href="/notes/2025-03-16-tcp-packet-en">en</a>
  

  
    <a href="/notes/2025-03-16-udp-packet-en">en</a>
  

  
    <a href="/notes/2025-03-16-usbc-hdmi-en">en</a>
  

  
    <a href="/notes/2025-03-16-vlc-mobile-en">en</a>
  

  
    <a href="/notes/2025-03-16-vlc-nginx-en">en</a>
  

  
    <a href="/notes/2025-03-17-exec-en">en</a>
  

  
    <a href="/notes/2025-03-18-mathjax-issue-en">en</a>
  

  
    <a href="/original/2025-03-20-blogs-en">en</a>
  

  
    <a href="/notes/2025-03-20-dbeaver-not-loading-en">en</a>
  

  
    <a href="/notes/2025-03-20-financial-projects-en">en</a>
  

  
    <a href="/notes/2025-03-20-ibm-db2-tables-en">en</a>
  

  
    <a href="/original/2025-03-20-japanese-tips-en">en</a>
  

  
    <a href="/notes/2025-03-20-nuclear-hoax-en">en</a>
  

  
    <a href="/notes/2025-03-20-sin-pijama-en">en</a>
  

  
    <a href="/notes/2025-03-20-summertime-en">en</a>
  

  
    <a href="/notes/2025-03-20-traceroute-options-en">en</a>
  

  
    <a href="/notes/2025-03-20-traceroute-output-en">en</a>
  

  
    <a href="/notes/2025-03-20-traceroute-proxy-en">en</a>
  

  
    <a href="/notes/2025-03-20-vscode-python-en">en</a>
  

  
    <a href="/notes/2025-03-21-cline-issue-en">en</a>
  

  
    <a href="/notes/2025-03-21-content-length-en">en</a>
  

  
    <a href="/notes/2025-03-21-control-m-en">en</a>
  

  
    <a href="/notes/2025-03-21-docker-image-en">en</a>
  

  
    <a href="/notes/2025-03-21-docker-kubernetes-en">en</a>
  

  
    <a href="/notes/2025-03-21-docker-malware-en">en</a>
  

  
    <a href="/notes/2025-03-21-docker-works-en">en</a>
  

  
    <a href="/notes/2025-03-21-english-words-en">en</a>
  

  
    <a href="/notes/2025-03-21-focus-pattern-en">en</a>
  

  
    <a href="/notes/2025-03-21-gemini-code-assist-en">en</a>
  

  
    <a href="/notes/2025-03-21-guangzhou-en">en</a>
  

  
    <a href="/notes/2025-03-21-hongkong-macao-en">en</a>
  

  
    <a href="/notes/2025-03-21-idea-liberty-en">en</a>
  

  
    <a href="/notes/2025-03-21-japanese-movies-en">en</a>
  

  
    <a href="/notes/2025-03-21-vscode-ai-plugin-en">en</a>
  

  
    <a href="/notes/2025-03-21-vscode-cline-en">en</a>
  

  
    <a href="/notes/2025-03-21-vscode-copilot-en">en</a>
  

  
    <a href="/notes/2025-03-21-vscode-copilot-key-en">en</a>
  

  
    <a href="/notes/2025-03-21-vscode-deepseek-en">en</a>
  

  
    <a href="/notes/2025-03-21-vscode-extension-en">en</a>
  

  
    <a href="/notes/2025-03-21-vscode-vsix-en">en</a>
  

  
    <a href="/notes/2025-03-21-work-communication-en">en</a>
  

  
    <a href="/notes/2025-03-21-work-environments-en">en</a>
  

  
    <a href="/notes/2025-03-22-ai-chatbots-analysis-en">en</a>
  

  
    <a href="/notes/2025-03-22-breaking-bad-words-en">en</a>
  

  
    <a href="/notes/2025-03-22-china-report-en">en</a>
  

  
    <a href="/notes/2025-03-22-cline-thinking-en">en</a>
  

  
    <a href="/notes/2025-03-22-computer-networks-introduction-en">en</a>
  

  
    <a href="/notes/2025-03-22-computer-networks-outline-en">en</a>
  

  
    <a href="/notes/2025-03-22-computer-organization-outline-en">en</a>
  

  
    <a href="/notes/2025-03-22-cuda-basic-en">en</a>
  

  
    <a href="/notes/2025-03-22-data-link-layer-en">en</a>
  

  
    <a href="/notes/2025-03-22-decade-1990-en">en</a>
  

  
    <a href="/notes/2025-03-22-decade-2000s-en">en</a>
  

  
    <a href="/notes/2025-03-22-digestion-en">en</a>
  

  
    <a href="/notes/2025-03-22-hetzner-issue-en">en</a>
  

  
    <a href="/notes/2025-03-22-ireland-en">en</a>
  

  
    <a href="/notes/2025-03-22-kuwait-en">en</a>
  

  
    <a href="/notes/2025-03-22-law-introduction-outline-en">en</a>
  

  
    <a href="/notes/2025-03-22-linear-algebra-outline-en">en</a>
  

  
    <a href="/notes/2025-03-22-metal-example-en">en</a>
  

  
    <a href="/notes/2025-03-22-miles-mathis-en">en</a>
  

  
    <a href="/notes/2025-03-22-myopia-reversal-en">en</a>
  

  
    <a href="/notes/2025-03-22-network-architecture-en">en</a>
  

  
    <a href="/notes/2025-03-22-network-layer-en">en</a>
  

  
    <a href="/notes/2025-03-22-outdoor-weather-en">en</a>
  

  
    <a href="/notes/2025-03-22-physical-layer-en">en</a>
  

  
    <a href="/notes/2025-03-22-python-methods-en">en</a>
  

  
    <a href="/notes/2025-03-22-sapiens-en">en</a>
  

  
    <a href="/notes/2025-03-22-self-study-exam-courses-en">en</a>
  

  
    <a href="/notes/2025-03-22-singapore-en">en</a>
  

  
    <a href="/notes/2025-03-22-united-kingdom-en">en</a>
  

  
    <a href="/notes/2025-03-22-weather-conditions-en">en</a>
  

  
    <a href="/notes/2025-03-22-weight-loss-en">en</a>
  

  
    <a href="/notes/2025-03-22-wifi-adoption-en">en</a>
  

  
    <a href="/notes/2025-03-22-years-changes-en">en</a>
  

  
    <a href="/notes/2025-03-23-advanced-algorithms-en">en</a>
  

  
    <a href="/notes/2025-03-23-application-layer-en">en</a>
  

  
    <a href="/notes/2025-03-23-australian-visa-en">en</a>
  

  
    <a href="/notes/2025-03-23-china-it-infrastructure-en">en</a>
  

  
    <a href="/notes/2025-03-23-chinese-tech-companies-en">en</a>
  

  
    <a href="/notes/2025-03-23-cuda-drive-api-en">en</a>
  

  
    <a href="/notes/2025-03-23-data-representation-en">en</a>
  

  
    <a href="/notes/2025-03-23-dl-ml-gpt-progress-en">en</a>
  

  
    <a href="/notes/2025-03-23-eu-travel-visa-en">en</a>
  

  
    <a href="/notes/2025-03-23-europe-travel-cost-en">en</a>
  

  
    <a href="/notes/2025-03-23-generative-adversarial-networks-en">en</a>
  

  
    <a href="/notes/2025-03-23-ibm-db2-advanced-en">en</a>
  

  
    <a href="/notes/2025-03-23-ibm-db2-jcc-en">en</a>
  

  
    <a href="/notes/2025-03-23-instruction-system-en">en</a>
  

  
    <a href="/notes/2025-03-23-japan-en">en</a>
  

  
    <a href="/notes/2025-03-23-network-management-en">en</a>
  

  
    <a href="/notes/2025-03-23-notable-chinese-en">en</a>
  

  
    <a href="/notes/2025-03-23-quantitative-trading-en">en</a>
  

  
    <a href="/notes/2025-03-23-radio-waves-en">en</a>
  

  
    <a href="/notes/2025-03-23-shannon-capacity-en">en</a>
  

  
    <a href="/notes/2025-03-23-singapore-visa-en">en</a>
  

  
    <a href="/notes/2025-03-23-sleepy-en">en</a>
  

  
    <a href="/notes/2025-03-23-transport-layer-en">en</a>
  

  
    <a href="/notes/2025-03-23-usa-travel-en">en</a>
  

  
    <a href="/notes/2025-03-23-world-travel-en">en</a>
  

  
    <a href="/notes/2025-03-24-computer-history-en">en</a>
  

  
    <a href="/notes/2025-03-24-cpu-en">en</a>
  

  
    <a href="/notes/2025-03-24-database-acid-en">en</a>
  

  
    <a href="/notes/2025-03-24-db2-blocking-en">en</a>
  

  
    <a href="/notes/2025-03-24-db2-cte-en">en</a>
  

  
    <a href="/notes/2025-03-24-db2-data-type-en">en</a>
  

  
    <a href="/notes/2025-03-24-db2-groupby-en">en</a>
  

  
    <a href="/notes/2025-03-24-db2-history-en">en</a>
  

  
    <a href="/notes/2025-03-24-db2-lock-monitor-en">en</a>
  

  
    <a href="/notes/2025-03-24-db2-locking-en">en</a>
  

  
    <a href="/notes/2025-03-24-db2-postgresql-en">en</a>
  

  
    <a href="/notes/2025-03-24-db2-schemas-en">en</a>
  

  
    <a href="/notes/2025-03-24-db2-system-schemas-en">en</a>
  

  
    <a href="/notes/2025-03-24-db2pd-en">en</a>
  

  
    <a href="/notes/2025-03-24-dbs-bank-en">en</a>
  

  
    <a href="/notes/2025-03-24-hsbc-bank-en">en</a>
  

  
    <a href="/notes/2025-03-24-input-output-en">en</a>
  

  
    <a href="/notes/2025-03-24-linear-algebra-introduction-en">en</a>
  

  
    <a href="/notes/2025-03-24-memory-hierarchy-en">en</a>
  

  
    <a href="/notes/2025-03-24-mysql-ibmdb2-en">en</a>
  

  
    <a href="/notes/2025-03-24-philippines-en">en</a>
  

  
    <a href="/notes/2025-03-24-philippines-visa-en">en</a>
  

  
    <a href="/notes/2025-03-24-project-management-en">en</a>
  

  
    <a href="/notes/2025-03-24-software-failure-en">en</a>
  

  
    <a href="/notes/2025-03-24-spring-traceid-en">en</a>
  

  
    <a href="/notes/2025-03-24-standard-chartered-en">en</a>
  

  
    <a href="/notes/2025-03-24-tea-history-en">en</a>
  

  
    <a href="/notes/2025-03-25-bank-books-en">en</a>
  

  
    <a href="/notes/2025-03-25-bank-ledger-en">en</a>
  

  
    <a href="/notes/2025-03-25-bank-software-en">en</a>
  

  
    <a href="/notes/2025-03-25-bank-software-solutions-en">en</a>
  

  
    <a href="/notes/2025-03-25-finacle-api-en">en</a>
  

  
    <a href="/notes/2025-03-25-getting-promoted-en">en</a>
  

  
    <a href="/notes/2025-03-25-javacc-en">en</a>
  

  
    <a href="/notes/2025-03-25-lead-staff-engineer-en">en</a>
  

  
    <a href="/notes/2025-03-25-oracle-account-en">en</a>
  

  
    <a href="/notes/2025-03-25-oracle-dbeaver-en">en</a>
  

  
    <a href="/notes/2025-03-25-oracle-jdbc-en">en</a>
  

  
    <a href="/notes/2025-03-25-oracle-mysql-en">en</a>
  

  
    <a href="/notes/2025-03-25-oracle-tables-en">en</a>
  

  
    <a href="/notes/2025-03-25-principal-engineer-en">en</a>
  

  
    <a href="/notes/2025-03-25-software-manager-en">en</a>
  

  
    <a href="/notes/2025-03-25-temenos-transact-en">en</a>
  

  
    <a href="/notes/2025-03-25-transaction-table-en">en</a>
  

  
    <a href="/notes/2025-03-25-websphere-aes-en">en</a>
  

  
    <a href="/notes/2025-03-26-clean-zip-en">en</a>
  

  
    <a href="/notes/2025-03-26-gradle-proxy-en">en</a>
  

  
    <a href="/notes/2025-03-26-unzip-en">en</a>
  

  
    <a href="/notes/2025-03-26-vscode-errors-en">en</a>
  

  
    <a href="/notes/2025-03-27-angular-errors-en">en</a>
  

  
    <a href="/notes/2025-03-27-backend-books-en">en</a>
  

  
    <a href="/notes/2025-03-27-brew-water-en">en</a>
  

  
    <a href="/notes/2025-03-27-computer-science-books-en">en</a>
  

  
    <a href="/notes/2025-03-27-create-deadlocks-en">en</a>
  

  
    <a href="/notes/2025-03-27-daniel-friedman-books-en">en</a>
  

  
    <a href="/notes/2025-03-27-database-blocking-en">en</a>
  

  
    <a href="/notes/2025-03-27-database-deadlock-en">en</a>
  

  
    <a href="/notes/2025-03-27-db2-errors-en">en</a>
  

  
    <a href="/notes/2025-03-27-java-exceptions-en">en</a>
  

  
    <a href="/notes/2025-03-27-java-garbage-collection-en">en</a>
  

  
    <a href="/notes/2025-03-27-java-lambda-en">en</a>
  

  
    <a href="/notes/2025-03-27-java-memory-model-en">en</a>
  

  
    <a href="/notes/2025-03-27-java-type-system-en">en</a>
  

  
    <a href="/notes/2025-03-27-macao-card-fee-en">en</a>
  

  
    <a href="/notes/2025-03-27-spring-boot-exceptions-en">en</a>
  

  
    <a href="/notes/2025-03-27-web-exploration-en">en</a>
  

  
    <a href="/notes/2025-03-27-windows-file-delete-en">en</a>
  

  
    <a href="/notes/2025-03-27-yinwang-introduction-en">en</a>
  

  
    <a href="/notes/2025-03-28-completable-future-en">en</a>
  

  
    <a href="/notes/2025-03-28-git-stash-en">en</a>
  

  
    <a href="/notes/2025-03-28-idea-remote-debug-en">en</a>
  

  
    <a href="/notes/2025-03-28-matrix-operations-en">en</a>
  

  
    <a href="/notes/2025-03-28-systems-of-equations-en">en</a>
  

  
    <a href="/notes/2025-03-28-vscode-remote-debugging-en">en</a>
  

  
    <a href="/notes/2025-03-29-alibaba-java-guide-en">en</a>
  

  
    <a href="/notes/2025-03-29-amd-en">en</a>
  

  
    <a href="/notes/2025-03-29-avoid-regrets-en">en</a>
  

  
    <a href="/notes/2025-03-29-business-collapse-2000-en">en</a>
  

  
    <a href="/notes/2025-03-29-business-collapse-china-en">en</a>
  

  
    <a href="/notes/2025-03-29-business-collapse-en">en</a>
  

  
    <a href="/notes/2025-03-29-business-collapse-tech-en">en</a>
  

  
    <a href="/notes/2025-03-29-cnn-vit-en">en</a>
  

  
    <a href="/notes/2025-03-29-completable-future-case-en">en</a>
  

  
    <a href="/notes/2025-03-29-cpu-instructions-en">en</a>
  

  
    <a href="/notes/2025-03-29-depression-en">en</a>
  

  
    <a href="/notes/2025-03-29-determinant-matrix-en">en</a>
  

  
    <a href="/notes/2025-03-29-determinants-en">en</a>
  

  
    <a href="/notes/2025-03-29-earthquake-pool-en">en</a>
  

  
    <a href="/notes/2025-03-29-eigenvalues-en">en</a>
  

  
    <a href="/notes/2025-03-29-functional-programming-en">en</a>
  

  
    <a href="/notes/2025-03-29-google-java-style-en">en</a>
  

  
    <a href="/notes/2025-03-29-gram-schmidt-en">en</a>
  

  
    <a href="/notes/2025-03-29-inner-product-en">en</a>
  

  
    <a href="/notes/2025-03-29-java-executor-en">en</a>
  

  
    <a href="/notes/2025-03-29-java-history-en">en</a>
  

  
    <a href="/notes/2025-03-29-java-style-guides-en">en</a>
  

  
    <a href="/notes/2025-03-29-java-success-en">en</a>
  

  
    <a href="/notes/2025-03-29-law-chapters-en">en</a>
  

  
    <a href="/notes/2025-03-29-linear-algebra-applications-en">en</a>
  

  
    <a href="/notes/2025-03-29-linear-transformation-en">en</a>
  

  
    <a href="/notes/2025-03-29-linear-transformation-gemini-en">en</a>
  

  
    <a href="/notes/2025-03-29-luckin-coffee-en">en</a>
  

  
    <a href="/notes/2025-03-29-markdown-mathjax-en">en</a>
  

  
    <a href="/notes/2025-03-29-markdown-popular-en">en</a>
  

  
    <a href="/notes/2025-03-29-marked-en">en</a>
  

  
    <a href="/notes/2025-03-29-microsoft-en">en</a>
  

  
    <a href="/notes/2025-03-29-mindfulness-en">en</a>
  

  
    <a href="/notes/2025-03-29-multi-thread-case-en">en</a>
  

  
    <a href="/notes/2025-03-29-multimodal-en">en</a>
  

  
    <a href="/notes/2025-03-29-nokia-failure-en">en</a>
  

  
    <a href="/notes/2025-03-29-nvidia-en">en</a>
  

  
    <a href="/notes/2025-03-29-oracle-code-conventions-en">en</a>
  

  
    <a href="/notes/2025-03-29-pascal-fade-en">en</a>
  

  
    <a href="/notes/2025-03-29-quadratic-form-en">en</a>
  

  
    <a href="/notes/2025-03-29-scheme-language-en">en</a>
  

  
    <a href="/notes/2025-03-29-shoma-morita-en">en</a>
  

  
    <a href="/notes/2025-03-29-spring-actuator-en">en</a>
  

  
    <a href="/notes/2025-03-29-spring-boot-conventions-en">en</a>
  

  
    <a href="/notes/2025-03-29-stress-en">en</a>
  

  
    <a href="/notes/2025-03-29-unity-3d-en">en</a>
  

  
    <a href="/notes/2025-03-29-vector-spaces-en">en</a>
  

  
    <a href="/notes/2025-03-29-xml-data-type-en">en</a>
  

  
    <a href="/notes/2025-03-29-xml-schema-en">en</a>
  

  
    <a href="/notes/2025-03-29-yc-wisdom-en">en</a>
  

  
    <a href="/notes/2025-03-29-zen-buddhism-en">en</a>
  

  
    <a href="/notes/2025-03-30-activation-functions-en">en</a>
  

  
    <a href="/notes/2025-03-30-ai-latest-progress-en">en</a>
  

  
    <a href="/notes/2025-03-30-ai-tech-progress-en">en</a>
  

  
    <a href="/notes/2025-03-30-bach-en">en</a>
  

  
    <a href="/notes/2025-03-30-best-programmers-en">en</a>
  

  
    <a href="/notes/2025-03-30-bitter-lesson-en">en</a>
  

  
    <a href="/notes/2025-03-30-charlie-munger-en">en</a>
  

  
    <a href="/notes/2025-03-30-chatgpt-stands-out-en">en</a>
  

  
    <a href="/notes/2025-03-30-chemists-en">en</a>
  

  
    <a href="/notes/2025-03-30-cnn-en">en</a>
  

  
    <a href="/notes/2025-03-30-competitive-programmers-en">en</a>
  

  
    <a href="/notes/2025-03-30-composers-en">en</a>
  

  
    <a href="/notes/2025-03-30-computer-networks-figures-en">en</a>
  

  
    <a href="/notes/2025-03-30-computer-networks-quiz-en">en</a>
  

  
    <a href="/notes/2025-03-30-computer-organization-quiz-en">en</a>
  

  
    <a href="/notes/2025-03-30-deep-learning-quiz-en">en</a>
  

  
    <a href="/notes/2025-03-30-drucker-en">en</a>
  

  
    <a href="/notes/2025-03-30-du-yuesheng-en">en</a>
  

  
    <a href="/notes/2025-03-30-economists-en">en</a>
  

  
    <a href="/notes/2025-03-30-entrepreneurs-en">en</a>
  

  
    <a href="/notes/2025-03-30-go-lang-en">en</a>
  

  
    <a href="/notes/2025-03-30-gpu-fp-en">en</a>
  

  
    <a href="/notes/2025-03-30-high-school-math-en">en</a>
  

  
    <a href="/notes/2025-03-30-ilya-sutskever-en">en</a>
  

  
    <a href="/notes/2025-03-30-investment-trends-en">en</a>
  

  
    <a href="/notes/2025-03-30-law-chapters-2-en">en</a>
  

  
    <a href="/notes/2025-03-30-learning-en">en</a>
  

  
    <a href="/notes/2025-03-30-linear-algebra-plus-note-en">en</a>
  

  
    <a href="/notes/2025-03-30-linear-algebra-quiz-en">en</a>
  

  
    <a href="/notes/2025-03-30-mathematicians-en">en</a>
  

  
    <a href="/notes/2025-03-30-milton-friedman-en">en</a>
  

  
    <a href="/notes/2025-03-30-model-context-protocol-en">en</a>
  

  
    <a href="/notes/2025-03-30-movie-directors-en">en</a>
  

  
    <a href="/notes/2025-03-30-ocaml-en">en</a>
  

  
    <a href="/notes/2025-03-30-ocaml-industries-en">en</a>
  

  
    <a href="/notes/2025-03-30-painters-en">en</a>
  

  
    <a href="/notes/2025-03-30-pianists-en">en</a>
  

  
    <a href="/notes/2025-03-30-popular-language-en">en</a>
  

  
    <a href="/notes/2025-03-30-r-kent-dybvig-en">en</a>
  

  
    <a href="/notes/2025-03-30-reinforcement-learning-example-en">en</a>
  

  
    <a href="/notes/2025-03-30-rust-lang-en">en</a>
  

  
    <a href="/notes/2025-03-30-starbucks-success-en">en</a>
  

  
    <a href="/notes/2025-03-30-view-delft-en">en</a>
  

  
    <a href="/notes/2025-03-30-y-combinator-success-en">en</a>
  

  
    <a href="/notes/2025-03-31-cities-en">en</a>
  

  
    <a href="/notes/2025-03-31-cities-programmers-en">en</a>
  

  
    <a href="/notes/2025-03-31-indonesia-en">en</a>
  

  
    <a href="/notes/2025-03-31-philippines-cost-en">en</a>
  

  
    <a href="/notes/2025-03-31-south-asia-en">en</a>
  

  
    <a href="/notes/2025-03-31-thailand-en">en</a>
  

  
    <a href="/notes/2025-04-01-a-star-search-en">en</a>
  

  
    <a href="/notes/2025-04-01-alphafold-en">en</a>
  

  
    <a href="/notes/2025-04-01-alphago-en">en</a>
  

  
    <a href="/notes/2025-04-01-angular-project-en">en</a>
  

  
    <a href="/notes/2025-04-01-angular-routing-en">en</a>
  

  
    <a href="/notes/2025-04-01-bitcoin-en">en</a>
  

  
    <a href="/notes/2025-04-01-coco-cola-en">en</a>
  

  
    <a href="/notes/2025-04-01-control-m-job-en">en</a>
  

  
    <a href="/notes/2025-04-01-cps-transformer-en">en</a>
  

  
    <a href="/notes/2025-04-01-create-vscode-extension-en">en</a>
  

  
    <a href="/notes/2025-04-01-encoder-decoder-en">en</a>
  

  
    <a href="/notes/2025-04-01-erythritol-en">en</a>
  

  
    <a href="/notes/2025-04-01-european-food-en">en</a>
  

  
    <a href="/notes/2025-04-01-fabrice-bellard-en">en</a>
  

  
    <a href="/notes/2025-04-01-figma-wasm-en">en</a>
  

  
    <a href="/notes/2025-04-01-fpga-guide-en">en</a>
  

  
    <a href="/notes/2025-04-01-frontend-framework-en">en</a>
  

  
    <a href="/notes/2025-04-01-git-svn-en">en</a>
  

  
    <a href="/notes/2025-04-01-graalvm-en">en</a>
  

  
    <a href="/notes/2025-04-01-greater-success-en">en</a>
  

  
    <a href="/notes/2025-04-01-heart-disease-en">en</a>
  

  
    <a href="/notes/2025-04-01-hive-en">en</a>
  

  
    <a href="/notes/2025-04-01-ibm-db2-batch-updates-en">en</a>
  

  
    <a href="/notes/2025-04-01-ibm-db2-indexing-en">en</a>
  

  
    <a href="/notes/2025-04-01-late-boomer-en">en</a>
  

  
    <a href="/notes/2025-04-01-linear-transformation-kernal-en">en</a>
  

  
    <a href="/notes/2025-04-01-long-short-term-en">en</a>
  

  
    <a href="/notes/2025-04-01-monte-carlo-en">en</a>
  

  
    <a href="/notes/2025-04-01-netty-shadowsocks-en">en</a>
  

  
    <a href="/notes/2025-04-01-openai-sora-en">en</a>
  

  
    <a href="/notes/2025-04-01-personal-projects-en">en</a>
  

  
    <a href="/notes/2025-04-01-query-engine-en">en</a>
  

  
    <a href="/notes/2025-04-01-read-source-code-en">en</a>
  

  
    <a href="/notes/2025-04-01-recurrent-neural-en">en</a>
  

  
    <a href="/notes/2025-04-01-solana-en">en</a>
  

  
    <a href="/notes/2025-04-01-spring-boot-spring-en">en</a>
  

  
    <a href="/notes/2025-04-01-spring-evolution-en">en</a>
  

  
    <a href="/notes/2025-04-01-spring-laravel-en">en</a>
  

  
    <a href="/notes/2025-04-01-spring-play-en">en</a>
  

  
    <a href="/notes/2025-04-01-subspace-en">en</a>
  

  
    <a href="/notes/2025-04-01-sugar-en">en</a>
  

  
    <a href="/notes/2025-04-01-sugar-fat-salt-en">en</a>
  

  
    <a href="/notes/2025-04-01-virtual-threads-en">en</a>
  

  
    <a href="/notes/2025-04-01-webassembly-en">en</a>
  

  
    <a href="/notes/2025-04-01-webgl-en">en</a>
  

  
    <a href="/notes/2025-04-01-why-netty-en">en</a>
  

  
    <a href="/notes/2025-04-02-amc-math-en">en</a>
  

  
    <a href="/notes/2025-04-02-balanced-diet-en">en</a>
  

  
    <a href="/notes/2025-04-02-british-empire-en">en</a>
  

  
    <a href="/notes/2025-04-02-carbohydrates-en">en</a>
  

  
    <a href="/notes/2025-04-02-cron-en">en</a>
  

  
    <a href="/notes/2025-04-02-debug-en">en</a>
  

  
    <a href="/notes/2025-04-02-diagonalizable-en">en</a>
  

  
    <a href="/notes/2025-04-02-gram-schmidt-chatgpt-en">en</a>
  

  
    <a href="/notes/2025-04-02-guns-germs-steel-en">en</a>
  

  
    <a href="/notes/2025-04-02-international-mathematical-en">en</a>
  

  
    <a href="/notes/2025-04-02-kafka-en">en</a>
  

  
    <a href="/notes/2025-04-02-linear-algebra-tutorial-en">en</a>
  

  
    <a href="/notes/2025-04-02-macau-history-en">en</a>
  

  
    <a href="/notes/2025-04-02-portuguese-empire-en">en</a>
  

  
    <a href="/notes/2025-04-02-qing-dynasty-en">en</a>
  

  
    <a href="/notes/2025-04-02-redis-guide-en">en</a>
  

  
    <a href="/notes/2025-04-02-regular-expressions-en">en</a>
  

  
    <a href="/notes/2025-04-02-romanian-mathematics-en">en</a>
  

  
    <a href="/notes/2025-04-02-salt-history-en">en</a>
  

  
    <a href="/notes/2025-04-02-shipping-en">en</a>
  

  
    <a href="/notes/2025-04-02-steel-en">en</a>
  

  
    <a href="/notes/2025-04-02-weight-loss-short-en">en</a>
  

  
    <a href="/notes/2025-04-02-workflow-trigger-en">en</a>
  

  
    <a href="/notes/2025-04-02-writers-en">en</a>
  

  
    <a href="/notes/2025-04-03-road-trip-names-en">en</a>
  

  
    <a href="/notes/2025-04-03-road-trip-svgs-en">en</a>
  

  
    <a href="/notes/2025-04-03-road-trip-things-en">en</a>
  

  
    <a href="/notes/2025-04-03-shantou-road-trip-en">en</a>
  

  
    <a href="/notes/2025-04-03-shanwei-shantou-en">en</a>
  

  
    <a href="/notes/2025-04-04-chaoshan-region-trade-en">en</a>
  

  
    <a href="/notes/2025-04-04-chaozhou-history-en">en</a>
  

  
    <a href="/notes/2025-04-04-china-mobile-networks-en">en</a>
  

  
    <a href="/notes/2025-04-04-deepseek-r1-rl-en">en</a>
  

  
    <a href="/notes/2025-04-04-git-credential-diagnose-en">en</a>
  

  
    <a href="/notes/2025-04-04-git-credential-en">en</a>
  

  
    <a href="/notes/2025-04-04-git-credential-manager-en">en</a>
  

  
    <a href="/notes/2025-04-04-human-feedback-en">en</a>
  

  
    <a href="/notes/2025-04-04-kitefoiling-en">en</a>
  

  
    <a href="/notes/2025-04-04-max-maeder-en">en</a>
  

  
    <a href="/notes/2025-04-04-modern-sea-freight-en">en</a>
  

  
    <a href="/notes/2025-04-04-overboard-en">en</a>
  

  
    <a href="/notes/2025-04-04-ports-selection-en">en</a>
  

  
    <a href="/notes/2025-04-04-red-sea-bay-en">en</a>
  

  
    <a href="/notes/2025-04-04-sailing-accidents-en">en</a>
  

  
    <a href="/notes/2025-04-04-sea-trade-time-en">en</a>
  

  
    <a href="/notes/2025-04-04-seafood-en">en</a>
  

  
    <a href="/notes/2025-04-04-shantou-en">en</a>
  

  
    <a href="/notes/2025-04-04-shantou-port-en">en</a>
  

  
    <a href="/notes/2025-04-04-shanwei-history-en">en</a>
  

  
    <a href="/notes/2025-04-04-south-china-kitefoil-en">en</a>
  

  
    <a href="/notes/2025-04-04-surfing-en">en</a>
  

  
    <a href="/notes/2025-04-04-tech-figures-sailing-en">en</a>
  

  
    <a href="/notes/2025-04-04-top-ports-en">en</a>
  

  
    <a href="/notes/2025-04-04-transformer-en">en</a>
  

  
    <a href="/notes/2025-04-05-bridges-en">en</a>
  

  
    <a href="/notes/2025-04-05-china-infrastructure-en">en</a>
  

  
    <a href="/notes/2025-04-05-golden-gate-bridge-en">en</a>
  

  
    <a href="/notes/2025-04-05-queshi-bridge-en">en</a>
  

  
    <a href="/notes/2025-04-06-buffett-invest-en">en</a>
  

  
    <a href="/notes/2025-04-06-buffett-speech-en">en</a>
  

  
    <a href="/notes/2025-04-06-ltcm-en">en</a>
  

  
    <a href="/notes/2025-04-06-public-wifi-en">en</a>
  

  
    <a href="/notes/2025-04-06-trump-ukraine-en">en</a>
  

  
    <a href="/original/2025-04-08-car-dry-hair-en">en</a>
  

  
    <a href="/notes/2025-04-08-philippines-cities-en">en</a>
  

  
    <a href="/notes/2025-04-08-philippines-singapore-en">en</a>
  

  
    <a href="/notes/2025-04-08-rich-countries-en">en</a>
  

  
    <a href="/notes/2025-04-08-rich-countries-ppp-en">en</a>
  

  
    <a href="/notes/2025-04-09-book-steve-jobs-en">en</a>
  

  
    <a href="/notes/2025-04-09-chinese-visa-on-arrival-en">en</a>
  

  
    <a href="/notes/2025-04-09-filter-resources-en">en</a>
  

  
    <a href="/notes/2025-04-09-ibm-db2-add-column-en">en</a>
  

  
    <a href="/notes/2025-04-09-ibm-db2-constraint-en">en</a>
  

  
    <a href="/notes/2025-04-09-ibm-db2-constraint-issue-en">en</a>
  

  
    <a href="/notes/2025-04-09-ibm-db2-create-table-en">en</a>
  

  
    <a href="/notes/2025-04-09-ibm-db2-describe-table-en">en</a>
  

  
    <a href="/notes/2025-04-09-ibm-db2-foreign-keys-en">en</a>
  

  
    <a href="/notes/2025-04-09-ibm-db2-index-value-en">en</a>
  

  
    <a href="/notes/2025-04-09-ibm-db2-indexes-en">en</a>
  

  
    <a href="/notes/2025-04-09-ibm-db2-keys-en">en</a>
  

  
    <a href="/notes/2025-04-09-ibm-db2-sql-syntax-en">en</a>
  

  
    <a href="/notes/2025-04-09-ibm-db2-table-sql-en">en</a>
  

  
    <a href="/notes/2025-04-09-input-tensors-en">en</a>
  

  
    <a href="/notes/2025-04-09-math-majors-en">en</a>
  

  
    <a href="/notes/2025-04-09-singapore-master-degree-en">en</a>
  

  
    <a href="/notes/2025-04-09-uk-master-degree-en">en</a>
  

  
    <a href="/notes/2025-04-09-usa-master-degree-en">en</a>
  

  
    <a href="/notes/2025-04-09-x-unfollow-en">en</a>
  

  
    <a href="/notes/2025-04-09-xml-regex-en">en</a>
  

  
    <a href="/notes/2025-04-10-friends-plot-en">en</a>
  

  
    <a href="/notes/2025-04-10-platform-hosting-code-en">en</a>
  

  
    <a href="/notes/2025-04-10-taiwan-en">en</a>
  

  
    <a href="/notes/2025-04-10-usa-debt-en">en</a>
  

  
    <a href="/notes/2025-04-11-ibm-db2-table-column-en">en</a>
  

  
    <a href="/notes/2025-04-11-polyester-fiber-en">en</a>
  

  
    <a href="/notes/2025-04-11-short-video-apps-en">en</a>
  

  
    <a href="/notes/2025-04-12-buddhist-values-en">en</a>
  

  
    <a href="/notes/2025-04-12-christians-en">en</a>
  

  
    <a href="/notes/2025-04-12-hindu-values-en">en</a>
  

  
    <a href="/notes/2025-04-12-hydrogen-peroxide-en">en</a>
  

  
    <a href="/notes/2025-04-12-islamic-en">en</a>
  

  
    <a href="/notes/2025-04-12-mango-en">en</a>
  

  
    <a href="/notes/2025-04-12-religions-en">en</a>
  

  
    <a href="/notes/2025-04-12-religions-truth-en">en</a>
  

  
    <a href="/notes/2025-04-14-college-chinese-zh">zh</a>
  

  
    <a href="/notes/2025-04-14-csv-compare-en">en</a>
  

  
    <a href="/notes/2025-04-14-csv-sort-en">en</a>
  

  
    <a href="/notes/2025-04-14-electronic-technology-outline-en">en</a>
  

  
    <a href="/notes/2025-04-14-fujian-travel-en">en</a>
  

  
    <a href="/notes/2025-04-14-guangxi-guide-en">en</a>
  

  
    <a href="/notes/2025-04-14-hunan-travel-en">en</a>
  

  
    <a href="/notes/2025-04-14-jiangxi-guide-en">en</a>
  

  
    <a href="/notes/2025-04-14-microcomputer-outline-en">en</a>
  

  
    <a href="/notes/2025-04-14-microcomputers-fundamentals-en">en</a>
  

  
    <a href="/notes/2025-04-14-vegetable-juice-en">en</a>
  

  
    <a href="/notes/2025-04-15-assembly-programming-en">en</a>
  

  
    <a href="/notes/2025-04-15-io-interface-en">en</a>
  

  
    <a href="/notes/2025-04-15-memory-systems-en">en</a>
  

  
    <a href="/notes/2025-04-16-elon-musk-en">en</a>
  

  
    <a href="/notes/2025-04-16-link-hash-tree-map-en">en</a>
  

  
    <a href="/notes/2025-04-17-basic-electronics-note-conv-en"></a>
  

  
    <a href="/notes/2025-04-17-computer-networks-note-conv-en"></a>
  

  
    <a href="/notes/2025-04-17-computer-organization-note-conv-en"></a>
  

  
    <a href="/notes/2025-04-17-dhgate-en">en</a>
  

  
    <a href="/notes/2025-04-17-electronic-technology-quiz-en">en</a>
  

  
    <a href="/notes/2025-04-17-linear-algebra-plus-conv-en"></a>
  

  
    <a href="/notes/2025-04-17-linear-algebra-quiz-conv-en"></a>
  

  
    <a href="/notes/2025-04-17-microcomputer-dive-conv-en"></a>
  

  
    <a href="/notes/2025-04-17-microcomputer-note-conv-en"></a>
  

  
    <a href="/notes/2025-04-17-microcomputer-quiz-en">en</a>
  

  
    <a href="/notes/2025-04-18-adam-smith-ideas-en">en</a>
  

  
    <a href="/notes/2025-04-18-algorithmic-trading-en">en</a>
  

  
    <a href="/notes/2025-04-18-companies-en">en</a>
  

  
    <a href="/notes/2025-04-18-free-market-supporters-en">en</a>
  

  
    <a href="/notes/2025-04-18-hayek-ideas-en">en</a>
  

  
    <a href="/notes/2025-04-18-microcomputer-courses-en">en</a>
  

  
    <a href="/notes/2025-04-18-mises-en">en</a>
  

  
    <a href="/notes/2025-04-18-quantitative-trading-points-en">en</a>
  

  
    <a href="/notes/2025-04-18-quantitative-trading-resources-en">en</a>
  

  
    <a href="/notes/2025-04-18-time-restricted-eating-en">en</a>
  

  
    <a href="/notes/2025-04-19-buses-expansion-en">en</a>
  

  
    <a href="/notes/2025-04-20-india-cities-en">en</a>
  

  
    <a href="/notes/2025-04-20-joe-course-en">en</a>
  

  
    <a href="/notes/2025-04-20-labs-sessions-en">en</a>
  

  
    <a href="/notes/2025-04-20-linear-regession-trading-en">en</a>
  

  
    <a href="/notes/2025-04-20-lstm-trading-en">en</a>
  

  
    <a href="/notes/2025-04-20-pepper-sauce-en">en</a>
  

  
    <a href="/notes/2025-04-20-powders-en">en</a>
  

  
    <a href="/notes/2025-04-20-python-int-en">en</a>
  

  
    <a href="/notes/2025-04-20-us-stock-holidays-en">en</a>
  

  
    <a href="/notes/2025-04-20-water-flosser-en">en</a>
  

  
    <a href="/notes/2025-04-21-africa-cities-en">en</a>
  

  
    <a href="/notes/2025-04-21-analog-electronics-en">en</a>
  

  
    <a href="/notes/2025-04-21-benq-en">en</a>
  

  
    <a href="/notes/2025-04-21-dengmingyang-en">en</a>
  

  
    <a href="/notes/2025-04-21-digital-electronics-en">en</a>
  

  
    <a href="/notes/2025-04-21-electronics-figures-en">en</a>
  

  
    <a href="/notes/2025-04-21-electronics-notes-en">en</a>
  

  
    <a href="/notes/2025-04-21-europe-cities-en">en</a>
  

  
    <a href="/notes/2025-04-21-future-retail-en">en</a>
  

  
    <a href="/notes/2025-04-21-future-work-en">en</a>
  

  
    <a href="/notes/2025-04-21-gennady-korotkevich-en">en</a>
  

  
    <a href="/notes/2025-04-21-hos-lyric-en">en</a>
  

  
    <a href="/notes/2025-04-21-instant-drink-en">en</a>
  

  
    <a href="/notes/2025-04-21-jim-keller-en">en</a>
  

  
    <a href="/notes/2025-04-21-middle-east-en">en</a>
  

  
    <a href="/notes/2025-04-21-palmer-luckey-en">en</a>
  

  
    <a href="/notes/2025-04-21-peter-thiel-fellowship-en">en</a>
  

  
    <a href="/notes/2025-04-21-petr-mitrichev-en">en</a>
  

  
    <a href="/notes/2025-04-21-radewoosh-en">en</a>
  

  
    <a href="/notes/2025-04-21-rng58-en">en</a>
  

  
    <a href="/notes/2025-04-21-semiconductor-figures-en">en</a>
  

  
    <a href="/notes/2025-04-21-siemens-en">en</a>
  

  
    <a href="/notes/2025-04-21-software-figures-en">en</a>
  

  
    <a href="/notes/2025-04-21-south-america-cities-en">en</a>
  

  
    <a href="/notes/2025-04-21-tony-fadell-en">en</a>
  

  
    <a href="/notes/2025-04-21-usa-cities-en">en</a>
  

  
    <a href="/notes/2025-04-21-y-combinator-startups-en">en</a>
  

  
    <a href="/notes/2025-04-21-yc-founders-en">en</a>
  

  
    <a href="/notes/2025-04-21-young-engineers-en">en</a>
  

  
    <a href="/notes/2025-04-21-young-software-engineers-en">en</a>
  

  
    <a href="/notes/2025-04-21-young-tech-en">en</a>
  

  
    <a href="/notes/2025-04-22-ai-competitive-programming-en">en</a>
  

  
    <a href="/notes/2025-04-22-ai-education-en">en</a>
  

  
    <a href="/notes/2025-04-22-amplifier-configurations-en">en</a>
  

  
    <a href="/notes/2025-04-22-bjt-en">en</a>
  

  
    <a href="/notes/2025-04-22-computer-history-museum-en">en</a>
  

  
    <a href="/notes/2025-04-22-electronics-history-en">en</a>
  

  
    <a href="/notes/2025-04-22-european-figures-en">en</a>
  

  
    <a href="/notes/2025-04-22-greatest-scientists-en">en</a>
  

  
    <a href="/notes/2025-04-22-high-school-electronics-en">en</a>
  

  
    <a href="/notes/2025-04-22-indian-talent-en">en</a>
  

  
    <a href="/notes/2025-04-22-microcomputer-history-en">en</a>
  

  
    <a href="/notes/2025-04-22-mit-innovators-en">en</a>
  

  
    <a href="/notes/2025-04-22-neurips-award-en">en</a>
  

  
    <a href="/notes/2025-04-22-nissan-en">en</a>
  

  
    <a href="/notes/2025-04-22-scott-young-en">en</a>
  

  
    <a href="/notes/2025-04-22-sven-dedin-en">en</a>
  

  
    <a href="/notes/2025-04-22-tuyouyou-en">en</a>
  

  
    <a href="/original/2025-04-23-invest-tiger-actions-en">en</a>
  

  
    <a href="/original/2025-04-23-tire-en">en</a>
  

  
    <a href="/notes/2025-04-24-bipolar-transistors-en">en</a>
  

  
    <a href="/notes/2025-04-24-double-row-script-en">en</a>
  

  
    <a href="/notes/2025-04-24-font-awesome-issue-en">en</a>
  

  
    <a href="/notes/2025-04-24-isaac-newton-en">en</a>
  

  
    <a href="/notes/2025-04-24-kid-bath-en">en</a>
  

  
    <a href="/notes/2025-04-24-maxwell-equations-en">en</a>
  

  
    <a href="/notes/2025-04-24-npm-log-en">en</a>
  

  
    <a href="/notes/2025-04-24-prominent-mathematicians-en">en</a>
  

  
    <a href="/notes/2025-04-24-x-api-en">en</a>
  

  
    <a href="/notes/2025-04-25-bps-space-en">en</a>
  

  
    <a href="/notes/2025-04-25-claude-shannon-en">en</a>
  

  
    <a href="/notes/2025-04-25-newton-lessons-en">en</a>
  

  
    <a href="/notes/2025-04-25-peng-zhihui-en">en</a>
  

  
    <a href="/notes/2025-04-26-blue-led-en">en</a>
  

  
    <a href="/notes/2025-04-26-gallium-nitrogen-en">en</a>
  

  
    <a href="/notes/2025-04-26-june-huh-en">en</a>
  

  
    <a href="/notes/2025-04-26-kurzweil-en">en</a>
  

  
    <a href="/notes/2025-04-26-nakamura-en">en</a>
  

  
    <a href="/notes/2025-04-26-nobel-prize-chemistry-en">en</a>
  

  
    <a href="/notes/2025-04-26-nobel-prize-physics-electronics-en">en</a>
  

  
    <a href="/notes/2025-04-26-nobel-prize-physics-en">en</a>
  

  
    <a href="/notes/2025-04-26-npd-en">en</a>
  

  
    <a href="/notes/2025-04-26-prestigious-awards-en">en</a>
  

  
    <a href="/notes/2025-04-26-turing-award-en">en</a>
  

  
    <a href="/notes/2025-04-26-youtube-electricity-videos-en">en</a>
  

  
    <a href="/notes/2025-04-27-archipelagos-en">en</a>
  

  
    <a href="/notes/2025-04-27-capacitors-en">en</a>
  

  
    <a href="/notes/2025-04-27-davao-city-en">en</a>
  

  
    <a href="/original/2025-04-27-deepwiki-en">en</a>
  

  
    <a href="/notes/2025-04-27-diving-destinations-en">en</a>
  

  
    <a href="/notes/2025-04-27-inductors-en">en</a>
  

  
    <a href="/notes/2025-04-27-luzon-en">en</a>
  

  
    <a href="/notes/2025-04-27-microcomputer-youtube-en">en</a>
  

  
    <a href="/notes/2025-04-27-mindanao-en">en</a>
  

  
    <a href="/notes/2025-04-27-philippines-beaches-en">en</a>
  

  
    <a href="/notes/2025-04-27-philippines-it-en">en</a>
  

  
    <a href="/notes/2025-04-27-philippines-malls-en">en</a>
  

  
    <a href="/notes/2025-04-27-philippines-spots-en">en</a>
  

  
    <a href="/notes/2025-04-27-philippines-uniqueness-en">en</a>
  

  
    <a href="/notes/2025-04-27-philippines-universities-en">en</a>
  

  
    <a href="/notes/2025-04-27-transistors-en">en</a>
  

  
    <a href="/notes/2025-04-27-visayas-en">en</a>
  

  
    <a href="/notes/2025-04-28-boolean-algebra-en">en</a>
  

  
    <a href="/notes/2025-04-28-digital-logic-en">en</a>
  

  
    <a href="/notes/2025-04-28-number-systems-en">en</a>
  

  
    <a href="/notes/2025-04-28-sequential-circuits-en">en</a>
  

  
    <a href="/notes/2025-04-28-ttl-cmos-en">en</a>
  

  
    <a href="/notes/2025-04-29-ai-researchers-en">en</a>
  

  
    <a href="/notes/2025-04-29-ai-researchers-self-taught-en">en</a>
  

  
    <a href="/notes/2025-04-29-alibaba-history-en">en</a>
  

  
    <a href="/notes/2025-04-29-changes-next-20-years-en">en</a>
  

  
    <a href="/notes/2025-04-29-electronics-institutions-en">en</a>
  

  
    <a href="/notes/2025-04-29-georgi-gerganov-en">en</a>
  

  
    <a href="/notes/2025-04-29-great-students-en">en</a>
  

  
    <a href="/notes/2025-04-29-making-money-en">en</a>
  

  
    <a href="/notes/2025-04-29-singapore-attractions-en">en</a>
  

  
    <a href="/notes/2025-04-29-singapore-companies-en">en</a>
  

  
    <a href="/notes/2025-04-29-singapore-education-en">en</a>
  

  
    <a href="/notes/2025-04-29-singapore-history-en">en</a>
  

  
    <a href="/notes/2025-04-29-singapore-shopping-en">en</a>
  

  
    <a href="/notes/2025-04-29-singapore-uniqueness-en">en</a>
  

  
    <a href="/notes/2025-04-29-steve-jobs-1992-en">en</a>
  

  
    <a href="/notes/2025-04-29-steve-jobs-1995-en">en</a>
  

  
    <a href="/notes/2025-04-30-cambricon-en">en</a>
  

  
    <a href="/notes/2025-04-30-dayton-miller-en">en</a>
  

  
    <a href="/notes/2025-04-30-germany-nuclear-en">en</a>
  

  
    <a href="/notes/2025-04-30-hector-munera-en">en</a>
  

  
    <a href="/notes/2025-04-30-herbert-dingle-en">en</a>
  

  
    <a href="/notes/2025-04-30-himalayan-pink-salt-en">en</a>
  

  
    <a href="/notes/2025-04-30-jane-goodall-en">en</a>
  

  
    <a href="/notes/2025-04-30-light-speed-en">en</a>
  

  
    <a href="/notes/2025-04-30-nikola-tesla-en">en</a>
  

  
    <a href="/notes/2025-04-30-peter-duseberg-en">en</a>
  

  
    <a href="/notes/2025-04-30-qed-en">en</a>
  

  
    <a href="/notes/2025-04-30-relativity-theory-en">en</a>
  

  
    <a href="/notes/2025-04-30-richard-feynman-en">en</a>
  

  
    <a href="/notes/2025-04-30-stefan-lanka-en">en</a>
  

  
    <a href="/notes/2025-04-30-virus-mania-en">en</a>
  

  
    <a href="/notes/2025-05-01-ben-eater-en">en</a>
  

  
    <a href="/notes/2025-05-01-house-mortgage-en">en</a>
  

  
    <a href="/notes/2025-05-01-icho-en">en</a>
  

  
    <a href="/notes/2025-05-01-international-olympiad-en">en</a>
  

  
    <a href="/notes/2025-05-01-international-olympiad-lessons-en">en</a>
  

  
    <a href="/notes/2025-05-01-ipho-en">en</a>
  

  
    <a href="/notes/2025-05-01-lisa-sauermann-en">en</a>
  

  
    <a href="/notes/2025-05-01-perelman-en">en</a>
  

  
    <a href="/notes/2025-05-01-peter-scholze-en">en</a>
  

  
    <a href="/notes/2025-05-01-reid-barton-en">en</a>
  

  
    <a href="/notes/2025-05-01-semiconductors-en">en</a>
  

  
    <a href="/notes/2025-05-01-stanislav-fort-en">en</a>
  

  
    <a href="/notes/2025-05-01-transistor-current-en">en</a>
  

  
    <a href="/notes/2025-05-01-transistor-works-en">en</a>
  

  
    <a href="/notes/2025-05-01-yitang-zhang-en">en</a>
  

  
    <a href="/notes/2025-05-01-youtube-channels-en">en</a>
  

  
    <a href="/notes/2025-05-02-alphabet-en">en</a>
  

  
    <a href="/notes/2025-05-02-buffer-inverter-en">en</a>
  

  
    <a href="/notes/2025-05-02-countries-education-en">en</a>
  

  
    <a href="/notes/2025-05-02-countries-universities-en">en</a>
  

  
    <a href="/notes/2025-05-02-google-ads-revenue-en">en</a>
  

  
    <a href="/notes/2025-05-02-greg-brockman-en">en</a>
  

  
    <a href="/notes/2025-05-02-harbour-space-en">en</a>
  

  
    <a href="/notes/2025-05-02-invert-signal-en">en</a>
  

  
    <a href="/notes/2025-05-02-ios-frameworks-en">en</a>
  

  
    <a href="/notes/2025-05-02-ipho-winner-en">en</a>
  

  
    <a href="/notes/2025-05-02-jakub-pachocki-en">en</a>
  

  
    <a href="/notes/2025-05-02-lobachevsky-en">en</a>
  

  
    <a href="/notes/2025-05-02-master-program-en">en</a>
  

  
    <a href="/notes/2025-05-02-murphy-law-en">en</a>
  

  
    <a href="/notes/2025-05-02-nizhny-novgorod-en">en</a>
  

  
    <a href="/notes/2025-05-02-piotr-sankowski-en">en</a>
  

  
    <a href="/notes/2025-05-02-russia-cities-en">en</a>
  

  
    <a href="/notes/2025-05-02-russia-en">en</a>
  

  
    <a href="/notes/2025-05-02-tomasz-czajka-en">en</a>
  

  
    <a href="/notes/2025-05-02-transistor-switch-en">en</a>
  

  
    <a href="/notes/2025-05-02-xcode-en">en</a>
  

  
    <a href="/notes/2025-05-03-ajay-bhatt-en">en</a>
  

  
    <a href="/notes/2025-05-03-alessandro-volta-en">en</a>
  

  
    <a href="/notes/2025-05-03-andrew-grove-en">en</a>
  

  
    <a href="/notes/2025-05-03-benjamin-franklin-en">en</a>
  

  
    <a href="/notes/2025-05-03-dov-frohman-en">en</a>
  

  
    <a href="/notes/2025-05-03-edward-roberts-en">en</a>
  

  
    <a href="/notes/2025-05-03-federico-faggin-en">en</a>
  

  
    <a href="/notes/2025-05-03-gary-kildall-en">en</a>
  

  
    <a href="/notes/2025-05-03-gordon-moore-en">en</a>
  

  
    <a href="/notes/2025-05-03-ground-symbol-en">en</a>
  

  
    <a href="/notes/2025-05-03-jack-kilby-en">en</a>
  

  
    <a href="/notes/2025-05-03-jerry-sanders-en">en</a>
  

  
    <a href="/notes/2025-05-03-kirchhoff-en">en</a>
  

  
    <a href="/notes/2025-05-03-late-blooming-en">en</a>
  

  
    <a href="/notes/2025-05-03-london-en">en</a>
  

  
    <a href="/notes/2025-05-03-max-planck-en">en</a>
  

  
    <a href="/notes/2025-05-03-meditations-en">en</a>
  

  
    <a href="/notes/2025-05-03-microcomputer-videos-en">en</a>
  

  
    <a href="/notes/2025-05-03-mosfet-en">en</a>
  

  
    <a href="/notes/2025-05-03-national-inventors-en">en</a>
  

  
    <a href="/notes/2025-05-03-notebooklm-en">en</a>
  

  
    <a href="/notes/2025-05-03-ohm-en">en</a>
  

  
    <a href="/notes/2025-05-03-qian-mu-en">en</a>
  

  
    <a href="/notes/2025-05-03-robert-noyce-en">en</a>
  

  
    <a href="/notes/2025-05-03-royal-society-en">en</a>
  

  
    <a href="/notes/2025-05-03-stanley-mazor-en">en</a>
  

  
    <a href="/notes/2025-05-03-steve-wozniak-en">en</a>
  

  
    <a href="/notes/2025-05-03-stoicism-en">en</a>
  

  
    <a href="/notes/2025-05-03-ted-hoff-en">en</a>
  

  
    <a href="/notes/2025-05-03-transistor-led-en">en</a>
  

  
    <a href="/notes/2025-05-03-transistor-questions-en">en</a>
  

  
    <a href="/notes/2025-05-03-uk-en">en</a>
  

  
    <a href="/notes/2025-05-03-von-neumann-en">en</a>
  

  
    <a href="/notes/2025-05-03-william-shockley-en">en</a>
  

  
    <a href="/notes/2025-05-04-boston-tea-en">en</a>
  

  
    <a href="/notes/2025-05-04-cambridge-en">en</a>
  

  
    <a href="/notes/2025-05-04-chen-gao-en">en</a>
  

  
    <a href="/notes/2025-05-04-darwin-en">en</a>
  

  
    <a href="/notes/2025-05-04-dc-power-en">en</a>
  

  
    <a href="/notes/2025-05-04-erdal-arikan-en">en</a>
  

  
    <a href="/notes/2025-05-04-fedor-romashov-en">en</a>
  

  
    <a href="/notes/2025-05-04-galilei-en">en</a>
  

  
    <a href="/notes/2025-05-04-gustokashin-en">en</a>
  

  
    <a href="/notes/2025-05-04-henry-cavendish-en">en</a>
  

  
    <a href="/notes/2025-05-04-ics-en">en</a>
  

  
    <a href="/notes/2025-05-04-james-maxwell-en">en</a>
  

  
    <a href="/notes/2025-05-04-kangyang-zhou-en">en</a>
  

  
    <a href="/notes/2025-05-04-kids-game-en">en</a>
  

  
    <a href="/notes/2025-05-04-maspy-en">en</a>
  

  
    <a href="/notes/2025-05-04-michael-faraday-en">en</a>
  

  
    <a href="/notes/2025-05-04-mosfet-history-en">en</a>
  

  
    <a href="/notes/2025-05-04-neal-wu-en">en</a>
  

  
    <a href="/notes/2025-05-04-peel-brew-en">en</a>
  

  
    <a href="/notes/2025-05-04-riku-kawasaki-en">en</a>
  

  
    <a href="/notes/2025-05-04-thomas-young-en">en</a>
  

  
    <a href="/notes/2025-05-04-vermeer-en">en</a>
  

  
    <a href="/notes/2025-05-04-yuan-cao-en">en</a>
  

  
    <a href="/notes/2025-05-04-zhiwei-yun-en">en</a>
  

  
    <a href="/notes/2025-05-05-cauchy-en">en</a>
  

  
    <a href="/notes/2025-05-05-ecole-polytechnique-en">en</a>
  

  
    <a href="/notes/2025-05-05-france-math-en">en</a>
  

  
    <a href="/notes/2025-05-05-laplace-en">en</a>
  

  
    <a href="/notes/2025-05-05-vacuum-tube-en">en</a>
  

  
    <a href="/notes/2025-05-07-chinese-words-en">en</a>
  

  
    <a href="/notes/2025-05-07-euler-en">en</a>
  

  
    <a href="/notes/2025-05-07-fourier-en">en</a>
  

  
    <a href="/notes/2025-05-07-gauss-en">en</a>
  

  
    <a href="/notes/2025-05-07-greatest-stem-en">en</a>
  

  
    <a href="/notes/2025-05-07-home-appliances-en">en</a>
  

  
    <a href="/notes/2025-05-07-hristo-venev-en">en</a>
  

  
    <a href="/notes/2025-05-07-jae-hyun-park-en">en</a>
  

  
    <a href="/notes/2025-05-07-lagrange-en">en</a>
  

  
    <a href="/notes/2025-05-07-living-independently-en">en</a>
  

  
    <a href="/notes/2025-05-07-riemann-en">en</a>
  

  
    <a href="/notes/2025-05-07-rumen-hristov-en">en</a>
  

  
    <a href="/notes/2025-05-07-search-history-en">en</a>
  

  
    <a href="/notes/2025-05-07-singapore-medical-en">en</a>
  

  
    <a href="/notes/2025-05-07-zixiang-zhou-en">en</a>
  

  
    <a href="/notes/2025-05-08-ainta-en">en</a>
  

  
    <a href="/notes/2025-05-08-andrew-he-en">en</a>
  

  
    <a href="/notes/2025-05-08-benjamin-qi-advices-en">en</a>
  

  
    <a href="/notes/2025-05-08-bruce-merry-en">en</a>
  

  
    <a href="/notes/2025-05-08-codeforces-2108F-en">en</a>
  

  
    <a href="/notes/2025-05-08-darius-buhai-en">en</a>
  

  
    <a href="/notes/2025-05-08-john-dethridge-en">en</a>
  

  
    <a href="/notes/2025-05-08-kevin-sun-en">en</a>
  

  
    <a href="/notes/2025-05-08-lingyu-jiang-en">en</a>
  

  
    <a href="/notes/2025-05-08-mikhail-en">en</a>
  

  
    <a href="/notes/2025-05-08-przemyslaw-debiak-en">en</a>
  

  
    <a href="/notes/2025-05-08-rain-jiang-en">en</a>
  

  
    <a href="/notes/2025-05-08-samek-en">en</a>
  

  
    <a href="/notes/2025-05-08-tiancheng-lou-en">en</a>
  

  
    <a href="/notes/2025-05-08-yuhao-du-en">en</a>
  

  
    <a href="/notes/2025-05-08-ziqiang-zhong-en">en</a>
  

  
    <a href="/notes/2025-05-10-ai-learning-en">en</a>
  

  
    <a href="/notes/2025-05-10-armenia-en">en</a>
  

  
    <a href="/notes/2025-05-10-brt-en">en</a>
  

  
    <a href="/notes/2025-05-10-hyper-connected-en">en</a>
  

  
    <a href="/notes/2025-05-10-laundry-pods-en">en</a>
  

  
    <a href="/notes/2025-05-10-learn-30s-en">en</a>
  

  
    <a href="/notes/2025-05-10-namibia-en">en</a>
  

  
    <a href="/notes/2025-05-10-pakistan-en">en</a>
  

  
    <a href="/notes/2025-05-10-polar-form-en">en</a>
  

  
    <a href="/notes/2025-05-10-turkey-en">en</a>
  

  
    <a href="/notes/2025-05-12-alcohol-intake-en">en</a>
  

  
    <a href="/notes/2025-05-12-lost-connections-en">en</a>
  

  
    <a href="/notes/2025-05-12-paul-graham-challenges-en">en</a>
  

  
    <a href="/notes/2025-05-13-digital-electronics-conv-en"></a>
  

  
    <a href="/notes/2025-05-13-snacks-calories-en">en</a>
  

  
    <a href="/notes/2025-05-13-sugar-calories-en">en</a>
  

  
    <a href="/notes/2025-05-15-value-house-en">en</a>
  

  
    <a href="/notes/2025-05-16-control-m-client-en">en</a>
  

  
    <a href="/notes/2025-05-16-digital-media-en">en</a>
  

  
    <a href="/notes/2025-05-16-inner-game-en">en</a>
  

  
    <a href="/notes/2025-05-16-knowledge-wealth-en">en</a>
  

  
    <a href="/notes/2025-05-16-leapmotor-en">en</a>
  

  
    <a href="/notes/2025-05-16-mobile-phone-chip-market-en">en</a>
  

  
    <a href="/notes/2025-05-16-money-things-en">en</a>
  

  
    <a href="/notes/2025-05-16-nba-players-en">en</a>
  

  
    <a href="/notes/2025-05-16-neta-failure-en">en</a>
  

  
    <a href="/notes/2025-05-16-technology-adoption-en">en</a>
  

  
    <a href="/notes/2025-05-17-income-tax-en">en</a>
  

  
    <a href="/notes/2025-05-17-mobile-signals-en">en</a>
  

  
    <a href="/notes/2025-05-18-chemical-compounds-en">en</a>
  

  
    <a href="/notes/2025-05-18-citric-acid-en">en</a>
  

  
    <a href="/notes/2025-05-18-nginx-config-en">en</a>
  

  
    <a href="/notes/2025-05-18-sodium-bicarbonate-en">en</a>
  

  
    <a href="/notes/2025-05-20-bell-labs-en">en</a>
  

  
    <a href="/notes/2025-05-20-idea-certificate-en">en</a>
  

  
    <a href="/notes/2025-05-20-mohamed-atalla-en">en</a>
  

  
    <a href="/notes/2025-05-21-china-intro-en">en</a>
  

  
    <a href="/notes/2025-05-21-china-rivers-en">en</a>
  

  
    <a href="/notes/2025-05-21-control-m-script-en">en</a>
  

  
    <a href="/notes/2025-05-21-github-actions-concurrency-en">en</a>
  

  
    <a href="/notes/2025-05-21-india-en">en</a>
  

  
    <a href="/notes/2025-05-21-india-languages-en">en</a>
  

  
    <a href="/notes/2025-05-21-india-rivers-en">en</a>
  

  
    <a href="/notes/2025-05-21-kazakhstan-en">en</a>
  

  
    <a href="/notes/2025-05-21-liberty-maven-plugin-en">en</a>
  

  
    <a href="/notes/2025-05-21-mekong-river-en">en</a>
  

  
    <a href="/notes/2025-05-21-squirrel-script-en">en</a>
  

  
    <a href="/notes/2025-05-21-usa-intro-en">en</a>
  

  
    <a href="/notes/2025-05-21-windows-batch-files-en">en</a>
  

  
    <a href="/notes/2025-05-22-ambrose-fleming-en">en</a>
  

  
    <a href="/notes/2025-05-22-hidden-champions-en">en</a>
  

  
    <a href="/notes/2025-05-22-powershell-commands-en">en</a>
  

  
    <a href="/notes/2025-05-23-dawon-kahng-en">en</a>
  

  
    <a href="/notes/2025-05-23-filament-en">en</a>
  

  
    <a href="/notes/2025-05-23-lee-de-forest-en">en</a>
  

  
    <a href="/notes/2025-05-23-zhang-yujie-en">en</a>
  

  
    <a href="/notes/2025-05-24-air-fryer-en">en</a>
  

  
    <a href="/notes/2025-05-24-automated-purchasing-en">en</a>
  

  
    <a href="/notes/2025-05-24-cpic-en">en</a>
  

  
    <a href="/notes/2025-05-24-electric-ovens-en">en</a>
  

  
    <a href="/notes/2025-05-24-maillard-reaction-en">en</a>
  

  
    <a href="/notes/2025-05-24-marinate-wings-en">en</a>
  

  
    <a href="/notes/2025-05-24-paul-graham-essays-en">en</a>
  

  
    <a href="/notes/2025-05-24-product-recommendations-en">en</a>
  

  
    <a href="/notes/2025-05-24-selenium-example-en">en</a>
  

  
    <a href="/notes/2025-05-24-selenium-guide-en">en</a>
  

  
    <a href="/notes/2025-05-24-steve-jobs-en">en</a>
  

  
    <a href="/notes/2025-05-24-teksystems-en">en</a>
  

  
    <a href="/notes/2025-05-24-time-constant-en">en</a>
  

  
    <a href="/notes/2025-05-24-vegetables-storing-en">en</a>
  

  
    <a href="/notes/2025-05-24-yujun-product-en">en</a>
  

  
    <a href="/notes/2025-05-25-agricultural-bank-en">en</a>
  

  
    <a href="/notes/2025-05-25-air-fryer-cooking-en">en</a>
  

  
    <a href="/notes/2025-05-25-competitive-programming-career-en">en</a>
  

  
    <a href="/notes/2025-05-25-cooking-tips-en">en</a>
  

  
    <a href="/notes/2025-05-25-dbs-tech-india-en">en</a>
  

  
    <a href="/notes/2025-05-25-double-slit-galton-en">en</a>
  

  
    <a href="/notes/2025-05-25-engineer-salaries-india-en">en</a>
  

  
    <a href="/notes/2025-05-25-exponential-en">en</a>
  

  
    <a href="/notes/2025-05-25-macbook-powerbank-en">en</a>
  

  
    <a href="/notes/2025-05-25-paul-dirac-en">en</a>
  

  
    <a href="/notes/2025-05-25-quantum-computing-en">en</a>
  

  
    <a href="/notes/2025-05-25-quantum-mechanics-en">en</a>
  

  
    <a href="/notes/2025-05-25-singapore-hongkong-en">en</a>
  

  
    <a href="/notes/2025-05-25-singapore-property-en">en</a>
  

  
    <a href="/notes/2025-05-25-tech-hubs-india-en">en</a>
  

  
    <a href="/notes/2025-05-26-ai-commercial-en">en</a>
  

  
    <a href="/notes/2025-05-26-air-fryer-bitter-melon-en">en</a>
  

  
    <a href="/notes/2025-05-26-air-fryer-electric-oven-en">en</a>
  

  
    <a href="/notes/2025-05-26-air-fryer-potato-en">en</a>
  

  
    <a href="/notes/2025-05-26-control-m-commands-en">en</a>
  

  
    <a href="/notes/2025-05-26-cooking-ingredients-en">en</a>
  

  
    <a href="/notes/2025-05-26-cooking-math-en">en</a>
  

  
    <a href="/notes/2025-05-26-ctmfw-en">en</a>
  

  
    <a href="/notes/2025-05-26-life-2025-1995-en">en</a>
  

  
    <a href="/notes/2025-05-26-life-2025-2015-en">en</a>
  

  
    <a href="/notes/2025-05-26-npm-error-en">en</a>
  

  
    <a href="/notes/2025-05-26-quine-mccluskey-en">en</a>
  

  
    <a href="/notes/2025-05-27-flip-flops-en">en</a>
  

  
    <a href="/notes/2025-05-27-housing-market-shift-en">en</a>
  

  
    <a href="/notes/2025-05-28-advanced-git-rebase-en">en</a>
  

  
    <a href="/notes/2025-05-28-air-fryer-crispy-en">en</a>
  

  
    <a href="/notes/2025-05-28-control-m-files-en">en</a>
  

  
    <a href="/notes/2025-05-28-db2-privilege-en">en</a>
  

  
    <a href="/notes/2025-05-28-git-branch-en">en</a>
  

  
    <a href="/notes/2025-05-28-git-difftool-en">en</a>
  

  
    <a href="/notes/2025-05-28-git-mergetool-best-en">en</a>
  

  
    <a href="/notes/2025-05-28-git-mergetool-en">en</a>
  

  
    <a href="/notes/2025-05-28-powershell-cmd-en">en</a>
  

  
    <a href="/notes/2025-05-28-powershell-get-nettcp-en">en</a>
  

  
    <a href="/notes/2025-05-28-powershell-python-en">en</a>
  

  
    <a href="/notes/2025-05-28-projects-algorithm-en">en</a>
  

  
    <a href="/notes/2025-05-28-projects-binary-search-en">en</a>
  

  
    <a href="/notes/2025-05-28-psutil-en">en</a>
  

  
    <a href="/notes/2025-05-28-python-maven-wlp-en">en</a>
  

  
    <a href="/notes/2025-05-28-remote-logging-en">en</a>
  

  
    <a href="/notes/2025-05-28-source-control-en">en</a>
  

  
    <a href="/notes/2025-05-28-tortoisegit-en">en</a>
  

  
    <a href="/notes/2025-05-28-websphere-hot-reloading-en">en</a>
  

  
    <a href="/notes/2025-05-28-windows-cuda-en">en</a>
  

  
    <a href="/notes/2025-05-28-zbook-gpu-en">en</a>
  

  
    <a href="/notes/2025-05-29-control-m-management-en">en</a>
  

  
    <a href="/notes/2025-05-29-hugo-latex-en">en</a>
  

  
    <a href="/notes/2025-05-29-injective-en">en</a>
  

  
    <a href="/notes/2025-05-29-jekyll-hugo-en">en</a>
  

  
    <a href="/notes/2025-05-29-jekyll-katex-en">en</a>
  

  
    <a href="/notes/2025-05-29-linear-proof-en">en</a>
  

  
    <a href="/notes/2025-05-29-linear-questions-en">en</a>
  

  
    <a href="/notes/2025-05-29-matrix-formatting-en">en</a>
  

  
    <a href="/notes/2025-05-29-powershell-run-en">en</a>
  

  
    <a href="/notes/2025-05-29-putty-en">en</a>
  

  
    <a href="/notes/2025-05-29-websphere-vs-java-en">en</a>
  

  
    <a href="/notes/2025-05-29-winscp-en">en</a>
  

  
    <a href="/notes/2025-05-30-flip-flop-problem-en">en</a>
  

  
    <a href="/notes/2025-05-30-python-db2-en">en</a>
  

  
    <a href="/notes/2025-05-31-future-military-en">en</a>
  

  
    <a href="/notes/2025-05-31-gnome-terminal-en">en</a>
  

  
    <a href="/notes/2025-05-31-midea-q7-en">en</a>
  

  
    <a href="/notes/2025-05-31-nvidia-dkms-en">en</a>
  

  
    <a href="/notes/2025-05-31-snap-apt-en">en</a>
  

  
    <a href="/notes/2025-05-31-snap-update-en">en</a>
  

  
    <a href="/notes/2025-05-31-top-websites-en">en</a>
  

  
    <a href="/notes/2025-05-31-ubuntu-macos-en">en</a>
  

  
    <a href="/notes/2025-06-01-air-conditioner-cost-en">en</a>
  

  
    <a href="/notes/2025-06-01-audio-speakers-pc-en">en</a>
  

  
    <a href="/notes/2025-06-01-balancing-ai-books-en">en</a>
  

  
    <a href="/notes/2025-06-01-basic-need-en">en</a>
  

  
    <a href="/notes/2025-06-01-beef-offal-en">en</a>
  

  
    <a href="/notes/2025-06-01-chinese-labor-en">en</a>
  

  
    <a href="/notes/2025-06-01-dishwasher-en">en</a>
  

  
    <a href="/notes/2025-06-01-framework-computer-en">en</a>
  

  
    <a href="/notes/2025-06-01-impact-llms-google-en">en</a>
  

  
    <a href="/notes/2025-06-01-information-platform-en">en</a>
  

  
    <a href="/notes/2025-06-01-jeff-dean-minnesota-en">en</a>
  

  
    <a href="/notes/2025-06-01-jk-flip-flop-history-en">en</a>
  

  
    <a href="/notes/2025-06-01-lemon-en">en</a>
  

  
    <a href="/notes/2025-06-01-lg-monitor-en">en</a>
  

  
    <a href="/notes/2025-06-01-link-speed-en">en</a>
  

  
    <a href="/notes/2025-06-01-linux-commands-en">en</a>
  

  
    <a href="/notes/2025-06-01-linux-tool-en">en</a>
  

  
    <a href="/notes/2025-06-01-marination-en">en</a>
  

  
    <a href="/notes/2025-06-01-native-pork-en">en</a>
  

  
    <a href="/notes/2025-06-01-product-choices-en">en</a>
  

  
    <a href="/notes/2025-06-01-refresh-rate-en">en</a>
  

  
    <a href="/notes/2025-06-01-sauce-en">en</a>
  

  
    <a href="/notes/2025-06-01-skills-en">en</a>
  

  
    <a href="/notes/2025-06-01-ubuntu-suspend-en">en</a>
  

  
    <a href="/notes/2025-06-01-wifi-drops-en">en</a>
  

  
    <a href="/notes/2025-06-01-xiaomi-chip-eletronics-en">en</a>
  

  
    <a href="/notes/2025-06-01-youtube-shortcut-en">en</a>
  

  
    <a href="/notes/2025-06-02-apache-module-taobao-en">en</a>
  

  
    <a href="/notes/2025-06-02-attention-kqv-en">en</a>
  

  
    <a href="/notes/2025-06-02-cold-drinks-en">en</a>
  

  
    <a href="/notes/2025-06-02-construction-en">en</a>
  

  
    <a href="/notes/2025-06-02-dario-talent-en">en</a>
  

  
    <a href="/notes/2025-06-02-digital-life-en">en</a>
  

  
    <a href="/notes/2025-06-02-gguf-ud-en">en</a>
  

  
    <a href="/notes/2025-06-02-heinz-en">en</a>
  

  
    <a href="/notes/2025-06-02-human-body-systems-en">en</a>
  

  
    <a href="/notes/2025-06-02-llama-cpp-loading-en">en</a>
  

  
    <a href="/notes/2025-06-02-model-serve-en">en</a>
  

  
    <a href="/notes/2025-06-02-nvidia-driver-version-en">en</a>
  

  
    <a href="/notes/2025-06-02-paris-safety-en">en</a>
  

  
    <a href="/notes/2025-06-03-appimage-en">en</a>
  

  
    <a href="/notes/2025-06-03-apt-permission-en">en</a>
  

  
    <a href="/notes/2025-06-03-arm64-x8664-en">en</a>
  

  
    <a href="/notes/2025-06-03-attention-scores-en">en</a>
  

  
    <a href="/notes/2025-06-03-autoregressive-en">en</a>
  

  
    <a href="/notes/2025-06-03-checkstyle-javadoc-en">en</a>
  

  
    <a href="/notes/2025-06-03-computer-architecture-en">en</a>
  

  
    <a href="/notes/2025-06-03-cursor-vscode-en">en</a>
  

  
    <a href="/notes/2025-06-03-google-one-en">en</a>
  

  
    <a href="/notes/2025-06-03-maven-checkstyle-scan-en">en</a>
  

  
    <a href="/notes/2025-06-03-softmax-en">en</a>
  

  
    <a href="/notes/2025-06-03-spotless-en">en</a>
  

  
    <a href="/notes/2025-06-04-checkstyle-xml-en">en</a>
  

  
    <a href="/notes/2025-06-04-china-migration-en">en</a>
  

  
    <a href="/notes/2025-06-04-cosine-similarity-en">en</a>
  

  
    <a href="/notes/2025-06-04-operational-amplifiers-en">en</a>
  

  
    <a href="/notes/2025-06-04-vscode-copilot-guide-en">en</a>
  

  
    <a href="/notes/2025-06-05-copilot-chat-en">en</a>
  

  
    <a href="/notes/2025-06-05-dl-study-map-en">en</a>
  

  
    <a href="/notes/2025-06-05-mit-curriculum-en">en</a>
  

  
    <a href="/original/2025-06-05-reminders-en">en</a>
  

  
    <a href="/notes/2025-06-05-vscode-copilot-extension-en">en</a>
  

  
    <a href="/notes/2025-06-06-telegram-bots-en">en</a>
  

  
    <a href="/notes/2025-06-07-basketball-stats-en">en</a>
  

  
    <a href="/notes/2025-06-07-giannis-sga-en">en</a>
  

  
    <a href="/notes/2025-06-07-haliburton-sga-en">en</a>
  

  
    <a href="/notes/2025-06-07-iostat-en">en</a>
  

  
    <a href="/notes/2025-06-07-lscpu-en">en</a>
  

  
    <a href="/notes/2025-06-07-nba-finals-2025-en">en</a>
  

  
    <a href="/notes/2025-06-07-new-taiwan-dollar-en">en</a>
  

  
    <a href="/original/2025-06-07-news-bot-en">en</a>
  

  
    <a href="/notes/2025-06-07-outline-vpn-remove-en">en</a>
  

  
    <a href="/notes/2025-06-07-thunder-pacers-en">en</a>
  

  
    <a href="/notes/2025-06-07-uptime-en">en</a>
  

  
    <a href="/notes/2025-06-07-usa-tv-90s-en">en</a>
  

  
    <a href="/original/2025-06-08-clash-en">en</a>
  

  
    <a href="/notes/2025-06-08-cudnn-en">en</a>
  

  
    <a href="/notes/2025-06-08-leo-breiman-en">en</a>
  

  
    <a href="/original/2025-06-08-location-bot-en">en</a>
  

  
    <a href="/notes/2025-06-08-maximize-pc-use-en">en</a>
  

  
    <a href="/notes/2025-06-08-most-cited-papers-en">en</a>
  

  
    <a href="/notes/2025-06-08-pyaudio-en">en</a>
  

  
    <a href="/notes/2025-06-08-pycrypto-en">en</a>
  

  
    <a href="/notes/2025-06-08-python-disutils-en">en</a>
  

  
    <a href="/notes/2025-06-08-ram-charan-en">en</a>
  

  
    <a href="/notes/2025-06-08-security-checks-en">en</a>
  

  
    <a href="/notes/2025-06-08-telegram-live-location-en">en</a>
  

  
    <a href="/notes/2025-06-08-video-secure-en">en</a>
  

  
    <a href="/notes/2025-06-09-egg-tart-en">en</a>
  

  
    <a href="/notes/2025-06-09-linux-love-en">en</a>
  

  
    <a href="/notes/2025-06-09-mission-driven-en">en</a>
  

  
    <a href="/notes/2025-06-09-mozilla-en">en</a>
  

  
    <a href="/notes/2025-06-09-qbittorrent-en">en</a>
  

  
    <a href="/notes/2025-06-09-reader-view-en">en</a>
  

  
    <a href="/notes/2025-06-09-sauce-burnt-en">en</a>
  

  
    <a href="/notes/2025-06-09-useful-prompts-en">en</a>
  

  
    <a href="/notes/2025-06-10-aspectj-en">en</a>
  

  
    <a href="/notes/2025-06-10-circular-dependencies-en">en</a>
  

  
    <a href="/notes/2025-06-10-cooking-mushrooms-en">en</a>
  

  
    <a href="/notes/2025-06-10-enoki-shiitake-en">en</a>
  

  
    <a href="/notes/2025-06-10-luka-doncic-en">en</a>
  

  
    <a href="/notes/2025-06-10-soybean-milk-en">en</a>
  

  
    <a href="/notes/2025-06-11-aspectj-circular-en">en</a>
  

  
    <a href="/notes/2025-06-11-copilot-context-window-en">en</a>
  

  
    <a href="/notes/2025-06-11-copilot-models-en">en</a>
  

  
    <a href="/notes/2025-06-11-future-tech-10x-en">en</a>
  

  
    <a href="/notes/2025-06-11-google-cloud-vm-en">en</a>
  

  
    <a href="/notes/2025-06-11-logging-debugging-en">en</a>
  

  
    <a href="/notes/2025-06-11-pointcut-en">en</a>
  

  
    <a href="/notes/2025-06-11-spring-aop-guide-en">en</a>
  

  
    <a href="/notes/2025-06-11-string-comparison-en">en</a>
  

  
    <a href="/notes/2025-06-12-cffi-en">en</a>
  

  
    <a href="/notes/2025-06-12-hardware-info-en">en</a>
  

  
    <a href="/notes/2025-06-12-supabase-en">en</a>
  

  
    <a href="/original/2025-06-13-habit-bot-en">en</a>
  

  
    <a href="/notes/2025-06-13-maven-dep-issue-en">en</a>
  

  
    <a href="/notes/2025-06-13-multi-layered-software-en">en</a>
  

  
    <a href="/notes/2025-06-14-arduino-issue-en">en</a>
  

  
    <a href="/notes/2025-06-14-arduino-linux-en">en</a>
  

  
    <a href="/notes/2025-06-14-arduino-uno-en">en</a>
  

  
    <a href="/notes/2025-06-14-bootloader-en">en</a>
  

  
    <a href="/notes/2025-06-14-capture-log-en">en</a>
  

  
    <a href="/notes/2025-06-14-checkstyle-indentation-en">en</a>
  

  
    <a href="/notes/2025-06-14-checkstyle-location-en">en</a>
  

  
    <a href="/notes/2025-06-14-db2-install-en">en</a>
  

  
    <a href="/notes/2025-06-14-file-permissions-en">en</a>
  

  
    <a href="/notes/2025-06-14-github-cli-en">en</a>
  

  
    <a href="/notes/2025-06-14-hitachi-en">en</a>
  

  
    <a href="/notes/2025-06-14-iran-israel-en">en</a>
  

  
    <a href="/notes/2025-06-14-maven-proxy-en">en</a>
  

  
    <a href="/notes/2025-06-14-pip-install-continue-en">en</a>
  

  
    <a href="/notes/2025-06-14-pip-packages-en">en</a>
  

  
    <a href="/notes/2025-06-14-python-java-en">en</a>
  

  
    <a href="/notes/2025-06-14-python-video-edit-en">en</a>
  

  
    <a href="/notes/2025-06-14-slf4j-log4j-en">en</a>
  

  
    <a href="/notes/2025-06-14-ssh-key-github-actions-en">en</a>
  

  
    <a href="/notes/2025-06-14-suno-prompts-en">en</a>
  

  
    <a href="/notes/2025-06-14-top-maven-en">en</a>
  

  
    <a href="/notes/2025-06-14-vscode-supress-en">en</a>
  

  
    <a href="/notes/2025-06-15-dissolution-en">en</a>
  

  
    <a href="/notes/2025-06-15-git-hook-en">en</a>
  

  
    <a href="/notes/2025-06-16-bluetooth-keyboard-en">en</a>
  

  
    <a href="/notes/2025-06-16-iphone-compatibility-en">en</a>
  

  
    <a href="/notes/2025-06-16-time-format-en">en</a>
  

  
    <a href="/notes/2025-06-16-tire-size-en">en</a>
  

  
    <a href="/notes/2025-06-17-decision-tree-en">en</a>
  

  
    <a href="/notes/2025-06-17-dtsp-en">en</a>
  

  
    <a href="/notes/2025-06-17-pg-networth-en">en</a>
  

  
    <a href="/notes/2025-06-17-rice-noodles-en">en</a>
  

  
    <a href="/notes/2025-06-17-spring-devtools-en">en</a>
  

  
    <a href="/notes/2025-06-17-terminal-title-en">en</a>
  

  
    <a href="/notes/2025-06-17-xiangyu-zhang-en">en</a>
  

  
    <a href="/notes/2025-06-18-git-pre-add-en">en</a>
  

  
    <a href="/original/2025-06-18-hydrogen-peroxide-foot-en">en</a>
  

  
    <a href="/notes/2025-06-18-olive-oil-en">en</a>
  

  
    <a href="/notes/2025-06-18-short-quotes-en">en</a>
  

  
    <a href="/notes/2025-06-18-stable-diffusion-en">en</a>
  

  
    <a href="/notes/2025-06-18-tcmalloc-en">en</a>
  

  
    <a href="/notes/2025-06-18-xelatex-en">en</a>
  

  
    <a href="/notes/2025-06-20-geckodriver-en">en</a>
  

  
    <a href="/notes/2025-06-20-java-vpn-proxy-en">en</a>
  

  
    <a href="/notes/2025-06-20-viva-la-vida-en">en</a>
  

  
    <a href="/notes/2025-06-21-cloudflare-bypass-en">en</a>
  

  
    <a href="/notes/2025-06-21-firefox-apt-en">en</a>
  

  
    <a href="/notes/2025-06-21-full-path-en">en</a>
  

  
    <a href="/notes/2025-06-21-mozillal-bookmark-en">en</a>
  

  
    <a href="/notes/2025-06-22-dijkstra-en">en</a>
  

  
    <a href="/notes/2025-06-22-global-music-exploration-en">en</a>
  

  
    <a href="/notes/2025-06-22-gpu-memory-management-en">en</a>
  

  
    <a href="/notes/2025-06-22-hydrogen-peroxide-solution-en">en</a>
  

  
    <a href="/notes/2025-06-22-jk-flip-flop-ben-en">en</a>
  

  
    <a href="/notes/2025-06-22-jon-jandai-en">en</a>
  

  
    <a href="/notes/2025-06-22-niklaus-wirth-en">en</a>
  

  
    <a href="/notes/2025-06-22-richard-feynman-ai-2025-en">en</a>
  

  
    <a href="/notes/2025-06-22-richard-feynman-ai-en">en</a>
  

  
    <a href="/notes/2025-06-22-top-chinese-songs-en">en</a>
  

  
    <a href="/notes/2025-06-22-top-english-songs-en">en</a>
  

  
    <a href="/notes/2025-06-22-top-japanese-songs-en">en</a>
  

  
    <a href="/notes/2025-06-22-top-spanish-songs-en">en</a>
  

  
    <a href="/notes/2025-06-22-youtube-caption-en">en</a>
  

  
    <a href="/notes/2025-06-23-check-sleuth-setup-en">en</a>
  

  
    <a href="/notes/2025-06-23-configure-imports-intellij-en">en</a>
  

  
    <a href="/notes/2025-06-23-curry-allen-en">en</a>
  

  
    <a href="/notes/2025-06-23-mcdonald-drive-thru-en">en</a>
  

  
    <a href="/notes/2025-06-23-meituans-retreat-struggles-en">en</a>
  

  
    <a href="/notes/2025-06-23-python-clipboard-en">en</a>
  

  
    <a href="/notes/2025-06-23-trace-ids-help-en">en</a>
  

  
    <a href="/notes/2025-06-23-trace-spring-sleuth-en">en</a>
  

  
    <a href="/notes/2025-06-23-typing-extensions-en">en</a>
  

  
    <a href="/notes/2025-06-24-configure-logback-pattern-en">en</a>
  

  
    <a href="/notes/2025-06-24-convert-webp-to-jpg-en">en</a>
  

  
    <a href="/notes/2025-06-24-generate-random-strings-en">en</a>
  

  
    <a href="/notes/2025-06-24-logback-color-issues-en">en</a>
  

  
    <a href="/notes/2025-06-24-micrometers-explained-en">en</a>
  

  
    <a href="/original/2025-06-24-sleeping-socks-en">en</a>
  

  
    <a href="/notes/2025-06-25-company-valuation-comparison-en"></a>
  

  
    <a href="/notes/2025-06-25-top-companies-evolve-en"></a>
  

  
    <a href="/notes/2025-06-26-db2-privilege-guide-en">en</a>
  

  
    <a href="/notes/2025-06-26-factorial-scheme-code-en">en</a>
  

  
    <a href="/notes/2025-06-26-fortrans-legacy-en">en</a>
  

  
    <a href="/notes/2025-06-26-hydrogen-peroxide-smell-en">en</a>
  

  
    <a href="/notes/2025-06-26-pythons-creator-en">en</a>
  

  
    <a href="/notes/2025-06-26-shallow-clone-pulls-en">en</a>
  

  
    <a href="/notes/2025-06-26-top-maven-packages-en">en</a>
  

  
    <a href="/notes/2025-06-26-top-python-packages-en">en</a>
  

  
    <a href="/notes/2025-06-26-x-vs-gnome-en">en</a>
  

  
    <a href="/notes/2025-06-27-free-java-profilers-en">en</a>
  

  
    <a href="/notes/2025-06-27-gpg-encryption-guide-en">en</a>
  

  
    <a href="/notes/2025-06-27-install-yourkit-profiler-en">en</a>
  

  
    <a href="/notes/2025-06-27-ios-dual-sim-traffic-control-en">en</a>
  

  
    <a href="/notes/2025-06-27-java-development-tools-en">en</a>
  

  
    <a href="/notes/2025-06-27-java-profiler-guide-en">en</a>
  

  
    <a href="/notes/2025-06-27-jdk-tools-guide-en">en</a>
  

  
    <a href="/notes/2025-06-27-jdk-version-error-en">en</a>
  

  
    <a href="/notes/2025-06-27-jshell-quick-guide-en">en</a>
  

  
    <a href="/notes/2025-06-27-jshell-vs-python-en">en</a>
  

  
    <a href="/notes/2025-06-27-openjdk-installed-en">en</a>
  

  
    <a href="/notes/2025-06-27-sankaras-revolutionary-legacy-en">en</a>
  

  
    <a href="/notes/2025-06-27-sonarqube-java-guide-en">en</a>
  

  
    <a href="/notes/2025-06-27-startup-success-guide-en">en</a>
  

  
    <a href="/notes/2025-06-27-visualvm-guide-en">en</a>
  

  
    <a href="/notes/2025-06-27-yourkit-liberty-setup-en">en</a>
  

  
    <a href="/notes/2025-06-28-ai-in-competitive-programming-en">en</a>
  

  
    <a href="/notes/2025-06-28-ais-limited-breakthroughs-en">en</a>
  

  
    <a href="/notes/2025-06-28-check-apt-proxy-en">en</a>
  

  
    <a href="/notes/2025-06-28-check-pico-detection-en">en</a>
  

  
    <a href="/notes/2025-06-28-cloud-platform-rankings-en">en</a>
  

  
    <a href="/notes/2025-06-28-computer-vision-limits-en">en</a>
  

  
    <a href="/notes/2025-06-28-developer-survey-2024-en">en</a>
  

  
    <a href="/notes/2025-06-28-experience-boosts-productivity-en">en</a>
  

  
    <a href="/notes/2025-06-28-fix-go-error-macos-en">en</a>
  

  
    <a href="/notes/2025-06-28-flip-flop-basics-en">en</a>
  

  
    <a href="/notes/2025-06-28-flip-flop-simulator-en">en</a>
  

  
    <a href="/notes/2025-06-28-gils-thread-limitation-en">en</a>
  

  
    <a href="/notes/2025-06-28-install-go-via-apt-en">en</a>
  

  
    <a href="/notes/2025-06-28-itmos-icpc-dominance-en">en</a>
  

  
    <a href="/notes/2025-06-28-java-performance-guide-en">en</a>
  

  
    <a href="/notes/2025-06-28-java-proxy-alternatives-en">en</a>
  

  
    <a href="/notes/2025-06-28-language-ranking-boards-en">en</a>
  

  
    <a href="/notes/2025-06-28-micropython-for-hardware-en">en</a>
  

  
    <a href="/notes/2025-06-28-optimize-gtagjs-en">en</a>
  

  
    <a href="/notes/2025-06-28-pico-on-ubuntu-en">en</a>
  

  
    <a href="/notes/2025-06-28-pico-usb-guide-en">en</a>
  

  
    <a href="/notes/2025-06-28-privacy-focused-analytics-en">en</a>
  

  
    <a href="/notes/2025-06-28-pythons-ai-edge-en">en</a>
  

  
    <a href="/notes/2025-06-28-raspberry-pi-pico-en">en</a>
  

  
    <a href="/notes/2025-06-28-raspberry-pi-vs-arduino-en">en</a>
  

  
    <a href="/notes/2025-06-28-sound-based-detection-en">en</a>
  

  
    <a href="/notes/2025-06-28-speed-up-jekyll-en">en</a>
  

  
    <a href="/notes/2025-06-28-top-database-rankings-en">en</a>
  

  
    <a href="/notes/2025-06-28-top-python-packages-en">en</a>
  

  
    <a href="/notes/2025-06-28-warsaws-icpc-triumphs-en">en</a>
  

  
    <a href="/notes/2025-06-28-washing-machine-monitor-en">en</a>
  

  
    <a href="/notes/2025-06-29-ai-coding-assistant-en">en</a>
  

  
    <a href="/notes/2025-06-29-chinas-unemployment-crisis-en">en</a>
  

  
    <a href="/notes/2025-06-29-chinese-exam-guide-en">en</a>
  

  
    <a href="/notes/2025-06-29-clash-mixed-content-en">en</a>
  

  
    <a href="/notes/2025-06-29-clash-user-agent-logging-en">en</a>
  

  
    <a href="/notes/2025-06-29-context-protocol-guide-en">en</a>
  

  
    <a href="/notes/2025-06-29-create-postgresql-database-en">en</a>
  

  
    <a href="/notes/2025-06-29-cuda-compilation-error-en">en</a>
  

  
    <a href="/notes/2025-06-29-cuda-memory-error-en">en</a>
  

  
    <a href="/notes/2025-06-29-fix-java-classpath-error-en">en</a>
  

  
    <a href="/notes/2025-06-29-fix-youtube-dl-error-en">en</a>
  

  
    <a href="/notes/2025-06-29-flash-pico-firmware-1-en">en</a>
  

  
    <a href="/notes/2025-06-29-flash-pico-firmware-en">en</a>
  

  
    <a href="/notes/2025-06-29-focused-mastery-en">en</a>
  

  
    <a href="/notes/2025-06-29-gemini-cli-guide-en">en</a>
  

  
    <a href="/notes/2025-06-29-grant-postgresql-access-en">en</a>
  

  
    <a href="/notes/2025-06-29-hey-judes-advice-en">en</a>
  

  
    <a href="/notes/2025-06-29-hosting-multiple-pages-en">en</a>
  

  
    <a href="/notes/2025-06-29-improve-audio-quality-en">en</a>
  

  
    <a href="/notes/2025-06-29-javas-founders-en">en</a>
  

  
    <a href="/notes/2025-06-29-jk-flip-flop-build-en">en</a>
  

  
    <a href="/notes/2025-06-29-meituans-global-reach-en">en</a>
  

  
    <a href="/notes/2025-06-29-meituans-leadership-en">en</a>
  

  
    <a href="/notes/2025-06-29-micropython-on-pico-en">en</a>
  

  
    <a href="/notes/2025-06-29-missing-postgresql-headers-en">en</a>
  

  
    <a href="/notes/2025-06-29-pico-in-bootsel-en">en</a>
  

  
    <a href="/notes/2025-06-29-pico-led-button-setup-en">en</a>
  

  
    <a href="/notes/2025-06-29-pico-w-go-setup-en">en</a>
  

  
    <a href="/notes/2025-06-29-postgresql-installation-guide-en">en</a>
  

  
    <a href="/notes/2025-06-29-project-sites-limits-en">en</a>
  

  
    <a href="/notes/2025-06-29-python-313-issue-en">en</a>
  

  
    <a href="/notes/2025-06-29-raspberry-pi-5-en">en</a>
  

  
    <a href="/notes/2025-06-29-raspberry-pi-pico-guide-en">en</a>
  

  
    <a href="/notes/2025-06-29-run-java-directly-en">en</a>
  

  
    <a href="/notes/2025-06-29-university-chinese-syllabus-en">en</a>
  

  
    <a href="/notes/2025-06-29-video-creation-guide-en">en</a>
  

  
    <a href="/notes/2025-06-29-vscode-for-pico-en">en</a>
  

  
    <a href="/notes/2025-06-30-anthropic-top-talent-en">en</a>
  

  
    <a href="/notes/2025-06-30-chez-gc-pauses-en">en</a>
  

  
    <a href="/notes/2025-06-30-db2-stored-procedure-en">en</a>
  

  
    <a href="/notes/2025-06-30-enable-soft-wrap-en">en</a>
  

  
    <a href="/notes/2025-06-30-gc-pauses-impact-en">en</a>
  

  
    <a href="/notes/2025-06-30-gemini-key-figures-en">en</a>
  

  
    <a href="/notes/2025-06-30-go-no-regret-en">en</a>
  

  
    <a href="/notes/2025-06-30-install-rust-macos-en">en</a>
  

  
    <a href="/notes/2025-06-30-java-vs-rust-code-en">en</a>
  

  
    <a href="/notes/2025-06-30-linux-x86_64-ide-en">en</a>
  

  
    <a href="/notes/2025-06-30-openai-top-talent-en">en</a>
  

  
    <a href="/notes/2025-06-30-python-rust-leaders-en">en</a>
  

  
    <a href="/notes/2025-06-30-quicksort-rust-dive-en">en</a>
  

  
    <a href="/notes/2025-06-30-rust-compilation-options-en">en</a>
  

  
    <a href="/notes/2025-06-30-rust-error-handling-en">en</a>
  

  
    <a href="/notes/2025-06-30-rust-firecracker-vm-en">en</a>
  

  
    <a href="/notes/2025-06-30-rust-for-startups-en">en</a>
  

  
    <a href="/notes/2025-06-30-rust-ide-options-en">en</a>
  

  
    <a href="/notes/2025-06-30-rust-in-big-tech-en">en</a>
  

  
    <a href="/notes/2025-06-30-rust-one-liner-en">en</a>
  

  
    <a href="/notes/2025-06-30-rust-solana-success-en">en</a>
  

  
    <a href="/notes/2025-06-30-rustrover-guide-en">en</a>
  

  
    <a href="/notes/2025-06-30-rusts-choice-greptimedb-en">en</a>
  

  
    <a href="/notes/2025-06-30-rusts-disadvantages-en">en</a>
  

  
    <a href="/notes/2025-06-30-rusts-memory-breakthroughs-en">en</a>
  

  
    <a href="/notes/2025-06-30-rusts-rise-en">en</a>
  

  
    <a href="/notes/2025-06-30-rusts-speed-secrets-en">en</a>
  

  
    <a href="/notes/2025-06-30-rusts-top-projects-en">en</a>
  

  
    <a href="/notes/2025-06-30-rusts-transformative-adoption-en">en</a>
  

  
    <a href="/notes/2025-06-30-rusts-win-en">en</a>
  

  
    <a href="/notes/2025-06-30-wealthy-emotions-en">en</a>
  

  
    <a href="/notes/2025-06-30-zig-quicksort-en">en</a>
  

  
    <a href="/notes/2025-06-30-zigs-better-c-en">en</a>
  

  
    <a href="/notes/2025-06-30-zigs-rise-en">en</a>
  

  
    <a href="/notes/2025-06-30-zigs-specialties-en">en</a>
  

  
    <a href="/notes/2025-06-30-zigs-strong-choice-en">en</a>
  

  
    <a href="/notes/2025-07-01-6502-pioneer-en">en</a>
  

  
    <a href="/notes/2025-07-01-api-list-beyond-weather-en">en</a>
  

  
    <a href="/notes/2025-07-01-apple-hardware-geniuses-en">en</a>
  

  
    <a href="/notes/2025-07-01-apple-silicon-leader-en">en</a>
  

  
    <a href="/notes/2025-07-01-art-of-electronics-en">en</a>
  

  
    <a href="/notes/2025-07-01-ben-eater-digital-expert-en">en</a>
  

  
    <a href="/notes/2025-07-01-bob-pease-intro-en">en</a>
  

  
    <a href="/notes/2025-07-01-electronic-legends-en">en</a>
  

  
    <a href="/notes/2025-07-01-electronic-tech-quiz-en">en</a>
  

  
    <a href="/notes/2025-07-01-electronics-tech-companies-en">en</a>
  

  
    <a href="/notes/2025-07-01-future-career-path-en">en</a>
  

  
    <a href="/notes/2025-07-01-gordon-bell-pioneer-en">en</a>
  

  
    <a href="/notes/2025-07-01-h100-power-uses-en">en</a>
  

  
    <a href="/notes/2025-07-01-install-openjdk21-en">en</a>
  

  
    <a href="/notes/2025-07-01-jdk24-features-en">en</a>
  

  
    <a href="/notes/2025-07-01-jim-williams-analog-en">en</a>
  

  
    <a href="/notes/2025-07-01-m2-battery-safe-en">en</a>
  

  
    <a href="/notes/2025-07-01-m2-charger-compatibility-en">en</a>
  

  
    <a href="/notes/2025-07-01-nvidia-gpu-evolution-en">en</a>
  

  
    <a href="/notes/2025-07-01-rust-replaces-c-en">en</a>
  

  
    <a href="/notes/2025-07-01-rust-tools-for-you-en">en</a>
  

  
    <a href="/notes/2025-07-01-rustsafetyevolution-en">en</a>
  

  
    <a href="/notes/2025-07-01-stage-changes-without-commit-en">en</a>
  

  
    <a href="/notes/2025-07-01-wandb-403-fix-en">en</a>
  

  
    <a href="/notes/2025-07-01-wozniak-electronics-expertise-en">en</a>
  

  
    <a href="/notes/2025-07-01-yin-wang-peace-en">en</a>
  

  
    <a href="/notes/2025-07-02-ai-coding-fantasy-en">en</a>
  

  
    <a href="/notes/2025-07-02-atari-history-en">en</a>
  

  
    <a href="/notes/2025-07-02-baihuaresortretreat-en">en</a>
  

  
    <a href="/notes/2025-07-02-bee-sting-severity-en">en</a>
  

  
    <a href="/notes/2025-07-02-bee-sting-treatment-en">en</a>
  

  
    <a href="/notes/2025-07-02-berkeley-history-overview-en">en</a>
  

  
    <a href="/notes/2025-07-02-better-soak-sleep-en">en</a>
  

  
    <a href="/notes/2025-07-02-choose-right-language-en">en</a>
  

  
    <a href="/notes/2025-07-02-commodore-64-founder-en">en</a>
  

  
    <a href="/notes/2025-07-02-commodore-legacy-en">en</a>
  

  
    <a href="/notes/2025-07-02-communication-medium-dynamics-en">en</a>
  

  
    <a href="/notes/2025-07-02-computing-pioneer-en">en</a>
  

  
    <a href="/notes/2025-07-02-counting-rows-in-resultset-en">en</a>
  

  
    <a href="/notes/2025-07-02-daniel-lemire-software-en">en</a>
  

  
    <a href="/notes/2025-07-02-engineering-vs-product-en">en</a>
  

  
    <a href="/notes/2025-07-02-javasql-package-en">en</a>
  

  
    <a href="/notes/2025-07-02-json-parsing-speed-comparison-en">en</a>
  

  
    <a href="/notes/2025-07-02-language-impacts-project-en">en</a>
  

  
    <a href="/notes/2025-07-02-llm-confirms-cfa-en">en</a>
  

  
    <a href="/notes/2025-07-02-mit-history-overview-en">en</a>
  

  
    <a href="/notes/2025-07-02-n8n-ai-automation-en">en</a>
  

  
    <a href="/notes/2025-07-02-o3-model-limits-en">en</a>
  

  
    <a href="/notes/2025-07-02-product-vs-service-en">en</a>
  

  
    <a href="/notes/2025-07-02-prolog-declarative-logic-en">en</a>
  

  
    <a href="/notes/2025-07-02-rust-ecosystem-contributors-en">en</a>
  

  
    <a href="/notes/2025-07-02-rust-edition2024-fix-en">en</a>
  

  
    <a href="/notes/2025-07-02-rust-not-built-on-c-en">en</a>
  

  
    <a href="/notes/2025-07-02-simple-path-to-wealth-en">en</a>
  

  
    <a href="/notes/2025-07-02-simple-path-to-wealth-summary-en">en</a>
  

  
    <a href="/notes/2025-07-02-stanford-university-history-en">en</a>
  

  
    <a href="/notes/2025-07-02-statement-prepared-callable-en">en</a>
  

  
    <a href="/notes/2025-07-02-terman-silicon-valley-founder-en">en</a>
  

  
    <a href="/notes/2025-07-02-top-rust-crates-en">en</a>
  

  
    <a href="/notes/2025-07-02-xnu-kperf-profiling-en">en</a>
  

  
    <a href="/notes/2025-07-02-yaml-and-file-errors-en">en</a>
  

  
    <a href="/notes/2025-07-03-ai-latency-metrics-en">en</a>
  

  
    <a href="/notes/2025-07-03-checkstyle-rules-explained-en">en</a>
  

  
    <a href="/notes/2025-07-03-jmc-jfr-tools-en">en</a>
  

  
    <a href="/notes/2025-07-03-palantir-spotless-config-en">en</a>
  

  
    <a href="/notes/2025-07-03-peterson-ideas-philosophy-en">en</a>
  

  
    <a href="/notes/2025-07-03-spotless-checkstyle-comparison-en">en</a>
  

  
    <a href="/notes/2025-07-03-uber-algorithm-pm-types-en">en</a>
  

  
    <a href="/notes/2025-07-04-ashbyhq-recruiting-en">en</a>
  

  
    <a href="/notes/2025-07-04-bee-sting-reaction-en">en</a>
  

  
    <a href="/notes/2025-07-04-consolidate-algorithm-solutions-en">en</a>
  

  
    <a href="/original/2025-07-04-enoki-mushroom-en">en</a>
  

  
    <a href="/notes/2025-07-04-fasting-benefits-types-en">en</a>
  

  
    <a href="/notes/2025-07-04-javapackagenamenorstartnumber-en">en</a>
  

  
    <a href="/notes/2025-07-04-jetbrains-annotations-guide-en">en</a>
  

  
    <a href="/notes/2025-07-04-junit5-test-setup-en">en</a>
  

  
    <a href="/notes/2025-07-04-maven-multi-module-setup-en">en</a>
  

  
    <a href="/notes/2025-07-04-maven-shade-plugin-en">en</a>
  

  
    <a href="/notes/2025-07-04-social-meta-tags-en">en</a>
  

  
    <a href="/notes/2025-07-04-sop-explained-en">en</a>
  

  
    <a href="/notes/2025-07-04-sutskevers-clear-impactful-style-en">en</a>
  

  
    <a href="/notes/2025-07-04-uva-maven-structure-en">en</a>
  

  
    <a href="/notes/2025-07-05-deprecated-unsafe-warning-en">en</a>
  

  
    <a href="/notes/2025-07-05-disciplined-expectations-psychology-en">en</a>
  

  
    <a href="/notes/2025-07-05-intellij-refactoring-templates-en">en</a>
  

  
    <a href="/notes/2025-07-05-intellij-structural-replace-en">en</a>
  

  
    <a href="/notes/2025-07-05-ios-delta-update-size-en">en</a>
  

  
    <a href="/notes/2025-07-05-ios-delta-updates-explained-en">en</a>
  

  
    <a href="/notes/2025-07-05-lark-vs-teams-en">en</a>
  

  
    <a href="/notes/2025-07-05-living-alone-benefits-en">en</a>
  

  
    <a href="/notes/2025-07-05-living-with-parents-disadvantages-en">en</a>
  

  
    <a href="/notes/2025-07-05-outlook-user-trends-en">en</a>
  

  
    <a href="/notes/2025-07-05-parallel-test-config-en">en</a>
  

  
    <a href="/notes/2025-07-05-pom-upgrade-summary-en">en</a>
  

  
    <a href="/notes/2025-07-05-ptsd-symptoms-treatment-en">en</a>
  

  
    <a href="/notes/2025-07-05-teams-user-growth-2024-en">en</a>
  

  
    <a href="/notes/2025-07-05-zoom-workplace-growth-en">en</a>
  

  
    <a href="/notes/2025-07-06-2025-llm-comparison-en">en</a>
  

  
    <a href="/notes/2025-07-06-36-hour-fast-benefits-en">en</a>
  

  
    <a href="/notes/2025-07-06-altman-fasting-routine-en">en</a>
  

  
    <a href="/notes/2025-07-06-bee-sting-creams-en">en</a>
  

  
    <a href="/notes/2025-07-06-book-ban-reasons-en">en</a>
  

  
    <a href="/notes/2025-07-06-cross-platform-tools-en">en</a>
  

  
    <a href="/notes/2025-07-06-cyst-removal-methods-en">en</a>
  

  
    <a href="/original/2025-07-06-dishwasher-repair-en">en</a>
  

  
    <a href="/notes/2025-07-06-electronic-quiz-en">en</a>
  

  
    <a href="/notes/2025-07-06-github-actions-ci-cd-en">en</a>
  

  
    <a href="/notes/2025-07-06-java-input-redirection-en">en</a>
  

  
    <a href="/notes/2025-07-06-jdk-11-to-24-benefits-en">en</a>
  

  
    <a href="/notes/2025-07-06-ketogenic-diet-benefits-en">en</a>
  

  
    <a href="/notes/2025-07-06-kvls-energy-conservation-en">en</a>
  

  
    <a href="/notes/2025-07-06-learning-mindset-contrast-en">en</a>
  

  
    <a href="/notes/2025-07-06-maven-exec-java-en">en</a>
  

  
    <a href="/notes/2025-07-06-maven-exec-vs-antrun-en">en</a>
  

  
    <a href="/notes/2025-07-06-meta-smart-glasses-overview-en">en</a>
  

  
    <a href="/notes/2025-07-06-meta-spatial-sdk-intro-en">en</a>
  

  
    <a href="/notes/2025-07-06-node-voltages-en">en</a>
  

  
    <a href="/notes/2025-07-06-pangu-lab-tragedy-en">en</a>
  

  
    <a href="/notes/2025-07-06-pysonar2-semantic-indexer-en">en</a>
  

  
    <a href="/notes/2025-07-06-quest-vs-android-en">en</a>
  

  
    <a href="/notes/2025-07-06-rednote-surge-subsides-en">en</a>
  

  
    <a href="/notes/2025-07-06-rust-maven-integration-en">en</a>
  

  
    <a href="/notes/2025-07-06-safari-vs-firefox-2025-en">en</a>
  

  
    <a href="/notes/2025-07-06-slow-cook-dishes-en">en</a>
  

  
    <a href="/notes/2025-07-06-sugar-health-risks-en">en</a>
  

  
    <a href="/notes/2025-07-06-word2vec-gensim-script-en">en</a>
  

  
    <a href="/notes/2025-07-07-deepseek-128k-models-en">en</a>
  

  
    <a href="/notes/2025-07-07-macos-database-tools-en">en</a>
  

  
    <a href="/notes/2025-07-07-mistral-models-context-en">en</a>
  

  
    <a href="/notes/2025-07-07-mistral-nemo-features-en">en</a>
  

  
    <a href="/original/2025-07-08-airfryer-en">en</a>
  

  
    <a href="/notes/2025-07-08-amr-sabry-research-en">en</a>
  

  
    <a href="/notes/2025-07-08-anger-brain-damage-en">en</a>
  

  
    <a href="/notes/2025-07-08-art-evolution-viral-en">en</a>
  

  
    <a href="/notes/2025-07-08-church-lambda-calculus-en">en</a>
  

  
    <a href="/notes/2025-07-08-constable-computer-science-legacy-en">en</a>
  

  
    <a href="/notes/2025-07-08-danvy-computer-scientist-en">en</a>
  

  
    <a href="/notes/2025-07-08-diode-for-rectification-en">en</a>
  

  
    <a href="/notes/2025-07-08-felleisen-computer-science-en">en</a>
  

  
    <a href="/notes/2025-07-08-frege-logic-foundations-en">en</a>
  

  
    <a href="/notes/2025-07-08-futamura-partial-evaluation-en">en</a>
  

  
    <a href="/notes/2025-07-08-futamura-projections-en">en</a>
  

  
    <a href="/notes/2025-07-08-greg-morrisett-leader-en">en</a>
  

  
    <a href="/notes/2025-07-08-harper-type-theory-contributions-en">en</a>
  

  
    <a href="/notes/2025-07-08-hoare-computing-legacy-en">en</a>
  

  
    <a href="/notes/2025-07-08-job-hopping-vs-long-term-en">en</a>
  

  
    <a href="/notes/2025-07-08-john-mccarthy-ai-pioneer-en">en</a>
  

  
    <a href="/notes/2025-07-08-john-reynolds-computer-scientist-en">en</a>
  

  
    <a href="/notes/2025-07-08-kleene-recursion-theory-en">en</a>
  

  
    <a href="/notes/2025-07-08-luca-cardellis-impact-en">en</a>
  

  
    <a href="/notes/2025-07-08-metamath-minimalist-proofs-en">en</a>
  

  
    <a href="/notes/2025-07-08-milner-computer-science-en">en</a>
  

  
    <a href="/notes/2025-07-08-neil-jones-computer-scientist-en">en</a>
  

  
    <a href="/notes/2025-07-08-older-founders-succeed-en">en</a>
  

  
    <a href="/notes/2025-07-08-peirce-math-pioneer-en">en</a>
  

  
    <a href="/notes/2025-07-08-pfenning-computer-scientist-en">en</a>
  

  
    <a href="/notes/2025-07-08-robert-harper-computer-scientist-en">en</a>
  

  
    <a href="/notes/2025-07-08-scheme-guru-en">en</a>
  

  
    <a href="/notes/2025-07-08-schonfinkel-combinatory-logic-en">en</a>
  

  
    <a href="/notes/2025-07-08-tobias-nipkow-logic-en">en</a>
  

  
    <a href="/notes/2025-07-08-wadler-theory-practice-en">en</a>
  

  
    <a href="/notes/2025-07-09-adapt-or-decline-en">en</a>
  

  
    <a href="/notes/2025-07-09-avaloq-api-errors-en">en</a>
  

  
    <a href="/notes/2025-07-09-avaloq-banking-suite-intro-en">en</a>
  

  
    <a href="/notes/2025-07-09-avaloq-oracle-partnership-en">en</a>
  

  
    <a href="/notes/2025-07-09-avaloq-trading-api-en">en</a>
  

  
    <a href="/notes/2025-07-09-configurable-font-methods-en">en</a>
  

  
    <a href="/notes/2025-07-09-count-files-in-directory-en">en</a>
  

  
    <a href="/notes/2025-07-09-dark-resume-guide-en">en</a>
  

  
    <a href="/notes/2025-07-09-enterprise-database-2025-en">en</a>
  

  
    <a href="/notes/2025-07-09-fix-tlmgr-user-mode-en">en</a>
  

  
    <a href="/notes/2025-07-09-font-missing-japanese-en">en</a>
  

  
    <a href="/notes/2025-07-09-greptimedb-competitors-en">en</a>
  

  
    <a href="/notes/2025-07-09-greptimedb-vs-tidb-en">en</a>
  

  
    <a href="/notes/2025-07-09-install-fontawesome5-ubuntu-en">en</a>
  

  
    <a href="/notes/2025-07-09-international-banks-in-china-en">en</a>
  

  
    <a href="/notes/2025-07-09-latex-apostrophe-fix-en">en</a>
  

  
    <a href="/notes/2025-07-09-latex-url-font-fix-en">en</a>
  

  
    <a href="/notes/2025-07-09-nomura-global-expansion-en">en</a>
  

  
    <a href="/notes/2025-07-09-nomura-history-overview-en">en</a>
  

  
    <a href="/notes/2025-07-09-nomura-shanghai-improving-en">en</a>
  

  
    <a href="/notes/2025-07-09-oracle-competitors-overview-en">en</a>
  

  
    <a href="/notes/2025-07-09-oracle-java-guide-en">en</a>
  

  
    <a href="/notes/2025-07-09-oracle-vs-db2-en">en</a>
  

  
    <a href="/notes/2025-07-09-oracle-vs-mysql-en">en</a>
  

  
    <a href="/notes/2025-07-09-paragraphstyle-redesign-en">en</a>
  

  
    <a href="/notes/2025-07-09-tdengine-vs-greptimedb-en">en</a>
  

  
    <a href="/notes/2025-07-09-tidb-adoption-challenge-en">en</a>
  

  
    <a href="/notes/2025-07-09-tidb-challenges-alternatives-en">en</a>
  

  
    <a href="/notes/2025-07-09-tidb-market-share-2025-en">en</a>
  

  
    <a href="/notes/2025-07-09-tidb-niche-challenges-en">en</a>
  

  
    <a href="/notes/2025-07-09-ubuntu-mouse-power-en">en</a>
  

  
    <a href="/original/2025-07-10-accumulate-logs-en">en</a>
  

  
    <a href="/notes/2025-07-10-ai-spending-growth-en">en</a>
  

  
    <a href="/notes/2025-07-10-automated-log-collection-en">en</a>
  

  
    <a href="/notes/2025-07-10-automation-tools-comparison-en">en</a>
  

  
    <a href="/notes/2025-07-10-constant-correction-destroys-en">en</a>
  

  
    <a href="/original/2025-07-10-digital-world-en">en</a>
  

  
    <a href="/original/2025-07-10-english-animation-en">en</a>
  

  
    <a href="/notes/2025-07-10-font-apostrophe-solutions-en">en</a>
  

  
    <a href="/original/2025-07-10-innovation-tips-en">en</a>
  

  
    <a href="/original/2025-07-10-specific-en">en</a>
  

  
    <a href="/notes/2025-07-11-guangzhou-xiamen-roadtrip-en">en</a>
  

  
    <a href="/notes/2025-07-11-hainan-ev-trip-en">en</a>
  

  
    <a href="/original/2025-07-11-hands-on-en">en</a>
  

  
    <a href="/notes/2025-07-11-jdk-upgrade-considerations-en">en</a>
  

  
    <a href="/notes/2025-07-12-alco-electronics-history-en">en</a>
  

  
    <a href="/notes/2025-07-12-car-maintenance-essentials-en">en</a>
  

  
    <a href="/notes/2025-07-12-car-safety-thunderstorms-en">en</a>
  

  
    <a href="/notes/2025-07-12-command-palette-shortcuts-en">en</a>
  

  
    <a href="/notes/2025-07-12-ev-power-setup-en">en</a>
  

  
    <a href="/notes/2025-07-12-hong-kong-salaries-20th-en">en</a>
  

  
    <a href="/notes/2025-07-12-hsbc-160-years-en">en</a>
  

  
    <a href="/notes/2025-07-12-iphone-hotspot-screen-off-en">en</a>
  

  
    <a href="/notes/2025-07-12-juicing-wampee-safely-en">en</a>
  

  
    <a href="/notes/2025-07-12-neta-v400-power-limit-en">en</a>
  

  
    <a href="/notes/2025-07-12-remove-custom-copilot-model-en">en</a>
  

  
    <a href="/original/2025-07-12-seek-validation-en">en</a>
  

  
    <a href="/notes/2025-07-13-ga-vs-cfwa-en">en</a>
  

  
    <a href="/original/2025-07-13-lessons-father-en">en</a>
  

  
    <a href="/original/2025-07-13-multi-region-en">en</a>
  

  
    <a href="/notes/2025-07-13-network-course-videos-en">en</a>
  

  
    <a href="/notes/2025-07-13-notable-angel-investors-en">en</a>
  

  
    <a href="/notes/2025-07-13-soften-essay-tone-en">en</a>
  

  
    <a href="/notes/2025-07-14-ai-finance-sql-en">en</a>
  

  
    <a href="/original/2025-07-14-ai-sql-en">en</a>
  

  
    <a href="/original/2025-07-14-avoid-mosquito-en">en</a>
  

  
    <a href="/original/2025-07-14-electronic-lock-en">en</a>
  

  
    <a href="/notes/2025-07-14-ios-hotspot-screen-impact-en">en</a>
  

  
    <a href="/notes/2025-07-14-multi-region-design-advice-en">en</a>
  

  
    <a href="/notes/2025-07-14-multi-region-dev-guide-en">en</a>
  

  
    <a href="/notes/2025-07-14-nl-to-sql-focus-areas-en">en</a>
  

  
    <a href="/notes/2025-07-14-optimize-translation-workflow-en">en</a>
  

  
    <a href="/original/2025-07-14-paragraph-translation-en">en</a>
  

  
    <a href="/notes/2025-07-14-real-time-collaboration-tech-en">en</a>
  

  
    <a href="/original/2025-07-14-unlimited-engineer-en">en</a>
  

  
    <a href="/original/2025-07-15-ai-companion-en">en</a>
  

  
    <a href="/original/2025-07-15-bee-sting-en">en</a>
  

  
    <a href="/original/2025-07-15-good-things-en">en</a>
  

  
    <a href="/original/2025-07-15-juice-en">en</a>
  

  
    <a href="/original/2025-07-15-restart-vscode-en">en</a>
  

  
    <a href="/original/2025-07-15-safe-en">en</a>
  

  
    <a href="/original/2025-07-15-sleep-en">en</a>
  

  
    <a href="/original/2025-07-15-sweating-en">en</a>
  

  
    <a href="/original/2025-07-16-big-companies-en">en</a>
  

  
    <a href="/original/2025-07-16-kqv-transformers-en">en</a>
  

  
    <a href="/original/2025-07-17-bad-engineer-en">en</a>
  

  
    <a href="/original/2025-07-17-gd-travel-en">en</a>
  

  
    <a href="/notes/2025-07-17-heic-conversion-fix-en">en</a>
  

  
    <a href="/original/2025-07-18-car-accidents-en">en</a>
  

  
    <a href="/original/2025-07-18-japanese-essay-ja">ja</a>
  

  
    <a href="/original/2025-07-18-learn-easier-en">en</a>
  

  
    <a href="/original/2025-07-18-others-thoughts-en">en</a>
  

  
    <a href="/notes/2025-07-18-understanding-others-en">en</a>
  

  
    <a href="/original/2025-07-18-what-essays-en">en</a>
  

  
    <a href="/original/2025-07-19-scale-team-en">en</a>
  

  
    <a href="/notes/2025-07-19-teams-message-forwarding-en">en</a>
  

  
    <a href="/notes/2025-07-19-teams-updates-2023-2025-en">en</a>
  

  
    <a href="/notes/2025-07-20-denmark-banking-sector-en">en</a>
  

  
    <a href="/notes/2025-07-20-nykredit-danish-financial-en">en</a>
  

  
    <a href="/notes/2025-07-22-ai-code-editors-en">en</a>
  

  
    <a href="/notes/2025-07-22-browser-language-detection-en">en</a>
  

  
    <a href="/notes/2025-07-22-code-selection-shortcuts-en">en</a>
  

  
    <a href="/original/2025-07-22-ghibli-images-en">en</a>
  

  
    <a href="/notes/2025-07-22-life-as-journey-en">en</a>
  

  
    <a href="/original/2025-07-22-recommend-for-engineers-en">en</a>
  

  
    <a href="/notes/2025-07-22-server-side-execution-en">en</a>
  

  
    <a href="/notes/2025-07-22-tool-use-in-ai-en">en</a>
  

  
    <a href="/notes/2025-07-22-tool-use-ioc-en">en</a>
  

  
    <a href="/original/2025-07-22-whatsapp-web-en">en</a>
  

  
    <a href="/notes/2025-07-23-ai-first-architecture-evaluation-en">en</a>
  

  
    <a href="/original/2025-07-23-invite-global-en">en</a>
  

  
    <a href="/original/2025-07-23-why-write-en">en</a>
  

  
    <a href="/notes/2025-07-24-ai-vs-code-flexibility-en">en</a>
  

  
    <a href="/notes/2025-07-24-building-genuine-relationships-en">en</a>
  

  
    <a href="/notes/2025-07-24-code-splitting-benefits-en">en</a>
  

  
    <a href="/notes/2025-07-24-how-call-this-rs-en">en</a>
  

  
    <a href="/notes/2025-07-24-iphone-vs-genie-speakers-en">en</a>
  

  
    <a href="/notes/2025-07-24-japanese-learning-hours-en">en</a>
  

  
    <a href="/notes/2025-07-24-linkedin-reactions-differ-en">en</a>
  

  
    <a href="/notes/2025-07-24-matrix-vs-array-en">en</a>
  

  
    <a href="/notes/2025-07-24-region-specific-bean-loading-en">en</a>
  

  
    <a href="/notes/2025-07-24-reuse-tmux-sessions-en">en</a>
  

  
    <a href="/notes/2025-07-24-smart-switch-benefits-en">en</a>
  

  
    <a href="/notes/2025-07-24-tamil-phrase-explained-en">en</a>
  

  
    <a href="/notes/2025-07-24-tamil-phrases-meanings-en">en</a>
  

  
    <a href="/notes/2025-07-26-ai-gpu-clouds-2025-en">en</a>
  

  
    <a href="/notes/2025-07-26-ai-ml-java-spring-en">en</a>
  

  
    <a href="/notes/2025-07-26-claude-cli-update-en">en</a>
  

  
    <a href="/notes/2025-07-26-claude-code-login-en">en</a>
  

  
    <a href="/notes/2025-07-26-gcp-multi-gpu-training-en">en</a>
  

  
    <a href="/notes/2025-07-26-gpu-cloud-ai-2025-en">en</a>
  

  
    <a href="/notes/2025-07-26-gymnasium-replacement-en">en</a>
  

  
    <a href="/notes/2025-07-26-hong-kong-banks-en">en</a>
  

  
    <a href="/original/2025-07-26-hsbc-card-retained-en">en</a>
  

  
    <a href="/notes/2025-07-26-init-py-explanation-en">en</a>
  

  
    <a href="/notes/2025-07-26-macos-error-fix-en">en</a>
  

  
    <a href="/notes/2025-07-26-nvidia-a800-specs-en">en</a>
  

  
    <a href="/notes/2025-07-26-top-3-gpu-clouds-en">en</a>
  

  
    <a href="/notes/2025-07-26-use-claude-openrouter-en">en</a>
  

  
    <a href="/notes/2025-07-26-using-claude-programming-en">en</a>
  

  
    <a href="/notes/2025-07-26-xvfb-explained-en">en</a>
  

  
    <a href="/notes/2025-07-27-01.ai-yi-fall-en">en</a>
  

  
    <a href="/notes/2025-07-27-ai-agent-tool-evaluation-en">en</a>
  

  
    <a href="/original/2025-07-27-ai-coding-tools-en">en</a>
  

  
    <a href="/original/2025-07-27-basic-electronics-en">en</a>
  

  
    <a href="/notes/2025-07-27-change-open-webui-port-en">en</a>
  

  
    <a href="/notes/2025-07-27-distributed-task-frameworks-2025-en">en</a>
  

  
    <a href="/original/2025-07-27-engineering-optimized-ai-en">en</a>
  

  
    <a href="/notes/2025-07-27-evaluating-space-ideas-en">en</a>
  

  
    <a href="/notes/2025-07-27-heterogeneous-distributed-training-en">en</a>
  

  
    <a href="/notes/2025-07-27-jekyll-ml-pytorch-en">en</a>
  

  
    <a href="/notes/2025-07-27-mcp-500-error-en">en</a>
  

  
    <a href="/notes/2025-07-27-network-services-macos-linux-en">en</a>
  

  
    <a href="/notes/2025-07-27-nginx-homebrew-config-en">en</a>
  

  
    <a href="/notes/2025-07-27-ollama-adoption-challenges-en">en</a>
  

  
    <a href="/notes/2025-07-27-open-graph-meta-en">en</a>
  

  
    <a href="/notes/2025-07-27-pytest-for-api-en">en</a>
  

  
    <a href="/notes/2025-07-27-rust-analyzer-fix-en">en</a>
  

  
    <a href="/notes/2025-07-27-rust-cargo-setup-en">en</a>
  

  
    <a href="/original/2025-07-27-sea-space-en">en</a>
  

  
    <a href="/notes/2025-07-27-tech-points-clarity-en">en</a>
  

  
    <a href="/notes/2025-07-27-tool-explanations-en">en</a>
  

  
    <a href="/notes/2025-07-27-top-go-projects-en">en</a>
  

  
    <a href="/notes/2025-07-27-upgrade-ollama-homebrew-en">en</a>
  

  
    <a href="/notes/2025-07-27-wechat-moments-2025-en">en</a>
  

  
    <a href="/notes/2025-07-27-west-china-perceptions-en">en</a>
  

  
    <a href="/original/2025-07-28-change-habit-en">en</a>
  

  
    <a href="/notes/2025-07-28-iphone-vpn-hotspot-en">en</a>
  

  
    <a href="/original/2025-07-28-work-car-en">en</a>
  

  
    <a href="/notes/2025-07-29-connect-github-ssh-en">en</a>
  

  
    <a href="/notes/2025-07-29-fix-pyperclip-install-en">en</a>
  

  
    <a href="/notes/2025-07-29-redmi-buds-6-review-en">en</a>
  

  
    <a href="/notes/2025-07-29-suspend-command-not-found-en">en</a>
  

  
    <a href="/notes/2025-07-30-battery-charge-fix-en">en</a>
  

  
    <a href="/original/2025-07-30-beyond-expectations-en">en</a>
  

  
    <a href="/notes/2025-07-30-charging-laptop-in-neta-ev-en">en</a>
  

  
    <a href="/notes/2025-07-31-chinese-returnees-startups-en">en</a>
  

  
    <a href="/notes/2025-07-31-copilot-gpt4.1-grok-en">en</a>
  

  
    <a href="/notes/2025-07-31-fix-private-function-en">en</a>
  

  
    <a href="/notes/2025-07-31-httpx-socks-error-en">en</a>
  

  
    <a href="/notes/2025-07-31-kerala-travel-guide-en">en</a>
  

  
    <a href="/notes/2025-07-31-makefile-cargo-run-en">en</a>
  

  
    <a href="/notes/2025-07-31-run-rust-program-en">en</a>
  

  
    <a href="/notes/2025-07-31-rust-build-error-en">en</a>
  

  
    <a href="/notes/2025-07-31-rust-edition2024-unstable-en">en</a>
  

  
    <a href="/notes/2025-07-31-rust-features-example-en">en</a>
  

  
    <a href="/notes/2025-07-31-rust-mut-vs-&mut-en">en</a>
  

  
    <a href="/notes/2025-08-01-gh-copilot-cli-en">en</a>
  

  
    <a href="/notes/2025-08-01-install-copilot-cli-en">en</a>
  

  
    <a href="/notes/2025-08-01-python-logging-chatbot-en">en</a>
  

  
    <a href="/notes/2025-08-02-2013-github-registration-en">en</a>
  

  
    <a href="/notes/2025-08-02-ai-image-model-rankings-2025-en">en</a>
  

  
    <a href="/notes/2025-08-02-amp-sourcegraph-tool-en">en</a>
  

  
    <a href="/notes/2025-08-02-code-chat-release-en">en</a>
  

  
    <a href="/notes/2025-08-02-early-github-users-en">en</a>
  

  
    <a href="/notes/2025-08-02-fix-openssl-build-failure-en">en</a>
  

  
    <a href="/notes/2025-08-02-fix-shiftkey-repo-error-en">en</a>
  

  
    <a href="/notes/2025-08-02-fn-f5-mac-vscode-en">en</a>
  

  
    <a href="/notes/2025-08-02-gcloud-update-en">en</a>
  

  
    <a href="/notes/2025-08-02-git-schedule-trigger-en">en</a>
  

  
    <a href="/notes/2025-08-02-github-actions-growth-en">en</a>
  

  
    <a href="/notes/2025-08-02-github-registration-early-en">en</a>
  

  
    <a href="/notes/2025-08-02-google-imagen-4-vertex-ai-en">en</a>
  

  
    <a href="/notes/2025-08-02-great-individuals-matter-en">en</a>
  

  
    <a href="/notes/2025-08-02-java-projects-beyond-en">en</a>
  

  
    <a href="/notes/2025-08-02-java-projects-showcase-en">en</a>
  

  
    <a href="/notes/2025-08-02-launch-vscode-extension-en">en</a>
  

  
    <a href="/notes/2025-08-02-precompile-index-pages-en">en</a>
  

  
    <a href="/notes/2025-08-02-python-java-bridge-en">en</a>
  

  
    <a href="/notes/2025-08-02-seedream-3.0-review-en">en</a>
  

  
    <a href="/notes/2025-08-02-top-30-open-source-2024-2025-en">en</a>
  

  
    <a href="/notes/2025-08-02-top-c-projects-en">en</a>
  

  
    <a href="/notes/2025-08-02-top-cpp-projects-en">en</a>
  

  
    <a href="/notes/2025-08-02-update-cargo-toml-en">en</a>
  

  
    <a href="/notes/2025-08-03-ai-vs-websites-en">en</a>
  

  
    <a href="/notes/2025-08-03-baidus-ai-challenges-en">en</a>
  

  
    <a href="/notes/2025-08-03-black-guide-en">en</a>
  

  
    <a href="/notes/2025-08-03-censorship-adaptation-lessons-en">en</a>
  

  
    <a href="/notes/2025-08-03-charging-safety-rain-en">en</a>
  

  
    <a href="/notes/2025-08-03-deepseek-mistral-en">en</a>
  

  
    <a href="/notes/2025-08-03-easygoing-mindset-en">en</a>
  

  
    <a href="/original/2025-08-03-general-agents-en">en</a>
  

  
    <a href="/notes/2025-08-03-geoffrey-hintons-2013-en">en</a>
  

  
    <a href="/notes/2025-08-03-getunstuckfix-en">en</a>
  

  
    <a href="/notes/2025-08-03-julia-intro-en">en</a>
  

  
    <a href="/notes/2025-08-03-late-languages-adoption-en">en</a>
  

  
    <a href="/notes/2025-08-03-llm-text-generation-en">en</a>
  

  
    <a href="/notes/2025-08-03-manus-vs-customized-en">en</a>
  

  
    <a href="/notes/2025-08-03-power-vs-innovation-en">en</a>
  

  
    <a href="/notes/2025-08-03-rusts-growth-trajectory-en">en</a>
  

  
    <a href="/notes/2025-08-03-tch-rs-introduction-en">en</a>
  

  
    <a href="/notes/2025-08-03-trans2025-en">en</a>
  

  
    <a href="/notes/2025-08-04-google-gen-ai-image-config-en">en</a>
  

  
    <a href="/notes/2025-08-04-image191x1200-en">en</a>
  

  
    <a href="/notes/2025-08-04-imagen4-safety-filter-en">en</a>
  

  
    <a href="/notes/2025-08-04-imagen4-vertexai-en">en</a>
  

  
    <a href="/notes/2025-08-04-interrupt-cloud-infer-en">en</a>
  

  
    <a href="/notes/2025-08-04-online-offline-selves-en">en</a>
  

  
    <a href="/notes/2025-08-04-otherimgmodels-en">en</a>
  

  
    <a href="/notes/2025-08-04-remove-width-height-en">en</a>
  

  
    <a href="/notes/2025-08-04-top-text-image-ai-models-en">en</a>
  

  
    <a href="/notes/2025-08-04-transform-image-ai-en">en</a>
  

  
    <a href="/notes/2025-08-05-greptime-db-unified-en">en</a>
  

  
    <a href="/notes/2025-08-05-open-source-ai-coding-agents-en">en</a>
  

  
    <a href="/notes/2025-08-05-openrouter-langchain-en">en</a>
  

  
    <a href="/notes/2025-08-05-python-langchain-patterns-en">en</a>
  

  
    <a href="/notes/2025-08-05-router-vs-direct-api-cost-en">en</a>
  

  
    <a href="/notes/2025-08-05-vs-code-ignore-en">en</a>
  

  
    <a href="/notes/2025-08-06-bitter-lesson-drive-en"></a>
  

  
    <a href="/notes/2025-08-06-cuda-libraries-packages-en">en</a>
  

  
    <a href="/notes/2025-08-06-determinant-expansion-en">en</a>
  

  
    <a href="/notes/2025-08-06-fix-pil-imaging-en">en</a>
  

  
    <a href="/notes/2025-08-06-install-py313-en">en</a>
  

  
    <a href="/notes/2025-08-06-pythonpackagesinstalled-en">en</a>
  

  
    <a href="/notes/2025-08-06-vllm-serving-llm-en">en</a>
  

  
    <a href="/notes/2025-08-07-sync-spring-uat-en">en</a>
  

  
    <a href="/notes/2025-08-09-git-verb-en">en</a>
  

  
    <a href="/notes/2025-08-09-isac-robotics-en">en</a>
  

  
    <a href="/notes/2025-08-09-jfif-jpg-hdr-en">en</a>
  

  
    <a href="/notes/2025-08-12-%22java-agent-jar%22-en">en</a>
  

  
    <a href="/notes/2025-08-12-git-diff-tree-guide-en">en</a>
  

  

  
    <a href="/notes/2025-08-15-consumers-use-not-work-en">en</a>
  

  
    <a href="/notes/2025-08-15-debit-vs-credit-historic-split-en">en</a>
  

  
    <a href="/notes/2025-08-15-hsbc-hk-unionpay-debit-en">en</a>
  

  
    <a href="/notes/2025-08-15-hsbc-one-digital-en">en</a>
  

  
    <a href="/notes/2025-08-15-model-relationships-en">en</a>
  

  
    <a href="/notes/2025-08-15-same-pin-hkunionpay-en">en</a>
  

  
    <a href="/404.html"></a>
  

  
    <a href="/feeds/feed.xml"></a>
  

  
    <a href="/"></a>
  

  
    <a href="/robots.txt"></a>
  

  
    <a href="/assets/css/style.css"></a>
  

  
    <a href="/ml/"></a>
  

  
    <a href="/sitemap.xml"></a>
  

  
    <a href="/general-agents-zh">zh</a>
  

  
    <a href="/general-agents-ja">ja</a>
  

  
    <a href="/general-agents-hi">hi</a>
  

  
    <a href="/general-agents-hant">hant</a>
  

  
    <a href="/general-agents-fr">fr</a>
  

  
    <a href="/general-agents-es">es</a>
  

  
    <a href="/general-agents-en">en</a>
  

  
    <a href="/general-agents-de">de</a>
  

  
    <a href="/general-agents-ar">ar</a>
  

  
    <a href="/beyond-expectations-zh">zh</a>
  

  
    <a href="/beyond-expectations-ja">ja</a>
  

  
    <a href="/beyond-expectations-hi">hi</a>
  

  
    <a href="/beyond-expectations-hant">hant</a>
  

  
    <a href="/beyond-expectations-fr">fr</a>
  

  
    <a href="/beyond-expectations-es">es</a>
  

  
    <a href="/beyond-expectations-en">en</a>
  

  
    <a href="/beyond-expectations-de">de</a>
  

  
    <a href="/beyond-expectations-ar">ar</a>
  

  
    <a href="/work-car-zh">zh</a>
  

  
    <a href="/change-habit-zh">zh</a>
  

  
    <a href="/work-car-ja">ja</a>
  

  
    <a href="/change-habit-ja">ja</a>
  

  
    <a href="/work-car-hi">hi</a>
  

  
    <a href="/change-habit-hi">hi</a>
  

  
    <a href="/work-car-hant">hant</a>
  

  
    <a href="/change-habit-hant">hant</a>
  

  
    <a href="/work-car-fr">fr</a>
  

  
    <a href="/change-habit-fr">fr</a>
  

  
    <a href="/work-car-es">es</a>
  

  
    <a href="/change-habit-es">es</a>
  

  
    <a href="/work-car-en">en</a>
  

  
    <a href="/change-habit-en">en</a>
  

  
    <a href="/work-car-de">de</a>
  

  
    <a href="/change-habit-de">de</a>
  

  
    <a href="/work-car-ar">ar</a>
  

  
    <a href="/change-habit-ar">ar</a>
  

  
    <a href="/sea-space-zh">zh</a>
  

  
    <a href="/engineering-optimized-ai-zh">zh</a>
  

  
    <a href="/basic-electronics-zh">zh</a>
  

  
    <a href="/ai-coding-tools-zh">zh</a>
  

  
    <a href="/sea-space-ja">ja</a>
  

  
    <a href="/engineering-optimized-ai-ja">ja</a>
  

  
    <a href="/basic-electronics-ja">ja</a>
  

  
    <a href="/ai-coding-tools-ja">ja</a>
  

  
    <a href="/sea-space-hi">hi</a>
  

  
    <a href="/engineering-optimized-ai-hi">hi</a>
  

  
    <a href="/basic-electronics-hi">hi</a>
  

  
    <a href="/ai-coding-tools-hi">hi</a>
  

  
    <a href="/sea-space-hant">hant</a>
  

  
    <a href="/engineering-optimized-ai-hant">hant</a>
  

  
    <a href="/basic-electronics-hant">hant</a>
  

  
    <a href="/ai-coding-tools-hant">hant</a>
  

  
    <a href="/sea-space-fr">fr</a>
  

  
    <a href="/engineering-optimized-ai-fr">fr</a>
  

  
    <a href="/basic-electronics-fr">fr</a>
  

  
    <a href="/ai-coding-tools-fr">fr</a>
  

  
    <a href="/sea-space-es">es</a>
  

  
    <a href="/engineering-optimized-ai-es">es</a>
  

  
    <a href="/basic-electronics-es">es</a>
  

  
    <a href="/ai-coding-tools-es">es</a>
  

  
    <a href="/sea-space-en">en</a>
  

  
    <a href="/engineering-optimized-ai-en">en</a>
  

  
    <a href="/basic-electronics-en">en</a>
  

  
    <a href="/ai-coding-tools-en">en</a>
  

  
    <a href="/sea-space-de">de</a>
  

  
    <a href="/engineering-optimized-ai-de">de</a>
  

  
    <a href="/basic-electronics-de">de</a>
  

  
    <a href="/ai-coding-tools-de">de</a>
  

  
    <a href="/sea-space-ar">ar</a>
  

  
    <a href="/engineering-optimized-ai-ar">ar</a>
  

  
    <a href="/basic-electronics-ar">ar</a>
  

  
    <a href="/ai-coding-tools-ar">ar</a>
  

  
    <a href="/hsbc-card-retained-zh">zh</a>
  

  
    <a href="/hsbc-card-retained-ja">ja</a>
  

  
    <a href="/hsbc-card-retained-hi">hi</a>
  

  
    <a href="/hsbc-card-retained-hant">hant</a>
  

  
    <a href="/hsbc-card-retained-fr">fr</a>
  

  
    <a href="/hsbc-card-retained-es">es</a>
  

  
    <a href="/hsbc-card-retained-en">en</a>
  

  
    <a href="/hsbc-card-retained-de">de</a>
  

  
    <a href="/hsbc-card-retained-ar">ar</a>
  

  
    <a href="/why-write-zh">zh</a>
  

  
    <a href="/invite-global-zh">zh</a>
  

  
    <a href="/why-write-ja">ja</a>
  

  
    <a href="/invite-global-ja">ja</a>
  

  
    <a href="/why-write-hi">hi</a>
  

  
    <a href="/invite-global-hi">hi</a>
  

  
    <a href="/why-write-hant">hant</a>
  

  
    <a href="/invite-global-hant">hant</a>
  

  
    <a href="/why-write-fr">fr</a>
  

  
    <a href="/invite-global-fr">fr</a>
  

  
    <a href="/why-write-es">es</a>
  

  
    <a href="/invite-global-es">es</a>
  

  
    <a href="/why-write-en">en</a>
  

  
    <a href="/invite-global-en">en</a>
  

  
    <a href="/why-write-de">de</a>
  

  
    <a href="/invite-global-de">de</a>
  

  
    <a href="/why-write-ar">ar</a>
  

  
    <a href="/invite-global-ar">ar</a>
  

  
    <a href="/whatsapp-web-zh">zh</a>
  

  
    <a href="/recommend-for-engineers-zh">zh</a>
  

  
    <a href="/ghibli-images-zh">zh</a>
  

  
    <a href="/whatsapp-web-ja">ja</a>
  

  
    <a href="/recommend-for-engineers-ja">ja</a>
  

  
    <a href="/ghibli-images-ja">ja</a>
  

  
    <a href="/whatsapp-web-hi">hi</a>
  

  
    <a href="/recommend-for-engineers-hi">hi</a>
  

  
    <a href="/ghibli-images-hi">hi</a>
  

  
    <a href="/whatsapp-web-hant">hant</a>
  

  
    <a href="/recommend-for-engineers-hant">hant</a>
  

  
    <a href="/ghibli-images-hant">hant</a>
  

  
    <a href="/whatsapp-web-fr">fr</a>
  

  
    <a href="/recommend-for-engineers-fr">fr</a>
  

  
    <a href="/ghibli-images-fr">fr</a>
  

  
    <a href="/whatsapp-web-es">es</a>
  

  
    <a href="/recommend-for-engineers-es">es</a>
  

  
    <a href="/ghibli-images-es">es</a>
  

  
    <a href="/whatsapp-web-en">en</a>
  

  
    <a href="/recommend-for-engineers-en">en</a>
  

  
    <a href="/ghibli-images-en">en</a>
  

  
    <a href="/whatsapp-web-de">de</a>
  

  
    <a href="/recommend-for-engineers-de">de</a>
  

  
    <a href="/ghibli-images-de">de</a>
  

  
    <a href="/whatsapp-web-ar">ar</a>
  

  
    <a href="/recommend-for-engineers-ar">ar</a>
  

  
    <a href="/ghibli-images-ar">ar</a>
  

  
    <a href="/scale-team-zh">zh</a>
  

  
    <a href="/scale-team-ja">ja</a>
  

  
    <a href="/scale-team-hi">hi</a>
  

  
    <a href="/scale-team-hant">hant</a>
  

  
    <a href="/scale-team-fr">fr</a>
  

  
    <a href="/scale-team-es">es</a>
  

  
    <a href="/scale-team-en">en</a>
  

  
    <a href="/scale-team-de">de</a>
  

  
    <a href="/scale-team-ar">ar</a>
  

  
    <a href="/what-essays-zh">zh</a>
  

  
    <a href="/others-thoughts-zh">zh</a>
  

  
    <a href="/learn-easier-zh">zh</a>
  

  
    <a href="/japanese-essay-zh">zh</a>
  

  
    <a href="/car-accidents-zh"></a>
  

  
    <a href="/what-essays-ja">ja</a>
  

  
    <a href="/others-thoughts-ja">ja</a>
  

  
    <a href="/learn-easier-ja">ja</a>
  

  
    <a href="/japanese-essay-ja">ja</a>
  

  
    <a href="/car-accidents-ja">ja</a>
  

  
    <a href="/what-essays-hi">hi</a>
  

  
    <a href="/others-thoughts-hi">hi</a>
  

  
    <a href="/learn-easier-hi">hi</a>
  

  
    <a href="/japanese-essay-hi">hi</a>
  

  
    <a href="/car-accidents-hi"></a>
  

  
    <a href="/what-essays-hant">hant</a>
  

  
    <a href="/others-thoughts-hant">hant</a>
  

  
    <a href="/learn-easier-hant">hant</a>
  

  
    <a href="/japanese-essay-hant">hant</a>
  

  
    <a href="/car-accidents-hant"></a>
  

  
    <a href="/what-essays-fr">fr</a>
  

  
    <a href="/others-thoughts-fr">fr</a>
  

  
    <a href="/learn-easier-fr">fr</a>
  

  
    <a href="/japanese-essay-fr">fr</a>
  

  
    <a href="/car-accidents-fr"></a>
  

  
    <a href="/what-essays-es">es</a>
  

  
    <a href="/others-thoughts-es">es</a>
  

  
    <a href="/learn-easier-es">es</a>
  

  
    <a href="/japanese-essay-es">es</a>
  

  
    <a href="/car-accidents-es"></a>
  

  
    <a href="/what-essays-en">en</a>
  

  
    <a href="/others-thoughts-en">en</a>
  

  
    <a href="/learn-easier-en">en</a>
  

  
    <a href="/japanese-essay-en">en</a>
  

  
    <a href="/car-accidents-en">en</a>
  

  
    <a href="/what-essays-de">de</a>
  

  
    <a href="/others-thoughts-de">de</a>
  

  
    <a href="/learn-easier-de">de</a>
  

  
    <a href="/japanese-essay-de">de</a>
  

  
    <a href="/car-accidents-de"></a>
  

  
    <a href="/what-essays-ar">ar</a>
  

  
    <a href="/others-thoughts-ar">ar</a>
  

  
    <a href="/learn-easier-ar">ar</a>
  

  
    <a href="/japanese-essay-ar">ar</a>
  

  
    <a href="/car-accidents-ar">ar</a>
  

  
    <a href="/gd-travel-zh">zh</a>
  

  
    <a href="/bad-engineer-zh">zh</a>
  

  
    <a href="/gd-travel-ja">ja</a>
  

  
    <a href="/bad-engineer-ja">ja</a>
  

  
    <a href="/gd-travel-hi">hi</a>
  

  
    <a href="/bad-engineer-hi">hi</a>
  

  
    <a href="/gd-travel-hant">hant</a>
  

  
    <a href="/bad-engineer-hant">hant</a>
  

  
    <a href="/gd-travel-fr">fr</a>
  

  
    <a href="/bad-engineer-fr">fr</a>
  

  
    <a href="/gd-travel-es">es</a>
  

  
    <a href="/bad-engineer-es">es</a>
  

  
    <a href="/gd-travel-en">en</a>
  

  
    <a href="/bad-engineer-en">en</a>
  

  
    <a href="/gd-travel-de">de</a>
  

  
    <a href="/bad-engineer-de">de</a>
  

  
    <a href="/gd-travel-ar">ar</a>
  

  
    <a href="/bad-engineer-ar">ar</a>
  

  
    <a href="/kqv-transformers-zh">zh</a>
  

  
    <a href="/big-companies-zh"></a>
  

  
    <a href="/kqv-transformers-ja">ja</a>
  

  
    <a href="/big-companies-ja"></a>
  

  
    <a href="/kqv-transformers-hi">hi</a>
  

  
    <a href="/big-companies-hi"></a>
  

  
    <a href="/kqv-transformers-hant">hant</a>
  

  
    <a href="/big-companies-hant">hant</a>
  

  
    <a href="/kqv-transformers-fr">fr</a>
  

  
    <a href="/big-companies-fr">fr</a>
  

  
    <a href="/kqv-transformers-es">es</a>
  

  
    <a href="/big-companies-es">es</a>
  

  
    <a href="/kqv-transformers-en">en</a>
  

  
    <a href="/big-companies-en">en</a>
  

  
    <a href="/kqv-transformers-de">de</a>
  

  
    <a href="/big-companies-de">de</a>
  

  
    <a href="/kqv-transformers-ar">ar</a>
  

  
    <a href="/big-companies-ar"></a>
  

  
    <a href="/sweating-zh">zh</a>
  

  
    <a href="/sleep-zh">zh</a>
  

  
    <a href="/safe-zh">zh</a>
  

  
    <a href="/restart-vscode-zh">zh</a>
  

  
    <a href="/juice-zh">zh</a>
  

  
    <a href="/good-things-zh">zh</a>
  

  
    <a href="/bee-sting-zh">zh</a>
  

  
    <a href="/ai-companion-zh">zh</a>
  

  
    <a href="/sweating-ja">ja</a>
  

  
    <a href="/sleep-ja">ja</a>
  

  
    <a href="/safe-ja">ja</a>
  

  
    <a href="/restart-vscode-ja">ja</a>
  

  
    <a href="/juice-ja">ja</a>
  

  
    <a href="/good-things-ja">ja</a>
  

  
    <a href="/bee-sting-ja">ja</a>
  

  
    <a href="/ai-companion-ja">ja</a>
  

  
    <a href="/sweating-hi">hi</a>
  

  
    <a href="/sleep-hi">hi</a>
  

  
    <a href="/safe-hi">hi</a>
  

  
    <a href="/restart-vscode-hi">hi</a>
  

  
    <a href="/juice-hi">hi</a>
  

  
    <a href="/good-things-hi">hi</a>
  

  
    <a href="/bee-sting-hi">hi</a>
  

  
    <a href="/ai-companion-hi">hi</a>
  

  
    <a href="/sweating-hant">hant</a>
  

  
    <a href="/sleep-hant">hant</a>
  

  
    <a href="/safe-hant">hant</a>
  

  
    <a href="/restart-vscode-hant">hant</a>
  

  
    <a href="/juice-hant">hant</a>
  

  
    <a href="/good-things-hant">hant</a>
  

  
    <a href="/bee-sting-hant">hant</a>
  

  
    <a href="/ai-companion-hant">hant</a>
  

  
    <a href="/sweating-fr">fr</a>
  

  
    <a href="/sleep-fr">fr</a>
  

  
    <a href="/safe-fr">fr</a>
  

  
    <a href="/restart-vscode-fr">fr</a>
  

  
    <a href="/juice-fr">fr</a>
  

  
    <a href="/good-things-fr">fr</a>
  

  
    <a href="/bee-sting-fr">fr</a>
  

  
    <a href="/ai-companion-fr">fr</a>
  

  
    <a href="/sweating-es">es</a>
  

  
    <a href="/sleep-es">es</a>
  

  
    <a href="/safe-es">es</a>
  

  
    <a href="/restart-vscode-es">es</a>
  

  
    <a href="/juice-es">es</a>
  

  
    <a href="/good-things-es">es</a>
  

  
    <a href="/bee-sting-es">es</a>
  

  
    <a href="/ai-companion-es">es</a>
  

  
    <a href="/sweating-en">en</a>
  

  
    <a href="/sleep-en">en</a>
  

  
    <a href="/safe-en">en</a>
  

  
    <a href="/restart-vscode-en">en</a>
  

  
    <a href="/juice-en">en</a>
  

  
    <a href="/good-things-en">en</a>
  

  
    <a href="/bee-sting-en">en</a>
  

  
    <a href="/ai-companion-en">en</a>
  

  
    <a href="/sweating-de">de</a>
  

  
    <a href="/sleep-de">de</a>
  

  
    <a href="/safe-de">de</a>
  

  
    <a href="/restart-vscode-de">de</a>
  

  
    <a href="/juice-de">de</a>
  

  
    <a href="/good-things-de">de</a>
  

  
    <a href="/bee-sting-de">de</a>
  

  
    <a href="/ai-companion-de">de</a>
  

  
    <a href="/sweating-ar">ar</a>
  

  
    <a href="/sleep-ar">ar</a>
  

  
    <a href="/safe-ar">ar</a>
  

  
    <a href="/restart-vscode-ar">ar</a>
  

  
    <a href="/juice-ar">ar</a>
  

  
    <a href="/good-things-ar">ar</a>
  

  
    <a href="/bee-sting-ar">ar</a>
  

  
    <a href="/ai-companion-ar">ar</a>
  

  
    <a href="/unlimited-engineer-zh">zh</a>
  

  
    <a href="/paragraph-translation-zh">zh</a>
  

  
    <a href="/electronic-lock-zh">zh</a>
  

  
    <a href="/avoid-mosquito-zh">zh</a>
  

  
    <a href="/ai-sql-zh">zh</a>
  

  
    <a href="/unlimited-engineer-ja">ja</a>
  

  
    <a href="/paragraph-translation-ja">ja</a>
  

  
    <a href="/electronic-lock-ja">ja</a>
  

  
    <a href="/avoid-mosquito-ja">ja</a>
  

  
    <a href="/ai-sql-ja">ja</a>
  

  
    <a href="/unlimited-engineer-hi">hi</a>
  

  
    <a href="/paragraph-translation-hi">hi</a>
  

  
    <a href="/electronic-lock-hi">hi</a>
  

  
    <a href="/avoid-mosquito-hi">hi</a>
  

  
    <a href="/ai-sql-hi">hi</a>
  

  
    <a href="/unlimited-engineer-hant">hant</a>
  

  
    <a href="/paragraph-translation-hant">hant</a>
  

  
    <a href="/electronic-lock-hant">hant</a>
  

  
    <a href="/avoid-mosquito-hant">hant</a>
  

  
    <a href="/ai-sql-hant">hant</a>
  

  
    <a href="/unlimited-engineer-fr">fr</a>
  

  
    <a href="/paragraph-translation-fr">fr</a>
  

  
    <a href="/electronic-lock-fr">fr</a>
  

  
    <a href="/avoid-mosquito-fr">fr</a>
  

  
    <a href="/ai-sql-fr">fr</a>
  

  
    <a href="/unlimited-engineer-es">es</a>
  

  
    <a href="/paragraph-translation-es">es</a>
  

  
    <a href="/electronic-lock-es">es</a>
  

  
    <a href="/avoid-mosquito-es">es</a>
  

  
    <a href="/ai-sql-es">es</a>
  

  
    <a href="/unlimited-engineer-en">en</a>
  

  
    <a href="/paragraph-translation-en">en</a>
  

  
    <a href="/electronic-lock-en">en</a>
  

  
    <a href="/avoid-mosquito-en">en</a>
  

  
    <a href="/ai-sql-en">en</a>
  

  
    <a href="/unlimited-engineer-de">de</a>
  

  
    <a href="/paragraph-translation-de">de</a>
  

  
    <a href="/electronic-lock-de">de</a>
  

  
    <a href="/avoid-mosquito-de">de</a>
  

  
    <a href="/ai-sql-de">de</a>
  

  
    <a href="/unlimited-engineer-ar">ar</a>
  

  
    <a href="/paragraph-translation-ar">ar</a>
  

  
    <a href="/electronic-lock-ar">ar</a>
  

  
    <a href="/avoid-mosquito-ar">ar</a>
  

  
    <a href="/ai-sql-ar">ar</a>
  

  
    <a href="/multi-region-zh">zh</a>
  

  
    <a href="/lessons-father-zh">zh</a>
  

  
    <a href="/multi-region-ja">ja</a>
  

  
    <a href="/lessons-father-ja">ja</a>
  

  
    <a href="/multi-region-hi">hi</a>
  

  
    <a href="/lessons-father-hi">hi</a>
  

  
    <a href="/multi-region-hant">hant</a>
  

  
    <a href="/lessons-father-hant">hant</a>
  

  
    <a href="/multi-region-fr">fr</a>
  

  
    <a href="/lessons-father-fr">fr</a>
  

  
    <a href="/multi-region-es">es</a>
  

  
    <a href="/lessons-father-es">es</a>
  

  
    <a href="/multi-region-en">en</a>
  

  
    <a href="/lessons-father-en">en</a>
  

  
    <a href="/multi-region-de">de</a>
  

  
    <a href="/lessons-father-de">de</a>
  

  
    <a href="/multi-region-ar">ar</a>
  

  
    <a href="/lessons-father-ar">ar</a>
  

  
    <a href="/seek-validation-zh">zh</a>
  

  
    <a href="/seek-validation-ja">ja</a>
  

  
    <a href="/seek-validation-hi">hi</a>
  

  
    <a href="/seek-validation-hant">hant</a>
  

  
    <a href="/seek-validation-fr">fr</a>
  

  
    <a href="/seek-validation-es">es</a>
  

  
    <a href="/seek-validation-en">en</a>
  

  
    <a href="/avoid-proud-en">en</a>
  

  
    <a href="/seek-validation-de">de</a>
  

  
    <a href="/seek-validation-ar">ar</a>
  

  
    <a href="/hands-on-zh">zh</a>
  

  
    <a href="/hands-on-ja">ja</a>
  

  
    <a href="/hands-on-hi">hi</a>
  

  
    <a href="/hands-on-hant">hant</a>
  

  
    <a href="/hands-on-fr">fr</a>
  

  
    <a href="/hands-on-es">es</a>
  

  
    <a href="/hands-on-en">en</a>
  

  
    <a href="/hands-on-de">de</a>
  

  
    <a href="/hands-on-ar">ar</a>
  

  
    <a href="/specific-zh">zh</a>
  

  
    <a href="/innovation-tips-zh">zh</a>
  

  
    <a href="/english-animation-zh">zh</a>
  

  
    <a href="/digital-world-zh">zh</a>
  

  
    <a href="/accumulate-logs-zh">zh</a>
  

  
    <a href="/specific-ja">ja</a>
  

  
    <a href="/innovation-tips-ja">ja</a>
  

  
    <a href="/english-animation-ja">ja</a>
  

  
    <a href="/digital-world-ja">ja</a>
  

  
    <a href="/accumulate-logs-ja">ja</a>
  

  
    <a href="/specific-hi">hi</a>
  

  
    <a href="/innovation-tips-hi">hi</a>
  

  
    <a href="/english-animation-hi">hi</a>
  

  
    <a href="/digital-world-hi">hi</a>
  

  
    <a href="/accumulate-logs-hi">hi</a>
  

  
    <a href="/specific-hant">hant</a>
  

  
    <a href="/innovation-tips-hant">hant</a>
  

  
    <a href="/english-animation-hant">hant</a>
  

  
    <a href="/digital-world-hant">hant</a>
  

  
    <a href="/accumulate-logs-hant">hant</a>
  

  
    <a href="/specific-fr">fr</a>
  

  
    <a href="/innovation-tips-fr">fr</a>
  

  
    <a href="/english-animation-fr">fr</a>
  

  
    <a href="/digital-world-fr">fr</a>
  

  
    <a href="/accumulate-logs-fr">fr</a>
  

  
    <a href="/specific-es">es</a>
  

  
    <a href="/innovation-tips-es">es</a>
  

  
    <a href="/english-animation-es">es</a>
  

  
    <a href="/digital-world-es">es</a>
  

  
    <a href="/accumulate-logs-es">es</a>
  

  
    <a href="/specific-en">en</a>
  

  
    <a href="/innovation-tips-en">en</a>
  

  
    <a href="/english-animation-en">en</a>
  

  
    <a href="/digital-world-en">en</a>
  

  
    <a href="/accumulate-logs-en">en</a>
  

  
    <a href="/specific-de">de</a>
  

  
    <a href="/innovation-tips-de">de</a>
  

  
    <a href="/english-animation-de">de</a>
  

  
    <a href="/digital-world-de">de</a>
  

  
    <a href="/accumulate-logs-de">de</a>
  

  
    <a href="/specific-ar">ar</a>
  

  
    <a href="/innovation-tips-ar">ar</a>
  

  
    <a href="/english-animation-ar">ar</a>
  

  
    <a href="/digital-world-ar">ar</a>
  

  
    <a href="/accumulate-logs-ar">ar</a>
  

  
    <a href="/airfryer-zh">zh</a>
  

  
    <a href="/airfryer-ja">ja</a>
  

  
    <a href="/airfryer-hi">hi</a>
  

  
    <a href="/airfryer-hant">hant</a>
  

  
    <a href="/airfryer-fr">fr</a>
  

  
    <a href="/airfryer-es">es</a>
  

  
    <a href="/airfryer-en">en</a>
  

  
    <a href="/airfryer-de">de</a>
  

  
    <a href="/airfryer-ar">ar</a>
  

  
    <a href="/dishwasher-repair-zh">zh</a>
  

  
    <a href="/dishwasher-repair-ja">ja</a>
  

  
    <a href="/dishwasher-repair-hi">hi</a>
  

  
    <a href="/dishwasher-repair-hant">hant</a>
  

  
    <a href="/dishwasher-repair-fr">fr</a>
  

  
    <a href="/dishwasher-repair-es">es</a>
  

  
    <a href="/dishwasher-repair-en">en</a>
  

  
    <a href="/dishwasher-repair-de">de</a>
  

  
    <a href="/dishwasher-repair-ar">ar</a>
  

  
    <a href="/enoki-mushroom-zh">zh</a>
  

  
    <a href="/enoki-mushroom-ja">ja</a>
  

  
    <a href="/enoki-mushroom-hi">hi</a>
  

  
    <a href="/enoki-mushroom-hant">hant</a>
  

  
    <a href="/enoki-mushroom-fr">fr</a>
  

  
    <a href="/enoki-mushroom-es">es</a>
  

  
    <a href="/enoki-mushroom-en">en</a>
  

  
    <a href="/enoki-mushroom-de">de</a>
  

  
    <a href="/enoki-mushroom-ar">ar</a>
  

  
    <a href="/sleeping-socks-zh">zh</a>
  

  
    <a href="/sleeping-socks-ja">ja</a>
  

  
    <a href="/sleeping-socks-hi">hi</a>
  

  
    <a href="/sleeping-socks-hant">hant</a>
  

  
    <a href="/sleeping-socks-fr">fr</a>
  

  
    <a href="/sleeping-socks-es">es</a>
  

  
    <a href="/sleeping-socks-en">en</a>
  

  
    <a href="/sleeping-socks-de">de</a>
  

  
    <a href="/sleeping-socks-ar">ar</a>
  

  
    <a href="/hydrogen-peroxide-foot-zh">zh</a>
  

  
    <a href="/hydrogen-peroxide-foot-ja">ja</a>
  

  
    <a href="/hydrogen-peroxide-foot-hi">hi</a>
  

  
    <a href="/hydrogen-peroxide-foot-hant">hant</a>
  

  
    <a href="/hydrogen-peroxide-foot-fr">fr</a>
  

  
    <a href="/hydrogen-peroxide-foot-es">es</a>
  

  
    <a href="/hydrogen-peroxide-foot-en">en</a>
  

  
    <a href="/hydrogen-peroxide-foot-de">de</a>
  

  
    <a href="/hydrogen-peroxide-foot-ar">ar</a>
  

  
    <a href="/habit-bot-zh">zh</a>
  

  
    <a href="/habit-bot-ja">ja</a>
  

  
    <a href="/habit-bot-hi">hi</a>
  

  
    <a href="/habit-bot-hant">hant</a>
  

  
    <a href="/habit-bot-fr">fr</a>
  

  
    <a href="/habit-bot-es">es</a>
  

  
    <a href="/habit-bot-en">en</a>
  

  
    <a href="/habit-bot-de">de</a>
  

  
    <a href="/habit-bot-ar">ar</a>
  

  
    <a href="/location-bot-zh">zh</a>
  

  
    <a href="/clash-zh">zh</a>
  

  
    <a href="/location-bot-ja">ja</a>
  

  
    <a href="/clash-ja">ja</a>
  

  
    <a href="/location-bot-hi">hi</a>
  

  
    <a href="/clash-hi">hi</a>
  

  
    <a href="/location-bot-hant">hant</a>
  

  
    <a href="/clash-hant">hant</a>
  

  
    <a href="/location-bot-fr">fr</a>
  

  
    <a href="/clash-fr">fr</a>
  

  
    <a href="/location-bot-es">es</a>
  

  
    <a href="/clash-es">es</a>
  

  
    <a href="/location-bot-en">en</a>
  

  
    <a href="/clash-en">en</a>
  

  
    <a href="/location-bot-de">de</a>
  

  
    <a href="/clash-de">de</a>
  

  
    <a href="/location-bot-ar">ar</a>
  

  
    <a href="/clash-ar">ar</a>
  

  
    <a href="/news-bot-zh">zh</a>
  

  
    <a href="/news-bot-ja">ja</a>
  

  
    <a href="/news-bot-hi">hi</a>
  

  
    <a href="/news-bot-hant">hant</a>
  

  
    <a href="/news-bot-fr">fr</a>
  

  
    <a href="/news-bot-es">es</a>
  

  
    <a href="/news-bot-en">en</a>
  

  
    <a href="/news-bot-de">de</a>
  

  
    <a href="/news-bot-ar">ar</a>
  

  
    <a href="/reminders-zh">zh</a>
  

  
    <a href="/reminders-ja">ja</a>
  

  
    <a href="/reminders-hi">hi</a>
  

  
    <a href="/reminders-hant">hant</a>
  

  
    <a href="/reminders-fr">fr</a>
  

  
    <a href="/reminders-es">es</a>
  

  
    <a href="/reminders-en">en</a>
  

  
    <a href="/reminders-de">de</a>
  

  
    <a href="/reminders-ar">ar</a>
  

  
    <a href="/deepwiki-zh">zh</a>
  

  
    <a href="/deepwiki-ja">ja</a>
  

  
    <a href="/deepwiki-hi">hi</a>
  

  
    <a href="/deepwiki-hant">hant</a>
  

  
    <a href="/deepwiki-fr">fr</a>
  

  
    <a href="/deepwiki-es">es</a>
  

  
    <a href="/deepwiki-en">en</a>
  

  
    <a href="/deepwiki-de">de</a>
  

  
    <a href="/deepwiki-ar">ar</a>
  

  
    <a href="/tire-zh">zh</a>
  

  
    <a href="/invest-tiger-actions-zh">zh</a>
  

  
    <a href="/tire-ja">ja</a>
  

  
    <a href="/invest-tiger-actions-ja">ja</a>
  

  
    <a href="/tire-hi">hi</a>
  

  
    <a href="/invest-tiger-actions-hi">hi</a>
  

  
    <a href="/tire-hant">hant</a>
  

  
    <a href="/invest-tiger-actions-hant">hant</a>
  

  
    <a href="/tire-fr">fr</a>
  

  
    <a href="/invest-tiger-actions-fr">fr</a>
  

  
    <a href="/tire-es">es</a>
  

  
    <a href="/invest-tiger-actions-es">es</a>
  

  
    <a href="/tire-en">en</a>
  

  
    <a href="/invest-tiger-actions-en">en</a>
  

  
    <a href="/tire-de">de</a>
  

  
    <a href="/invest-tiger-actions-de">de</a>
  

  
    <a href="/tire-ar">ar</a>
  

  
    <a href="/invest-tiger-actions-ar">ar</a>
  

  
    <a href="/car-dry-hair-zh">zh</a>
  

  
    <a href="/car-dry-hair-ja">ja</a>
  

  
    <a href="/car-dry-hair-hi">hi</a>
  

  
    <a href="/car-dry-hair-hant">hant</a>
  

  
    <a href="/car-dry-hair-fr">fr</a>
  

  
    <a href="/car-dry-hair-es">es</a>
  

  
    <a href="/car-dry-hair-en">en</a>
  

  
    <a href="/car-dry-hair-de">de</a>
  

  
    <a href="/car-dry-hair-ar">ar</a>
  

  
    <a href="/japanese-tips-zh">zh</a>
  

  
    <a href="/blogs-zh">zh</a>
  

  
    <a href="/japanese-tips-ja">ja</a>
  

  
    <a href="/blogs-ja">ja</a>
  

  
    <a href="/japanese-tips-hi">hi</a>
  

  
    <a href="/blogs-hi">hi</a>
  

  
    <a href="/japanese-tips-hant">hant</a>
  

  
    <a href="/blogs-hant">hant</a>
  

  
    <a href="/japanese-tips-fr">fr</a>
  

  
    <a href="/blogs-fr">fr</a>
  

  
    <a href="/japanese-tips-es">es</a>
  

  
    <a href="/blogs-es">es</a>
  

  
    <a href="/japanese-tips-en">en</a>
  

  
    <a href="/blogs-en">en</a>
  

  
    <a href="/japanese-tips-de">de</a>
  

  
    <a href="/blogs-de">de</a>
  

  
    <a href="/japanese-tips-ar">ar</a>
  

  
    <a href="/blogs-ar">ar</a>
  

  
    <a href="/nytimes-update-zh">zh</a>
  

  
    <a href="/nytimes-update-ja">ja</a>
  

  
    <a href="/nytimes-update-hi">hi</a>
  

  
    <a href="/nytimes-update-hant">hant</a>
  

  
    <a href="/nytimes-update-fr">fr</a>
  

  
    <a href="/nytimes-update-es">es</a>
  

  
    <a href="/nytimes-update-en">en</a>
  

  
    <a href="/nytimes-update-de">de</a>
  

  
    <a href="/nytimes-update-ar">ar</a>
  

  
    <a href="/shortcuts-zh">zh</a>
  

  
    <a href="/shangzanwifi-zh">zh</a>
  

  
    <a href="/shortcuts-ja">ja</a>
  

  
    <a href="/shangzanwifi-ja">ja</a>
  

  
    <a href="/shortcuts-hi">hi</a>
  

  
    <a href="/shangzanwifi-hi">hi</a>
  

  
    <a href="/shortcuts-hant">hant</a>
  

  
    <a href="/shangzanwifi-hant">hant</a>
  

  
    <a href="/shortcuts-fr">fr</a>
  

  
    <a href="/shangzanwifi-fr">fr</a>
  

  
    <a href="/shortcuts-es">es</a>
  

  
    <a href="/shangzanwifi-es">es</a>
  

  
    <a href="/shortcuts-en">en</a>
  

  
    <a href="/shangzanwifi-en">en</a>
  

  
    <a href="/shortcuts-de">de</a>
  

  
    <a href="/shangzanwifi-de">de</a>
  

  
    <a href="/shortcuts-ar">ar</a>
  

  
    <a href="/shangzanwifi-ar">ar</a>
  

  
    <a href="/commute-zh">zh</a>
  

  
    <a href="/commute-ja">ja</a>
  

  
    <a href="/commute-hi">hi</a>
  

  
    <a href="/commute-hant">hant</a>
  

  
    <a href="/commute-fr">fr</a>
  

  
    <a href="/commute-es">es</a>
  

  
    <a href="/commute-en">en</a>
  

  
    <a href="/commute-de">de</a>
  

  
    <a href="/commute-ar">ar</a>
  

  
    <a href="/travel-zh">zh</a>
  

  
    <a href="/society-zh">zh</a>
  

  
    <a href="/openwrt-invasion-zh">zh</a>
  

  
    <a href="/information-export-zh">zh</a>
  

  
    <a href="/travel-ja">ja</a>
  

  
    <a href="/society-ja">ja</a>
  

  
    <a href="/openwrt-invasion-ja">ja</a>
  

  
    <a href="/information-export-ja">ja</a>
  

  
    <a href="/travel-hi">hi</a>
  

  
    <a href="/society-hi">hi</a>
  

  
    <a href="/openwrt-invasion-hi">hi</a>
  

  
    <a href="/information-export-hi">hi</a>
  

  
    <a href="/travel-hant">hant</a>
  

  
    <a href="/society-hant">hant</a>
  

  
    <a href="/openwrt-invasion-hant">hant</a>
  

  
    <a href="/information-export-hant">hant</a>
  

  
    <a href="/travel-fr">fr</a>
  

  
    <a href="/society-fr">fr</a>
  

  
    <a href="/openwrt-invasion-fr">fr</a>
  

  
    <a href="/information-export-fr">fr</a>
  

  
    <a href="/travel-es">es</a>
  

  
    <a href="/society-es">es</a>
  

  
    <a href="/openwrt-invasion-es">es</a>
  

  
    <a href="/information-export-es">es</a>
  

  
    <a href="/travel-en">en</a>
  

  
    <a href="/society-en">en</a>
  

  
    <a href="/openwrt-invasion-en">en</a>
  

  
    <a href="/information-export-en">en</a>
  

  
    <a href="/travel-de">de</a>
  

  
    <a href="/society-de">de</a>
  

  
    <a href="/openwrt-invasion-de">de</a>
  

  
    <a href="/information-export-de">de</a>
  

  
    <a href="/travel-ar">ar</a>
  

  
    <a href="/society-ar">ar</a>
  

  
    <a href="/openwrt-invasion-ar">ar</a>
  

  
    <a href="/information-export-ar">ar</a>
  

  
    <a href="/second-hand-zh">zh</a>
  

  
    <a href="/second-hand-ja">ja</a>
  

  
    <a href="/second-hand-hi">hi</a>
  

  
    <a href="/second-hand-hant">hant</a>
  

  
    <a href="/second-hand-fr">fr</a>
  

  
    <a href="/second-hand-es">es</a>
  

  
    <a href="/second-hand-en">en</a>
  

  
    <a href="/second-hand-de">de</a>
  

  
    <a href="/second-hand-ar">ar</a>
  

  
    <a href="/working-zh">zh</a>
  

  
    <a href="/working-ja">ja</a>
  

  
    <a href="/working-hi">hi</a>
  

  
    <a href="/working-hant">hant</a>
  

  
    <a href="/working-fr">fr</a>
  

  
    <a href="/working-es">es</a>
  

  
    <a href="/working-en">en</a>
  

  
    <a href="/working-de">de</a>
  

  
    <a href="/working-ar">ar</a>
  

  
    <a href="/netplan-zh">zh</a>
  

  
    <a href="/linear-algebra-zh">zh</a>
  

  
    <a href="/netplan-ja">ja</a>
  

  
    <a href="/linear-algebra-ja">ja</a>
  

  
    <a href="/netplan-hi">hi</a>
  

  
    <a href="/linear-algebra-hi">hi</a>
  

  
    <a href="/netplan-hant">hant</a>
  

  
    <a href="/linear-algebra-hant">hant</a>
  

  
    <a href="/netplan-fr">fr</a>
  

  
    <a href="/linear-algebra-fr">fr</a>
  

  
    <a href="/netplan-es">es</a>
  

  
    <a href="/linear-algebra-es">es</a>
  

  
    <a href="/netplan-en">en</a>
  

  
    <a href="/linear-algebra-en">en</a>
  

  
    <a href="/netplan-de">de</a>
  

  
    <a href="/linear-algebra-de">de</a>
  

  
    <a href="/netplan-ar">ar</a>
  

  
    <a href="/linear-algebra-ar">ar</a>
  

  
    <a href="/english-practice-zh">zh</a>
  

  
    <a href="/english-practice-ja">ja</a>
  

  
    <a href="/english-practice-hi">hi</a>
  

  
    <a href="/english-practice-hant">hant</a>
  

  
    <a href="/english-practice-fr">fr</a>
  

  
    <a href="/english-practice-es">es</a>
  

  
    <a href="/english-practice-en">en</a>
  

  
    <a href="/english-practice-de">de</a>
  

  
    <a href="/english-practice-ar">ar</a>
  

  
    <a href="/systemd-service-zh">zh</a>
  

  
    <a href="/jina-ai-zh">zh</a>
  

  
    <a href="/evaluating-candidates-zh">zh</a>
  

  
    <a href="/elevenlabs-zh">zh</a>
  

  
    <a href="/systemd-service-ja">ja</a>
  

  
    <a href="/jina-ai-ja">ja</a>
  

  
    <a href="/evaluating-candidates-ja">ja</a>
  

  
    <a href="/elevenlabs-ja">ja</a>
  

  
    <a href="/systemd-service-hi">hi</a>
  

  
    <a href="/jina-ai-hi">hi</a>
  

  
    <a href="/evaluating-candidates-hi">hi</a>
  

  
    <a href="/elevenlabs-hi">hi</a>
  

  
    <a href="/systemd-service-hant">hant</a>
  

  
    <a href="/jina-ai-hant">hant</a>
  

  
    <a href="/evaluating-candidates-hant">hant</a>
  

  
    <a href="/elevenlabs-hant">hant</a>
  

  
    <a href="/systemd-service-fr">fr</a>
  

  
    <a href="/jina-ai-fr">fr</a>
  

  
    <a href="/evaluating-candidates-fr">fr</a>
  

  
    <a href="/elevenlabs-fr">fr</a>
  

  
    <a href="/systemd-service-es">es</a>
  

  
    <a href="/jina-ai-es">es</a>
  

  
    <a href="/evaluating-candidates-es">es</a>
  

  
    <a href="/elevenlabs-es">es</a>
  

  
    <a href="/systemd-service-en">en</a>
  

  
    <a href="/jina-ai-en">en</a>
  

  
    <a href="/evaluating-candidates-en">en</a>
  

  
    <a href="/elevenlabs-en">en</a>
  

  
    <a href="/systemd-service-de">de</a>
  

  
    <a href="/jina-ai-de">de</a>
  

  
    <a href="/evaluating-candidates-de">de</a>
  

  
    <a href="/elevenlabs-de">de</a>
  

  
    <a href="/systemd-service-ar">ar</a>
  

  
    <a href="/jina-ai-ar">ar</a>
  

  
    <a href="/evaluating-candidates-ar">ar</a>
  

  
    <a href="/elevenlabs-ar">ar</a>
  

  
    <a href="/losing-money-zh">zh</a>
  

  
    <a href="/earning-money-zh">zh</a>
  

  
    <a href="/cursor-spring-zh">zh</a>
  

  
    <a href="/losing-money-ja">ja</a>
  

  
    <a href="/earning-money-ja">ja</a>
  

  
    <a href="/cursor-spring-ja">ja</a>
  

  
    <a href="/losing-money-hi">hi</a>
  

  
    <a href="/earning-money-hi">hi</a>
  

  
    <a href="/cursor-spring-hi">hi</a>
  

  
    <a href="/losing-money-hant">hant</a>
  

  
    <a href="/earning-money-hant">hant</a>
  

  
    <a href="/cursor-spring-hant">hant</a>
  

  
    <a href="/losing-money-fr">fr</a>
  

  
    <a href="/earning-money-fr">fr</a>
  

  
    <a href="/cursor-spring-fr">fr</a>
  

  
    <a href="/losing-money-es">es</a>
  

  
    <a href="/earning-money-es">es</a>
  

  
    <a href="/cursor-spring-es">es</a>
  

  
    <a href="/losing-money-en">en</a>
  

  
    <a href="/earning-money-en">en</a>
  

  
    <a href="/cursor-spring-en">en</a>
  

  
    <a href="/losing-money-de">de</a>
  

  
    <a href="/earning-money-de">de</a>
  

  
    <a href="/cursor-spring-de">de</a>
  

  
    <a href="/losing-money-ar">ar</a>
  

  
    <a href="/earning-money-ar">ar</a>
  

  
    <a href="/cursor-spring-ar">ar</a>
  

  
    <a href="/piratebay-zh">zh</a>
  

  
    <a href="/p2p-proxy-zh">zh</a>
  

  
    <a href="/git-lfs-zh">zh</a>
  

  
    <a href="/driving-tips-zh">zh</a>
  

  
    <a href="/piratebay-ja">ja</a>
  

  
    <a href="/p2p-proxy-ja">ja</a>
  

  
    <a href="/git-lfs-ja">ja</a>
  

  
    <a href="/driving-tips-ja">ja</a>
  

  
    <a href="/piratebay-hi">hi</a>
  

  
    <a href="/p2p-proxy-hi">hi</a>
  

  
    <a href="/git-lfs-hi">hi</a>
  

  
    <a href="/driving-tips-hi">hi</a>
  

  
    <a href="/piratebay-hant">hant</a>
  

  
    <a href="/p2p-proxy-hant">hant</a>
  

  
    <a href="/git-lfs-hant">hant</a>
  

  
    <a href="/driving-tips-hant">hant</a>
  

  
    <a href="/piratebay-fr">fr</a>
  

  
    <a href="/p2p-proxy-fr">fr</a>
  

  
    <a href="/git-lfs-fr">fr</a>
  

  
    <a href="/driving-tips-fr">fr</a>
  

  
    <a href="/piratebay-es">es</a>
  

  
    <a href="/p2p-proxy-es">es</a>
  

  
    <a href="/git-lfs-es">es</a>
  

  
    <a href="/driving-tips-es">es</a>
  

  
    <a href="/piratebay-en">en</a>
  

  
    <a href="/p2p-proxy-en">en</a>
  

  
    <a href="/git-lfs-en">en</a>
  

  
    <a href="/driving-tips-en">en</a>
  

  
    <a href="/piratebay-de">de</a>
  

  
    <a href="/p2p-proxy-de">de</a>
  

  
    <a href="/git-lfs-de">de</a>
  

  
    <a href="/driving-tips-de">de</a>
  

  
    <a href="/piratebay-ar">ar</a>
  

  
    <a href="/p2p-proxy-ar">ar</a>
  

  
    <a href="/git-lfs-ar">ar</a>
  

  
    <a href="/driving-tips-ar">ar</a>
  

  
    <a href="/verbose-zh">zh</a>
  

  
    <a href="/verbose-ja">ja</a>
  

  
    <a href="/verbose-hi">hi</a>
  

  
    <a href="/verbose-hant">hant</a>
  

  
    <a href="/verbose-fr">fr</a>
  

  
    <a href="/verbose-es">es</a>
  

  
    <a href="/verbose-en">en</a>
  

  
    <a href="/verbose-de">de</a>
  

  
    <a href="/verbose-ar">ar</a>
  

  
    <a href="/ssh-config-zh">zh</a>
  

  
    <a href="/open-webui-zh">zh</a>
  

  
    <a href="/ssh-config-ja">ja</a>
  

  
    <a href="/open-webui-ja">ja</a>
  

  
    <a href="/ssh-config-hi">hi</a>
  

  
    <a href="/open-webui-hi">hi</a>
  

  
    <a href="/ssh-config-hant">hant</a>
  

  
    <a href="/open-webui-hant">hant</a>
  

  
    <a href="/ssh-config-fr">fr</a>
  

  
    <a href="/open-webui-fr">fr</a>
  

  
    <a href="/ssh-config-es">es</a>
  

  
    <a href="/open-webui-es">es</a>
  

  
    <a href="/ssh-config-en">en</a>
  

  
    <a href="/open-webui-en">en</a>
  

  
    <a href="/ssh-config-de">de</a>
  

  
    <a href="/open-webui-de">de</a>
  

  
    <a href="/ssh-config-ar">ar</a>
  

  
    <a href="/open-webui-ar">ar</a>
  

  
    <a href="/gift-zh">zh</a>
  

  
    <a href="/floating-ip-zh">zh</a>
  

  
    <a href="/gift-ja">ja</a>
  

  
    <a href="/floating-ip-ja">ja</a>
  

  
    <a href="/gift-hi">hi</a>
  

  
    <a href="/floating-ip-hi">hi</a>
  

  
    <a href="/gift-hant">hant</a>
  

  
    <a href="/floating-ip-hant">hant</a>
  

  
    <a href="/gift-fr">fr</a>
  

  
    <a href="/floating-ip-fr">fr</a>
  

  
    <a href="/gift-es">es</a>
  

  
    <a href="/floating-ip-es">es</a>
  

  
    <a href="/gift-en">en</a>
  

  
    <a href="/floating-ip-en">en</a>
  

  
    <a href="/gift-de">de</a>
  

  
    <a href="/floating-ip-de">de</a>
  

  
    <a href="/gift-ar">ar</a>
  

  
    <a href="/floating-ip-ar">ar</a>
  

  
    <a href="/useful-commands-zh">zh</a>
  

  
    <a href="/open-router-zh">zh</a>
  

  
    <a href="/network-interface-zh">zh</a>
  

  
    <a href="/linux-bashrc-zh">zh</a>
  

  
    <a href="/lan-ip-zh">zh</a>
  

  
    <a href="/ipv6-zh">zh</a>
  

  
    <a href="/conda-linux-zh">zh</a>
  

  
    <a href="/useful-commands-ja">ja</a>
  

  
    <a href="/open-router-ja">ja</a>
  

  
    <a href="/network-interface-ja">ja</a>
  

  
    <a href="/linux-bashrc-ja">ja</a>
  

  
    <a href="/lan-ip-ja">ja</a>
  

  
    <a href="/ipv6-ja">ja</a>
  

  
    <a href="/conda-linux-ja">ja</a>
  

  
    <a href="/useful-commands-hi">hi</a>
  

  
    <a href="/open-router-hi">hi</a>
  

  
    <a href="/network-interface-hi">hi</a>
  

  
    <a href="/linux-bashrc-hi">hi</a>
  

  
    <a href="/lan-ip-hi">hi</a>
  

  
    <a href="/ipv6-hi">hi</a>
  

  
    <a href="/conda-linux-hi">hi</a>
  

  
    <a href="/useful-commands-hant">hant</a>
  

  
    <a href="/open-router-hant">hant</a>
  

  
    <a href="/network-interface-hant">hant</a>
  

  
    <a href="/linux-bashrc-hant">hant</a>
  

  
    <a href="/lan-ip-hant">hant</a>
  

  
    <a href="/ipv6-hant">hant</a>
  

  
    <a href="/conda-linux-hant">hant</a>
  

  
    <a href="/useful-commands-fr">fr</a>
  

  
    <a href="/open-router-fr">fr</a>
  

  
    <a href="/network-interface-fr">fr</a>
  

  
    <a href="/linux-bashrc-fr">fr</a>
  

  
    <a href="/lan-ip-fr">fr</a>
  

  
    <a href="/ipv6-fr">fr</a>
  

  
    <a href="/conda-linux-fr">fr</a>
  

  
    <a href="/useful-commands-es">es</a>
  

  
    <a href="/open-router-es">es</a>
  

  
    <a href="/network-interface-es">es</a>
  

  
    <a href="/linux-bashrc-es">es</a>
  

  
    <a href="/lan-ip-es">es</a>
  

  
    <a href="/ipv6-es">es</a>
  

  
    <a href="/conda-linux-es">es</a>
  

  
    <a href="/useful-commands-en">en</a>
  

  
    <a href="/open-router-en">en</a>
  

  
    <a href="/network-interface-en">en</a>
  

  
    <a href="/linux-bashrc-en">en</a>
  

  
    <a href="/lan-ip-en">en</a>
  

  
    <a href="/ipv6-en">en</a>
  

  
    <a href="/conda-linux-en">en</a>
  

  
    <a href="/useful-commands-de">de</a>
  

  
    <a href="/open-router-de">de</a>
  

  
    <a href="/network-interface-de">de</a>
  

  
    <a href="/linux-bashrc-de">de</a>
  

  
    <a href="/lan-ip-de">de</a>
  

  
    <a href="/ipv6-de">de</a>
  

  
    <a href="/conda-linux-de">de</a>
  

  
    <a href="/useful-commands-ar">ar</a>
  

  
    <a href="/open-router-ar">ar</a>
  

  
    <a href="/network-interface-ar">ar</a>
  

  
    <a href="/linux-bashrc-ar">ar</a>
  

  
    <a href="/lan-ip-ar">ar</a>
  

  
    <a href="/ipv6-ar">ar</a>
  

  
    <a href="/conda-linux-ar">ar</a>
  

  
    <a href="/tiger-zh">zh</a>
  

  
    <a href="/tiger-ja">ja</a>
  

  
    <a href="/tiger-hi">hi</a>
  

  
    <a href="/tiger-hant">hant</a>
  

  
    <a href="/tiger-fr">fr</a>
  

  
    <a href="/tiger-es">es</a>
  

  
    <a href="/tiger-en">en</a>
  

  
    <a href="/tiger-de">de</a>
  

  
    <a href="/tiger-ar">ar</a>
  

  
    <a href="/ffmpeg-commands-zh">zh</a>
  

  
    <a href="/emf-meter-zh">zh</a>
  

  
    <a href="/ffmpeg-commands-ja">ja</a>
  

  
    <a href="/emf-meter-ja">ja</a>
  

  
    <a href="/ffmpeg-commands-hi">hi</a>
  

  
    <a href="/emf-meter-hi">hi</a>
  

  
    <a href="/ffmpeg-commands-hant">hant</a>
  

  
    <a href="/emf-meter-hant">hant</a>
  

  
    <a href="/ffmpeg-commands-fr">fr</a>
  

  
    <a href="/emf-meter-fr">fr</a>
  

  
    <a href="/ffmpeg-commands-es">es</a>
  

  
    <a href="/emf-meter-es">es</a>
  

  
    <a href="/ffmpeg-commands-en">en</a>
  

  
    <a href="/emf-meter-en">en</a>
  

  
    <a href="/ffmpeg-commands-de">de</a>
  

  
    <a href="/emf-meter-de">de</a>
  

  
    <a href="/ffmpeg-commands-ar">ar</a>
  

  
    <a href="/emf-meter-ar">ar</a>
  

  
    <a href="/wifi-speed-zh">zh</a>
  

  
    <a href="/speech-recognition-zh">zh</a>
  

  
    <a href="/selenium-zh">zh</a>
  

  
    <a href="/openwrt-reset-zh">zh</a>
  

  
    <a href="/lighter-zh">zh</a>
  

  
    <a href="/jokes-zh">zh</a>
  

  
    <a href="/bce-embedding-zh">zh</a>
  

  
    <a href="/wifi-speed-ja">ja</a>
  

  
    <a href="/speech-recognition-ja">ja</a>
  

  
    <a href="/selenium-ja">ja</a>
  

  
    <a href="/openwrt-reset-ja">ja</a>
  

  
    <a href="/lighter-ja">ja</a>
  

  
    <a href="/jokes-ja">ja</a>
  

  
    <a href="/bce-embedding-ja">ja</a>
  

  
    <a href="/wifi-speed-hi">hi</a>
  

  
    <a href="/speech-recognition-hi">hi</a>
  

  
    <a href="/selenium-hi">hi</a>
  

  
    <a href="/openwrt-reset-hi">hi</a>
  

  
    <a href="/lighter-hi">hi</a>
  

  
    <a href="/jokes-hi">hi</a>
  

  
    <a href="/bce-embedding-hi">hi</a>
  

  
    <a href="/wifi-speed-hant">hant</a>
  

  
    <a href="/speech-recognition-hant">hant</a>
  

  
    <a href="/selenium-hant">hant</a>
  

  
    <a href="/openwrt-reset-hant">hant</a>
  

  
    <a href="/lighter-hant">hant</a>
  

  
    <a href="/jokes-hant">hant</a>
  

  
    <a href="/bce-embedding-hant">hant</a>
  

  
    <a href="/wifi-speed-fr">fr</a>
  

  
    <a href="/speech-recognition-fr">fr</a>
  

  
    <a href="/selenium-fr">fr</a>
  

  
    <a href="/openwrt-reset-fr">fr</a>
  

  
    <a href="/lighter-fr">fr</a>
  

  
    <a href="/jokes-fr">fr</a>
  

  
    <a href="/bce-embedding-fr">fr</a>
  

  
    <a href="/wifi-speed-es">es</a>
  

  
    <a href="/speech-recognition-es">es</a>
  

  
    <a href="/selenium-es">es</a>
  

  
    <a href="/openwrt-reset-es">es</a>
  

  
    <a href="/lighter-es">es</a>
  

  
    <a href="/jokes-es">es</a>
  

  
    <a href="/bce-embedding-es">es</a>
  

  
    <a href="/wifi-speed-en">en</a>
  

  
    <a href="/speech-recognition-en">en</a>
  

  
    <a href="/selenium-en">en</a>
  

  
    <a href="/openwrt-reset-en">en</a>
  

  
    <a href="/lighter-en">en</a>
  

  
    <a href="/jokes-en">en</a>
  

  
    <a href="/bce-embedding-en">en</a>
  

  
    <a href="/wifi-speed-de">de</a>
  

  
    <a href="/speech-recognition-de">de</a>
  

  
    <a href="/selenium-de">de</a>
  

  
    <a href="/openwrt-reset-de">de</a>
  

  
    <a href="/lighter-de">de</a>
  

  
    <a href="/jokes-de">de</a>
  

  
    <a href="/bce-embedding-de">de</a>
  

  
    <a href="/wifi-speed-ar">ar</a>
  

  
    <a href="/speech-recognition-ar">ar</a>
  

  
    <a href="/selenium-ar">ar</a>
  

  
    <a href="/openwrt-reset-ar">ar</a>
  

  
    <a href="/lighter-ar">ar</a>
  

  
    <a href="/jokes-ar">ar</a>
  

  
    <a href="/bce-embedding-ar">ar</a>
  

  
    <a href="/internet-freedom-zh">zh</a>
  

  
    <a href="/bandwidth-zh">zh</a>
  

  
    <a href="/aliyun-elastic-ip-zh">zh</a>
  

  
    <a href="/internet-freedom-ja">ja</a>
  

  
    <a href="/bandwidth-ja">ja</a>
  

  
    <a href="/aliyun-elastic-ip-ja">ja</a>
  

  
    <a href="/internet-freedom-hi">hi</a>
  

  
    <a href="/bandwidth-hi">hi</a>
  

  
    <a href="/aliyun-elastic-ip-hi">hi</a>
  

  
    <a href="/internet-freedom-hant">hant</a>
  

  
    <a href="/bandwidth-hant">hant</a>
  

  
    <a href="/aliyun-elastic-ip-hant">hant</a>
  

  
    <a href="/internet-freedom-fr">fr</a>
  

  
    <a href="/bandwidth-fr">fr</a>
  

  
    <a href="/aliyun-elastic-ip-fr">fr</a>
  

  
    <a href="/internet-freedom-es">es</a>
  

  
    <a href="/bandwidth-es">es</a>
  

  
    <a href="/aliyun-elastic-ip-es">es</a>
  

  
    <a href="/internet-freedom-en">en</a>
  

  
    <a href="/bandwidth-en">en</a>
  

  
    <a href="/aliyun-elastic-ip-en">en</a>
  

  
    <a href="/internet-freedom-de">de</a>
  

  
    <a href="/bandwidth-de">de</a>
  

  
    <a href="/aliyun-elastic-ip-de">de</a>
  

  
    <a href="/internet-freedom-ar">ar</a>
  

  
    <a href="/bandwidth-ar">ar</a>
  

  
    <a href="/aliyun-elastic-ip-ar">ar</a>
  

  
    <a href="/ubuntu-zh">zh</a>
  

  
    <a href="/ssh-zh">zh</a>
  

  
    <a href="/outdoor-cooking-zh">zh</a>
  

  
    <a href="/grok-api-zh">zh</a>
  

  
    <a href="/gpg-zh">zh</a>
  

  
    <a href="/archlinux-zh">zh</a>
  

  
    <a href="/ubuntu-ja">ja</a>
  

  
    <a href="/ssh-ja">ja</a>
  

  
    <a href="/outdoor-cooking-ja">ja</a>
  

  
    <a href="/grok-api-ja">ja</a>
  

  
    <a href="/gpg-ja">ja</a>
  

  
    <a href="/archlinux-ja">ja</a>
  

  
    <a href="/ubuntu-hi">hi</a>
  

  
    <a href="/ssh-hi">hi</a>
  

  
    <a href="/outdoor-cooking-hi">hi</a>
  

  
    <a href="/grok-api-hi">hi</a>
  

  
    <a href="/gpg-hi">hi</a>
  

  
    <a href="/archlinux-hi">hi</a>
  

  
    <a href="/ubuntu-hant">hant</a>
  

  
    <a href="/ssh-hant">hant</a>
  

  
    <a href="/outdoor-cooking-hant">hant</a>
  

  
    <a href="/grok-api-hant">hant</a>
  

  
    <a href="/gpg-hant">hant</a>
  

  
    <a href="/archlinux-hant">hant</a>
  

  
    <a href="/ubuntu-fr">fr</a>
  

  
    <a href="/ssh-fr">fr</a>
  

  
    <a href="/outdoor-cooking-fr">fr</a>
  

  
    <a href="/grok-api-fr">fr</a>
  

  
    <a href="/gpg-fr">fr</a>
  

  
    <a href="/archlinux-fr">fr</a>
  

  
    <a href="/ubuntu-es">es</a>
  

  
    <a href="/ssh-es">es</a>
  

  
    <a href="/outdoor-cooking-es">es</a>
  

  
    <a href="/grok-api-es">es</a>
  

  
    <a href="/gpg-es">es</a>
  

  
    <a href="/archlinux-es">es</a>
  

  
    <a href="/ubuntu-en">en</a>
  

  
    <a href="/ssh-en">en</a>
  

  
    <a href="/outdoor-cooking-en">en</a>
  

  
    <a href="/grok-api-en">en</a>
  

  
    <a href="/gpg-en">en</a>
  

  
    <a href="/archlinux-en">en</a>
  

  
    <a href="/ubuntu-de">de</a>
  

  
    <a href="/ssh-de">de</a>
  

  
    <a href="/outdoor-cooking-de">de</a>
  

  
    <a href="/grok-api-de">de</a>
  

  
    <a href="/gpg-de">de</a>
  

  
    <a href="/archlinux-de">de</a>
  

  
    <a href="/ubuntu-ar">ar</a>
  

  
    <a href="/ssh-ar">ar</a>
  

  
    <a href="/outdoor-cooking-ar">ar</a>
  

  
    <a href="/grok-api-ar">ar</a>
  

  
    <a href="/gpg-ar">ar</a>
  

  
    <a href="/archlinux-ar">ar</a>
  

  
    <a href="/conda-zh">zh</a>
  

  
    <a href="/conda-ja">ja</a>
  

  
    <a href="/conda-hi">hi</a>
  

  
    <a href="/conda-hant">hant</a>
  

  
    <a href="/conda-fr">fr</a>
  

  
    <a href="/conda-es">es</a>
  

  
    <a href="/conda-en">en</a>
  

  
    <a href="/conda-de">de</a>
  

  
    <a href="/conda-ar">ar</a>
  

  
    <a href="/reranker-zh">zh</a>
  

  
    <a href="/prompts-zh">zh</a>
  

  
    <a href="/productivity-tips-zh">zh</a>
  

  
    <a href="/mistral-zh">zh</a>
  

  
    <a href="/metal-zh">zh</a>
  

  
    <a href="/holiday-zh">zh</a>
  

  
    <a href="/chat-zh">zh</a>
  

  
    <a href="/reranker-ja">ja</a>
  

  
    <a href="/prompts-ja"></a>
  

  
    <a href="/productivity-tips-ja">ja</a>
  

  
    <a href="/mistral-ja">ja</a>
  

  
    <a href="/metal-ja">ja</a>
  

  
    <a href="/holiday-ja">ja</a>
  

  
    <a href="/chat-ja">ja</a>
  

  
    <a href="/reranker-hi">hi</a>
  

  
    <a href="/prompts-hi"></a>
  

  
    <a href="/productivity-tips-hi">hi</a>
  

  
    <a href="/mistral-hi">hi</a>
  

  
    <a href="/metal-hi">hi</a>
  

  
    <a href="/holiday-hi">hi</a>
  

  
    <a href="/chat-hi">hi</a>
  

  
    <a href="/reranker-hant">hant</a>
  

  
    <a href="/prompts-hant">hant</a>
  

  
    <a href="/productivity-tips-hant">hant</a>
  

  
    <a href="/mistral-hant">hant</a>
  

  
    <a href="/metal-hant">hant</a>
  

  
    <a href="/holiday-hant">hant</a>
  

  
    <a href="/chat-hant">hant</a>
  

  
    <a href="/reranker-fr">fr</a>
  

  
    <a href="/prompts-fr">fr</a>
  

  
    <a href="/productivity-tips-fr">fr</a>
  

  
    <a href="/mistral-fr">fr</a>
  

  
    <a href="/metal-fr">fr</a>
  

  
    <a href="/holiday-fr">fr</a>
  

  
    <a href="/chat-fr">fr</a>
  

  
    <a href="/reranker-es">es</a>
  

  
    <a href="/prompts-es"></a>
  

  
    <a href="/productivity-tips-es">es</a>
  

  
    <a href="/mistral-es">es</a>
  

  
    <a href="/metal-es">es</a>
  

  
    <a href="/holiday-es">es</a>
  

  
    <a href="/chat-es">es</a>
  

  
    <a href="/reranker-en">en</a>
  

  
    <a href="/prompts-en">en</a>
  

  
    <a href="/productivity-tips-en">en</a>
  

  
    <a href="/mistral-en">en</a>
  

  
    <a href="/metal-en">en</a>
  

  
    <a href="/holiday-en">en</a>
  

  
    <a href="/chat-en">en</a>
  

  
    <a href="/reranker-de">de</a>
  

  
    <a href="/prompts-de"></a>
  

  
    <a href="/productivity-tips-de">de</a>
  

  
    <a href="/mistral-de">de</a>
  

  
    <a href="/metal-de">de</a>
  

  
    <a href="/holiday-de">de</a>
  

  
    <a href="/chat-de">de</a>
  

  
    <a href="/reranker-ar">ar</a>
  

  
    <a href="/prompts-ar"></a>
  

  
    <a href="/productivity-tips-ar">ar</a>
  

  
    <a href="/mistral-ar">ar</a>
  

  
    <a href="/metal-ar">ar</a>
  

  
    <a href="/holiday-ar">ar</a>
  

  
    <a href="/chat-ar">ar</a>
  

  
    <a href="/pip-list-zh">zh</a>
  

  
    <a href="/network-tips-zh">zh</a>
  

  
    <a href="/maven-zh">zh</a>
  

  
    <a href="/gem-zh">zh</a>
  

  
    <a href="/data-zh">zh</a>
  

  
    <a href="/commands-zh">zh</a>
  

  
    <a href="/command-control-zh">zh</a>
  

  
    <a href="/brew-list-zh">zh</a>
  

  
    <a href="/pip-list-ja">ja</a>
  

  
    <a href="/network-tips-ja">ja</a>
  

  
    <a href="/maven-ja">ja</a>
  

  
    <a href="/gem-ja">ja</a>
  

  
    <a href="/data-ja">ja</a>
  

  
    <a href="/commands-ja">ja</a>
  

  
    <a href="/command-control-ja">ja</a>
  

  
    <a href="/brew-list-ja">ja</a>
  

  
    <a href="/pip-list-hi">hi</a>
  

  
    <a href="/network-tips-hi">hi</a>
  

  
    <a href="/maven-hi">hi</a>
  

  
    <a href="/gem-hi">hi</a>
  

  
    <a href="/data-hi">hi</a>
  

  
    <a href="/commands-hi">hi</a>
  

  
    <a href="/command-control-hi">hi</a>
  

  
    <a href="/brew-list-hi">hi</a>
  

  
    <a href="/pip-list-hant">hant</a>
  

  
    <a href="/network-tips-hant">hant</a>
  

  
    <a href="/maven-hant">hant</a>
  

  
    <a href="/gem-hant">hant</a>
  

  
    <a href="/data-hant">hant</a>
  

  
    <a href="/commands-hant">hant</a>
  

  
    <a href="/command-control-hant">hant</a>
  

  
    <a href="/brew-list-hant">hant</a>
  

  
    <a href="/pip-list-fr">fr</a>
  

  
    <a href="/network-tips-fr">fr</a>
  

  
    <a href="/maven-fr">fr</a>
  

  
    <a href="/gem-fr">fr</a>
  

  
    <a href="/data-fr">fr</a>
  

  
    <a href="/commands-fr">fr</a>
  

  
    <a href="/command-control-fr">fr</a>
  

  
    <a href="/brew-list-fr">fr</a>
  

  
    <a href="/pip-list-es">es</a>
  

  
    <a href="/network-tips-es">es</a>
  

  
    <a href="/maven-es">es</a>
  

  
    <a href="/gem-es">es</a>
  

  
    <a href="/data-es">es</a>
  

  
    <a href="/commands-es">es</a>
  

  
    <a href="/command-control-es">es</a>
  

  
    <a href="/brew-list-es">es</a>
  

  
    <a href="/pip-list-en">en</a>
  

  
    <a href="/network-tips-en">en</a>
  

  
    <a href="/maven-en">en</a>
  

  
    <a href="/gem-en">en</a>
  

  
    <a href="/data-en">en</a>
  

  
    <a href="/commands-en">en</a>
  

  
    <a href="/command-control-en">en</a>
  

  
    <a href="/brew-list-en">en</a>
  

  
    <a href="/pip-list-de">de</a>
  

  
    <a href="/network-tips-de">de</a>
  

  
    <a href="/maven-de">de</a>
  

  
    <a href="/gem-de">de</a>
  

  
    <a href="/data-de">de</a>
  

  
    <a href="/commands-de">de</a>
  

  
    <a href="/command-control-de">de</a>
  

  
    <a href="/brew-list-de">de</a>
  

  
    <a href="/pip-list-ar">ar</a>
  

  
    <a href="/network-tips-ar">ar</a>
  

  
    <a href="/maven-ar">ar</a>
  

  
    <a href="/gem-ar">ar</a>
  

  
    <a href="/data-ar">ar</a>
  

  
    <a href="/commands-ar">ar</a>
  

  
    <a href="/command-control-ar">ar</a>
  

  
    <a href="/brew-list-ar">ar</a>
  

  
    <a href="/hetzner-zh">zh</a>
  

  
    <a href="/daily-life-zh">zh</a>
  

  
    <a href="/ai-thoughts-zh">zh</a>
  

  
    <a href="/hetzner-ja">ja</a>
  

  
    <a href="/daily-life-ja">ja</a>
  

  
    <a href="/ai-thoughts-ja">ja</a>
  

  
    <a href="/ai-thinking-ja">ja</a>
  

  
    <a href="/hetzner-hi">hi</a>
  

  
    <a href="/daily-life-hi">hi</a>
  

  
    <a href="/ai-thoughts-hi">hi</a>
  

  
    <a href="/hetzner-hant">hant</a>
  

  
    <a href="/daily-life-hant">hant</a>
  

  
    <a href="/ai-thoughts-hant">hant</a>
  

  
    <a href="/ai-thinking-hant">hant</a>
  

  
    <a href="/hetzner-fr">fr</a>
  

  
    <a href="/daily-life-fr">fr</a>
  

  
    <a href="/ai-thoughts-fr">fr</a>
  

  
    <a href="/ai-thinking-fr">fr</a>
  

  
    <a href="/hetzner-es">es</a>
  

  
    <a href="/daily-life-es">es</a>
  

  
    <a href="/ai-thoughts-es">es</a>
  

  
    <a href="/hetzner-en">en</a>
  

  
    <a href="/daily-life-en">en</a>
  

  
    <a href="/ai-thoughts-en">en</a>
  

  
    <a href="/hetzner-de">de</a>
  

  
    <a href="/daily-life-de">de</a>
  

  
    <a href="/ai-thoughts-de">de</a>
  

  
    <a href="/hetzner-ar">ar</a>
  

  
    <a href="/daily-life-ar">ar</a>
  

  
    <a href="/ai-thoughts-ar">ar</a>
  

  
    <a href="/ai-thinking-ar">ar</a>
  

  
    <a href="/zsh-profile-zh">zh</a>
  

  
    <a href="/shared-objects-zh">zh</a>
  

  
    <a href="/kids-zh">zh</a>
  

  
    <a href="/finetune-zh">zh</a>
  

  
    <a href="/cloud-providers-zh">zh</a>
  

  
    <a href="/api-wrappers-zh">zh</a>
  

  
    <a href="/ai-tips-zh">zh</a>
  

  
    <a href="/zsh-profile-ja">ja</a>
  

  
    <a href="/shared-objects-ja">ja</a>
  

  
    <a href="/kids-ja">ja</a>
  

  
    <a href="/finetune-ja">ja</a>
  

  
    <a href="/cloud-providers-ja">ja</a>
  

  
    <a href="/api-wrappers-ja">ja</a>
  

  
    <a href="/ai-tips-ja">ja</a>
  

  
    <a href="/zsh-profile-hi">hi</a>
  

  
    <a href="/shared-objects-hi">hi</a>
  

  
    <a href="/kids-hi">hi</a>
  

  
    <a href="/finetune-hi">hi</a>
  

  
    <a href="/cloud-providers-hi">hi</a>
  

  
    <a href="/api-wrappers-hi">hi</a>
  

  
    <a href="/ai-tips-hi">hi</a>
  

  
    <a href="/zsh-profile-hant">hant</a>
  

  
    <a href="/shared-objects-hant">hant</a>
  

  
    <a href="/kids-hant">hant</a>
  

  
    <a href="/finetune-hant">hant</a>
  

  
    <a href="/cloud-providers-hant">hant</a>
  

  
    <a href="/api-wrappers-hant">hant</a>
  

  
    <a href="/ai-tips-hant">hant</a>
  

  
    <a href="/zsh-profile-fr">fr</a>
  

  
    <a href="/shared-objects-fr">fr</a>
  

  
    <a href="/kids-fr">fr</a>
  

  
    <a href="/finetune-fr">fr</a>
  

  
    <a href="/cloud-providers-fr">fr</a>
  

  
    <a href="/api-wrappers-fr">fr</a>
  

  
    <a href="/ai-tips-fr">fr</a>
  

  
    <a href="/zsh-profile-es">es</a>
  

  
    <a href="/shared-objects-es">es</a>
  

  
    <a href="/kids-es">es</a>
  

  
    <a href="/finetune-es">es</a>
  

  
    <a href="/cloud-providers-es">es</a>
  

  
    <a href="/api-wrappers-es">es</a>
  

  
    <a href="/ai-tips-es">es</a>
  

  
    <a href="/zsh-profile-en">en</a>
  

  
    <a href="/shared-objects-en">en</a>
  

  
    <a href="/kids-en">en</a>
  

  
    <a href="/finetune-en">en</a>
  

  
    <a href="/cloud-providers-en">en</a>
  

  
    <a href="/api-wrappers-en">en</a>
  

  
    <a href="/ai-tips-en">en</a>
  

  
    <a href="/zsh-profile-de">de</a>
  

  
    <a href="/shared-objects-de">de</a>
  

  
    <a href="/kids-de">de</a>
  

  
    <a href="/finetune-de">de</a>
  

  
    <a href="/cloud-providers-de">de</a>
  

  
    <a href="/api-wrappers-de">de</a>
  

  
    <a href="/ai-tips-de">de</a>
  

  
    <a href="/zsh-profile-ar">ar</a>
  

  
    <a href="/shared-objects-ar">ar</a>
  

  
    <a href="/kids-ar">ar</a>
  

  
    <a href="/finetune-ar">ar</a>
  

  
    <a href="/cloud-providers-ar">ar</a>
  

  
    <a href="/api-wrappers-ar">ar</a>
  

  
    <a href="/ai-tips-ar">ar</a>
  

  
    <a href="/lightning-ethernet-zh">zh</a>
  

  
    <a href="/lightning-ethernet-ja">ja</a>
  

  
    <a href="/lightning-ethernet-hi">hi</a>
  

  
    <a href="/lightning-ethernet-hant">hant</a>
  

  
    <a href="/lightning-ethernet-fr">fr</a>
  

  
    <a href="/lightning-ethernet-es">es</a>
  

  
    <a href="/lightning-ethernet-en">en</a>
  

  
    <a href="/lightning-ethernet-de">de</a>
  

  
    <a href="/lightning-ethernet-ar">ar</a>
  

  
    <a href="/wifi-zh">zh</a>
  

  
    <a href="/mesh-router-zh">zh</a>
  

  
    <a href="/wifi-ja">ja</a>
  

  
    <a href="/mesh-router-ja">ja</a>
  

  
    <a href="/wifi-hi">hi</a>
  

  
    <a href="/mesh-router-hi">hi</a>
  

  
    <a href="/wifi-hant">hant</a>
  

  
    <a href="/mesh-router-hant">hant</a>
  

  
    <a href="/wifi-fr">fr</a>
  

  
    <a href="/mesh-router-fr">fr</a>
  

  
    <a href="/wifi-es">es</a>
  

  
    <a href="/mesh-router-es">es</a>
  

  
    <a href="/wifi-en">en</a>
  

  
    <a href="/mesh-router-en">en</a>
  

  
    <a href="/wifi-de">de</a>
  

  
    <a href="/mesh-router-de">de</a>
  

  
    <a href="/wifi-ar">ar</a>
  

  
    <a href="/mesh-router-ar">ar</a>
  

  
    <a href="/startup-items-zh">zh</a>
  

  
    <a href="/ollama-zh">zh</a>
  

  
    <a href="/mmlu-zh">zh</a>
  

  
    <a href="/llama-cpp-zh">zh</a>
  

  
    <a href="/lightsail-zh">zh</a>
  

  
    <a href="/deepseek-use-zh">zh</a>
  

  
    <a href="/startup-items-ja">ja</a>
  

  
    <a href="/ollama-ja">ja</a>
  

  
    <a href="/mmlu-ja">ja</a>
  

  
    <a href="/llama-cpp-ja">ja</a>
  

  
    <a href="/lightsail-ja">ja</a>
  

  
    <a href="/deepseek-use-ja">ja</a>
  

  
    <a href="/startup-items-hi">hi</a>
  

  
    <a href="/ollama-hi">hi</a>
  

  
    <a href="/mmlu-hi">hi</a>
  

  
    <a href="/llama-cpp-hi">hi</a>
  

  
    <a href="/lightsail-hi">hi</a>
  

  
    <a href="/deepseek-use-hi">hi</a>
  

  
    <a href="/startup-items-hant">hant</a>
  

  
    <a href="/ollama-hant">hant</a>
  

  
    <a href="/mmlu-hant">hant</a>
  

  
    <a href="/llama-cpp-hant">hant</a>
  

  
    <a href="/lightsail-hant">hant</a>
  

  
    <a href="/deepseek-use-hant">hant</a>
  

  
    <a href="/startup-items-fr">fr</a>
  

  
    <a href="/ollama-fr">fr</a>
  

  
    <a href="/mmlu-fr">fr</a>
  

  
    <a href="/llama-cpp-fr">fr</a>
  

  
    <a href="/lightsail-fr">fr</a>
  

  
    <a href="/deepseek-use-fr">fr</a>
  

  
    <a href="/startup-items-es">es</a>
  

  
    <a href="/ollama-es">es</a>
  

  
    <a href="/mmlu-es">es</a>
  

  
    <a href="/llama-cpp-es">es</a>
  

  
    <a href="/lightsail-es">es</a>
  

  
    <a href="/deepseek-use-es">es</a>
  

  
    <a href="/startup-items-en">en</a>
  

  
    <a href="/ollama-en">en</a>
  

  
    <a href="/mmlu-en">en</a>
  

  
    <a href="/llama-cpp-en">en</a>
  

  
    <a href="/lightsail-en">en</a>
  

  
    <a href="/deepseek-use-en">en</a>
  

  
    <a href="/startup-items-de">de</a>
  

  
    <a href="/ollama-de">de</a>
  

  
    <a href="/mmlu-de">de</a>
  

  
    <a href="/llama-cpp-de">de</a>
  

  
    <a href="/lightsail-de">de</a>
  

  
    <a href="/deepseek-use-de">de</a>
  

  
    <a href="/startup-items-ar">ar</a>
  

  
    <a href="/ollama-ar">ar</a>
  

  
    <a href="/mmlu-ar">ar</a>
  

  
    <a href="/llama-cpp-ar">ar</a>
  

  
    <a href="/lightsail-ar">ar</a>
  

  
    <a href="/deepseek-use-ar">ar</a>
  

  
    <a href="/squid-dante-zh">zh</a>
  

  
    <a href="/fc-oss-zh">zh</a>
  

  
    <a href="/disk-space-zh">zh</a>
  

  
    <a href="/deepseek-v3-conv-zh">zh</a>
  

  
    <a href="/squid-dante-ja">ja</a>
  

  
    <a href="/fc-oss-ja">ja</a>
  

  
    <a href="/disk-space-ja">ja</a>
  

  
    <a href="/deepseek-v3-conv-ja">ja</a>
  

  
    <a href="/squid-dante-hi">hi</a>
  

  
    <a href="/fc-oss-hi">hi</a>
  

  
    <a href="/disk-space-hi">hi</a>
  

  
    <a href="/deepseek-v3-conv-hi">hi</a>
  

  
    <a href="/squid-dante-hant">hant</a>
  

  
    <a href="/fc-oss-hant">hant</a>
  

  
    <a href="/disk-space-hant">hant</a>
  

  
    <a href="/deepseek-v3-conv-hant">hant</a>
  

  
    <a href="/squid-dante-fr">fr</a>
  

  
    <a href="/fc-oss-fr">fr</a>
  

  
    <a href="/disk-space-fr">fr</a>
  

  
    <a href="/deepseek-v3-conv-fr">fr</a>
  

  
    <a href="/squid-dante-es">es</a>
  

  
    <a href="/fc-oss-es">es</a>
  

  
    <a href="/disk-space-es">es</a>
  

  
    <a href="/deepseek-v3-conv-es">es</a>
  

  
    <a href="/squid-dante-en">en</a>
  

  
    <a href="/fc-oss-en">en</a>
  

  
    <a href="/disk-space-en">en</a>
  

  
    <a href="/deepseek-v3-conv-en">en</a>
  

  
    <a href="/squid-dante-de">de</a>
  

  
    <a href="/fc-oss-de">de</a>
  

  
    <a href="/disk-space-de">de</a>
  

  
    <a href="/deepseek-v3-conv-de">de</a>
  

  
    <a href="/squid-dante-ar">ar</a>
  

  
    <a href="/fc-oss-ar">ar</a>
  

  
    <a href="/disk-space-ar">ar</a>
  

  
    <a href="/deepseek-v3-conv-ar">ar</a>
  

  
    <a href="/hot-water-zh">zh</a>
  

  
    <a href="/cable-tester-zh">zh</a>
  

  
    <a href="/hot-water-ja">ja</a>
  

  
    <a href="/cable-tester-ja">ja</a>
  

  
    <a href="/hot-water-hi">hi</a>
  

  
    <a href="/cable-tester-hi">hi</a>
  

  
    <a href="/hot-water-hant">hant</a>
  

  
    <a href="/cable-tester-hant">hant</a>
  

  
    <a href="/hot-water-fr">fr</a>
  

  
    <a href="/cable-tester-fr">fr</a>
  

  
    <a href="/hot-water-es">es</a>
  

  
    <a href="/cable-tester-es">es</a>
  

  
    <a href="/hot-water-en">en</a>
  

  
    <a href="/cable-tester-en">en</a>
  

  
    <a href="/hot-water-de">de</a>
  

  
    <a href="/cable-tester-de">de</a>
  

  
    <a href="/hot-water-ar">ar</a>
  

  
    <a href="/cable-tester-ar">ar</a>
  

  
    <a href="/x-zh">zh</a>
  

  
    <a href="/x-ja">ja</a>
  

  
    <a href="/x-hi">hi</a>
  

  
    <a href="/x-hant">hant</a>
  

  
    <a href="/x-fr">fr</a>
  

  
    <a href="/x-es">es</a>
  

  
    <a href="/x-en">en</a>
  

  
    <a href="/x-de">de</a>
  

  
    <a href="/x-ar">ar</a>
  

  
    <a href="/wattage-zh">zh</a>
  

  
    <a href="/lamp-zh">zh</a>
  

  
    <a href="/github-desktop-font-zh">zh</a>
  

  
    <a href="/calorie-zh">zh</a>
  

  
    <a href="/wattage-ja">ja</a>
  

  
    <a href="/lamp-ja">ja</a>
  

  
    <a href="/github-desktop-font-ja">ja</a>
  

  
    <a href="/calorie-ja">ja</a>
  

  
    <a href="/wattage-hi">hi</a>
  

  
    <a href="/lamp-hi">hi</a>
  

  
    <a href="/github-desktop-font-hi">hi</a>
  

  
    <a href="/calorie-hi">hi</a>
  

  
    <a href="/wattage-hant">hant</a>
  

  
    <a href="/lamp-hant">hant</a>
  

  
    <a href="/github-desktop-font-hant">hant</a>
  

  
    <a href="/calorie-hant">hant</a>
  

  
    <a href="/wattage-fr">fr</a>
  

  
    <a href="/lamp-fr">fr</a>
  

  
    <a href="/github-desktop-font-fr">fr</a>
  

  
    <a href="/calorie-fr">fr</a>
  

  
    <a href="/wattage-es">es</a>
  

  
    <a href="/lamp-es">es</a>
  

  
    <a href="/github-desktop-font-es">es</a>
  

  
    <a href="/calorie-es">es</a>
  

  
    <a href="/wattage-en">en</a>
  

  
    <a href="/lamp-en">en</a>
  

  
    <a href="/github-desktop-font-en">en</a>
  

  
    <a href="/calorie-en">en</a>
  

  
    <a href="/wattage-de">de</a>
  

  
    <a href="/lamp-de">de</a>
  

  
    <a href="/github-desktop-font-de">de</a>
  

  
    <a href="/calorie-de">de</a>
  

  
    <a href="/wattage-ar">ar</a>
  

  
    <a href="/lamp-ar">ar</a>
  

  
    <a href="/github-desktop-font-ar">ar</a>
  

  
    <a href="/calorie-ar">ar</a>
  

  
    <a href="/function-compute-zh">zh</a>
  

  
    <a href="/function-compute-ja">ja</a>
  

  
    <a href="/function-compute-hi">hi</a>
  

  
    <a href="/function-compute-hant">hant</a>
  

  
    <a href="/function-compute-fr">fr</a>
  

  
    <a href="/function-compute-es">es</a>
  

  
    <a href="/function-compute-en">en</a>
  

  
    <a href="/function-compute-de">de</a>
  

  
    <a href="/function-compute-ar">ar</a>
  

  
    <a href="/structure-zh">zh</a>
  

  
    <a href="/speech-to-text-zh">zh</a>
  

  
    <a href="/scale-pdf-zh">zh</a>
  

  
    <a href="/deep-think-zh">zh</a>
  

  
    <a href="/bedroom-zh">zh</a>
  

  
    <a href="/structure-ja">ja</a>
  

  
    <a href="/speech-to-text-ja">ja</a>
  

  
    <a href="/scale-pdf-ja">ja</a>
  

  
    <a href="/deep-think-ja">ja</a>
  

  
    <a href="/bedroom-ja">ja</a>
  

  
    <a href="/structure-hi">hi</a>
  

  
    <a href="/speech-to-text-hi">hi</a>
  

  
    <a href="/scale-pdf-hi">hi</a>
  

  
    <a href="/deep-think-hi">hi</a>
  

  
    <a href="/bedroom-hi">hi</a>
  

  
    <a href="/structure-hant">hant</a>
  

  
    <a href="/speech-to-text-hant">hant</a>
  

  
    <a href="/scale-pdf-hant">hant</a>
  

  
    <a href="/deep-think-hant">hant</a>
  

  
    <a href="/bedroom-hant">hant</a>
  

  
    <a href="/structure-fr">fr</a>
  

  
    <a href="/speech-to-text-fr">fr</a>
  

  
    <a href="/scale-pdf-fr">fr</a>
  

  
    <a href="/deep-think-fr">fr</a>
  

  
    <a href="/bedroom-fr">fr</a>
  

  
    <a href="/structure-es">es</a>
  

  
    <a href="/speech-to-text-es">es</a>
  

  
    <a href="/scale-pdf-es">es</a>
  

  
    <a href="/deep-think-es">es</a>
  

  
    <a href="/bedroom-es">es</a>
  

  
    <a href="/structure-en">en</a>
  

  
    <a href="/speech-to-text-en">en</a>
  

  
    <a href="/scale-pdf-en">en</a>
  

  
    <a href="/deep-think-en">en</a>
  

  
    <a href="/bedroom-en">en</a>
  

  
    <a href="/structure-de">de</a>
  

  
    <a href="/speech-to-text-de">de</a>
  

  
    <a href="/scale-pdf-de">de</a>
  

  
    <a href="/deep-think-de">de</a>
  

  
    <a href="/bedroom-de">de</a>
  

  
    <a href="/structure-ar">ar</a>
  

  
    <a href="/speech-to-text-ar">ar</a>
  

  
    <a href="/scale-pdf-ar">ar</a>
  

  
    <a href="/deep-think-ar">ar</a>
  

  
    <a href="/bedroom-ar">ar</a>
  

  
    <a href="/projector-zh">zh</a>
  

  
    <a href="/investing-zh">zh</a>
  

  
    <a href="/conversation-style-zh">zh</a>
  

  
    <a href="/ai-papers-zh">zh</a>
  

  
    <a href="/projector-ja">ja</a>
  

  
    <a href="/investing-ja">ja</a>
  

  
    <a href="/conversation-style-ja">ja</a>
  

  
    <a href="/ai-papers-ja">ja</a>
  

  
    <a href="/projector-hi">hi</a>
  

  
    <a href="/investing-hi">hi</a>
  

  
    <a href="/conversation-style-hi">hi</a>
  

  
    <a href="/ai-papers-hi">hi</a>
  

  
    <a href="/projector-hant">hant</a>
  

  
    <a href="/investing-hant">hant</a>
  

  
    <a href="/conversation-style-hant">hant</a>
  

  
    <a href="/ai-papers-hant">hant</a>
  

  
    <a href="/projector-fr">fr</a>
  

  
    <a href="/investing-fr">fr</a>
  

  
    <a href="/conversation-style-fr">fr</a>
  

  
    <a href="/ai-papers-fr">fr</a>
  

  
    <a href="/projector-es">es</a>
  

  
    <a href="/investing-es">es</a>
  

  
    <a href="/conversation-style-es">es</a>
  

  
    <a href="/ai-papers-es">es</a>
  

  
    <a href="/projector-en">en</a>
  

  
    <a href="/investing-en">en</a>
  

  
    <a href="/conversation-style-en">en</a>
  

  
    <a href="/ai-papers-en">en</a>
  

  
    <a href="/projector-de">de</a>
  

  
    <a href="/investing-de">de</a>
  

  
    <a href="/conversation-style-de">de</a>
  

  
    <a href="/ai-papers-de">de</a>
  

  
    <a href="/projector-ar">ar</a>
  

  
    <a href="/investing-ar">ar</a>
  

  
    <a href="/conversation-style-ar">ar</a>
  

  
    <a href="/ai-papers-ar">ar</a>
  

  
    <a href="/model-training-zh">zh</a>
  

  
    <a href="/farming-zh">zh</a>
  

  
    <a href="/model-training-ja">ja</a>
  

  
    <a href="/farming-ja">ja</a>
  

  
    <a href="/model-training-hi">hi</a>
  

  
    <a href="/farming-hi">hi</a>
  

  
    <a href="/model-training-hant">hant</a>
  

  
    <a href="/farming-hant">hant</a>
  

  
    <a href="/model-training-fr">fr</a>
  

  
    <a href="/farming-fr">fr</a>
  

  
    <a href="/model-training-es">es</a>
  

  
    <a href="/farming-es">es</a>
  

  
    <a href="/model-training-en">en</a>
  

  
    <a href="/farming-en">en</a>
  

  
    <a href="/model-training-de">de</a>
  

  
    <a href="/farming-de">de</a>
  

  
    <a href="/model-training-ar">ar</a>
  

  
    <a href="/farming-ar">ar</a>
  

  
    <a href="/ultra-paygo-zh">zh</a>
  

  
    <a href="/tailpipe-zh">zh</a>
  

  
    <a href="/language-support-zh">zh</a>
  

  
    <a href="/google-maps-zh">zh</a>
  

  
    <a href="/context-length-zh">zh</a>
  

  
    <a href="/ultra-paygo-ja">ja</a>
  

  
    <a href="/tailpipe-ja">ja</a>
  

  
    <a href="/language-support-ja">ja</a>
  

  
    <a href="/google-maps-ja">ja</a>
  

  
    <a href="/context-length-ja">ja</a>
  

  
    <a href="/ultra-paygo-hi">hi</a>
  

  
    <a href="/tailpipe-hi">hi</a>
  

  
    <a href="/language-support-hi">hi</a>
  

  
    <a href="/google-maps-hi">hi</a>
  

  
    <a href="/context-length-hi">hi</a>
  

  
    <a href="/ultra-paygo-hant">hant</a>
  

  
    <a href="/tailpipe-hant">hant</a>
  

  
    <a href="/language-support-hant">hant</a>
  

  
    <a href="/google-maps-hant">hant</a>
  

  
    <a href="/context-length-hant">hant</a>
  

  
    <a href="/ultra-paygo-fr">fr</a>
  

  
    <a href="/tailpipe-fr">fr</a>
  

  
    <a href="/language-support-fr">fr</a>
  

  
    <a href="/google-maps-fr">fr</a>
  

  
    <a href="/context-length-fr">fr</a>
  

  
    <a href="/ultra-paygo-es">es</a>
  

  
    <a href="/tailpipe-es">es</a>
  

  
    <a href="/language-support-es">es</a>
  

  
    <a href="/google-maps-es">es</a>
  

  
    <a href="/context-length-es">es</a>
  

  
    <a href="/ultra-paygo-en">en</a>
  

  
    <a href="/tailpipe-en">en</a>
  

  
    <a href="/language-support-en">en</a>
  

  
    <a href="/google-maps-en">en</a>
  

  
    <a href="/context-length-en">en</a>
  

  
    <a href="/ultra-paygo-de">de</a>
  

  
    <a href="/tailpipe-de">de</a>
  

  
    <a href="/language-support-de">de</a>
  

  
    <a href="/google-maps-de">de</a>
  

  
    <a href="/context-length-de">de</a>
  

  
    <a href="/ultra-paygo-ar">ar</a>
  

  
    <a href="/tailpipe-ar">ar</a>
  

  
    <a href="/language-support-ar">ar</a>
  

  
    <a href="/google-maps-ar">ar</a>
  

  
    <a href="/context-length-ar">ar</a>
  

  
    <a href="/status-page-zh">zh</a>
  

  
    <a href="/search-zh">zh</a>
  

  
    <a href="/reserved-ip-zh">zh</a>
  

  
    <a href="/error-zh">zh</a>
  

  
    <a href="/status-page-ja">ja</a>
  

  
    <a href="/search-ja">ja</a>
  

  
    <a href="/reserved-ip-ja">ja</a>
  

  
    <a href="/error-ja">ja</a>
  

  
    <a href="/status-page-hi">hi</a>
  

  
    <a href="/search-hi">hi</a>
  

  
    <a href="/reserved-ip-hi">hi</a>
  

  
    <a href="/error-hi">hi</a>
  

  
    <a href="/status-page-hant">hant</a>
  

  
    <a href="/search-hant">hant</a>
  

  
    <a href="/reserved-ip-hant">hant</a>
  

  
    <a href="/error-hant">hant</a>
  

  
    <a href="/status-page-fr">fr</a>
  

  
    <a href="/search-fr">fr</a>
  

  
    <a href="/reserved-ip-fr">fr</a>
  

  
    <a href="/error-fr">fr</a>
  

  
    <a href="/status-page-es">es</a>
  

  
    <a href="/search-es">es</a>
  

  
    <a href="/reserved-ip-es">es</a>
  

  
    <a href="/error-es">es</a>
  

  
    <a href="/status-page-en">en</a>
  

  
    <a href="/search-en">en</a>
  

  
    <a href="/reserved-ip-en">en</a>
  

  
    <a href="/error-en">en</a>
  

  
    <a href="/status-page-de">de</a>
  

  
    <a href="/search-de">de</a>
  

  
    <a href="/reserved-ip-de">de</a>
  

  
    <a href="/error-de">de</a>
  

  
    <a href="/status-page-ar">ar</a>
  

  
    <a href="/search-ar">ar</a>
  

  
    <a href="/reserved-ip-ar">ar</a>
  

  
    <a href="/error-ar">ar</a>
  

  
    <a href="/house-finances-zh">zh</a>
  

  
    <a href="/gitmessageai-zh">zh</a>
  

  
    <a href="/house-finances-ja">ja</a>
  

  
    <a href="/gitmessageai-ja">ja</a>
  

  
    <a href="/house-finances-hi">hi</a>
  

  
    <a href="/gitmessageai-hi">hi</a>
  

  
    <a href="/house-finances-hant">hant</a>
  

  
    <a href="/gitmessageai-hant">hant</a>
  

  
    <a href="/house-finances-fr">fr</a>
  

  
    <a href="/gitmessageai-fr">fr</a>
  

  
    <a href="/house-finances-es">es</a>
  

  
    <a href="/gitmessageai-es">es</a>
  

  
    <a href="/house-finances-en">en</a>
  

  
    <a href="/gitmessageai-en">en</a>
  

  
    <a href="/house-finances-de">de</a>
  

  
    <a href="/gitmessageai-de">de</a>
  

  
    <a href="/house-finances-ar">ar</a>
  

  
    <a href="/gitmessageai-ar">ar</a>
  

  
    <a href="/subscribe-zh">zh</a>
  

  
    <a href="/resume-zh">zh</a>
  

  
    <a href="/portfolio-zh"></a>
  

  
    <a href="/papers-zh">zh</a>
  

  
    <a href="/original-zh">zh</a>
  

  
    <a href="/notes-zh">zh</a>
  

  
    <a href="/github-actions-zh">zh</a>
  

  
    <a href="/donate-zh">zh</a>
  

  
    <a href="/disclaimer-zh">zh</a>
  

  
    <a href="/contact-zh">zh</a>
  

  
    <a href="/subscribe-ja">ja</a>
  

  
    <a href="/resume-ja">ja</a>
  

  
    <a href="/portfolio-ja"></a>
  

  
    <a href="/papers-ja">ja</a>
  

  
    <a href="/original-ja">ja</a>
  

  
    <a href="/notes-ja">ja</a>
  

  
    <a href="/github-actions-ja">ja</a>
  

  
    <a href="/donate-ja">ja</a>
  

  
    <a href="/disclaimer-ja">ja</a>
  

  
    <a href="/contact-ja">ja</a>
  

  
    <a href="/subscribe-hi">hi</a>
  

  
    <a href="/resume-hi">hi</a>
  

  
    <a href="/portfolio-hi"></a>
  

  
    <a href="/papers-hi">hi</a>
  

  
    <a href="/original-hi">hi</a>
  

  
    <a href="/notes-hi">hi</a>
  

  
    <a href="/github-actions-hi">hi</a>
  

  
    <a href="/donate-hi">hi</a>
  

  
    <a href="/disclaimer-hi">hi</a>
  

  
    <a href="/contact-hi">hi</a>
  

  
    <a href="/subscribe-hant">hant</a>
  

  
    <a href="/resume-hant">hant</a>
  

  
    <a href="/portfolio-hant"></a>
  

  
    <a href="/papers-hant">hant</a>
  

  
    <a href="/original-hant">hant</a>
  

  
    <a href="/notes-hant">hant</a>
  

  
    <a href="/github-actions-hant">hant</a>
  

  
    <a href="/donate-hant">hant</a>
  

  
    <a href="/disclaimer-hant">hant</a>
  

  
    <a href="/contact-hant">hant</a>
  

  
    <a href="/subscribe-fr">fr</a>
  

  
    <a href="/resume-fr">fr</a>
  

  
    <a href="/portfolio-fr"></a>
  

  
    <a href="/papers-fr">fr</a>
  

  
    <a href="/original-fr">fr</a>
  

  
    <a href="/notes-fr">fr</a>
  

  
    <a href="/github-actions-fr">fr</a>
  

  
    <a href="/donate-fr">fr</a>
  

  
    <a href="/disclaimer-fr">fr</a>
  

  
    <a href="/contact-fr">fr</a>
  

  
    <a href="/subscribe-es">es</a>
  

  
    <a href="/resume-es">es</a>
  

  
    <a href="/portfolio-es"></a>
  

  
    <a href="/papers-es">es</a>
  

  
    <a href="/original-es">es</a>
  

  
    <a href="/notes-es">es</a>
  

  
    <a href="/github-actions-es">es</a>
  

  
    <a href="/donate-es">es</a>
  

  
    <a href="/disclaimer-es">es</a>
  

  
    <a href="/contact-es">es</a>
  

  
    <a href="/subscribe-en">en</a>
  

  
    <a href="/resume-en">en</a>
  

  
    <a href="/portfolio-en">en</a>
  

  
    <a href="/papers-en">en</a>
  

  
    <a href="/original-en">en</a>
  

  
    <a href="/notes-en">en</a>
  

  
    <a href="/github-actions-en">en</a>
  

  
    <a href="/donate-en">en</a>
  

  
    <a href="/disclaimer-en">en</a>
  

  
    <a href="/contact-en">en</a>
  

  
    <a href="/subscribe-de">de</a>
  

  
    <a href="/resume-de">de</a>
  

  
    <a href="/portfolio-de"></a>
  

  
    <a href="/papers-de">de</a>
  

  
    <a href="/original-de">de</a>
  

  
    <a href="/notes-de">de</a>
  

  
    <a href="/github-actions-de">de</a>
  

  
    <a href="/donate-de">de</a>
  

  
    <a href="/disclaimer-de">de</a>
  

  
    <a href="/contact-de">de</a>
  

  
    <a href="/subscribe-ar">ar</a>
  

  
    <a href="/resume-ar">ar</a>
  

  
    <a href="/portfolio-ar"></a>
  

  
    <a href="/papers-ar">ar</a>
  

  
    <a href="/original-ar">ar</a>
  

  
    <a href="/notes-ar">ar</a>
  

  
    <a href="/github-actions-ar">ar</a>
  

  
    <a href="/donate-ar">ar</a>
  

  
    <a href="/disclaimer-ar">ar</a>
  

  
    <a href="/contact-ar">ar</a>
  

  
    <a href="/ragflow-zh">zh</a>
  

  
    <a href="/mute-zh">zh</a>
  

  
    <a href="/lese-me-zh">zh</a>
  

  
    <a href="/greptime-portal-zh">zh</a>
  

  
    <a href="/gpts-from-conversation-zh">zh</a>
  

  
    <a href="/fruit-damage-zh">zh</a>
  

  
    <a href="/app-choices-zh">zh</a>
  

  
    <a href="/ragflow-ja">ja</a>
  

  
    <a href="/mute-ja">ja</a>
  

  
    <a href="/lese-me-ja">ja</a>
  

  
    <a href="/greptime-portal-ja">ja</a>
  

  
    <a href="/gpts-from-conversation-ja">ja</a>
  

  
    <a href="/fruit-damage-ja">ja</a>
  

  
    <a href="/app-choices-ja">ja</a>
  

  
    <a href="/ragflow-hi">hi</a>
  

  
    <a href="/mute-hi">hi</a>
  

  
    <a href="/lese-me-hi">hi</a>
  

  
    <a href="/greptime-portal-hi">hi</a>
  

  
    <a href="/gpts-from-conversation-hi">hi</a>
  

  
    <a href="/fruit-damage-hi">hi</a>
  

  
    <a href="/app-choices-hi">hi</a>
  

  
    <a href="/ragflow-hant">hant</a>
  

  
    <a href="/mute-hant">hant</a>
  

  
    <a href="/lese-me-hant">hant</a>
  

  
    <a href="/greptime-portal-hant">hant</a>
  

  
    <a href="/gpts-from-conversation-hant">hant</a>
  

  
    <a href="/fruit-damage-hant">hant</a>
  

  
    <a href="/app-choices-hant">hant</a>
  

  
    <a href="/ragflow-fr">fr</a>
  

  
    <a href="/mute-fr">fr</a>
  

  
    <a href="/lese-me-fr">fr</a>
  

  
    <a href="/greptime-portal-fr">fr</a>
  

  
    <a href="/gpts-from-conversation-fr">fr</a>
  

  
    <a href="/fruit-damage-fr">fr</a>
  

  
    <a href="/app-choices-fr">fr</a>
  

  
    <a href="/ragflow-es">es</a>
  

  
    <a href="/mute-es">es</a>
  

  
    <a href="/lese-me-es">es</a>
  

  
    <a href="/greptime-portal-es">es</a>
  

  
    <a href="/gpts-from-conversation-es">es</a>
  

  
    <a href="/fruit-damage-es">es</a>
  

  
    <a href="/app-choices-es">es</a>
  

  
    <a href="/ragflow-en">en</a>
  

  
    <a href="/mute-en">en</a>
  

  
    <a href="/lese-me-en">en</a>
  

  
    <a href="/greptime-portal-en">en</a>
  

  
    <a href="/gpts-from-conversation-en">en</a>
  

  
    <a href="/fruit-damage-en">en</a>
  

  
    <a href="/app-choices-en">en</a>
  

  
    <a href="/ragflow-de">de</a>
  

  
    <a href="/mute-de">de</a>
  

  
    <a href="/lese-me-de">de</a>
  

  
    <a href="/greptime-portal-de">de</a>
  

  
    <a href="/gpts-from-conversation-de">de</a>
  

  
    <a href="/fruit-damage-de">de</a>
  

  
    <a href="/app-choices-de">de</a>
  

  
    <a href="/ragflow-ar">ar</a>
  

  
    <a href="/mute-ar">ar</a>
  

  
    <a href="/lese-me-ar">ar</a>
  

  
    <a href="/greptime-portal-ar">ar</a>
  

  
    <a href="/gpts-from-conversation-ar">ar</a>
  

  
    <a href="/fruit-damage-ar">ar</a>
  

  
    <a href="/app-choices-ar">ar</a>
  

  
    <a href="/workflow-agent-zh">zh</a>
  

  
    <a href="/verb-zh">zh</a>
  

  
    <a href="/turbolist3r-zh">zh</a>
  

  
    <a href="/tsp-zh">zh</a>
  

  
    <a href="/rrc-zh">zh</a>
  

  
    <a href="/prompt-context-zh">zh</a>
  

  
    <a href="/o1-zh">zh</a>
  

  
    <a href="/limit-edge-zh">zh</a>
  

  
    <a href="/he-she-zh">zh</a>
  

  
    <a href="/greptimedb-zh">zh</a>
  

  
    <a href="/gpts-zh">zh</a>
  

  
    <a href="/dirb-zh">zh</a>
  

  
    <a href="/cofounder-zh">zh</a>
  

  
    <a href="/ai-workflow-zh">zh</a>
  

  
    <a href="/ai-search-zh">zh</a>
  

  
    <a href="/ai-code-zh">zh</a>
  

  
    <a href="/ai-cheat-zh">zh</a>
  

  
    <a href="/advanced-markdown-zh">zh</a>
  

  
    <a href="/workflow-agent-ja">ja</a>
  

  
    <a href="/verb-ja">ja</a>
  

  
    <a href="/turbolist3r-ja">ja</a>
  

  
    <a href="/tsp-ja">ja</a>
  

  
    <a href="/rrc-ja">ja</a>
  

  
    <a href="/prompt-context-ja">ja</a>
  

  
    <a href="/o1-ja">ja</a>
  

  
    <a href="/limit-edge-ja">ja</a>
  

  
    <a href="/he-she-ja">ja</a>
  

  
    <a href="/greptimedb-ja">ja</a>
  

  
    <a href="/gpts-ja">ja</a>
  

  
    <a href="/dirb-ja">ja</a>
  

  
    <a href="/cofounder-ja">ja</a>
  

  
    <a href="/ai-workflow-ja">ja</a>
  

  
    <a href="/ai-search-ja">ja</a>
  

  
    <a href="/ai-code-ja">ja</a>
  

  
    <a href="/ai-cheat-ja">ja</a>
  

  
    <a href="/advanced-markdown-ja">ja</a>
  

  
    <a href="/workflow-agent-hi">hi</a>
  

  
    <a href="/verb-hi">hi</a>
  

  
    <a href="/turbolist3r-hi">hi</a>
  

  
    <a href="/tsp-hi">hi</a>
  

  
    <a href="/rrc-hi">hi</a>
  

  
    <a href="/prompt-context-hi">hi</a>
  

  
    <a href="/o1-hi">hi</a>
  

  
    <a href="/limit-edge-hi">hi</a>
  

  
    <a href="/he-she-hi">hi</a>
  

  
    <a href="/greptimedb-hi">hi</a>
  

  
    <a href="/gpts-hi">hi</a>
  

  
    <a href="/dirb-hi">hi</a>
  

  
    <a href="/cofounder-hi">hi</a>
  

  
    <a href="/ai-workflow-hi">hi</a>
  

  
    <a href="/ai-search-hi">hi</a>
  

  
    <a href="/ai-code-hi">hi</a>
  

  
    <a href="/ai-cheat-hi">hi</a>
  

  
    <a href="/advanced-markdown-hi">hi</a>
  

  
    <a href="/workflow-agent-hant">hant</a>
  

  
    <a href="/verb-hant">hant</a>
  

  
    <a href="/turbolist3r-hant">hant</a>
  

  
    <a href="/tsp-hant">hant</a>
  

  
    <a href="/rrc-hant">hant</a>
  

  
    <a href="/prompt-context-hant">hant</a>
  

  
    <a href="/o1-hant">hant</a>
  

  
    <a href="/limit-edge-hant">hant</a>
  

  
    <a href="/he-she-hant">hant</a>
  

  
    <a href="/greptimedb-hant">hant</a>
  

  
    <a href="/gpts-hant">hant</a>
  

  
    <a href="/dirb-hant">hant</a>
  

  
    <a href="/cofounder-hant">hant</a>
  

  
    <a href="/ai-workflow-hant">hant</a>
  

  
    <a href="/ai-search-hant">hant</a>
  

  
    <a href="/ai-code-hant">hant</a>
  

  
    <a href="/ai-cheat-hant">hant</a>
  

  
    <a href="/advanced-markdown-hant">hant</a>
  

  
    <a href="/workflow-agent-fr">fr</a>
  

  
    <a href="/verb-fr">fr</a>
  

  
    <a href="/turbolist3r-fr">fr</a>
  

  
    <a href="/tsp-fr">fr</a>
  

  
    <a href="/rrc-fr">fr</a>
  

  
    <a href="/prompt-context-fr">fr</a>
  

  
    <a href="/o1-fr">fr</a>
  

  
    <a href="/limit-edge-fr">fr</a>
  

  
    <a href="/he-she-fr">fr</a>
  

  
    <a href="/greptimedb-fr">fr</a>
  

  
    <a href="/gpts-fr">fr</a>
  

  
    <a href="/dirb-fr">fr</a>
  

  
    <a href="/cofounder-fr">fr</a>
  

  
    <a href="/ai-workflow-fr">fr</a>
  

  
    <a href="/ai-search-fr">fr</a>
  

  
    <a href="/ai-code-fr">fr</a>
  

  
    <a href="/ai-cheat-fr">fr</a>
  

  
    <a href="/advanced-markdown-fr">fr</a>
  

  
    <a href="/workflow-agent-es">es</a>
  

  
    <a href="/verb-es">es</a>
  

  
    <a href="/turbolist3r-es">es</a>
  

  
    <a href="/tsp-es">es</a>
  

  
    <a href="/rrc-es">es</a>
  

  
    <a href="/prompt-context-es">es</a>
  

  
    <a href="/o1-es">es</a>
  

  
    <a href="/limit-edge-es">es</a>
  

  
    <a href="/he-she-es">es</a>
  

  
    <a href="/greptimedb-es">es</a>
  

  
    <a href="/gpts-es">es</a>
  

  
    <a href="/dirb-es">es</a>
  

  
    <a href="/cofounder-es">es</a>
  

  
    <a href="/ai-workflow-es">es</a>
  

  
    <a href="/ai-search-es">es</a>
  

  
    <a href="/ai-code-es">es</a>
  

  
    <a href="/ai-cheat-es">es</a>
  

  
    <a href="/advanced-markdown-es">es</a>
  

  
    <a href="/workflow-agent-en">en</a>
  

  
    <a href="/verb-en">en</a>
  

  
    <a href="/turbolist3r-en">en</a>
  

  
    <a href="/tsp-en">en</a>
  

  
    <a href="/rrc-en">en</a>
  

  
    <a href="/prompt-context-en">en</a>
  

  
    <a href="/o1-en">en</a>
  

  
    <a href="/limit-edge-en">en</a>
  

  
    <a href="/he-she-en">en</a>
  

  
    <a href="/greptimedb-en">en</a>
  

  
    <a href="/gpts-en">en</a>
  

  
    <a href="/dirb-en">en</a>
  

  
    <a href="/cofounder-en">en</a>
  

  
    <a href="/ai-workflow-en">en</a>
  

  
    <a href="/ai-search-en">en</a>
  

  
    <a href="/ai-code-en">en</a>
  

  
    <a href="/ai-cheat-en">en</a>
  

  
    <a href="/advanced-markdown-en">en</a>
  

  
    <a href="/workflow-agent-de">de</a>
  

  
    <a href="/verb-de">de</a>
  

  
    <a href="/turbolist3r-de">de</a>
  

  
    <a href="/tsp-de">de</a>
  

  
    <a href="/rrc-de">de</a>
  

  
    <a href="/prompt-context-de">de</a>
  

  
    <a href="/o1-de">de</a>
  

  
    <a href="/limit-edge-de">de</a>
  

  
    <a href="/he-she-de">de</a>
  

  
    <a href="/greptimedb-de">de</a>
  

  
    <a href="/gpts-de">de</a>
  

  
    <a href="/dirb-de">de</a>
  

  
    <a href="/cofounder-de">de</a>
  

  
    <a href="/ai-workflow-de">de</a>
  

  
    <a href="/ai-search-de">de</a>
  

  
    <a href="/ai-code-de">de</a>
  

  
    <a href="/ai-cheat-de">de</a>
  

  
    <a href="/advanced-markdown-de">de</a>
  

  
    <a href="/workflow-agent-ar">ar</a>
  

  
    <a href="/verb-ar">ar</a>
  

  
    <a href="/turbolist3r-ar">ar</a>
  

  
    <a href="/tsp-ar">ar</a>
  

  
    <a href="/rrc-ar">ar</a>
  

  
    <a href="/prompt-context-ar">ar</a>
  

  
    <a href="/o1-ar">ar</a>
  

  
    <a href="/limit-edge-ar">ar</a>
  

  
    <a href="/he-she-ar">ar</a>
  

  
    <a href="/greptimedb-ar">ar</a>
  

  
    <a href="/gpts-ar">ar</a>
  

  
    <a href="/dirb-ar">ar</a>
  

  
    <a href="/cofounder-ar">ar</a>
  

  
    <a href="/ai-workflow-ar">ar</a>
  

  
    <a href="/ai-search-ar">ar</a>
  

  
    <a href="/ai-code-ar">ar</a>
  

  
    <a href="/ai-cheat-ar">ar</a>
  

  
    <a href="/advanced-markdown-ar">ar</a>
  

  
    <a href="/psd-zh">zh</a>
  

  
    <a href="/proxy-ban-zh">zh</a>
  

  
    <a href="/hacking-zh">zh</a>
  

  
    <a href="/dma-zh">zh</a>
  

  
    <a href="/barrier-zh">zh</a>
  

  
    <a href="/psd-ja">ja</a>
  

  
    <a href="/proxy-ban-ja">ja</a>
  

  
    <a href="/hacking-ja">ja</a>
  

  
    <a href="/dma-ja">ja</a>
  

  
    <a href="/barrier-ja">ja</a>
  

  
    <a href="/psd-hi">hi</a>
  

  
    <a href="/proxy-ban-hi">hi</a>
  

  
    <a href="/hacking-hi">hi</a>
  

  
    <a href="/dma-hi">hi</a>
  

  
    <a href="/barrier-hi">hi</a>
  

  
    <a href="/psd-hant">hant</a>
  

  
    <a href="/proxy-ban-hant">hant</a>
  

  
    <a href="/hacking-hant">hant</a>
  

  
    <a href="/dma-hant">hant</a>
  

  
    <a href="/barrier-hant">hant</a>
  

  
    <a href="/psd-fr">fr</a>
  

  
    <a href="/proxy-ban-fr">fr</a>
  

  
    <a href="/hacking-fr">fr</a>
  

  
    <a href="/dma-fr">fr</a>
  

  
    <a href="/barrier-fr">fr</a>
  

  
    <a href="/psd-es">es</a>
  

  
    <a href="/proxy-ban-es">es</a>
  

  
    <a href="/hacking-es">es</a>
  

  
    <a href="/dma-es">es</a>
  

  
    <a href="/barrier-es">es</a>
  

  
    <a href="/psd-en">en</a>
  

  
    <a href="/proxy-ban-en">en</a>
  

  
    <a href="/hacking-en">en</a>
  

  
    <a href="/dma-en">en</a>
  

  
    <a href="/barrier-en">en</a>
  

  
    <a href="/psd-de">de</a>
  

  
    <a href="/proxy-ban-de">de</a>
  

  
    <a href="/hacking-de">de</a>
  

  
    <a href="/dma-de">de</a>
  

  
    <a href="/barrier-de">de</a>
  

  
    <a href="/psd-ar">ar</a>
  

  
    <a href="/proxy-ban-ar">ar</a>
  

  
    <a href="/hacking-ar">ar</a>
  

  
    <a href="/dma-ar">ar</a>
  

  
    <a href="/barrier-ar">ar</a>
  

  
    <a href="/plan-2025-zh">zh</a>
  

  
    <a href="/introduction-zh">zh</a>
  

  
    <a href="/google-zh">zh</a>
  

  
    <a href="/digital-memories-zh">zh</a>
  

  
    <a href="/agi-world-zh">zh</a>
  

  
    <a href="/plan-2025-ja">ja</a>
  

  
    <a href="/introduction-ja">ja</a>
  

  
    <a href="/google-ja">ja</a>
  

  
    <a href="/digital-memories-ja">ja</a>
  

  
    <a href="/agi-world-ja">ja</a>
  

  
    <a href="/plan-2025-hi">hi</a>
  

  
    <a href="/introduction-hi">hi</a>
  

  
    <a href="/google-hi">hi</a>
  

  
    <a href="/digital-memories-hi">hi</a>
  

  
    <a href="/agi-world-hi">hi</a>
  

  
    <a href="/plan-2025-hant">hant</a>
  

  
    <a href="/introduction-hant">hant</a>
  

  
    <a href="/google-hant">hant</a>
  

  
    <a href="/digital-memories-hant">hant</a>
  

  
    <a href="/agi-world-hant">hant</a>
  

  
    <a href="/plan-2025-fr">fr</a>
  

  
    <a href="/introduction-fr">fr</a>
  

  
    <a href="/google-fr">fr</a>
  

  
    <a href="/digital-memories-fr">fr</a>
  

  
    <a href="/agi-world-fr">fr</a>
  

  
    <a href="/plan-2025-es">es</a>
  

  
    <a href="/introduction-es">es</a>
  

  
    <a href="/google-es">es</a>
  

  
    <a href="/digital-memories-es">es</a>
  

  
    <a href="/agi-world-es">es</a>
  

  
    <a href="/plan-2025-en">en</a>
  

  
    <a href="/introduction-en">en</a>
  

  
    <a href="/google-en">en</a>
  

  
    <a href="/digital-memories-en">en</a>
  

  
    <a href="/agi-world-en">en</a>
  

  
    <a href="/plan-2025-de">de</a>
  

  
    <a href="/introduction-de">de</a>
  

  
    <a href="/google-de">de</a>
  

  
    <a href="/digital-memories-de">de</a>
  

  
    <a href="/agi-world-de">de</a>
  

  
    <a href="/plan-2025-ar">ar</a>
  

  
    <a href="/introduction-ar">ar</a>
  

  
    <a href="/google-ar">ar</a>
  

  
    <a href="/digital-memories-ar">ar</a>
  

  
    <a href="/agi-world-ar">ar</a>
  

  
    <a href="/research-zh">zh</a>
  

  
    <a href="/reclining-pillow-zh">zh</a>
  

  
    <a href="/power-bank-zh">zh</a>
  

  
    <a href="/charger-box-zh">zh</a>
  

  
    <a href="/research-ja">ja</a>
  

  
    <a href="/reclining-pillow-ja">ja</a>
  

  
    <a href="/power-bank-ja">ja</a>
  

  
    <a href="/charger-box-ja">ja</a>
  

  
    <a href="/research-hi">hi</a>
  

  
    <a href="/reclining-pillow-hi">hi</a>
  

  
    <a href="/power-bank-hi">hi</a>
  

  
    <a href="/charger-box-hi">hi</a>
  

  
    <a href="/research-hant">hant</a>
  

  
    <a href="/reclining-pillow-hant">hant</a>
  

  
    <a href="/power-bank-hant">hant</a>
  

  
    <a href="/charger-box-hant">hant</a>
  

  
    <a href="/research-fr">fr</a>
  

  
    <a href="/reclining-pillow-fr">fr</a>
  

  
    <a href="/power-bank-fr">fr</a>
  

  
    <a href="/charger-box-fr">fr</a>
  

  
    <a href="/research-es">es</a>
  

  
    <a href="/reclining-pillow-es">es</a>
  

  
    <a href="/power-bank-es">es</a>
  

  
    <a href="/charger-box-es">es</a>
  

  
    <a href="/research-en">en</a>
  

  
    <a href="/reclining-pillow-en">en</a>
  

  
    <a href="/power-bank-en">en</a>
  

  
    <a href="/charger-box-en">en</a>
  

  
    <a href="/research-de">de</a>
  

  
    <a href="/reclining-pillow-de">de</a>
  

  
    <a href="/power-bank-de">de</a>
  

  
    <a href="/charger-box-de">de</a>
  

  
    <a href="/research-ar">ar</a>
  

  
    <a href="/reclining-pillow-ar">ar</a>
  

  
    <a href="/power-bank-ar">ar</a>
  

  
    <a href="/charger-box-ar">ar</a>
  

  
    <a href="/phone-music-zh">zh</a>
  

  
    <a href="/naming-zh">zh</a>
  

  
    <a href="/github-search-zh">zh</a>
  

  
    <a href="/conspiracy-zh">zh</a>
  

  
    <a href="/phone-music-ja">ja</a>
  

  
    <a href="/naming-ja">ja</a>
  

  
    <a href="/github-search-ja">ja</a>
  

  
    <a href="/conspiracy-ja">ja</a>
  

  
    <a href="/phone-music-hi">hi</a>
  

  
    <a href="/naming-hi">hi</a>
  

  
    <a href="/github-search-hi">hi</a>
  

  
    <a href="/conspiracy-hi">hi</a>
  

  
    <a href="/phone-music-hant">hant</a>
  

  
    <a href="/naming-hant">hant</a>
  

  
    <a href="/github-search-hant">hant</a>
  

  
    <a href="/conspiracy-hant">hant</a>
  

  
    <a href="/phone-music-fr">fr</a>
  

  
    <a href="/naming-fr">fr</a>
  

  
    <a href="/github-search-fr">fr</a>
  

  
    <a href="/conspiracy-fr">fr</a>
  

  
    <a href="/phone-music-es">es</a>
  

  
    <a href="/naming-es">es</a>
  

  
    <a href="/github-search-es">es</a>
  

  
    <a href="/conspiracy-es">es</a>
  

  
    <a href="/phone-music-en">en</a>
  

  
    <a href="/naming-en">en</a>
  

  
    <a href="/github-search-en">en</a>
  

  
    <a href="/conspiracy-en">en</a>
  

  
    <a href="/phone-music-de">de</a>
  

  
    <a href="/naming-de">de</a>
  

  
    <a href="/github-search-de">de</a>
  

  
    <a href="/conspiracy-de">de</a>
  

  
    <a href="/phone-music-ar">ar</a>
  

  
    <a href="/naming-ar">ar</a>
  

  
    <a href="/github-search-ar">ar</a>
  

  
    <a href="/conspiracy-ar">ar</a>
  

  
    <a href="/status-zh">zh</a>
  

  
    <a href="/shadowsocks-zh">zh</a>
  

  
    <a href="/programming-zh"></a>
  

  
    <a href="/magnet-zh">zh</a>
  

  
    <a href="/embracing-change-zh">zh</a>
  

  
    <a href="/dark-mode-zh">zh</a>
  

  
    <a href="/communicate-zh">zh</a>
  

  
    <a href="/auto-ss-config-zh">zh</a>
  

  
    <a href="/status-ja">ja</a>
  

  
    <a href="/shadowsocks-ja">ja</a>
  

  
    <a href="/programming-ja">ja</a>
  

  
    <a href="/magnet-ja">ja</a>
  

  
    <a href="/embracing-change-ja">ja</a>
  

  
    <a href="/dark-mode-ja">ja</a>
  

  
    <a href="/communicate-ja">ja</a>
  

  
    <a href="/auto-ss-config-ja">ja</a>
  

  
    <a href="/status-hi">hi</a>
  

  
    <a href="/shadowsocks-hi">hi</a>
  

  
    <a href="/programming-hi">hi</a>
  

  
    <a href="/magnet-hi">hi</a>
  

  
    <a href="/embracing-change-hi">hi</a>
  

  
    <a href="/dark-mode-hi">hi</a>
  

  
    <a href="/communicate-hi">hi</a>
  

  
    <a href="/auto-ss-config-hi">hi</a>
  

  
    <a href="/status-hant">hant</a>
  

  
    <a href="/shadowsocks-hant">hant</a>
  

  
    <a href="/programming-hant">hant</a>
  

  
    <a href="/magnet-hant">hant</a>
  

  
    <a href="/embracing-change-hant">hant</a>
  

  
    <a href="/dark-mode-hant">hant</a>
  

  
    <a href="/communicate-hant">hant</a>
  

  
    <a href="/auto-ss-config-hant">hant</a>
  

  
    <a href="/status-fr">fr</a>
  

  
    <a href="/shadowsocks-fr">fr</a>
  

  
    <a href="/programming-fr"></a>
  

  
    <a href="/magnet-fr">fr</a>
  

  
    <a href="/embracing-change-fr">fr</a>
  

  
    <a href="/dark-mode-fr">fr</a>
  

  
    <a href="/communicate-fr">fr</a>
  

  
    <a href="/auto-ss-config-fr">fr</a>
  

  
    <a href="/status-es">es</a>
  

  
    <a href="/shadowsocks-es">es</a>
  

  
    <a href="/programming-es">es</a>
  

  
    <a href="/magnet-es">es</a>
  

  
    <a href="/embracing-change-es">es</a>
  

  
    <a href="/dark-mode-es">es</a>
  

  
    <a href="/communicate-es">es</a>
  

  
    <a href="/auto-ss-config-es">es</a>
  

  
    <a href="/status-en">en</a>
  

  
    <a href="/shadowsocks-en">en</a>
  

  
    <a href="/programming-en">en</a>
  

  
    <a href="/magnet-en">en</a>
  

  
    <a href="/embracing-change-en">en</a>
  

  
    <a href="/dark-mode-en">en</a>
  

  
    <a href="/communicate-en">en</a>
  

  
    <a href="/auto-ss-config-en">en</a>
  

  
    <a href="/status-de">de</a>
  

  
    <a href="/shadowsocks-de">de</a>
  

  
    <a href="/programming-de">de</a>
  

  
    <a href="/magnet-de">de</a>
  

  
    <a href="/embracing-change-de">de</a>
  

  
    <a href="/dark-mode-de">de</a>
  

  
    <a href="/communicate-de">de</a>
  

  
    <a href="/auto-ss-config-de">de</a>
  

  
    <a href="/status-ar">ar</a>
  

  
    <a href="/shadowsocks-ar">ar</a>
  

  
    <a href="/programming-ar"></a>
  

  
    <a href="/magnet-ar">ar</a>
  

  
    <a href="/embracing-change-ar">ar</a>
  

  
    <a href="/dark-mode-ar">ar</a>
  

  
    <a href="/communicate-ar">ar</a>
  

  
    <a href="/auto-ss-config-ar">ar</a>
  

  
    <a href="/blockchain-crypto-zh">zh</a>
  

  
    <a href="/batch-zh">zh</a>
  

  
    <a href="/ai-blockchain-zh">zh</a>
  

  
    <a href="/blockchain-crypto-ja">ja</a>
  

  
    <a href="/batch-ja">ja</a>
  

  
    <a href="/ai-blockchain-ja">ja</a>
  

  
    <a href="/blockchain-crypto-hi">hi</a>
  

  
    <a href="/batch-hi">hi</a>
  

  
    <a href="/ai-blockchain-hi">hi</a>
  

  
    <a href="/blockchain-crypto-hant">hant</a>
  

  
    <a href="/batch-hant">hant</a>
  

  
    <a href="/ai-blockchain-hant">hant</a>
  

  
    <a href="/blockchain-crypto-fr">fr</a>
  

  
    <a href="/batch-fr">fr</a>
  

  
    <a href="/ai-blockchain-fr">fr</a>
  

  
    <a href="/blockchain-crypto-es">es</a>
  

  
    <a href="/batch-es">es</a>
  

  
    <a href="/ai-blockchain-es">es</a>
  

  
    <a href="/blockchain-crypto-en">en</a>
  

  
    <a href="/batch-en">en</a>
  

  
    <a href="/ai-blockchain-en">en</a>
  

  
    <a href="/blockchain-crypto-de">de</a>
  

  
    <a href="/batch-de">de</a>
  

  
    <a href="/ai-blockchain-de">de</a>
  

  
    <a href="/blockchain-crypto-ar">ar</a>
  

  
    <a href="/batch-ar">ar</a>
  

  
    <a href="/ai-blockchain-ar">ar</a>
  

  
    <a href="/parking-zh">zh</a>
  

  
    <a href="/parking-ja">ja</a>
  

  
    <a href="/parking-hi">hi</a>
  

  
    <a href="/parking-hant">hant</a>
  

  
    <a href="/parking-fr">fr</a>
  

  
    <a href="/parking-es">es</a>
  

  
    <a href="/parking-en">en</a>
  

  
    <a href="/parking-de">de</a>
  

  
    <a href="/parking-ar">ar</a>
  

  
    <a href="/testing-zh">zh</a>
  

  
    <a href="/links-zh">zh</a>
  

  
    <a href="/ai-editor-zh">zh</a>
  

  
    <a href="/testing-ja">ja</a>
  

  
    <a href="/links-ja">ja</a>
  

  
    <a href="/ai-editor-ja">ja</a>
  

  
    <a href="/testing-hi">hi</a>
  

  
    <a href="/links-hi">hi</a>
  

  
    <a href="/ai-editor-hi">hi</a>
  

  
    <a href="/testing-hant">hant</a>
  

  
    <a href="/links-hant">hant</a>
  

  
    <a href="/ai-editor-hant">hant</a>
  

  
    <a href="/testing-fr">fr</a>
  

  
    <a href="/links-fr">fr</a>
  

  
    <a href="/ai-editor-fr">fr</a>
  

  
    <a href="/testing-es">es</a>
  

  
    <a href="/links-es">es</a>
  

  
    <a href="/ai-editor-es">es</a>
  

  
    <a href="/testing-en">en</a>
  

  
    <a href="/links-en">en</a>
  

  
    <a href="/ai-editor-en">en</a>
  

  
    <a href="/testing-de">de</a>
  

  
    <a href="/links-de">de</a>
  

  
    <a href="/ai-editor-de">de</a>
  

  
    <a href="/testing-ar">ar</a>
  

  
    <a href="/links-ar">ar</a>
  

  
    <a href="/ai-editor-ar">ar</a>
  

  
    <a href="/face-zh">zh</a>
  

  
    <a href="/face-ja">ja</a>
  

  
    <a href="/face-hi">hi</a>
  

  
    <a href="/face-hant">hant</a>
  

  
    <a href="/face-fr">fr</a>
  

  
    <a href="/face-es">es</a>
  

  
    <a href="/face-en">en</a>
  

  
    <a href="/face-de">de</a>
  

  
    <a href="/face-ar">ar</a>
  

  
    <a href="/woman-zh">zh</a>
  

  
    <a href="/proxy-zh">zh</a>
  

  
    <a href="/diy-proxy-zh">zh</a>
  

  
    <a href="/cooking-zh">zh</a>
  

  
    <a href="/woman-ja">ja</a>
  

  
    <a href="/proxy-ja">ja</a>
  

  
    <a href="/diy-proxy-ja">ja</a>
  

  
    <a href="/cooking-ja">ja</a>
  

  
    <a href="/woman-hi">hi</a>
  

  
    <a href="/proxy-hi">hi</a>
  

  
    <a href="/diy-proxy-hi">hi</a>
  

  
    <a href="/cooking-hi">hi</a>
  

  
    <a href="/woman-hant">hant</a>
  

  
    <a href="/proxy-hant">hant</a>
  

  
    <a href="/diy-proxy-hant">hant</a>
  

  
    <a href="/cooking-hant">hant</a>
  

  
    <a href="/woman-fr">fr</a>
  

  
    <a href="/proxy-fr">fr</a>
  

  
    <a href="/diy-proxy-fr">fr</a>
  

  
    <a href="/cooking-fr">fr</a>
  

  
    <a href="/woman-es">es</a>
  

  
    <a href="/proxy-es">es</a>
  

  
    <a href="/diy-proxy-es">es</a>
  

  
    <a href="/cooking-es">es</a>
  

  
    <a href="/woman-en">en</a>
  

  
    <a href="/proxy-en">en</a>
  

  
    <a href="/diy-proxy-en">en</a>
  

  
    <a href="/cooking-en">en</a>
  

  
    <a href="/woman-de">de</a>
  

  
    <a href="/proxy-de">de</a>
  

  
    <a href="/diy-proxy-de">de</a>
  

  
    <a href="/cooking-de">de</a>
  

  
    <a href="/woman-ar">ar</a>
  

  
    <a href="/proxy-ar">ar</a>
  

  
    <a href="/diy-proxy-ar">ar</a>
  

  
    <a href="/cooking-ar">ar</a>
  

  
    <a href="/sync-zh">zh</a>
  

  
    <a href="/list-zh">zh</a>
  

  
    <a href="/hdmi-zh">zh</a>
  

  
    <a href="/github-readme-zh">zh</a>
  

  
    <a href="/focus-zh">zh</a>
  

  
    <a href="/ai-translation-zh">zh</a>
  

  
    <a href="/sync-ja">ja</a>
  

  
    <a href="/list-ja">ja</a>
  

  
    <a href="/hdmi-ja">ja</a>
  

  
    <a href="/github-readme-ja">ja</a>
  

  
    <a href="/focus-ja">ja</a>
  

  
    <a href="/ai-translation-ja">ja</a>
  

  
    <a href="/sync-hi">hi</a>
  

  
    <a href="/list-hi">hi</a>
  

  
    <a href="/hdmi-hi">hi</a>
  

  
    <a href="/github-readme-hi">hi</a>
  

  
    <a href="/focus-hi">hi</a>
  

  
    <a href="/ai-translation-hi">hi</a>
  

  
    <a href="/sync-hant">hant</a>
  

  
    <a href="/list-hant">hant</a>
  

  
    <a href="/hdmi-hant">hant</a>
  

  
    <a href="/github-readme-hant">hant</a>
  

  
    <a href="/focus-hant">hant</a>
  

  
    <a href="/ai-translation-hant">hant</a>
  

  
    <a href="/sync-fr">fr</a>
  

  
    <a href="/list-fr">fr</a>
  

  
    <a href="/hdmi-fr">fr</a>
  

  
    <a href="/github-readme-fr">fr</a>
  

  
    <a href="/focus-fr">fr</a>
  

  
    <a href="/ai-translation-fr">fr</a>
  

  
    <a href="/sync-es">es</a>
  

  
    <a href="/list-es">es</a>
  

  
    <a href="/hdmi-es">es</a>
  

  
    <a href="/github-readme-es">es</a>
  

  
    <a href="/focus-es">es</a>
  

  
    <a href="/ai-translation-es">es</a>
  

  
    <a href="/sync-en">en</a>
  

  
    <a href="/list-en">en</a>
  

  
    <a href="/hdmi-en">en</a>
  

  
    <a href="/github-readme-en">en</a>
  

  
    <a href="/focus-en">en</a>
  

  
    <a href="/ai-translation-en">en</a>
  

  
    <a href="/sync-de">de</a>
  

  
    <a href="/list-de">de</a>
  

  
    <a href="/hdmi-de">de</a>
  

  
    <a href="/github-readme-de">de</a>
  

  
    <a href="/focus-de">de</a>
  

  
    <a href="/ai-translation-de">de</a>
  

  
    <a href="/sync-ar">ar</a>
  

  
    <a href="/list-ar">ar</a>
  

  
    <a href="/hdmi-ar">ar</a>
  

  
    <a href="/github-readme-ar">ar</a>
  

  
    <a href="/focus-ar">ar</a>
  

  
    <a href="/ai-translation-ar">ar</a>
  

  
    <a href="/markdown-zh">zh</a>
  

  
    <a href="/gloves-zh">zh</a>
  

  
    <a href="/markdown-ja">ja</a>
  

  
    <a href="/gloves-ja">ja</a>
  

  
    <a href="/markdown-hi">hi</a>
  

  
    <a href="/gloves-hi">hi</a>
  

  
    <a href="/markdown-hant">hant</a>
  

  
    <a href="/gloves-hant">hant</a>
  

  
    <a href="/markdown-fr">fr</a>
  

  
    <a href="/gloves-fr">fr</a>
  

  
    <a href="/markdown-es">es</a>
  

  
    <a href="/gloves-es">es</a>
  

  
    <a href="/markdown-en">en</a>
  

  
    <a href="/gloves-en">en</a>
  

  
    <a href="/markdown-de">de</a>
  

  
    <a href="/gloves-de">de</a>
  

  
    <a href="/markdown-ar">ar</a>
  

  
    <a href="/gloves-ar">ar</a>
  

  
    <a href="/track-zh">zh</a>
  

  
    <a href="/chatgpt-ios-zh">zh</a>
  

  
    <a href="/track-ja">ja</a>
  

  
    <a href="/chatgpt-ios-ja">ja</a>
  

  
    <a href="/track-hi">hi</a>
  

  
    <a href="/chatgpt-ios-hi">hi</a>
  

  
    <a href="/track-hant">hant</a>
  

  
    <a href="/chatgpt-ios-hant">hant</a>
  

  
    <a href="/track-fr">fr</a>
  

  
    <a href="/chatgpt-ios-fr">fr</a>
  

  
    <a href="/track-es">es</a>
  

  
    <a href="/chatgpt-ios-es">es</a>
  

  
    <a href="/track-en">en</a>
  

  
    <a href="/chatgpt-ios-en">en</a>
  

  
    <a href="/track-de">de</a>
  

  
    <a href="/chatgpt-ios-de">de</a>
  

  
    <a href="/track-ar">ar</a>
  

  
    <a href="/chatgpt-ios-ar">ar</a>
  

  
    <a href="/flutter-zh">zh</a>
  

  
    <a href="/flutter-ja">ja</a>
  

  
    <a href="/flutter-hi">hi</a>
  

  
    <a href="/flutter-hant">hant</a>
  

  
    <a href="/flutter-fr">fr</a>
  

  
    <a href="/flutter-es">es</a>
  

  
    <a href="/flutter-en">en</a>
  

  
    <a href="/flutter-de">de</a>
  

  
    <a href="/flutter-ar">ar</a>
  

  
    <a href="/multifocal-zh">zh</a>
  

  
    <a href="/background-sound-zh">zh</a>
  

  
    <a href="/multifocal-ja">ja</a>
  

  
    <a href="/background-sound-ja">ja</a>
  

  
    <a href="/multifocal-hi">hi</a>
  

  
    <a href="/background-sound-hi">hi</a>
  

  
    <a href="/multifocal-hant">hant</a>
  

  
    <a href="/background-sound-hant">hant</a>
  

  
    <a href="/multifocal-fr">fr</a>
  

  
    <a href="/background-sound-fr">fr</a>
  

  
    <a href="/multifocal-es">es</a>
  

  
    <a href="/background-sound-es">es</a>
  

  
    <a href="/multifocal-en">en</a>
  

  
    <a href="/background-sound-en">en</a>
  

  
    <a href="/multifocal-de">de</a>
  

  
    <a href="/background-sound-de">de</a>
  

  
    <a href="/multifocal-ar">ar</a>
  

  
    <a href="/background-sound-ar">ar</a>
  

  
    <a href="/update-zh">zh</a>
  

  
    <a href="/three-phones-zh">zh</a>
  

  
    <a href="/photo-room-zh">zh</a>
  

  
    <a href="/flashlight-charging-zh">zh</a>
  

  
    <a href="/electric-vehicles-zh">zh</a>
  

  
    <a href="/confs-zh">zh</a>
  

  
    <a href="/update-ja">ja</a>
  

  
    <a href="/three-phones-ja">ja</a>
  

  
    <a href="/photo-room-ja">ja</a>
  

  
    <a href="/flashlight-charging-ja">ja</a>
  

  
    <a href="/electric-vehicles-ja">ja</a>
  

  
    <a href="/confs-ja">ja</a>
  

  
    <a href="/update-hi">hi</a>
  

  
    <a href="/three-phones-hi">hi</a>
  

  
    <a href="/photo-room-hi">hi</a>
  

  
    <a href="/flashlight-charging-hi">hi</a>
  

  
    <a href="/electric-vehicles-hi">hi</a>
  

  
    <a href="/confs-hi">hi</a>
  

  
    <a href="/update-hant">hant</a>
  

  
    <a href="/three-phones-hant">hant</a>
  

  
    <a href="/photo-room-hant">hant</a>
  

  
    <a href="/flashlight-charging-hant">hant</a>
  

  
    <a href="/electric-vehicles-hant">hant</a>
  

  
    <a href="/confs-hant">hant</a>
  

  
    <a href="/update-fr">fr</a>
  

  
    <a href="/three-phones-fr">fr</a>
  

  
    <a href="/photo-room-fr">fr</a>
  

  
    <a href="/flashlight-charging-fr">fr</a>
  

  
    <a href="/electric-vehicles-fr">fr</a>
  

  
    <a href="/confs-fr">fr</a>
  

  
    <a href="/update-es">es</a>
  

  
    <a href="/three-phones-es">es</a>
  

  
    <a href="/photo-room-es">es</a>
  

  
    <a href="/flashlight-charging-es">es</a>
  

  
    <a href="/electric-vehicles-es">es</a>
  

  
    <a href="/confs-es">es</a>
  

  
    <a href="/update-en">en</a>
  

  
    <a href="/three-phones-en">en</a>
  

  
    <a href="/photo-room-en">en</a>
  

  
    <a href="/flashlight-charging-en">en</a>
  

  
    <a href="/electric-vehicles-en">en</a>
  

  
    <a href="/confs-en">en</a>
  

  
    <a href="/update-de">de</a>
  

  
    <a href="/three-phones-de">de</a>
  

  
    <a href="/photo-room-de">de</a>
  

  
    <a href="/flashlight-charging-de">de</a>
  

  
    <a href="/electric-vehicles-de">de</a>
  

  
    <a href="/confs-de">de</a>
  

  
    <a href="/update-ar">ar</a>
  

  
    <a href="/three-phones-ar">ar</a>
  

  
    <a href="/photo-room-ar">ar</a>
  

  
    <a href="/flashlight-charging-ar">ar</a>
  

  
    <a href="/electric-vehicles-ar">ar</a>
  

  
    <a href="/confs-ar">ar</a>
  

  
    <a href="/charging-zh">zh</a>
  

  
    <a href="/charging-ja">ja</a>
  

  
    <a href="/charging-hi">hi</a>
  

  
    <a href="/charging-hant">hant</a>
  

  
    <a href="/charging-fr">fr</a>
  

  
    <a href="/charging-es">es</a>
  

  
    <a href="/charging-en">en</a>
  

  
    <a href="/charging-de">de</a>
  

  
    <a href="/charging-ar">ar</a>
  

  
    <a href="/v2ray-script-zh">zh</a>
  

  
    <a href="/ufw-zh">zh</a>
  

  
    <a href="/pin-zh">zh</a>
  

  
    <a href="/left-swipe-zh">zh</a>
  

  
    <a href="/gcp-compute-zh">zh</a>
  

  
    <a href="/azure-vm-zh">zh</a>
  

  
    <a href="/v2ray-script-ja">ja</a>
  

  
    <a href="/ufw-ja">ja</a>
  

  
    <a href="/pin-ja">ja</a>
  

  
    <a href="/left-swipe-ja">ja</a>
  

  
    <a href="/gcp-compute-ja">ja</a>
  

  
    <a href="/azure-vm-ja">ja</a>
  

  
    <a href="/v2ray-script-hi">hi</a>
  

  
    <a href="/ufw-hi">hi</a>
  

  
    <a href="/pin-hi">hi</a>
  

  
    <a href="/left-swipe-hi">hi</a>
  

  
    <a href="/gcp-compute-hi">hi</a>
  

  
    <a href="/azure-vm-hi">hi</a>
  

  
    <a href="/v2ray-script-hant">hant</a>
  

  
    <a href="/ufw-hant">hant</a>
  

  
    <a href="/pin-hant">hant</a>
  

  
    <a href="/left-swipe-hant">hant</a>
  

  
    <a href="/gcp-compute-hant">hant</a>
  

  
    <a href="/azure-vm-hant">hant</a>
  

  
    <a href="/v2ray-script-fr">fr</a>
  

  
    <a href="/ufw-fr">fr</a>
  

  
    <a href="/pin-fr">fr</a>
  

  
    <a href="/left-swipe-fr">fr</a>
  

  
    <a href="/gcp-compute-fr">fr</a>
  

  
    <a href="/azure-vm-fr">fr</a>
  

  
    <a href="/v2ray-script-es">es</a>
  

  
    <a href="/ufw-es">es</a>
  

  
    <a href="/pin-es">es</a>
  

  
    <a href="/left-swipe-es">es</a>
  

  
    <a href="/gcp-compute-es">es</a>
  

  
    <a href="/azure-vm-es">es</a>
  

  
    <a href="/v2ray-script-en">en</a>
  

  
    <a href="/ufw-en">en</a>
  

  
    <a href="/pin-en">en</a>
  

  
    <a href="/left-swipe-en">en</a>
  

  
    <a href="/gcp-compute-en">en</a>
  

  
    <a href="/azure-vm-en">en</a>
  

  
    <a href="/v2ray-script-de">de</a>
  

  
    <a href="/ufw-de">de</a>
  

  
    <a href="/pin-de">de</a>
  

  
    <a href="/left-swipe-de">de</a>
  

  
    <a href="/gcp-compute-de">de</a>
  

  
    <a href="/azure-vm-de">de</a>
  

  
    <a href="/v2ray-script-ar">ar</a>
  

  
    <a href="/ufw-ar">ar</a>
  

  
    <a href="/pin-ar">ar</a>
  

  
    <a href="/left-swipe-ar">ar</a>
  

  
    <a href="/gcp-compute-ar">ar</a>
  

  
    <a href="/azure-vm-ar">ar</a>
  

  
    <a href="/v2ray-zh">zh</a>
  

  
    <a href="/server-provider-zh">zh</a>
  

  
    <a href="/health-tools-zh">zh</a>
  

  
    <a href="/v2ray-ja">ja</a>
  

  
    <a href="/server-provider-ja">ja</a>
  

  
    <a href="/health-tools-ja">ja</a>
  

  
    <a href="/v2ray-hi">hi</a>
  

  
    <a href="/server-provider-hi">hi</a>
  

  
    <a href="/health-tools-hi">hi</a>
  

  
    <a href="/v2ray-hant">hant</a>
  

  
    <a href="/server-provider-hant">hant</a>
  

  
    <a href="/health-tools-hant">hant</a>
  

  
    <a href="/v2ray-fr">fr</a>
  

  
    <a href="/server-provider-fr">fr</a>
  

  
    <a href="/health-tools-fr">fr</a>
  

  
    <a href="/v2ray-es">es</a>
  

  
    <a href="/server-provider-es">es</a>
  

  
    <a href="/health-tools-es">es</a>
  

  
    <a href="/v2ray-en">en</a>
  

  
    <a href="/server-provider-en">en</a>
  

  
    <a href="/health-tools-en">en</a>
  

  
    <a href="/v2ray-de">de</a>
  

  
    <a href="/server-provider-de">de</a>
  

  
    <a href="/health-tools-de">de</a>
  

  
    <a href="/v2ray-ar">ar</a>
  

  
    <a href="/server-provider-ar">ar</a>
  

  
    <a href="/health-tools-ar">ar</a>
  

  
    <a href="/repeatition-benefits-zh">zh</a>
  

  
    <a href="/redsocks-zh">zh</a>
  

  
    <a href="/gcp-speech-zh">zh</a>
  

  
    <a href="/future-world-zh">zh</a>
  

  
    <a href="/echo-zh">zh</a>
  

  
    <a href="/disk-zh">zh</a>
  

  
    <a href="/chatgpt-nested-zh">zh</a>
  

  
    <a href="/repeatition-benefits-ja">ja</a>
  

  
    <a href="/redsocks-ja">ja</a>
  

  
    <a href="/gcp-speech-ja">ja</a>
  

  
    <a href="/future-world-ja">ja</a>
  

  
    <a href="/echo-ja">ja</a>
  

  
    <a href="/disk-ja">ja</a>
  

  
    <a href="/chatgpt-nested-ja">ja</a>
  

  
    <a href="/repeatition-benefits-hi">hi</a>
  

  
    <a href="/redsocks-hi">hi</a>
  

  
    <a href="/gcp-speech-hi">hi</a>
  

  
    <a href="/future-world-hi">hi</a>
  

  
    <a href="/echo-hi">hi</a>
  

  
    <a href="/disk-hi">hi</a>
  

  
    <a href="/chatgpt-nested-hi">hi</a>
  

  
    <a href="/repeatition-benefits-hant">hant</a>
  

  
    <a href="/redsocks-hant">hant</a>
  

  
    <a href="/gcp-speech-hant">hant</a>
  

  
    <a href="/future-world-hant">hant</a>
  

  
    <a href="/echo-hant">hant</a>
  

  
    <a href="/disk-hant">hant</a>
  

  
    <a href="/chatgpt-nested-hant">hant</a>
  

  
    <a href="/repeatition-benefits-fr">fr</a>
  

  
    <a href="/redsocks-fr">fr</a>
  

  
    <a href="/gcp-speech-fr">fr</a>
  

  
    <a href="/future-world-fr">fr</a>
  

  
    <a href="/echo-fr">fr</a>
  

  
    <a href="/disk-fr">fr</a>
  

  
    <a href="/chatgpt-nested-fr">fr</a>
  

  
    <a href="/repeatition-benefits-es">es</a>
  

  
    <a href="/redsocks-es">es</a>
  

  
    <a href="/gcp-speech-es">es</a>
  

  
    <a href="/future-world-es">es</a>
  

  
    <a href="/echo-es">es</a>
  

  
    <a href="/disk-es">es</a>
  

  
    <a href="/chatgpt-nested-es">es</a>
  

  
    <a href="/repeatition-benefits-en">en</a>
  

  
    <a href="/redsocks-en">en</a>
  

  
    <a href="/gcp-speech-en">en</a>
  

  
    <a href="/future-world-en">en</a>
  

  
    <a href="/echo-en">en</a>
  

  
    <a href="/disk-en">en</a>
  

  
    <a href="/chatgpt-nested-en">en</a>
  

  
    <a href="/repeatition-benefits-de">de</a>
  

  
    <a href="/redsocks-de">de</a>
  

  
    <a href="/gcp-speech-de">de</a>
  

  
    <a href="/future-world-de">de</a>
  

  
    <a href="/echo-de">de</a>
  

  
    <a href="/disk-de">de</a>
  

  
    <a href="/chatgpt-nested-de">de</a>
  

  
    <a href="/repeatition-benefits-ar">ar</a>
  

  
    <a href="/redsocks-ar">ar</a>
  

  
    <a href="/gcp-speech-ar">ar</a>
  

  
    <a href="/future-world-ar">ar</a>
  

  
    <a href="/echo-ar">ar</a>
  

  
    <a href="/disk-ar">ar</a>
  

  
    <a href="/chatgpt-nested-ar">ar</a>
  

  
    <a href="/zsh-hooks-zh">zh</a>
  

  
    <a href="/website-report-zh">zh</a>
  

  
    <a href="/system-prompt-zh">zh</a>
  

  
    <a href="/preexec-zh">zh</a>
  

  
    <a href="/ios-settings-zh">zh</a>
  

  
    <a href="/gmbh-zh">zh</a>
  

  
    <a href="/avoid-death-zh">zh</a>
  

  
    <a href="/zsh-hooks-ja">ja</a>
  

  
    <a href="/website-report-ja">ja</a>
  

  
    <a href="/system-prompt-ja">ja</a>
  

  
    <a href="/preexec-ja">ja</a>
  

  
    <a href="/ios-settings-ja">ja</a>
  

  
    <a href="/gmbh-ja">ja</a>
  

  
    <a href="/avoid-death-ja">ja</a>
  

  
    <a href="/zsh-hooks-hi">hi</a>
  

  
    <a href="/website-report-hi">hi</a>
  

  
    <a href="/system-prompt-hi">hi</a>
  

  
    <a href="/preexec-hi">hi</a>
  

  
    <a href="/ios-settings-hi">hi</a>
  

  
    <a href="/gmbh-hi">hi</a>
  

  
    <a href="/avoid-death-hi">hi</a>
  

  
    <a href="/zsh-hooks-hant">hant</a>
  

  
    <a href="/website-report-hant">hant</a>
  

  
    <a href="/system-prompt-hant">hant</a>
  

  
    <a href="/preexec-hant">hant</a>
  

  
    <a href="/ios-settings-hant">hant</a>
  

  
    <a href="/gmbh-hant">hant</a>
  

  
    <a href="/avoid-death-hant">hant</a>
  

  
    <a href="/zsh-hooks-fr">fr</a>
  

  
    <a href="/website-report-fr">fr</a>
  

  
    <a href="/system-prompt-fr">fr</a>
  

  
    <a href="/preexec-fr">fr</a>
  

  
    <a href="/ios-settings-fr">fr</a>
  

  
    <a href="/gmbh-fr">fr</a>
  

  
    <a href="/avoid-death-fr">fr</a>
  

  
    <a href="/zsh-hooks-es">es</a>
  

  
    <a href="/website-report-es">es</a>
  

  
    <a href="/system-prompt-es">es</a>
  

  
    <a href="/preexec-es">es</a>
  

  
    <a href="/ios-settings-es">es</a>
  

  
    <a href="/gmbh-es">es</a>
  

  
    <a href="/avoid-death-es">es</a>
  

  
    <a href="/zsh-hooks-en">en</a>
  

  
    <a href="/website-report-en">en</a>
  

  
    <a href="/system-prompt-en">en</a>
  

  
    <a href="/preexec-en">en</a>
  

  
    <a href="/ios-settings-en">en</a>
  

  
    <a href="/gmbh-en">en</a>
  

  
    <a href="/avoid-death-en">en</a>
  

  
    <a href="/zsh-hooks-de">de</a>
  

  
    <a href="/website-report-de">de</a>
  

  
    <a href="/system-prompt-de">de</a>
  

  
    <a href="/preexec-de">de</a>
  

  
    <a href="/ios-settings-de">de</a>
  

  
    <a href="/gmbh-de">de</a>
  

  
    <a href="/avoid-death-de">de</a>
  

  
    <a href="/zsh-hooks-ar">ar</a>
  

  
    <a href="/website-report-ar">ar</a>
  

  
    <a href="/system-prompt-ar">ar</a>
  

  
    <a href="/preexec-ar">ar</a>
  

  
    <a href="/ios-settings-ar">ar</a>
  

  
    <a href="/gmbh-ar">ar</a>
  

  
    <a href="/avoid-death-ar">ar</a>
  

  
    <a href="/web-retrieval-zh">zh</a>
  

  
    <a href="/quora-lang-zh">zh</a>
  

  
    <a href="/png-zh">zh</a>
  

  
    <a href="/openwrt-hack-zh">zh</a>
  

  
    <a href="/fixed-price-zh">zh</a>
  

  
    <a href="/awesome-cv-zh">zh</a>
  

  
    <a href="/web-retrieval-ja">ja</a>
  

  
    <a href="/quora-lang-ja">ja</a>
  

  
    <a href="/png-ja">ja</a>
  

  
    <a href="/openwrt-hack-ja">ja</a>
  

  
    <a href="/fixed-price-ja">ja</a>
  

  
    <a href="/awesome-cv-ja">ja</a>
  

  
    <a href="/web-retrieval-hi">hi</a>
  

  
    <a href="/quora-lang-hi">hi</a>
  

  
    <a href="/png-hi">hi</a>
  

  
    <a href="/openwrt-hack-hi">hi</a>
  

  
    <a href="/fixed-price-hi">hi</a>
  

  
    <a href="/awesome-cv-hi">hi</a>
  

  
    <a href="/web-retrieval-hant">hant</a>
  

  
    <a href="/quora-lang-hant">hant</a>
  

  
    <a href="/png-hant">hant</a>
  

  
    <a href="/openwrt-hack-hant">hant</a>
  

  
    <a href="/fixed-price-hant">hant</a>
  

  
    <a href="/awesome-cv-hant">hant</a>
  

  
    <a href="/web-retrieval-fr">fr</a>
  

  
    <a href="/quora-lang-fr">fr</a>
  

  
    <a href="/png-fr">fr</a>
  

  
    <a href="/openwrt-hack-fr">fr</a>
  

  
    <a href="/fixed-price-fr">fr</a>
  

  
    <a href="/awesome-cv-fr">fr</a>
  

  
    <a href="/web-retrieval-es">es</a>
  

  
    <a href="/quora-lang-es">es</a>
  

  
    <a href="/png-es">es</a>
  

  
    <a href="/openwrt-hack-es">es</a>
  

  
    <a href="/fixed-price-es">es</a>
  

  
    <a href="/awesome-cv-es">es</a>
  

  
    <a href="/web-retrieval-en">en</a>
  

  
    <a href="/quora-lang-en">en</a>
  

  
    <a href="/png-en">en</a>
  

  
    <a href="/openwrt-hack-en">en</a>
  

  
    <a href="/fixed-price-en">en</a>
  

  
    <a href="/awesome-cv-en">en</a>
  

  
    <a href="/web-retrieval-de">de</a>
  

  
    <a href="/quora-lang-de">de</a>
  

  
    <a href="/png-de">de</a>
  

  
    <a href="/openwrt-hack-de">de</a>
  

  
    <a href="/fixed-price-de">de</a>
  

  
    <a href="/awesome-cv-de">de</a>
  

  
    <a href="/web-retrieval-ar">ar</a>
  

  
    <a href="/quora-lang-ar">ar</a>
  

  
    <a href="/png-ar">ar</a>
  

  
    <a href="/openwrt-hack-ar">ar</a>
  

  
    <a href="/fixed-price-ar">ar</a>
  

  
    <a href="/awesome-cv-ar">ar</a>
  

  
    <a href="/pixel-usb-zh">zh</a>
  

  
    <a href="/mac-apps-zh">zh</a>
  

  
    <a href="/pixel-usb-ja">ja</a>
  

  
    <a href="/mac-apps-ja">ja</a>
  

  
    <a href="/pixel-usb-hi">hi</a>
  

  
    <a href="/mac-apps-hi">hi</a>
  

  
    <a href="/pixel-usb-hant">hant</a>
  

  
    <a href="/mac-apps-hant">hant</a>
  

  
    <a href="/pixel-usb-fr">fr</a>
  

  
    <a href="/mac-apps-fr">fr</a>
  

  
    <a href="/pixel-usb-es">es</a>
  

  
    <a href="/mac-apps-es">es</a>
  

  
    <a href="/pixel-usb-en">en</a>
  

  
    <a href="/mac-apps-en">en</a>
  

  
    <a href="/pixel-usb-de">de</a>
  

  
    <a href="/mac-apps-de">de</a>
  

  
    <a href="/pixel-usb-ar">ar</a>
  

  
    <a href="/mac-apps-ar">ar</a>
  

  
    <a href="/yin-wang-zh">zh</a>
  

  
    <a href="/todd-becker-zh">zh</a>
  

  
    <a href="/projects-zh">zh</a>
  

  
    <a href="/openai-price-zh">zh</a>
  

  
    <a href="/myopia-list-zh">zh</a>
  

  
    <a href="/great-yin-wang-zh">zh</a>
  

  
    <a href="/ai-tools-zh">zh</a>
  

  
    <a href="/yin-wang-ja">ja</a>
  

  
    <a href="/todd-becker-ja">ja</a>
  

  
    <a href="/projects-ja">ja</a>
  

  
    <a href="/openai-price-ja">ja</a>
  

  
    <a href="/myopia-list-ja">ja</a>
  

  
    <a href="/great-yin-wang-ja">ja</a>
  

  
    <a href="/ai-tools-ja">ja</a>
  

  
    <a href="/yin-wang-hi">hi</a>
  

  
    <a href="/todd-becker-hi">hi</a>
  

  
    <a href="/projects-hi">hi</a>
  

  
    <a href="/openai-price-hi">hi</a>
  

  
    <a href="/myopia-list-hi">hi</a>
  

  
    <a href="/great-yin-wang-hi">hi</a>
  

  
    <a href="/ai-tools-hi">hi</a>
  

  
    <a href="/yin-wang-hant">hant</a>
  

  
    <a href="/todd-becker-hant">hant</a>
  

  
    <a href="/projects-hant">hant</a>
  

  
    <a href="/openai-price-hant">hant</a>
  

  
    <a href="/myopia-list-hant">hant</a>
  

  
    <a href="/great-yin-wang-hant">hant</a>
  

  
    <a href="/ai-tools-hant">hant</a>
  

  
    <a href="/yin-wang-fr">fr</a>
  

  
    <a href="/todd-becker-fr">fr</a>
  

  
    <a href="/projects-fr">fr</a>
  

  
    <a href="/openai-price-fr">fr</a>
  

  
    <a href="/myopia-list-fr">fr</a>
  

  
    <a href="/great-yin-wang-fr">fr</a>
  

  
    <a href="/ai-tools-fr">fr</a>
  

  
    <a href="/yin-wang-es">es</a>
  

  
    <a href="/todd-becker-es">es</a>
  

  
    <a href="/projects-es">es</a>
  

  
    <a href="/openai-price-es">es</a>
  

  
    <a href="/myopia-list-es">es</a>
  

  
    <a href="/great-yin-wang-es">es</a>
  

  
    <a href="/ai-tools-es">es</a>
  

  
    <a href="/yin-wang-en">en</a>
  

  
    <a href="/todd-becker-en">en</a>
  

  
    <a href="/projects-en">en</a>
  

  
    <a href="/openai-price-en">en</a>
  

  
    <a href="/myopia-list-en">en</a>
  

  
    <a href="/great-yin-wang-en">en</a>
  

  
    <a href="/ai-tools-en">en</a>
  

  
    <a href="/yin-wang-de">de</a>
  

  
    <a href="/todd-becker-de">de</a>
  

  
    <a href="/projects-de">de</a>
  

  
    <a href="/openai-price-de">de</a>
  

  
    <a href="/myopia-list-de">de</a>
  

  
    <a href="/great-yin-wang-de">de</a>
  

  
    <a href="/ai-tools-de">de</a>
  

  
    <a href="/yin-wang-ar">ar</a>
  

  
    <a href="/todd-becker-ar">ar</a>
  

  
    <a href="/projects-ar">ar</a>
  

  
    <a href="/openai-price-ar">ar</a>
  

  
    <a href="/myopia-list-ar">ar</a>
  

  
    <a href="/great-yin-wang-ar">ar</a>
  

  
    <a href="/ai-tools-ar">ar</a>
  

  
    <a href="/thinking-zh">zh</a>
  

  
    <a href="/reasoning-zh">zh</a>
  

  
    <a href="/categorization-zh">zh</a>
  

  
    <a href="/abstraction-zh">zh</a>
  

  
    <a href="/thinking-ja">ja</a>
  

  
    <a href="/reasoning-ja">ja</a>
  

  
    <a href="/categorization-ja">ja</a>
  

  
    <a href="/abstraction-ja">ja</a>
  

  
    <a href="/thinking-hi">hi</a>
  

  
    <a href="/reasoning-hi">hi</a>
  

  
    <a href="/categorization-hi">hi</a>
  

  
    <a href="/abstraction-hi">hi</a>
  

  
    <a href="/thinking-hant">hant</a>
  

  
    <a href="/reasoning-hant">hant</a>
  

  
    <a href="/categorization-hant">hant</a>
  

  
    <a href="/abstraction-hant">hant</a>
  

  
    <a href="/thinking-fr">fr</a>
  

  
    <a href="/reasoning-fr">fr</a>
  

  
    <a href="/categorization-fr">fr</a>
  

  
    <a href="/abstraction-fr">fr</a>
  

  
    <a href="/thinking-es">es</a>
  

  
    <a href="/reasoning-es">es</a>
  

  
    <a href="/categorization-es">es</a>
  

  
    <a href="/abstraction-es">es</a>
  

  
    <a href="/thinking-en">en</a>
  

  
    <a href="/reasoning-en">en</a>
  

  
    <a href="/categorization-en">en</a>
  

  
    <a href="/abstraction-en">en</a>
  

  
    <a href="/thinking-de">de</a>
  

  
    <a href="/reasoning-de">de</a>
  

  
    <a href="/categorization-de">de</a>
  

  
    <a href="/abstraction-de">de</a>
  

  
    <a href="/thinking-ar">ar</a>
  

  
    <a href="/reasoning-ar">ar</a>
  

  
    <a href="/categorization-ar">ar</a>
  

  
    <a href="/abstraction-ar">ar</a>
  

  
    <a href="/real-estate-zh">zh</a>
  

  
    <a href="/parenting-zh">zh</a>
  

  
    <a href="/mortgage-zh">zh</a>
  

  
    <a href="/life-tips-zh">zh</a>
  

  
    <a href="/firetv-zh">zh</a>
  

  
    <a href="/communication-zh">zh</a>
  

  
    <a href="/bifocals-zh">zh</a>
  

  
    <a href="/real-estate-ja">ja</a>
  

  
    <a href="/parenting-ja">ja</a>
  

  
    <a href="/mortgage-ja">ja</a>
  

  
    <a href="/life-tips-ja">ja</a>
  

  
    <a href="/firetv-ja">ja</a>
  

  
    <a href="/communication-ja">ja</a>
  

  
    <a href="/bifocals-ja">ja</a>
  

  
    <a href="/real-estate-hi">hi</a>
  

  
    <a href="/parenting-hi">hi</a>
  

  
    <a href="/mortgage-hi">hi</a>
  

  
    <a href="/life-tips-hi">hi</a>
  

  
    <a href="/firetv-hi">hi</a>
  

  
    <a href="/communication-hi">hi</a>
  

  
    <a href="/bifocals-hi">hi</a>
  

  
    <a href="/real-estate-hant">hant</a>
  

  
    <a href="/parenting-hant">hant</a>
  

  
    <a href="/mortgage-hant">hant</a>
  

  
    <a href="/life-tips-hant">hant</a>
  

  
    <a href="/firetv-hant">hant</a>
  

  
    <a href="/communication-hant">hant</a>
  

  
    <a href="/bifocals-hant">hant</a>
  

  
    <a href="/real-estate-fr">fr</a>
  

  
    <a href="/parenting-fr">fr</a>
  

  
    <a href="/mortgage-fr">fr</a>
  

  
    <a href="/life-tips-fr">fr</a>
  

  
    <a href="/firetv-fr">fr</a>
  

  
    <a href="/communication-fr">fr</a>
  

  
    <a href="/bifocals-fr">fr</a>
  

  
    <a href="/real-estate-es">es</a>
  

  
    <a href="/parenting-es">es</a>
  

  
    <a href="/mortgage-es">es</a>
  

  
    <a href="/life-tips-es">es</a>
  

  
    <a href="/firetv-es">es</a>
  

  
    <a href="/communication-es">es</a>
  

  
    <a href="/bifocals-es">es</a>
  

  
    <a href="/real-estate-en">en</a>
  

  
    <a href="/parenting-en">en</a>
  

  
    <a href="/mortgage-en">en</a>
  

  
    <a href="/life-tips-en">en</a>
  

  
    <a href="/firetv-en">en</a>
  

  
    <a href="/communication-en">en</a>
  

  
    <a href="/bifocals-en">en</a>
  

  
    <a href="/real-estate-de">de</a>
  

  
    <a href="/parenting-de">de</a>
  

  
    <a href="/mortgage-de">de</a>
  

  
    <a href="/life-tips-de">de</a>
  

  
    <a href="/firetv-de">de</a>
  

  
    <a href="/communication-de">de</a>
  

  
    <a href="/bifocals-de">de</a>
  

  
    <a href="/real-estate-ar">ar</a>
  

  
    <a href="/parenting-ar">ar</a>
  

  
    <a href="/mortgage-ar">ar</a>
  

  
    <a href="/life-tips-ar">ar</a>
  

  
    <a href="/firetv-ar">ar</a>
  

  
    <a href="/communication-ar">ar</a>
  

  
    <a href="/bifocals-ar">ar</a>
  

  
    <a href="/libraries-zh">zh</a>
  

  
    <a href="/libraries-ja">ja</a>
  

  
    <a href="/libraries-hi">hi</a>
  

  
    <a href="/libraries-hant">hant</a>
  

  
    <a href="/libraries-fr">fr</a>
  

  
    <a href="/libraries-es">es</a>
  

  
    <a href="/libraries-en">en</a>
  

  
    <a href="/libraries-de">de</a>
  

  
    <a href="/libraries-ar">ar</a>
  

  
    <a href="/things-zh">zh</a>
  

  
    <a href="/places-zh">zh</a>
  

  
    <a href="/things-ja">ja</a>
  

  
    <a href="/places-ja">ja</a>
  

  
    <a href="/things-hi">hi</a>
  

  
    <a href="/places-hi">hi</a>
  

  
    <a href="/things-hant">hant</a>
  

  
    <a href="/places-hant">hant</a>
  

  
    <a href="/things-fr">fr</a>
  

  
    <a href="/places-fr">fr</a>
  

  
    <a href="/things-es">es</a>
  

  
    <a href="/places-es">es</a>
  

  
    <a href="/things-en">en</a>
  

  
    <a href="/places-en">en</a>
  

  
    <a href="/things-de">de</a>
  

  
    <a href="/places-de">de</a>
  

  
    <a href="/things-ar">ar</a>
  

  
    <a href="/places-ar">ar</a>
  

  
    <a href="/fruit-zh">zh</a>
  

  
    <a href="/fruit-ja">ja</a>
  

  
    <a href="/fruit-hi">hi</a>
  

  
    <a href="/fruit-hant">hant</a>
  

  
    <a href="/fruit-fr">fr</a>
  

  
    <a href="/fruit-es">es</a>
  

  
    <a href="/fruit-en">en</a>
  

  
    <a href="/fruit-de">de</a>
  

  
    <a href="/fruit-ar">ar</a>
  

  
    <a href="/developer-mode-zh">zh</a>
  

  
    <a href="/developer-mode-ja">ja</a>
  

  
    <a href="/developer-mode-hi">hi</a>
  

  
    <a href="/developer-mode-hant">hant</a>
  

  
    <a href="/developer-mode-fr">fr</a>
  

  
    <a href="/developer-mode-es">es</a>
  

  
    <a href="/developer-mode-en">en</a>
  

  
    <a href="/developer-mode-de">de</a>
  

  
    <a href="/developer-mode-ar">ar</a>
  

  
    <a href="/gcp-zh">zh</a>
  

  
    <a href="/gcp-ja">ja</a>
  

  
    <a href="/gcp-hi">hi</a>
  

  
    <a href="/gcp-hant">hant</a>
  

  
    <a href="/gcp-fr">fr</a>
  

  
    <a href="/gcp-es">es</a>
  

  
    <a href="/gcp-en">en</a>
  

  
    <a href="/gcp-de">de</a>
  

  
    <a href="/gcp-ar">ar</a>
  

  
    <a href="/shawl-zh">zh</a>
  

  
    <a href="/input-zh">zh</a>
  

  
    <a href="/hair-zh">zh</a>
  

  
    <a href="/shawl-ja">ja</a>
  

  
    <a href="/input-ja">ja</a>
  

  
    <a href="/hair-ja">ja</a>
  

  
    <a href="/shawl-hi">hi</a>
  

  
    <a href="/input-hi">hi</a>
  

  
    <a href="/hair-hi">hi</a>
  

  
    <a href="/shawl-hant">hant</a>
  

  
    <a href="/input-hant">hant</a>
  

  
    <a href="/hair-hant">hant</a>
  

  
    <a href="/shawl-fr">fr</a>
  

  
    <a href="/input-fr">fr</a>
  

  
    <a href="/hair-fr">fr</a>
  

  
    <a href="/shawl-es">es</a>
  

  
    <a href="/input-es">es</a>
  

  
    <a href="/hair-es">es</a>
  

  
    <a href="/shawl-en">en</a>
  

  
    <a href="/input-en">en</a>
  

  
    <a href="/hair-en">en</a>
  

  
    <a href="/shawl-de">de</a>
  

  
    <a href="/input-de">de</a>
  

  
    <a href="/hair-de">de</a>
  

  
    <a href="/shawl-ar">ar</a>
  

  
    <a href="/input-ar">ar</a>
  

  
    <a href="/hair-ar">ar</a>
  

  
    <a href="/mosquito-zh">zh</a>
  

  
    <a href="/apps-zh">zh</a>
  

  
    <a href="/apps-text-zh">zh</a>
  

  
    <a href="/apps-table-zh">zh</a>
  

  
    <a href="/mosquito-ja">ja</a>
  

  
    <a href="/apps-text-ja">ja</a>
  

  
    <a href="/apps-table-ja">ja</a>
  

  
    <a href="/apps-ja">ja</a>
  

  
    <a href="/mosquito-hi">hi</a>
  

  
    <a href="/apps-text-hi">hi</a>
  

  
    <a href="/apps-table-hi">hi</a>
  

  
    <a href="/apps-hi">hi</a>
  

  
    <a href="/mosquito-hant">hant</a>
  

  
    <a href="/apps-text-hant">hant</a>
  

  
    <a href="/apps-table-hant">hant</a>
  

  
    <a href="/apps-hant">hant</a>
  

  
    <a href="/mosquito-fr">fr</a>
  

  
    <a href="/apps-text-fr">fr</a>
  

  
    <a href="/apps-table-fr">fr</a>
  

  
    <a href="/apps-fr">fr</a>
  

  
    <a href="/mosquito-es">es</a>
  

  
    <a href="/apps-text-es">es</a>
  

  
    <a href="/apps-table-es">es</a>
  

  
    <a href="/apps-es">es</a>
  

  
    <a href="/mosquito-en">en</a>
  

  
    <a href="/apps-text-en">en</a>
  

  
    <a href="/apps-table-en">en</a>
  

  
    <a href="/apps-en">en</a>
  

  
    <a href="/mosquito-de">de</a>
  

  
    <a href="/apps-text-de">de</a>
  

  
    <a href="/apps-table-de">de</a>
  

  
    <a href="/apps-de">de</a>
  

  
    <a href="/mosquito-ar">ar</a>
  

  
    <a href="/apps-text-ar">ar</a>
  

  
    <a href="/apps-table-ar">ar</a>
  

  
    <a href="/apps-ar">ar</a>
  

  
    <a href="/vision-tips-zh">zh</a>
  

  
    <a href="/money-tips-zh">zh</a>
  

  
    <a href="/baby-game-zh">zh</a>
  

  
    <a href="/vision-tips-ja">ja</a>
  

  
    <a href="/money-tips-ja">ja</a>
  

  
    <a href="/baby-game-ja">ja</a>
  

  
    <a href="/vision-tips-hi">hi</a>
  

  
    <a href="/money-tips-hi">hi</a>
  

  
    <a href="/baby-game-hi">hi</a>
  

  
    <a href="/vision-tips-hant">hant</a>
  

  
    <a href="/money-tips-hant">hant</a>
  

  
    <a href="/baby-game-hant">hant</a>
  

  
    <a href="/vision-tips-fr">fr</a>
  

  
    <a href="/money-tips-fr">fr</a>
  

  
    <a href="/baby-game-fr">fr</a>
  

  
    <a href="/vision-tips-es">es</a>
  

  
    <a href="/money-tips-es">es</a>
  

  
    <a href="/baby-game-es">es</a>
  

  
    <a href="/vision-tips-en">en</a>
  

  
    <a href="/money-tips-en">en</a>
  

  
    <a href="/baby-game-en">en</a>
  

  
    <a href="/vision-tips-de">de</a>
  

  
    <a href="/money-tips-de">de</a>
  

  
    <a href="/baby-game-de">de</a>
  

  
    <a href="/vision-tips-ar">ar</a>
  

  
    <a href="/money-tips-ar">ar</a>
  

  
    <a href="/baby-game-ar">ar</a>
  

  
    <a href="/vision-progress-zh">zh</a>
  

  
    <a href="/ai-body-zh">zh</a>
  

  
    <a href="/vision-progress-ja">ja</a>
  

  
    <a href="/ai-body-ja">ja</a>
  

  
    <a href="/vision-progress-hi">hi</a>
  

  
    <a href="/ai-body-hi">hi</a>
  

  
    <a href="/vision-progress-hant">hant</a>
  

  
    <a href="/ai-body-hant">hant</a>
  

  
    <a href="/vision-progress-fr">fr</a>
  

  
    <a href="/ai-body-fr">fr</a>
  

  
    <a href="/vision-progress-es">es</a>
  

  
    <a href="/ai-body-es">es</a>
  

  
    <a href="/vision-progress-en">en</a>
  

  
    <a href="/ai-body-en">en</a>
  

  
    <a href="/vision-progress-de">de</a>
  

  
    <a href="/ai-body-de">de</a>
  

  
    <a href="/vision-progress-ar">ar</a>
  

  
    <a href="/ai-body-ar">ar</a>
  

  
    <a href="/learn-tips-zh">zh</a>
  

  
    <a href="/learn-tips-ja">ja</a>
  

  
    <a href="/learn-tips-hi">hi</a>
  

  
    <a href="/learn-tips-hant">hant</a>
  

  
    <a href="/learn-tips-fr">fr</a>
  

  
    <a href="/learn-tips-es">es</a>
  

  
    <a href="/learn-tips-en">en</a>
  

  
    <a href="/learn-tips-de">de</a>
  

  
    <a href="/learn-tips-ar">ar</a>
  

  
    <a href="/interview-zh">zh</a>
  

  
    <a href="/giffgaff-zh">zh</a>
  

  
    <a href="/interview-ja">ja</a>
  

  
    <a href="/giffgaff-ja">ja</a>
  

  
    <a href="/interview-hi">hi</a>
  

  
    <a href="/giffgaff-hi">hi</a>
  

  
    <a href="/interview-hant">hant</a>
  

  
    <a href="/giffgaff-hant">hant</a>
  

  
    <a href="/interview-fr">fr</a>
  

  
    <a href="/giffgaff-fr">fr</a>
  

  
    <a href="/interview-es">es</a>
  

  
    <a href="/giffgaff-es">es</a>
  

  
    <a href="/interview-en">en</a>
  

  
    <a href="/giffgaff-en">en</a>
  

  
    <a href="/interview-de">de</a>
  

  
    <a href="/giffgaff-de">de</a>
  

  
    <a href="/interview-ar">ar</a>
  

  
    <a href="/giffgaff-ar">ar</a>
  

  
    <a href="/housing-end-zh">zh</a>
  

  
    <a href="/housing-end-ja">ja</a>
  

  
    <a href="/housing-end-hi">hi</a>
  

  
    <a href="/housing-end-hant">hant</a>
  

  
    <a href="/housing-end-fr">fr</a>
  

  
    <a href="/housing-end-es">es</a>
  

  
    <a href="/housing-end-en">en</a>
  

  
    <a href="/housing-end-de">de</a>
  

  
    <a href="/housing-end-ar">ar</a>
  

  
    <a href="/review-2024-zh">zh</a>
  

  
    <a href="/associate-degree-zh">zh</a>
  

  
    <a href="/review-2024-ja">ja</a>
  

  
    <a href="/associate-degree-ja">ja</a>
  

  
    <a href="/review-2024-hi">hi</a>
  

  
    <a href="/associate-degree-hi">hi</a>
  

  
    <a href="/review-2024-hant">hant</a>
  

  
    <a href="/associate-degree-hant">hant</a>
  

  
    <a href="/review-2024-fr">fr</a>
  

  
    <a href="/associate-degree-fr">fr</a>
  

  
    <a href="/review-2024-es">es</a>
  

  
    <a href="/associate-degree-es">es</a>
  

  
    <a href="/review-2024-en">en</a>
  

  
    <a href="/associate-degree-en">en</a>
  

  
    <a href="/review-2024-de">de</a>
  

  
    <a href="/associate-degree-de">de</a>
  

  
    <a href="/review-2024-ar">ar</a>
  

  
    <a href="/associate-degree-ar">ar</a>
  

  
    <a href="/fresh-food-zh">zh</a>
  

  
    <a href="/basketball-zh">zh</a>
  

  
    <a href="/barely-clear-zh">zh</a>
  

  
    <a href="/fresh-food-ja">ja</a>
  

  
    <a href="/basketball-ja">ja</a>
  

  
    <a href="/barely-clear-ja">ja</a>
  

  
    <a href="/fresh-food-hi">hi</a>
  

  
    <a href="/basketball-hi">hi</a>
  

  
    <a href="/barely-clear-hi">hi</a>
  

  
    <a href="/fresh-food-hant">hant</a>
  

  
    <a href="/basketball-hant">hant</a>
  

  
    <a href="/barely-clear-hant">hant</a>
  

  
    <a href="/fresh-food-fr">fr</a>
  

  
    <a href="/basketball-fr">fr</a>
  

  
    <a href="/barely-clear-fr">fr</a>
  

  
    <a href="/fresh-food-es">es</a>
  

  
    <a href="/basketball-es">es</a>
  

  
    <a href="/barely-clear-es">es</a>
  

  
    <a href="/fresh-food-en">en</a>
  

  
    <a href="/basketball-en">en</a>
  

  
    <a href="/barely-clear-en">en</a>
  

  
    <a href="/fresh-food-de">de</a>
  

  
    <a href="/basketball-de">de</a>
  

  
    <a href="/barely-clear-de">de</a>
  

  
    <a href="/fresh-food-ar">ar</a>
  

  
    <a href="/basketball-ar">ar</a>
  

  
    <a href="/barely-clear-ar">ar</a>
  

  
    <a href="/books-zh">zh</a>
  

  
    <a href="/books-ja">ja</a>
  

  
    <a href="/books-hi">hi</a>
  

  
    <a href="/books-hant">hant</a>
  

  
    <a href="/books-fr">fr</a>
  

  
    <a href="/books-es">es</a>
  

  
    <a href="/books-en">en</a>
  

  
    <a href="/books-de">de</a>
  

  
    <a href="/books-ar">ar</a>
  

  
    <a href="/suno-zh">zh</a>
  

  
    <a href="/suno-ja">ja</a>
  

  
    <a href="/suno-hi">hi</a>
  

  
    <a href="/suno-hant">hant</a>
  

  
    <a href="/suno-fr">fr</a>
  

  
    <a href="/suno-es">es</a>
  

  
    <a href="/suno-en">en</a>
  

  
    <a href="/suno-de">de</a>
  

  
    <a href="/suno-ar">ar</a>
  

  
    <a href="/ocbc-zh">zh</a>
  

  
    <a href="/ocbc-ja">ja</a>
  

  
    <a href="/ocbc-hi">hi</a>
  

  
    <a href="/ocbc-hant">hant</a>
  

  
    <a href="/ocbc-fr">fr</a>
  

  
    <a href="/ocbc-es">es</a>
  

  
    <a href="/ocbc-en">en</a>
  

  
    <a href="/ocbc-de">de</a>
  

  
    <a href="/ocbc-ar">ar</a>
  

  
    <a href="/bot-zh">zh</a>
  

  
    <a href="/bot-ja">ja</a>
  

  
    <a href="/bot-hi">hi</a>
  

  
    <a href="/bot-hant">hant</a>
  

  
    <a href="/bot-fr">fr</a>
  

  
    <a href="/bot-es">es</a>
  

  
    <a href="/bot-en">en</a>
  

  
    <a href="/bot-de">de</a>
  

  
    <a href="/bot-ar">ar</a>
  

  
    <a href="/trace-zh">zh</a>
  

  
    <a href="/trace-ja">ja</a>
  

  
    <a href="/trace-hi">hi</a>
  

  
    <a href="/trace-hant">hant</a>
  

  
    <a href="/trace-fr">fr</a>
  

  
    <a href="/trace-es">es</a>
  

  
    <a href="/trace-en">en</a>
  

  
    <a href="/trace-de">de</a>
  

  
    <a href="/trace-ar">ar</a>
  

  
    <a href="/yw-posts-zh">zh</a>
  

  
    <a href="/yw-posts-ja">ja</a>
  

  
    <a href="/yw-posts-hi">hi</a>
  

  
    <a href="/yw-posts-hant">hant</a>
  

  
    <a href="/yw-posts-fr">fr</a>
  

  
    <a href="/yw-posts-es">es</a>
  

  
    <a href="/yw-posts-en">en</a>
  

  
    <a href="/yw-posts-de">de</a>
  

  
    <a href="/yw-posts-ar">ar</a>
  

  
    <a href="/aws-zh">zh</a>
  

  
    <a href="/aws-ja">ja</a>
  

  
    <a href="/aws-hi">hi</a>
  

  
    <a href="/aws-hant">hant</a>
  

  
    <a href="/aws-fr">fr</a>
  

  
    <a href="/aws-es">es</a>
  

  
    <a href="/aws-en">en</a>
  

  
    <a href="/aws-de">de</a>
  

  
    <a href="/aws-ar">ar</a>
  

  
    <a href="/review-2023-zh">zh</a>
  

  
    <a href="/review-2023-ja">ja</a>
  

  
    <a href="/review-2023-hi">hi</a>
  

  
    <a href="/review-2023-hant">hant</a>
  

  
    <a href="/review-2023-fr">fr</a>
  

  
    <a href="/review-2023-es">es</a>
  

  
    <a href="/review-2023-en">en</a>
  

  
    <a href="/review-2023-de">de</a>
  

  
    <a href="/review-2023-ar">ar</a>
  

  
    <a href="/from-neural-zh">zh</a>
  

  
    <a href="/from-neural-ja">ja</a>
  

  
    <a href="/from-neural-hi">hi</a>
  

  
    <a href="/from-neural-hant">hant</a>
  

  
    <a href="/from-neural-fr">fr</a>
  

  
    <a href="/from-neural-es">es</a>
  

  
    <a href="/from-neural-en">en</a>
  

  
    <a href="/from-neural-de">de</a>
  

  
    <a href="/from-neural-ar">ar</a>
  

  
    <a href="/road-trip-tibet-zh">zh</a>
  

  
    <a href="/road-trip-tibet-ja">ja</a>
  

  
    <a href="/road-trip-tibet-hi">hi</a>
  

  
    <a href="/road-trip-tibet-hant">hant</a>
  

  
    <a href="/road-trip-tibet-fr">fr</a>
  

  
    <a href="/road-trip-tibet-es">es</a>
  

  
    <a href="/road-trip-tibet-en">en</a>
  

  
    <a href="/road-trip-tibet-de">de</a>
  

  
    <a href="/road-trip-tibet-ar">ar</a>
  

  
    <a href="/neta-zh">zh</a>
  

  
    <a href="/neta-ja">ja</a>
  

  
    <a href="/neta-hi">hi</a>
  

  
    <a href="/neta-hant">hant</a>
  

  
    <a href="/neta-fr">fr</a>
  

  
    <a href="/neta-es">es</a>
  

  
    <a href="/neta-en">en</a>
  

  
    <a href="/neta-de">de</a>
  

  
    <a href="/neta-ar">ar</a>
  

  
    <a href="/charging-story-zh">zh</a>
  

  
    <a href="/charging-story-ja">ja</a>
  

  
    <a href="/charging-story-hi">hi</a>
  

  
    <a href="/charging-story-hant">hant</a>
  

  
    <a href="/charging-story-fr">fr</a>
  

  
    <a href="/charging-story-es">es</a>
  

  
    <a href="/charging-story-en">en</a>
  

  
    <a href="/charging-story-de">de</a>
  

  
    <a href="/charging-story-ar">ar</a>
  

  
    <a href="/llama-zh">zh</a>
  

  
    <a href="/llama-ja">ja</a>
  

  
    <a href="/llama-hi">hi</a>
  

  
    <a href="/llama-hant">hant</a>
  

  
    <a href="/llama-fr">fr</a>
  

  
    <a href="/llama-es">es</a>
  

  
    <a href="/llama-en">en</a>
  

  
    <a href="/llama-de">de</a>
  

  
    <a href="/llama-ar">ar</a>
  

  
    <a href="/computer-zh">zh</a>
  

  
    <a href="/computer-ja">ja</a>
  

  
    <a href="/computer-hi">hi</a>
  

  
    <a href="/computer-hant">hant</a>
  

  
    <a href="/computer-fr">fr</a>
  

  
    <a href="/computer-es">es</a>
  

  
    <a href="/computer-en">en</a>
  

  
    <a href="/computer-de">de</a>
  

  
    <a href="/computer-ar">ar</a>
  

  
    <a href="/bring-kids-zh">zh</a>
  

  
    <a href="/bring-kids-ja">ja</a>
  

  
    <a href="/bring-kids-hi">hi</a>
  

  
    <a href="/bring-kids-hant">hant</a>
  

  
    <a href="/bring-kids-fr">fr</a>
  

  
    <a href="/bring-kids-es">es</a>
  

  
    <a href="/bring-kids-en">en</a>
  

  
    <a href="/bring-kids-de">de</a>
  

  
    <a href="/bring-kids-ar">ar</a>
  

  
    <a href="/learn-wisdom-zh">zh</a>
  

  
    <a href="/learn-wisdom-ja">ja</a>
  

  
    <a href="/learn-wisdom-hi">hi</a>
  

  
    <a href="/learn-wisdom-hant">hant</a>
  

  
    <a href="/learn-wisdom-fr">fr</a>
  

  
    <a href="/learn-wisdom-es">es</a>
  

  
    <a href="/learn-wisdom-en">en</a>
  

  
    <a href="/learn-wisdom-de">de</a>
  

  
    <a href="/learn-wisdom-ar">ar</a>
  

  
    <a href="/nihongo-zh">zh</a>
  

  
    <a href="/nihongo-ja">ja</a>
  

  
    <a href="/nihongo-hi">hi</a>
  

  
    <a href="/nihongo-hant">hant</a>
  

  
    <a href="/nihongo-fr">fr</a>
  

  
    <a href="/nihongo-es">es</a>
  

  
    <a href="/nihongo-en">en</a>
  

  
    <a href="/nihongo-de">de</a>
  

  
    <a href="/nihongo-ar">ar</a>
  

  
    <a href="/agi-zh">zh</a>
  

  
    <a href="/agi-ja">ja</a>
  

  
    <a href="/agi-hi">hi</a>
  

  
    <a href="/agi-hant">hant</a>
  

  
    <a href="/agi-fr">fr</a>
  

  
    <a href="/agi-es">es</a>
  

  
    <a href="/agi-en">en</a>
  

  
    <a href="/agi-de">de</a>
  

  
    <a href="/agi-ar">ar</a>
  

  
    <a href="/ml-job-zh">zh</a>
  

  
    <a href="/ml-job-ja">ja</a>
  

  
    <a href="/ml-job-hi">hi</a>
  

  
    <a href="/ml-job-hant">hant</a>
  

  
    <a href="/ml-job-fr">fr</a>
  

  
    <a href="/ml-job-es">es</a>
  

  
    <a href="/ml-job-en">en</a>
  

  
    <a href="/ml-job-de">de</a>
  

  
    <a href="/ml-job-ar">ar</a>
  

  
    <a href="/azure-zh">zh</a>
  

  
    <a href="/azure-ja">ja</a>
  

  
    <a href="/azure-hi">hi</a>
  

  
    <a href="/azure-hant">hant</a>
  

  
    <a href="/azure-fr">fr</a>
  

  
    <a href="/azure-es">es</a>
  

  
    <a href="/azure-en">en</a>
  

  
    <a href="/azure-de">de</a>
  

  
    <a href="/azure-ar">ar</a>
  

  
    <a href="/zen-neural-zh">zh</a>
  

  
    <a href="/zen-neural-ja">ja</a>
  

  
    <a href="/zen-neural-hi">hi</a>
  

  
    <a href="/zen-neural-hant">hant</a>
  

  
    <a href="/zen-neural-fr">fr</a>
  

  
    <a href="/zen-neural-es">es</a>
  

  
    <a href="/zen-neural-en">en</a>
  

  
    <a href="/zen-neural-de">de</a>
  

  
    <a href="/zen-neural-ar">ar</a>
  

  
    <a href="/10yo-zh">zh</a>
  

  
    <a href="/10yo-ja">ja</a>
  

  
    <a href="/10yo-hi">hi</a>
  

  
    <a href="/10yo-hant">hant</a>
  

  
    <a href="/10yo-fr">fr</a>
  

  
    <a href="/10yo-es">es</a>
  

  
    <a href="/10yo-en">en</a>
  

  
    <a href="/10yo-de">de</a>
  

  
    <a href="/10yo-ar">ar</a>
  

  
    <a href="/astigmatism-zh">zh</a>
  

  
    <a href="/astigmatism-ja">ja</a>
  

  
    <a href="/astigmatism-hi">hi</a>
  

  
    <a href="/astigmatism-hant">hant</a>
  

  
    <a href="/astigmatism-fr">fr</a>
  

  
    <a href="/astigmatism-es">es</a>
  

  
    <a href="/astigmatism-en">en</a>
  

  
    <a href="/astigmatism-de">de</a>
  

  
    <a href="/astigmatism-ar">ar</a>
  

  
    <a href="/vision-restoration-zh">zh</a>
  

  
    <a href="/change-zh">zh</a>
  

  
    <a href="/vision-restoration-ja">ja</a>
  

  
    <a href="/change-ja">ja</a>
  

  
    <a href="/vision-restoration-hi">hi</a>
  

  
    <a href="/change-hi">hi</a>
  

  
    <a href="/vision-restoration-hant">hant</a>
  

  
    <a href="/change-hant">hant</a>
  

  
    <a href="/vision-restoration-fr">fr</a>
  

  
    <a href="/change-fr">fr</a>
  

  
    <a href="/vision-restoration-es">es</a>
  

  
    <a href="/change-es">es</a>
  

  
    <a href="/vision-restoration-en">en</a>
  

  
    <a href="/change-en">en</a>
  

  
    <a href="/vision-restoration-de">de</a>
  

  
    <a href="/change-de">de</a>
  

  
    <a href="/vision-restoration-ar">ar</a>
  

  
    <a href="/change-ar">ar</a>
  

  
    <a href="/neural-network-zh">zh</a>
  

  
    <a href="/neural-network-ja">ja</a>
  

  
    <a href="/neural-network-hi">hi</a>
  

  
    <a href="/neural-network-hant">hant</a>
  

  
    <a href="/neural-network-fr">fr</a>
  

  
    <a href="/neural-network-es">es</a>
  

  
    <a href="/neural-network-en">en</a>
  

  
    <a href="/neural-network-de">de</a>
  

  
    <a href="/neural-network-ar">ar</a>
  

  
    <a href="/hongkong-trip-zh">zh</a>
  

  
    <a href="/hongkong-trip-ja">ja</a>
  

  
    <a href="/hongkong-trip-hi">hi</a>
  

  
    <a href="/hongkong-trip-hant">hant</a>
  

  
    <a href="/hongkong-trip-fr">fr</a>
  

  
    <a href="/hongkong-trip-es">es</a>
  

  
    <a href="/hongkong-trip-en">en</a>
  

  
    <a href="/hongkong-trip-de">de</a>
  

  
    <a href="/hongkong-trip-ar">ar</a>
  

  
    <a href="/answers-zh">zh</a>
  

  
    <a href="/answers-ja">ja</a>
  

  
    <a href="/answers-hi">hi</a>
  

  
    <a href="/answers-hant">hant</a>
  

  
    <a href="/answers-fr">fr</a>
  

  
    <a href="/answers-es">es</a>
  

  
    <a href="/answers-en">en</a>
  

  
    <a href="/answers-de">de</a>
  

  
    <a href="/answers-ar">ar</a>
  

  
    <a href="/japanese-zh">zh</a>
  

  
    <a href="/japanese-ja">ja</a>
  

  
    <a href="/japanese-hi">hi</a>
  

  
    <a href="/japanese-hant">hant</a>
  

  
    <a href="/japanese-fr">fr</a>
  

  
    <a href="/japanese-es">es</a>
  

  
    <a href="/japanese-en">en</a>
  

  
    <a href="/japanese-de">de</a>
  

  
    <a href="/japanese-ar">ar</a>
  

  
    <a href="/macao-zh">zh</a>
  

  
    <a href="/macao-ja">ja</a>
  

  
    <a href="/macao-hi">hi</a>
  

  
    <a href="/macao-hant">hant</a>
  

  
    <a href="/macao-fr">fr</a>
  

  
    <a href="/macao-es">es</a>
  

  
    <a href="/macao-en">en</a>
  

  
    <a href="/macao-de">de</a>
  

  
    <a href="/macao-ar">ar</a>
  

  
    <a href="/spring-zh">zh</a>
  

  
    <a href="/spring-ja">ja</a>
  

  
    <a href="/spring-hi">hi</a>
  

  
    <a href="/spring-hant">hant</a>
  

  
    <a href="/spring-fr">fr</a>
  

  
    <a href="/spring-es">es</a>
  

  
    <a href="/spring-en">en</a>
  

  
    <a href="/spring-de">de</a>
  

  
    <a href="/spring-ar">ar</a>
  

  
    <a href="/creative-ideas-zh">zh</a>
  

  
    <a href="/creative-ideas-ja">ja</a>
  

  
    <a href="/creative-ideas-hi">hi</a>
  

  
    <a href="/creative-ideas-hant">hant</a>
  

  
    <a href="/creative-ideas-fr">fr</a>
  

  
    <a href="/creative-ideas-es">es</a>
  

  
    <a href="/creative-ideas-en">en</a>
  

  
    <a href="/creative-ideas-de">de</a>
  

  
    <a href="/creative-ideas-ar">ar</a>
  

  
    <a href="/learn-anything-zh">zh</a>
  

  
    <a href="/learn-anything-ja">ja</a>
  

  
    <a href="/learn-anything-hi">hi</a>
  

  
    <a href="/learn-anything-hant">hant</a>
  

  
    <a href="/learn-anything-fr">fr</a>
  

  
    <a href="/learn-anything-es">es</a>
  

  
    <a href="/learn-anything-en">en</a>
  

  
    <a href="/learn-anything-de">de</a>
  

  
    <a href="/learn-anything-ar">ar</a>
  

  
    <a href="/chat-gpt-zh">zh</a>
  

  
    <a href="/chat-gpt-ja">ja</a>
  

  
    <a href="/chat-gpt-hi">hi</a>
  

  
    <a href="/chat-gpt-hant">hant</a>
  

  
    <a href="/chat-gpt-fr">fr</a>
  

  
    <a href="/chat-gpt-es">es</a>
  

  
    <a href="/chat-gpt-en">en</a>
  

  
    <a href="/chat-gpt-de">de</a>
  

  
    <a href="/chat-gpt-ar">ar</a>
  

  
    <a href="/cloud-platforms-zh">zh</a>
  

  
    <a href="/cloud-platforms-ja">ja</a>
  

  
    <a href="/cloud-platforms-hi">hi</a>
  

  
    <a href="/cloud-platforms-hant">hant</a>
  

  
    <a href="/cloud-platforms-fr">fr</a>
  

  
    <a href="/cloud-platforms-es">es</a>
  

  
    <a href="/cloud-platforms-en">en</a>
  

  
    <a href="/cloud-platforms-de">de</a>
  

  
    <a href="/cloud-platforms-ar">ar</a>
  

  
    <a href="/good-buys-zh">zh</a>
  

  
    <a href="/good-buys-ja">ja</a>
  

  
    <a href="/good-buys-hi">hi</a>
  

  
    <a href="/good-buys-hant">hant</a>
  

  
    <a href="/good-buys-fr">fr</a>
  

  
    <a href="/good-buys-es">es</a>
  

  
    <a href="/good-buys-en">en</a>
  

  
    <a href="/good-buys-de">de</a>
  

  
    <a href="/good-buys-ar">ar</a>
  

  
    <a href="/sharpest-zh">zh</a>
  

  
    <a href="/sharpest-ja">ja</a>
  

  
    <a href="/sharpest-hi">hi</a>
  

  
    <a href="/sharpest-hant">hant</a>
  

  
    <a href="/sharpest-fr">fr</a>
  

  
    <a href="/sharpest-es">es</a>
  

  
    <a href="/sharpest-en">en</a>
  

  
    <a href="/sharpest-de">de</a>
  

  
    <a href="/sharpest-ar">ar</a>
  

  
    <a href="/pcf-zh">zh</a>
  

  
    <a href="/pcf-ja">ja</a>
  

  
    <a href="/pcf-hi">hi</a>
  

  
    <a href="/pcf-hant">hant</a>
  

  
    <a href="/pcf-fr">fr</a>
  

  
    <a href="/pcf-es">es</a>
  

  
    <a href="/pcf-en">en</a>
  

  
    <a href="/pcf-de">de</a>
  

  
    <a href="/pcf-ar">ar</a>
  

  
    <a href="/driving-zh">zh</a>
  

  
    <a href="/driving-ja">ja</a>
  

  
    <a href="/driving-hi">hi</a>
  

  
    <a href="/driving-hant">hant</a>
  

  
    <a href="/driving-fr">fr</a>
  

  
    <a href="/driving-es">es</a>
  

  
    <a href="/driving-en">en</a>
  

  
    <a href="/driving-de">de</a>
  

  
    <a href="/driving-ar">ar</a>
  

  
    <a href="/recipe-zh">zh</a>
  

  
    <a href="/recipe-ja">ja</a>
  

  
    <a href="/recipe-hi">hi</a>
  

  
    <a href="/recipe-hant">hant</a>
  

  
    <a href="/recipe-fr">fr</a>
  

  
    <a href="/recipe-es">es</a>
  

  
    <a href="/recipe-en">en</a>
  

  
    <a href="/recipe-de">de</a>
  

  
    <a href="/recipe-ar">ar</a>
  

  
    <a href="/showmebug-zh">zh</a>
  

  
    <a href="/ruby-on-rails-zh">zh</a>
  

  
    <a href="/enterprise-wechat-zh">zh</a>
  

  
    <a href="/showmebug-ja">ja</a>
  

  
    <a href="/ruby-on-rails-ja">ja</a>
  

  
    <a href="/enterprise-wechat-ja">ja</a>
  

  
    <a href="/showmebug-hi">hi</a>
  

  
    <a href="/ruby-on-rails-hi">hi</a>
  

  
    <a href="/enterprise-wechat-hi">hi</a>
  

  
    <a href="/showmebug-hant">hant</a>
  

  
    <a href="/ruby-on-rails-hant">hant</a>
  

  
    <a href="/enterprise-wechat-hant">hant</a>
  

  
    <a href="/showmebug-fr">fr</a>
  

  
    <a href="/ruby-on-rails-fr">fr</a>
  

  
    <a href="/enterprise-wechat-fr">fr</a>
  

  
    <a href="/showmebug-es">es</a>
  

  
    <a href="/ruby-on-rails-es">es</a>
  

  
    <a href="/enterprise-wechat-es">es</a>
  

  
    <a href="/showmebug-en">en</a>
  

  
    <a href="/ruby-on-rails-en">en</a>
  

  
    <a href="/enterprise-wechat-en">en</a>
  

  
    <a href="/showmebug-de">de</a>
  

  
    <a href="/ruby-on-rails-de">de</a>
  

  
    <a href="/enterprise-wechat-de">de</a>
  

  
    <a href="/showmebug-ar">ar</a>
  

  
    <a href="/ruby-on-rails-ar">ar</a>
  

  
    <a href="/enterprise-wechat-ar">ar</a>
  

  
    <a href="/algorithm-solutions-zh">zh</a>
  

  
    <a href="/algorithm-solutions-ja">ja</a>
  

  
    <a href="/algorithm-solutions-hi">hi</a>
  

  
    <a href="/algorithm-solutions-hant">hant</a>
  

  
    <a href="/algorithm-solutions-fr">fr</a>
  

  
    <a href="/algorithm-solutions-es">es</a>
  

  
    <a href="/algorithm-solutions-en">en</a>
  

  
    <a href="/algorithm-solutions-de">de</a>
  

  
    <a href="/algorithm-solutions-ar">ar</a>
  

  
    <a href="/youtube-tv-zh">zh</a>
  

  
    <a href="/youtube-tv-ja">ja</a>
  

  
    <a href="/youtube-tv-hi">hi</a>
  

  
    <a href="/youtube-tv-hant">hant</a>
  

  
    <a href="/youtube-tv-fr">fr</a>
  

  
    <a href="/youtube-tv-es">es</a>
  

  
    <a href="/youtube-tv-en">en</a>
  

  
    <a href="/youtube-tv-de">de</a>
  

  
    <a href="/youtube-tv-ar">ar</a>
  

  
    <a href="/scrape-zh">zh</a>
  

  
    <a href="/scrape-ja">ja</a>
  

  
    <a href="/scrape-hi">hi</a>
  

  
    <a href="/scrape-hant">hant</a>
  

  
    <a href="/scrape-fr">fr</a>
  

  
    <a href="/scrape-es">es</a>
  

  
    <a href="/scrape-en">en</a>
  

  
    <a href="/scrape-de">de</a>
  

  
    <a href="/scrape-ar">ar</a>
  

  
    <a href="/python-zh">zh</a>
  

  
    <a href="/feynman-zh">zh</a>
  

  
    <a href="/python-ja">ja</a>
  

  
    <a href="/feynman-ja">ja</a>
  

  
    <a href="/python-hi">hi</a>
  

  
    <a href="/feynman-hi">hi</a>
  

  
    <a href="/python-hant">hant</a>
  

  
    <a href="/feynman-hant">hant</a>
  

  
    <a href="/python-fr">fr</a>
  

  
    <a href="/feynman-fr">fr</a>
  

  
    <a href="/python-es">es</a>
  

  
    <a href="/feynman-es">es</a>
  

  
    <a href="/python-en">en</a>
  

  
    <a href="/feynman-en">en</a>
  

  
    <a href="/python-de">de</a>
  

  
    <a href="/feynman-de">de</a>
  

  
    <a href="/python-ar">ar</a>
  

  
    <a href="/feynman-ar">ar</a>
  

  
    <a href="/oj-zh">zh</a>
  

  
    <a href="/oj-ja">ja</a>
  

  
    <a href="/oj-hi">hi</a>
  

  
    <a href="/oj-hant">hant</a>
  

  
    <a href="/oj-fr">fr</a>
  

  
    <a href="/oj-es">es</a>
  

  
    <a href="/oj-en">en</a>
  

  
    <a href="/oj-de">de</a>
  

  
    <a href="/oj-ar">ar</a>
  

  
    <a href="/redis-zh">zh</a>
  

  
    <a href="/redis-ja">ja</a>
  

  
    <a href="/redis-hi">hi</a>
  

  
    <a href="/redis-hant">hant</a>
  

  
    <a href="/redis-fr">fr</a>
  

  
    <a href="/redis-es">es</a>
  

  
    <a href="/redis-en">en</a>
  

  
    <a href="/redis-de">de</a>
  

  
    <a href="/redis-ar">ar</a>
  

  
    <a href="/start-zh">zh</a>
  

  
    <a href="/ml-zh">zh</a>
  

  
    <a href="/start-ja">ja</a>
  

  
    <a href="/ml-ja">ja</a>
  

  
    <a href="/start-hi">hi</a>
  

  
    <a href="/ml-hi">hi</a>
  

  
    <a href="/start-hant">hant</a>
  

  
    <a href="/ml-hant">hant</a>
  

  
    <a href="/start-fr">fr</a>
  

  
    <a href="/ml-fr">fr</a>
  

  
    <a href="/start-es">es</a>
  

  
    <a href="/ml-es">es</a>
  

  
    <a href="/start-en">en</a>
  

  
    <a href="/ml-en">en</a>
  

  
    <a href="/start-de">de</a>
  

  
    <a href="/ml-de">de</a>
  

  
    <a href="/start-ar">ar</a>
  

  
    <a href="/ml-ar">ar</a>
  

  
    <a href="/distributed-zh">zh</a>
  

  
    <a href="/distributed-ja">ja</a>
  

  
    <a href="/distributed-hi">hi</a>
  

  
    <a href="/distributed-hant">hant</a>
  

  
    <a href="/distributed-fr">fr</a>
  

  
    <a href="/distributed-es">es</a>
  

  
    <a href="/distributed-en">en</a>
  

  
    <a href="/distributed-de">de</a>
  

  
    <a href="/distributed-ar">ar</a>
  

  
    <a href="/google-access-zh">zh</a>
  

  
    <a href="/google-access-ja">ja</a>
  

  
    <a href="/google-access-hi">hi</a>
  

  
    <a href="/google-access-hant">hant</a>
  

  
    <a href="/google-access-fr">fr</a>
  

  
    <a href="/google-access-es">es</a>
  

  
    <a href="/google-access-en">en</a>
  

  
    <a href="/google-access-de">de</a>
  

  
    <a href="/google-access-ar">ar</a>
  

  
    <a href="/web-zh">zh</a>
  

  
    <a href="/web-ja">ja</a>
  

  
    <a href="/web-hi">hi</a>
  

  
    <a href="/web-hant">hant</a>
  

  
    <a href="/web-fr">fr</a>
  

  
    <a href="/web-es">es</a>
  

  
    <a href="/web-en">en</a>
  

  
    <a href="/web-de">de</a>
  

  
    <a href="/web-ar">ar</a>
  

  
    <a href="/rust-zh">zh</a>
  

  
    <a href="/rust-ja">ja</a>
  

  
    <a href="/rust-hi">hi</a>
  

  
    <a href="/rust-hant">hant</a>
  

  
    <a href="/rust-fr">fr</a>
  

  
    <a href="/rust-es">es</a>
  

  
    <a href="/rust-en">en</a>
  

  
    <a href="/rust-de">de</a>
  

  
    <a href="/rust-ar">ar</a>
  

  
    <a href="/curiosity-courses-zh">zh</a>
  

  
    <a href="/curiosity-courses-ja">ja</a>
  

  
    <a href="/curiosity-courses-hi">hi</a>
  

  
    <a href="/curiosity-courses-hant">hant</a>
  

  
    <a href="/curiosity-courses-fr">fr</a>
  

  
    <a href="/curiosity-courses-es">es</a>
  

  
    <a href="/curiosity-courses-en">en</a>
  

  
    <a href="/curiosity-courses-de">de</a>
  

  
    <a href="/curiosity-courses-ar">ar</a>
  

  
    <a href="/learn-japanese-zh">zh</a>
  

  
    <a href="/learn-japanese-ja">ja</a>
  

  
    <a href="/learn-japanese-hi">hi</a>
  

  
    <a href="/learn-japanese-hant">hant</a>
  

  
    <a href="/learn-japanese-fr">fr</a>
  

  
    <a href="/learn-japanese-es">es</a>
  

  
    <a href="/learn-japanese-en">en</a>
  

  
    <a href="/learn-japanese-de">de</a>
  

  
    <a href="/learn-japanese-ar">ar</a>
  

  
    <a href="/english-zh">zh</a>
  

  
    <a href="/english-ja">ja</a>
  

  
    <a href="/english-hi">hi</a>
  

  
    <a href="/english-hant">hant</a>
  

  
    <a href="/english-fr">fr</a>
  

  
    <a href="/english-es">es</a>
  

  
    <a href="/english-en">en</a>
  

  
    <a href="/english-de">de</a>
  

  
    <a href="/english-ar">ar</a>
  

  
    <a href="/future-kids-zh">zh</a>
  

  
    <a href="/future-kids-ja">ja</a>
  

  
    <a href="/future-kids-hi">hi</a>
  

  
    <a href="/future-kids-hant">hant</a>
  

  
    <a href="/future-kids-fr">fr</a>
  

  
    <a href="/future-kids-es">es</a>
  

  
    <a href="/future-kids-en">en</a>
  

  
    <a href="/future-kids-de">de</a>
  

  
    <a href="/future-kids-ar">ar</a>
  

  
    <a href="/only-do-zh">zh</a>
  

  
    <a href="/only-do-ja">ja</a>
  

  
    <a href="/only-do-hi">hi</a>
  

  
    <a href="/only-do-hant">hant</a>
  

  
    <a href="/only-do-fr">fr</a>
  

  
    <a href="/only-do-es">es</a>
  

  
    <a href="/only-do-en">en</a>
  

  
    <a href="/only-do-de">de</a>
  

  
    <a href="/only-do-ar">ar</a>
  

  
    <a href="/viral-zh">zh</a>
  

  
    <a href="/viral-ja">ja</a>
  

  
    <a href="/viral-hi">hi</a>
  

  
    <a href="/viral-hant">hant</a>
  

  
    <a href="/viral-fr">fr</a>
  

  
    <a href="/viral-es">es</a>
  

  
    <a href="/viral-en">en</a>
  

  
    <a href="/viral-de">de</a>
  

  
    <a href="/viral-ar">ar</a>
  

  
    <a href="/think-zh">zh</a>
  

  
    <a href="/think-ja">ja</a>
  

  
    <a href="/think-hi">hi</a>
  

  
    <a href="/think-hant">hant</a>
  

  
    <a href="/think-fr">fr</a>
  

  
    <a href="/think-es">es</a>
  

  
    <a href="/think-en">en</a>
  

  
    <a href="/think-de">de</a>
  

  
    <a href="/think-ar">ar</a>
  

  
    <a href="/science-zh">zh</a>
  

  
    <a href="/science-ja">ja</a>
  

  
    <a href="/science-hi">hi</a>
  

  
    <a href="/science-hant">hant</a>
  

  
    <a href="/science-fr">fr</a>
  

  
    <a href="/science-es">es</a>
  

  
    <a href="/science-en">en</a>
  

  
    <a href="/science-de">de</a>
  

  
    <a href="/science-ar">ar</a>
  

  
    <a href="/my-plan-zh">zh</a>
  

  
    <a href="/my-plan-ja">ja</a>
  

  
    <a href="/my-plan-hi">hi</a>
  

  
    <a href="/my-plan-hant">hant</a>
  

  
    <a href="/my-plan-fr">fr</a>
  

  
    <a href="/my-plan-es">es</a>
  

  
    <a href="/my-plan-en">en</a>
  

  
    <a href="/my-plan-de">de</a>
  

  
    <a href="/my-plan-ar">ar</a>
  

  
    <a href="/relationship-zh">zh</a>
  

  
    <a href="/relationship-ja">ja</a>
  

  
    <a href="/relationship-hi">hi</a>
  

  
    <a href="/relationship-hant">hant</a>
  

  
    <a href="/relationship-fr">fr</a>
  

  
    <a href="/relationship-es">es</a>
  

  
    <a href="/relationship-en">en</a>
  

  
    <a href="/relationship-de">de</a>
  

  
    <a href="/relationship-ar">ar</a>
  

  
    <a href="/project-zh">zh</a>
  

  
    <a href="/project-ja">ja</a>
  

  
    <a href="/project-hi">hi</a>
  

  
    <a href="/project-hant">hant</a>
  

  
    <a href="/project-fr">fr</a>
  

  
    <a href="/project-es">es</a>
  

  
    <a href="/project-en">en</a>
  

  
    <a href="/project-de">de</a>
  

  
    <a href="/project-ar">ar</a>
  

  
    <a href="/growth-zh">zh</a>
  

  
    <a href="/growth-ja">ja</a>
  

  
    <a href="/growth-hi">hi</a>
  

  
    <a href="/growth-hant">hant</a>
  

  
    <a href="/growth-fr">fr</a>
  

  
    <a href="/growth-es">es</a>
  

  
    <a href="/growth-en">en</a>
  

  
    <a href="/growth-de">de</a>
  

  
    <a href="/growth-ar">ar</a>
  

  
    <a href="/organic-zh">zh</a>
  

  
    <a href="/organic-ja">ja</a>
  

  
    <a href="/organic-hi">hi</a>
  

  
    <a href="/organic-hant">hant</a>
  

  
    <a href="/organic-fr">fr</a>
  

  
    <a href="/organic-es">es</a>
  

  
    <a href="/organic-en">en</a>
  

  
    <a href="/organic-de">de</a>
  

  
    <a href="/organic-ar">ar</a>
  

  
    <a href="/desire-zh">zh</a>
  

  
    <a href="/desire-ja">ja</a>
  

  
    <a href="/desire-hi">hi</a>
  

  
    <a href="/desire-hant">hant</a>
  

  
    <a href="/desire-fr">fr</a>
  

  
    <a href="/desire-es">es</a>
  

  
    <a href="/desire-en">en</a>
  

  
    <a href="/desire-de">de</a>
  

  
    <a href="/desire-ar">ar</a>
  

  
    <a href="/job-zh">zh</a>
  

  
    <a href="/job-ja">ja</a>
  

  
    <a href="/job-hi">hi</a>
  

  
    <a href="/job-hant">hant</a>
  

  
    <a href="/job-fr">fr</a>
  

  
    <a href="/job-es">es</a>
  

  
    <a href="/job-en">en</a>
  

  
    <a href="/job-de">de</a>
  

  
    <a href="/job-ar">ar</a>
  

  
    <a href="/journey-zh">zh</a>
  

  
    <a href="/journey-ja">ja</a>
  

  
    <a href="/journey-hi">hi</a>
  

  
    <a href="/journey-hant">hant</a>
  

  
    <a href="/journey-fr">fr</a>
  

  
    <a href="/journey-es">es</a>
  

  
    <a href="/journey-en">en</a>
  

  
    <a href="/journey-de">de</a>
  

  
    <a href="/journey-ar">ar</a>
  

  
    <a href="/lvchensign-zh">zh</a>
  

  
    <a href="/lvchensign-ja">ja</a>
  

  
    <a href="/lvchensign-hi">hi</a>
  

  
    <a href="/lvchensign-hant">hant</a>
  

  
    <a href="/lvchensign-fr">fr</a>
  

  
    <a href="/lvchensign-es">es</a>
  

  
    <a href="/lvchensign-en">en</a>
  

  
    <a href="/lvchensign-de">de</a>
  

  
    <a href="/lvchensign-ar">ar</a>
  

  
    <a href="/present-future-zh">zh</a>
  

  
    <a href="/present-future-ja">ja</a>
  

  
    <a href="/present-future-hi">hi</a>
  

  
    <a href="/present-future-hant">hant</a>
  

  
    <a href="/present-future-fr">fr</a>
  

  
    <a href="/present-future-es">es</a>
  

  
    <a href="/present-future-en">en</a>
  

  
    <a href="/present-future-de">de</a>
  

  
    <a href="/present-future-ar">ar</a>
  

  
    <a href="/thanks-zh">zh</a>
  

  
    <a href="/thanks-ja">ja</a>
  

  
    <a href="/thanks-hi">hi</a>
  

  
    <a href="/thanks-hant">hant</a>
  

  
    <a href="/thanks-fr">fr</a>
  

  
    <a href="/thanks-es">es</a>
  

  
    <a href="/thanks-en">en</a>
  

  
    <a href="/thanks-de">de</a>
  

  
    <a href="/thanks-ar">ar</a>
  

  
    <a href="/truth-zh">zh</a>
  

  
    <a href="/truth-ja">ja</a>
  

  
    <a href="/truth-hi">hi</a>
  

  
    <a href="/truth-hant">hant</a>
  

  
    <a href="/truth-fr">fr</a>
  

  
    <a href="/truth-es">es</a>
  

  
    <a href="/truth-en">en</a>
  

  
    <a href="/truth-de">de</a>
  

  
    <a href="/truth-ar">ar</a>
  

  
    <a href="/blog-zh">zh</a>
  

  
    <a href="/blog-ja">ja</a>
  

  
    <a href="/blog-hi">hi</a>
  

  
    <a href="/blog-hant">hant</a>
  

  
    <a href="/blog-fr">fr</a>
  

  
    <a href="/blog-es">es</a>
  

  
    <a href="/blog-en">en</a>
  

  
    <a href="/blog-de">de</a>
  

  
    <a href="/blog-ar">ar</a>
  

  
    <a href="/china-zh">zh</a>
  

  
    <a href="/china-ja">ja</a>
  

  
    <a href="/china-hi">hi</a>
  

  
    <a href="/china-hant">hant</a>
  

  
    <a href="/china-fr">fr</a>
  

  
    <a href="/china-es">es</a>
  

  
    <a href="/china-en">en</a>
  

  
    <a href="/china-de">de</a>
  

  
    <a href="/china-ar">ar</a>
  

  
    <a href="/secrets-zh">zh</a>
  

  
    <a href="/secrets-ja">ja</a>
  

  
    <a href="/secrets-hi">hi</a>
  

  
    <a href="/secrets-hant">hant</a>
  

  
    <a href="/secrets-fr">fr</a>
  

  
    <a href="/secrets-es">es</a>
  

  
    <a href="/secrets-en">en</a>
  

  
    <a href="/secrets-de">de</a>
  

  
    <a href="/secrets-ar">ar</a>
  

  
    <a href="/china-economy-zh">zh</a>
  

  
    <a href="/china-economy-ja">ja</a>
  

  
    <a href="/china-economy-hi">hi</a>
  

  
    <a href="/china-economy-hant">hant</a>
  

  
    <a href="/china-economy-fr">fr</a>
  

  
    <a href="/china-economy-es">es</a>
  

  
    <a href="/china-economy-en">en</a>
  

  
    <a href="/china-economy-de">de</a>
  

  
    <a href="/china-economy-ar">ar</a>
  

  
    <a href="/house-zh">zh</a>
  

  
    <a href="/house-ja">ja</a>
  

  
    <a href="/house-hi">hi</a>
  

  
    <a href="/house-hant">hant</a>
  

  
    <a href="/house-fr">fr</a>
  

  
    <a href="/house-es">es</a>
  

  
    <a href="/house-en">en</a>
  

  
    <a href="/house-de">de</a>
  

  
    <a href="/house-ar">ar</a>
  

  
    <a href="/future-zh">zh</a>
  

  
    <a href="/future-ja">ja</a>
  

  
    <a href="/future-hi">hi</a>
  

  
    <a href="/future-hant">hant</a>
  

  
    <a href="/future-fr">fr</a>
  

  
    <a href="/future-es">es</a>
  

  
    <a href="/future-en">en</a>
  

  
    <a href="/future-de">de</a>
  

  
    <a href="/future-ar">ar</a>
  

  
    <a href="/success-zh">zh</a>
  

  
    <a href="/success-ja">ja</a>
  

  
    <a href="/success-hi">hi</a>
  

  
    <a href="/success-hant">hant</a>
  

  
    <a href="/success-fr">fr</a>
  

  
    <a href="/success-es">es</a>
  

  
    <a href="/success-en">en</a>
  

  
    <a href="/success-de">de</a>
  

  
    <a href="/success-ar">ar</a>
  

  
    <a href="/shutdown-zh">zh</a>
  

  
    <a href="/shutdown-ja">ja</a>
  

  
    <a href="/shutdown-hi">hi</a>
  

  
    <a href="/shutdown-hant">hant</a>
  

  
    <a href="/shutdown-fr">fr</a>
  

  
    <a href="/shutdown-es">es</a>
  

  
    <a href="/shutdown-en">en</a>
  

  
    <a href="/shutdown-de">de</a>
  

  
    <a href="/shutdown-ar">ar</a>
  

  
    <a href="/yesterday-zh">zh</a>
  

  
    <a href="/yesterday-ja">ja</a>
  

  
    <a href="/yesterday-hi">hi</a>
  

  
    <a href="/yesterday-hant">hant</a>
  

  
    <a href="/yesterday-fr">fr</a>
  

  
    <a href="/yesterday-es">es</a>
  

  
    <a href="/yesterday-en">en</a>
  

  
    <a href="/yesterday-de">de</a>
  

  
    <a href="/yesterday-ar">ar</a>
  

  
    <a href="/reflections-zh">zh</a>
  

  
    <a href="/reflections-ja">ja</a>
  

  
    <a href="/reflections-hi">hi</a>
  

  
    <a href="/reflections-hant">hant</a>
  

  
    <a href="/reflections-fr">fr</a>
  

  
    <a href="/reflections-es">es</a>
  

  
    <a href="/reflections-en">en</a>
  

  
    <a href="/reflections-de">de</a>
  

  
    <a href="/reflections-ar">ar</a>
  

  
    <a href="/profit-zh">zh</a>
  

  
    <a href="/profit-ja">ja</a>
  

  
    <a href="/profit-hi">hi</a>
  

  
    <a href="/profit-hant">hant</a>
  

  
    <a href="/profit-fr">fr</a>
  

  
    <a href="/profit-es">es</a>
  

  
    <a href="/profit-en">en</a>
  

  
    <a href="/profit-de">de</a>
  

  
    <a href="/profit-ar">ar</a>
  

  
    <a href="/people-zh">zh</a>
  

  
    <a href="/people-ja">ja</a>
  

  
    <a href="/people-hi">hi</a>
  

  
    <a href="/people-hant">hant</a>
  

  
    <a href="/people-fr">fr</a>
  

  
    <a href="/people-es">es</a>
  

  
    <a href="/people-en">en</a>
  

  
    <a href="/people-de">de</a>
  

  
    <a href="/people-ar">ar</a>
  

  
    <a href="/pm2-zh">zh</a>
  

  
    <a href="/laravel-zh">zh</a>
  

  
    <a href="/pm2-ja">ja</a>
  

  
    <a href="/laravel-ja">ja</a>
  

  
    <a href="/pm2-hi">hi</a>
  

  
    <a href="/laravel-hi">hi</a>
  

  
    <a href="/pm2-hant">hant</a>
  

  
    <a href="/laravel-hant">hant</a>
  

  
    <a href="/pm2-fr">fr</a>
  

  
    <a href="/laravel-fr">fr</a>
  

  
    <a href="/pm2-es">es</a>
  

  
    <a href="/laravel-es">es</a>
  

  
    <a href="/pm2-en">en</a>
  

  
    <a href="/laravel-en">en</a>
  

  
    <a href="/pm2-de">de</a>
  

  
    <a href="/laravel-de">de</a>
  

  
    <a href="/pm2-ar">ar</a>
  

  
    <a href="/laravel-ar">ar</a>
  

  
    <a href="/startup-zh">zh</a>
  

  
    <a href="/startup-ja">ja</a>
  

  
    <a href="/startup-hi">hi</a>
  

  
    <a href="/startup-hant">hant</a>
  

  
    <a href="/startup-fr">fr</a>
  

  
    <a href="/startup-es">es</a>
  

  
    <a href="/startup-en">en</a>
  

  
    <a href="/startup-de">de</a>
  

  
    <a href="/startup-ar">ar</a>
  

  
    <a href="/grow-zh">zh</a>
  

  
    <a href="/grow-ja">ja</a>
  

  
    <a href="/grow-hi">hi</a>
  

  
    <a href="/grow-hant">hant</a>
  

  
    <a href="/grow-fr">fr</a>
  

  
    <a href="/grow-es">es</a>
  

  
    <a href="/grow-en">en</a>
  

  
    <a href="/grow-de">de</a>
  

  
    <a href="/grow-ar">ar</a>
  

  
    <a href="/pencil-zh">zh</a>
  

  
    <a href="/pencil-ja">ja</a>
  

  
    <a href="/pencil-hi">hi</a>
  

  
    <a href="/pencil-hant">hant</a>
  

  
    <a href="/pencil-fr">fr</a>
  

  
    <a href="/pencil-es">es</a>
  

  
    <a href="/pencil-en">en</a>
  

  
    <a href="/pencil-de">de</a>
  

  
    <a href="/pencil-ar">ar</a>
  

  
    <a href="/lieyun-zh">zh</a>
  

  
    <a href="/lieyun-ja">ja</a>
  

  
    <a href="/lieyun-hi">hi</a>
  

  
    <a href="/lieyun-hant">hant</a>
  

  
    <a href="/lieyun-fr">fr</a>
  

  
    <a href="/lieyun-es">es</a>
  

  
    <a href="/lieyun-en">en</a>
  

  
    <a href="/lieyun-de">de</a>
  

  
    <a href="/lieyun-ar">ar</a>
  

  
    <a href="/live-wxapp-zh">zh</a>
  

  
    <a href="/live-wxapp-ja">ja</a>
  

  
    <a href="/live-wxapp-hi">hi</a>
  

  
    <a href="/live-wxapp-hant">hant</a>
  

  
    <a href="/live-wxapp-fr">fr</a>
  

  
    <a href="/live-wxapp-es">es</a>
  

  
    <a href="/live-wxapp-en">en</a>
  

  
    <a href="/live-wxapp-de">de</a>
  

  
    <a href="/live-wxapp-ar">ar</a>
  

  
    <a href="/years-zh">zh</a>
  

  
    <a href="/srs-streaming-zh">zh</a>
  

  
    <a href="/years-ja">ja</a>
  

  
    <a href="/srs-streaming-ja">ja</a>
  

  
    <a href="/years-hi">hi</a>
  

  
    <a href="/srs-streaming-hi">hi</a>
  

  
    <a href="/years-hant">hant</a>
  

  
    <a href="/srs-streaming-hant">hant</a>
  

  
    <a href="/years-fr">fr</a>
  

  
    <a href="/srs-streaming-fr">fr</a>
  

  
    <a href="/years-es">es</a>
  

  
    <a href="/srs-streaming-es">es</a>
  

  
    <a href="/years-en">en</a>
  

  
    <a href="/srs-streaming-en">en</a>
  

  
    <a href="/years-de">de</a>
  

  
    <a href="/srs-streaming-de">de</a>
  

  
    <a href="/years-ar">ar</a>
  

  
    <a href="/srs-streaming-ar">ar</a>
  

  
    <a href="/streaming-zh">zh</a>
  

  
    <a href="/keynotes-zh">zh</a>
  

  
    <a href="/streaming-ja">ja</a>
  

  
    <a href="/keynotes-ja">ja</a>
  

  
    <a href="/streaming-hi">hi</a>
  

  
    <a href="/keynotes-hi">hi</a>
  

  
    <a href="/streaming-hant">hant</a>
  

  
    <a href="/keynotes-hant">hant</a>
  

  
    <a href="/streaming-fr">fr</a>
  

  
    <a href="/keynotes-fr">fr</a>
  

  
    <a href="/streaming-es">es</a>
  

  
    <a href="/keynotes-es">es</a>
  

  
    <a href="/streaming-en">en</a>
  

  
    <a href="/keynotes-en">en</a>
  

  
    <a href="/streaming-de">de</a>
  

  
    <a href="/keynotes-de">de</a>
  

  
    <a href="/streaming-ar">ar</a>
  

  
    <a href="/keynotes-ar">ar</a>
  

  
    <a href="/quzhibo-zh">zh</a>
  

  
    <a href="/quzhibo-ja">ja</a>
  

  
    <a href="/quzhibo-hi">hi</a>
  

  
    <a href="/quzhibo-hant">hant</a>
  

  
    <a href="/quzhibo-fr">fr</a>
  

  
    <a href="/quzhibo-es">es</a>
  

  
    <a href="/quzhibo-en">en</a>
  

  
    <a href="/quzhibo-de">de</a>
  

  
    <a href="/quzhibo-ar">ar</a>
  

  
    <a href="/ceo-zh">zh</a>
  

  
    <a href="/ceo-ja">ja</a>
  

  
    <a href="/ceo-hi">hi</a>
  

  
    <a href="/ceo-hant">hant</a>
  

  
    <a href="/ceo-fr">fr</a>
  

  
    <a href="/ceo-es">es</a>
  

  
    <a href="/ceo-en">en</a>
  

  
    <a href="/ceo-de">de</a>
  

  
    <a href="/ceo-ar">ar</a>
  

  
    <a href="/live-web-zh">zh</a>
  

  
    <a href="/live-server-zh">zh</a>
  

  
    <a href="/live-mobile-web-zh">zh</a>
  

  
    <a href="/live-web-ja">ja</a>
  

  
    <a href="/live-server-ja">ja</a>
  

  
    <a href="/live-mobile-web-ja">ja</a>
  

  
    <a href="/live-web-hi">hi</a>
  

  
    <a href="/live-server-hi">hi</a>
  

  
    <a href="/live-mobile-web-hi">hi</a>
  

  
    <a href="/live-web-hant">hant</a>
  

  
    <a href="/live-server-hant">hant</a>
  

  
    <a href="/live-mobile-web-hant">hant</a>
  

  
    <a href="/live-web-fr">fr</a>
  

  
    <a href="/live-server-fr">fr</a>
  

  
    <a href="/live-mobile-web-fr">fr</a>
  

  
    <a href="/live-web-es">es</a>
  

  
    <a href="/live-server-es">es</a>
  

  
    <a href="/live-mobile-web-es">es</a>
  

  
    <a href="/live-web-en">en</a>
  

  
    <a href="/live-server-en">en</a>
  

  
    <a href="/live-mobile-web-en">en</a>
  

  
    <a href="/live-web-de">de</a>
  

  
    <a href="/live-server-de">de</a>
  

  
    <a href="/live-mobile-web-de">de</a>
  

  
    <a href="/live-web-ar">ar</a>
  

  
    <a href="/live-server-ar">ar</a>
  

  
    <a href="/live-mobile-web-ar">ar</a>
  

  
    <a href="/parser-zh">zh</a>
  

  
    <a href="/parser-ja">ja</a>
  

  
    <a href="/parser-hi">hi</a>
  

  
    <a href="/parser-hant">hant</a>
  

  
    <a href="/parser-fr">fr</a>
  

  
    <a href="/parser-es">es</a>
  

  
    <a href="/parser-en">en</a>
  

  
    <a href="/parser-de">de</a>
  

  
    <a href="/parser-ar">ar</a>
  

  
    <a href="/websocket-zh">zh</a>
  

  
    <a href="/websocket-ja">ja</a>
  

  
    <a href="/websocket-hi">hi</a>
  

  
    <a href="/websocket-hant">hant</a>
  

  
    <a href="/websocket-fr">fr</a>
  

  
    <a href="/websocket-es">es</a>
  

  
    <a href="/websocket-en">en</a>
  

  
    <a href="/websocket-de">de</a>
  

  
    <a href="/websocket-ar">ar</a>
  

  
    <a href="/regex-zh">zh</a>
  

  
    <a href="/regex-ja">ja</a>
  

  
    <a href="/regex-hi">hi</a>
  

  
    <a href="/regex-hant">hant</a>
  

  
    <a href="/regex-fr">fr</a>
  

  
    <a href="/regex-es">es</a>
  

  
    <a href="/regex-en">en</a>
  

  
    <a href="/regex-de">de</a>
  

  
    <a href="/regex-ar">ar</a>
  

  
    <a href="/yytext-zh">zh</a>
  

  
    <a href="/yytext-ja">ja</a>
  

  
    <a href="/yytext-hi">hi</a>
  

  
    <a href="/yytext-hant">hant</a>
  

  
    <a href="/yytext-fr">fr</a>
  

  
    <a href="/yytext-es">es</a>
  

  
    <a href="/yytext-en">en</a>
  

  
    <a href="/yytext-de">de</a>
  

  
    <a href="/yytext-ar">ar</a>
  

  
    <a href="/creak-zh">zh</a>
  

  
    <a href="/creak-ja">ja</a>
  

  
    <a href="/creak-hi">hi</a>
  

  
    <a href="/creak-hant">hant</a>
  

  
    <a href="/creak-fr">fr</a>
  

  
    <a href="/creak-es">es</a>
  

  
    <a href="/creak-en">en</a>
  

  
    <a href="/creak-de">de</a>
  

  
    <a href="/creak-ar">ar</a>
  

  
    <a href="/git-zh">zh</a>
  

  
    <a href="/git-ja">ja</a>
  

  
    <a href="/git-hi">hi</a>
  

  
    <a href="/git-hant">hant</a>
  

  
    <a href="/git-fr">fr</a>
  

  
    <a href="/git-es">es</a>
  

  
    <a href="/git-en">en</a>
  

  
    <a href="/git-de">de</a>
  

  
    <a href="/git-ar">ar</a>
  

  
    <a href="/ios-test-zh">zh</a>
  

  
    <a href="/ios-test-ja">ja</a>
  

  
    <a href="/ios-test-hi">hi</a>
  

  
    <a href="/ios-test-hant">hant</a>
  

  
    <a href="/ios-test-fr">fr</a>
  

  
    <a href="/ios-test-es">es</a>
  

  
    <a href="/ios-test-en">en</a>
  

  
    <a href="/ios-test-de">de</a>
  

  
    <a href="/ios-test-ar">ar</a>
  

  
    <a href="/usa-zh">zh</a>
  

  
    <a href="/usa-ja">ja</a>
  

  
    <a href="/usa-hi">hi</a>
  

  
    <a href="/usa-hant">hant</a>
  

  
    <a href="/usa-fr">fr</a>
  

  
    <a href="/usa-es">es</a>
  

  
    <a href="/usa-en">en</a>
  

  
    <a href="/usa-de">de</a>
  

  
    <a href="/usa-ar">ar</a>
  

  
    <a href="/codereview-stylus-zh">zh</a>
  

  
    <a href="/codereview-frontend-zh">zh</a>
  

  
    <a href="/codereview-stylus-ja">ja</a>
  

  
    <a href="/codereview-frontend-ja">ja</a>
  

  
    <a href="/codereview-stylus-hi">hi</a>
  

  
    <a href="/codereview-frontend-hi">hi</a>
  

  
    <a href="/codereview-stylus-hant">hant</a>
  

  
    <a href="/codereview-frontend-hant">hant</a>
  

  
    <a href="/codereview-stylus-fr">fr</a>
  

  
    <a href="/codereview-frontend-fr">fr</a>
  

  
    <a href="/codereview-stylus-es">es</a>
  

  
    <a href="/codereview-frontend-es">es</a>
  

  
    <a href="/codereview-stylus-en">en</a>
  

  
    <a href="/codereview-frontend-en">en</a>
  

  
    <a href="/codereview-stylus-de">de</a>
  

  
    <a href="/codereview-frontend-de">de</a>
  

  
    <a href="/codereview-stylus-ar">ar</a>
  

  
    <a href="/codereview-frontend-ar">ar</a>
  

  
    <a href="/pingpp-zh">zh</a>
  

  
    <a href="/pingpp-ja">ja</a>
  

  
    <a href="/pingpp-hi">hi</a>
  

  
    <a href="/pingpp-hant">hant</a>
  

  
    <a href="/pingpp-fr">fr</a>
  

  
    <a href="/pingpp-es">es</a>
  

  
    <a href="/pingpp-en">en</a>
  

  
    <a href="/pingpp-de">de</a>
  

  
    <a href="/pingpp-ar">ar</a>
  

  
    <a href="/usa-visa-zh">zh</a>
  

  
    <a href="/usa-visa-ja">ja</a>
  

  
    <a href="/usa-visa-hi">hi</a>
  

  
    <a href="/usa-visa-hant">hant</a>
  

  
    <a href="/usa-visa-fr">fr</a>
  

  
    <a href="/usa-visa-es">es</a>
  

  
    <a href="/usa-visa-en">en</a>
  

  
    <a href="/usa-visa-de">de</a>
  

  
    <a href="/usa-visa-ar">ar</a>
  

  
    <a href="/weimg-ios-zh">zh</a>
  

  
    <a href="/weimg-ios-ja">ja</a>
  

  
    <a href="/weimg-ios-hi">hi</a>
  

  
    <a href="/weimg-ios-hant">hant</a>
  

  
    <a href="/weimg-ios-fr">fr</a>
  

  
    <a href="/weimg-ios-es">es</a>
  

  
    <a href="/weimg-ios-en">en</a>
  

  
    <a href="/weimg-ios-de">de</a>
  

  
    <a href="/weimg-ios-ar">ar</a>
  

  
    <a href="/weimg-server-zh">zh</a>
  

  
    <a href="/weimg-server-ja">ja</a>
  

  
    <a href="/weimg-server-hi">hi</a>
  

  
    <a href="/weimg-server-hant">hant</a>
  

  
    <a href="/weimg-server-fr">fr</a>
  

  
    <a href="/weimg-server-es">es</a>
  

  
    <a href="/weimg-server-en">en</a>
  

  
    <a href="/weimg-server-de">de</a>
  

  
    <a href="/weimg-server-ar">ar</a>
  

  
    <a href="/code-review-web-zh">zh</a>
  

  
    <a href="/code-review-web-ja">ja</a>
  

  
    <a href="/code-review-web-hi">hi</a>
  

  
    <a href="/code-review-web-hant">hant</a>
  

  
    <a href="/code-review-web-fr">fr</a>
  

  
    <a href="/code-review-web-es">es</a>
  

  
    <a href="/code-review-web-en">en</a>
  

  
    <a href="/code-review-web-de">de</a>
  

  
    <a href="/code-review-web-ar">ar</a>
  

  
    <a href="/xib-zh">zh</a>
  

  
    <a href="/xcode-project-zh">zh</a>
  

  
    <a href="/reveal-in-github-zh">zh</a>
  

  
    <a href="/info-plist-zh">zh</a>
  

  
    <a href="/xib-ja">ja</a>
  

  
    <a href="/xcode-project-ja">ja</a>
  

  
    <a href="/reveal-in-github-ja">ja</a>
  

  
    <a href="/info-plist-ja">ja</a>
  

  
    <a href="/xib-hi">hi</a>
  

  
    <a href="/xcode-project-hi">hi</a>
  

  
    <a href="/reveal-in-github-hi">hi</a>
  

  
    <a href="/info-plist-hi">hi</a>
  

  
    <a href="/xib-hant">hant</a>
  

  
    <a href="/xcode-project-hant">hant</a>
  

  
    <a href="/reveal-in-github-hant">hant</a>
  

  
    <a href="/info-plist-hant">hant</a>
  

  
    <a href="/xib-fr">fr</a>
  

  
    <a href="/xcode-project-fr">fr</a>
  

  
    <a href="/reveal-in-github-fr">fr</a>
  

  
    <a href="/info-plist-fr">fr</a>
  

  
    <a href="/xib-es">es</a>
  

  
    <a href="/xcode-project-es">es</a>
  

  
    <a href="/reveal-in-github-es">es</a>
  

  
    <a href="/info-plist-es">es</a>
  

  
    <a href="/xib-en">en</a>
  

  
    <a href="/xcode-project-en">en</a>
  

  
    <a href="/reveal-in-github-en">en</a>
  

  
    <a href="/info-plist-en">en</a>
  

  
    <a href="/xib-de">de</a>
  

  
    <a href="/xcode-project-de">de</a>
  

  
    <a href="/reveal-in-github-de">de</a>
  

  
    <a href="/info-plist-de">de</a>
  

  
    <a href="/xib-ar">ar</a>
  

  
    <a href="/xcode-project-ar">ar</a>
  

  
    <a href="/reveal-in-github-ar">ar</a>
  

  
    <a href="/info-plist-ar">ar</a>
  

  
    <a href="/code-review-server-zh">zh</a>
  

  
    <a href="/code-review-server-ja">ja</a>
  

  
    <a href="/code-review-server-hi">hi</a>
  

  
    <a href="/code-review-server-hant">hant</a>
  

  
    <a href="/code-review-server-fr">fr</a>
  

  
    <a href="/code-review-server-es">es</a>
  

  
    <a href="/code-review-server-en">en</a>
  

  
    <a href="/code-review-server-de">de</a>
  

  
    <a href="/code-review-server-ar">ar</a>
  

  
    <a href="/dropout-zh">zh</a>
  

  
    <a href="/dropout-ja">ja</a>
  

  
    <a href="/dropout-hi">hi</a>
  

  
    <a href="/dropout-hant">hant</a>
  

  
    <a href="/dropout-fr">fr</a>
  

  
    <a href="/dropout-es">es</a>
  

  
    <a href="/dropout-en">en</a>
  

  
    <a href="/dropout-de">de</a>
  

  
    <a href="/dropout-ar">ar</a>
  

  
    <a href="/chrome-extension-zh">zh</a>
  

  
    <a href="/chrome-extension-ja">ja</a>
  

  
    <a href="/chrome-extension-hi">hi</a>
  

  
    <a href="/chrome-extension-hant">hant</a>
  

  
    <a href="/chrome-extension-fr">fr</a>
  

  
    <a href="/chrome-extension-es">es</a>
  

  
    <a href="/chrome-extension-en">en</a>
  

  
    <a href="/chrome-extension-de">de</a>
  

  
    <a href="/chrome-extension-ar">ar</a>
  

  
    <a href="/tabskiller-zh">zh</a>
  

  
    <a href="/tabskiller-ja">ja</a>
  

  
    <a href="/tabskiller-hi">hi</a>
  

  
    <a href="/tabskiller-hant">hant</a>
  

  
    <a href="/tabskiller-fr">fr</a>
  

  
    <a href="/tabskiller-es">es</a>
  

  
    <a href="/tabskiller-en">en</a>
  

  
    <a href="/tabskiller-de">de</a>
  

  
    <a href="/tabskiller-ar">ar</a>
  

  
    <a href="/copy-zh">zh</a>
  

  
    <a href="/copy-ja">ja</a>
  

  
    <a href="/copy-hi">hi</a>
  

  
    <a href="/copy-hant">hant</a>
  

  
    <a href="/copy-fr">fr</a>
  

  
    <a href="/copy-es">es</a>
  

  
    <a href="/copy-en">en</a>
  

  
    <a href="/copy-de">de</a>
  

  
    <a href="/copy-ar">ar</a>
  

  
    <a href="/lzalbum-zh">zh</a>
  

  
    <a href="/lzalbum-ja">ja</a>
  

  
    <a href="/lzalbum-hi">hi</a>
  

  
    <a href="/lzalbum-hant">hant</a>
  

  
    <a href="/lzalbum-fr">fr</a>
  

  
    <a href="/lzalbum-es">es</a>
  

  
    <a href="/lzalbum-en">en</a>
  

  
    <a href="/lzalbum-de">de</a>
  

  
    <a href="/lzalbum-ar">ar</a>
  

  
    <a href="/leanchat-ios-zh">zh</a>
  

  
    <a href="/leanchat-ios-ja">ja</a>
  

  
    <a href="/leanchat-ios-hi">hi</a>
  

  
    <a href="/leanchat-ios-hant">hant</a>
  

  
    <a href="/leanchat-ios-fr">fr</a>
  

  
    <a href="/leanchat-ios-es">es</a>
  

  
    <a href="/leanchat-ios-en">en</a>
  

  
    <a href="/leanchat-ios-de">de</a>
  

  
    <a href="/leanchat-ios-ar">ar</a>
  

  
    <a href="/learn-zh">zh</a>
  

  
    <a href="/learn-ja">ja</a>
  

  
    <a href="/learn-hi">hi</a>
  

  
    <a href="/learn-hant">hant</a>
  

  
    <a href="/learn-fr">fr</a>
  

  
    <a href="/learn-es">es</a>
  

  
    <a href="/learn-en">en</a>
  

  
    <a href="/learn-de">de</a>
  

  
    <a href="/learn-ar">ar</a>
  

  
    <a href="/android-manifest-zh">zh</a>
  

  
    <a href="/android-image-zh">zh</a>
  

  
    <a href="/android-manifest-ja">ja</a>
  

  
    <a href="/android-image-ja">ja</a>
  

  
    <a href="/android-manifest-hi">hi</a>
  

  
    <a href="/android-image-hi">hi</a>
  

  
    <a href="/android-manifest-hant">hant</a>
  

  
    <a href="/android-image-hant">hant</a>
  

  
    <a href="/android-manifest-fr">fr</a>
  

  
    <a href="/android-image-fr">fr</a>
  

  
    <a href="/android-manifest-es">es</a>
  

  
    <a href="/android-image-es">es</a>
  

  
    <a href="/android-manifest-en">en</a>
  

  
    <a href="/android-image-en">en</a>
  

  
    <a href="/android-manifest-de">de</a>
  

  
    <a href="/android-image-de">de</a>
  

  
    <a href="/android-manifest-ar">ar</a>
  

  
    <a href="/android-image-ar">ar</a>
  

  
    <a href="/flower-recognition-zh">zh</a>
  

  
    <a href="/draw-zh">zh</a>
  

  
    <a href="/flower-recognition-ja">ja</a>
  

  
    <a href="/draw-ja">ja</a>
  

  
    <a href="/flower-recognition-hi">hi</a>
  

  
    <a href="/draw-hi">hi</a>
  

  
    <a href="/flower-recognition-hant">hant</a>
  

  
    <a href="/draw-hant">hant</a>
  

  
    <a href="/flower-recognition-fr">fr</a>
  

  
    <a href="/draw-fr">fr</a>
  

  
    <a href="/flower-recognition-es">es</a>
  

  
    <a href="/draw-es">es</a>
  

  
    <a href="/flower-recognition-en">en</a>
  

  
    <a href="/draw-en">en</a>
  

  
    <a href="/flower-recognition-de">de</a>
  

  
    <a href="/draw-de">de</a>
  

  
    <a href="/flower-recognition-ar">ar</a>
  

  
    <a href="/draw-ar">ar</a>
  

  
    <a href="/ffmpeg-zh">zh</a>
  

  
    <a href="/ffmpeg-ja">ja</a>
  

  
    <a href="/ffmpeg-hi">hi</a>
  

  
    <a href="/ffmpeg-hant">hant</a>
  

  
    <a href="/ffmpeg-fr">fr</a>
  

  
    <a href="/ffmpeg-es">es</a>
  

  
    <a href="/ffmpeg-en">en</a>
  

  
    <a href="/ffmpeg-de">de</a>
  

  
    <a href="/ffmpeg-ar">ar</a>
  

  
    <a href="/pg-zh">zh</a>
  

  
    <a href="/pg-ja">ja</a>
  

  
    <a href="/pg-hi">hi</a>
  

  
    <a href="/pg-hant">hant</a>
  

  
    <a href="/pg-fr">fr</a>
  

  
    <a href="/pg-es">es</a>
  

  
    <a href="/pg-en">en</a>
  

  
    <a href="/pg-de">de</a>
  

  
    <a href="/pg-ar">ar</a>
  

  
    <a href="/bjfu-web-zh">zh</a>
  

  
    <a href="/bjfu-web-ja">ja</a>
  

  
    <a href="/bjfu-web-hi">hi</a>
  

  
    <a href="/bjfu-web-hant">hant</a>
  

  
    <a href="/bjfu-web-fr">fr</a>
  

  
    <a href="/bjfu-web-es">es</a>
  

  
    <a href="/bjfu-web-en">en</a>
  

  
    <a href="/bjfu-web-de">de</a>
  

  
    <a href="/bjfu-web-ar">ar</a>
  

  
    <a href="/eclipse-emacs-zh">zh</a>
  

  
    <a href="/eclipse-emacs-ja">ja</a>
  

  
    <a href="/eclipse-emacs-hi">hi</a>
  

  
    <a href="/eclipse-emacs-hant">hant</a>
  

  
    <a href="/eclipse-emacs-fr">fr</a>
  

  
    <a href="/eclipse-emacs-es">es</a>
  

  
    <a href="/eclipse-emacs-en">en</a>
  

  
    <a href="/eclipse-emacs-de">de</a>
  

  
    <a href="/eclipse-emacs-ar">ar</a>
  

  
    <a href="/hamming-zh">zh</a>
  

  
    <a href="/hamming-ja">ja</a>
  

  
    <a href="/hamming-hi">hi</a>
  

  
    <a href="/hamming-hant">hant</a>
  

  
    <a href="/hamming-fr">fr</a>
  

  
    <a href="/hamming-es">es</a>
  

  
    <a href="/hamming-en">en</a>
  

  
    <a href="/hamming-de">de</a>
  

  
    <a href="/hamming-ar">ar</a>
  

  
    <a href="/lisp-zh">zh</a>
  

  
    <a href="/lisp-ja">ja</a>
  

  
    <a href="/lisp-hi">hi</a>
  

  
    <a href="/lisp-hant">hant</a>
  

  
    <a href="/lisp-fr">fr</a>
  

  
    <a href="/lisp-es">es</a>
  

  
    <a href="/lisp-en">en</a>
  

  
    <a href="/lisp-de">de</a>
  

  
    <a href="/lisp-ar">ar</a>
  

  
    <a href="/middle-shool-zh">zh</a>
  

  
    <a href="/middle-shool-ja">ja</a>
  

  
    <a href="/middle-shool-hi">hi</a>
  

  
    <a href="/middle-shool-hant">hant</a>
  

  
    <a href="/middle-shool-fr">fr</a>
  

  
    <a href="/middle-shool-es">es</a>
  

  
    <a href="/middle-shool-en">en</a>
  

  
    <a href="/middle-shool-de">de</a>
  

  
    <a href="/middle-shool-ar">ar</a>
  

  
    <a href="/noip-fail-zh">zh</a>
  

  
    <a href="/noip-fail-ja">ja</a>
  

  
    <a href="/noip-fail-hi">hi</a>
  

  
    <a href="/noip-fail-hant">hant</a>
  

  
    <a href="/noip-fail-fr">fr</a>
  

  
    <a href="/noip-fail-es">es</a>
  

  
    <a href="/noip-fail-en">en</a>
  

  
    <a href="/noip-fail-de">de</a>
  

  
    <a href="/noip-fail-ar">ar</a>
  

  
    <a href="/hiking-zh">zh</a>
  

  
    <a href="/hiking-ja">ja</a>
  

  
    <a href="/hiking-hi">hi</a>
  

  
    <a href="/hiking-hant">hant</a>
  

  
    <a href="/hiking-fr">fr</a>
  

  
    <a href="/hiking-es">es</a>
  

  
    <a href="/hiking-en">en</a>
  

  
    <a href="/hiking-de">de</a>
  

  
    <a href="/hiking-ar">ar</a>
  

  
    <a href="/volunteer-zh">zh</a>
  

  
    <a href="/volunteer-ja">ja</a>
  

  
    <a href="/volunteer-hi">hi</a>
  

  
    <a href="/volunteer-hant">hant</a>
  

  
    <a href="/volunteer-fr">fr</a>
  

  
    <a href="/volunteer-es">es</a>
  

  
    <a href="/volunteer-en">en</a>
  

  
    <a href="/volunteer-de">de</a>
  

  
    <a href="/volunteer-ar">ar</a>
  

  
    <a href="/wife-zh">zh</a>
  

  
    <a href="/wife-ja">ja</a>
  

  
    <a href="/wife-hi">hi</a>
  

  
    <a href="/wife-hant">hant</a>
  

  
    <a href="/wife-fr">fr</a>
  

  
    <a href="/wife-es">es</a>
  

  
    <a href="/wife-en">en</a>
  

  
    <a href="/wife-de">de</a>
  

  
    <a href="/wife-ar">ar</a>
  

  
    <a href="/noip-zh">zh</a>
  

  
    <a href="/noip-ja">ja</a>
  

  
    <a href="/noip-hi">hi</a>
  

  
    <a href="/noip-hant">hant</a>
  

  
    <a href="/noip-fr">fr</a>
  

  
    <a href="/noip-es">es</a>
  

  
    <a href="/noip-en">en</a>
  

  
    <a href="/noip-de">de</a>
  

  
    <a href="/noip-ar">ar</a>
  

  
    <a href="/sports-zh">zh</a>
  

  
    <a href="/sports-ja">ja</a>
  

  
    <a href="/sports-hi">hi</a>
  

  
    <a href="/sports-hant">hant</a>
  

  
    <a href="/sports-fr">fr</a>
  

  
    <a href="/sports-es">es</a>
  

  
    <a href="/sports-en">en</a>
  

  
    <a href="/sports-de">de</a>
  

  
    <a href="/sports-ar">ar</a>
  

  
    <a href="/phone-factory-zh">zh</a>
  

  
    <a href="/phone-factory-ja">ja</a>
  

  
    <a href="/phone-factory-hi">hi</a>
  

  
    <a href="/phone-factory-hant">hant</a>
  

  
    <a href="/phone-factory-fr">fr</a>
  

  
    <a href="/phone-factory-es">es</a>
  

  
    <a href="/phone-factory-en">en</a>
  

  
    <a href="/phone-factory-de">de</a>
  

  
    <a href="/phone-factory-ar">ar</a>
  

  
    <a href="/chemistry-teacher-zh">zh</a>
  

  
    <a href="/chemistry-teacher-ja">ja</a>
  

  
    <a href="/chemistry-teacher-hi">hi</a>
  

  
    <a href="/chemistry-teacher-hant">hant</a>
  

  
    <a href="/chemistry-teacher-fr">fr</a>
  

  
    <a href="/chemistry-teacher-es">es</a>
  

  
    <a href="/chemistry-teacher-en">en</a>
  

  
    <a href="/chemistry-teacher-de">de</a>
  

  
    <a href="/chemistry-teacher-ar">ar</a>
  

  
    <a href="/usb-drive-zh">zh</a>
  

  
    <a href="/hello-beijing-zh">zh</a>
  

  
    <a href="/disk-c-zh">zh</a>
  

  
    <a href="/bee-zh">zh</a>
  

  
    <a href="/usb-drive-ja">ja</a>
  

  
    <a href="/hello-beijing-ja">ja</a>
  

  
    <a href="/disk-c-ja">ja</a>
  

  
    <a href="/bee-ja">ja</a>
  

  
    <a href="/usb-drive-hi">hi</a>
  

  
    <a href="/hello-beijing-hi">hi</a>
  

  
    <a href="/disk-c-hi">hi</a>
  

  
    <a href="/bee-hi">hi</a>
  

  
    <a href="/usb-drive-hant">hant</a>
  

  
    <a href="/hello-beijing-hant">hant</a>
  

  
    <a href="/disk-c-hant">hant</a>
  

  
    <a href="/bee-hant">hant</a>
  

  
    <a href="/usb-drive-fr">fr</a>
  

  
    <a href="/hello-beijing-fr">fr</a>
  

  
    <a href="/disk-c-fr">fr</a>
  

  
    <a href="/bee-fr">fr</a>
  

  
    <a href="/usb-drive-es">es</a>
  

  
    <a href="/hello-beijing-es">es</a>
  

  
    <a href="/disk-c-es">es</a>
  

  
    <a href="/bee-es">es</a>
  

  
    <a href="/usb-drive-en">en</a>
  

  
    <a href="/hello-beijing-en">en</a>
  

  
    <a href="/disk-c-en">en</a>
  

  
    <a href="/bee-en">en</a>
  

  
    <a href="/usb-drive-de">de</a>
  

  
    <a href="/hello-beijing-de">de</a>
  

  
    <a href="/disk-c-de">de</a>
  

  
    <a href="/bee-de">de</a>
  

  
    <a href="/usb-drive-ar">ar</a>
  

  
    <a href="/hello-beijing-ar">ar</a>
  

  
    <a href="/disk-c-ar">ar</a>
  

  
    <a href="/bee-ar">ar</a>
  

  
    <a href="/teacher-qiu-zh">zh</a>
  

  
    <a href="/teacher-qiu-ja">ja</a>
  

  
    <a href="/teacher-qiu-hi">hi</a>
  

  
    <a href="/teacher-qiu-hant">hant</a>
  

  
    <a href="/teacher-qiu-fr">fr</a>
  

  
    <a href="/teacher-qiu-es">es</a>
  

  
    <a href="/teacher-qiu-en">en</a>
  

  
    <a href="/teacher-qiu-de">de</a>
  

  
    <a href="/teacher-qiu-ar">ar</a>
  

  
    <a href="/high-school-zh">zh</a>
  

  
    <a href="/high-school-ja">ja</a>
  

  
    <a href="/high-school-hi">hi</a>
  

  
    <a href="/high-school-hant">hant</a>
  

  
    <a href="/high-school-fr">fr</a>
  

  
    <a href="/high-school-es">es</a>
  

  
    <a href="/high-school-en">en</a>
  

  
    <a href="/high-school-de">de</a>
  

  
    <a href="/high-school-ar">ar</a>
  

  
    <a href="/world-cup-zh">zh</a>
  

  
    <a href="/world-cup-ja">ja</a>
  

  
    <a href="/world-cup-hi">hi</a>
  

  
    <a href="/world-cup-hant">hant</a>
  

  
    <a href="/world-cup-fr">fr</a>
  

  
    <a href="/world-cup-es">es</a>
  

  
    <a href="/world-cup-en">en</a>
  

  
    <a href="/world-cup-de">de</a>
  

  
    <a href="/world-cup-ar">ar</a>
  

  
    <a href="/qzone-zh">zh</a>
  

  
    <a href="/qzone-ja">ja</a>
  

  
    <a href="/qzone-hi">hi</a>
  

  
    <a href="/qzone-hant">hant</a>
  

  
    <a href="/qzone-fr">fr</a>
  

  
    <a href="/qzone-es">es</a>
  

  
    <a href="/qzone-en">en</a>
  

  
    <a href="/qzone-de">de</a>
  

  
    <a href="/qzone-ar">ar</a>
  

  
    <a href="/primary-school-zh">zh</a>
  

  
    <a href="/primary-school-ja">ja</a>
  

  
    <a href="/primary-school-hi">hi</a>
  

  
    <a href="/primary-school-hant">hant</a>
  

  
    <a href="/primary-school-fr">fr</a>
  

  
    <a href="/primary-school-es">es</a>
  

  
    <a href="/primary-school-en">en</a>
  

  
    <a href="/primary-school-de">de</a>
  

  
    <a href="/primary-school-ar">ar</a>
  

  
    <a href="/childhood-zh">zh</a>
  

  
    <a href="/childhood-ja">ja</a>
  

  
    <a href="/childhood-hi">hi</a>
  

  
    <a href="/childhood-hant">hant</a>
  

  
    <a href="/childhood-fr">fr</a>
  

  
    <a href="/childhood-es">es</a>
  

  
    <a href="/childhood-en">en</a>
  

  
    <a href="/childhood-de">de</a>
  

  
    <a href="/childhood-ar">ar</a>
  

UI strings without plugins Use _data/i18n.yml as above, and choose the language via current_lang.

Default language redirect (optional) Create index.html at root:

<!doctype html>
<meta charset="utf-8">
<script>
  const lang = (navigator.language || '').toLowerCase().startsWith('zh') ? 'zh' : 'en';
  location.replace('/' + lang + '/');
</script>
<noscript><a href="/en/">English</a> · <a href="/zh/">中文</a></noscript>

3) Hybrid: one set of posts, translate only UI

Best if you don’t translate articles, just the chrome (nav, footer). Keep a single /posts/ set, add _data/i18n.yml, and render labels by language. Provide per-language index pages that list the same posts, but with localized dates and UI.

Localized dates


  {# or use filters/plugins if you have them #}

(Jekyll’s built-in date is not fully locale-aware; for true locale formatting you’ll need a plugin or preformatted strings in data.)


Practical tips


Minimal working example (no-plugin)

  1. _data/i18n.yml with strings.
  2. _en/index.md and _zh/index.md with lang front matter.
  3. Posts under _posts/en/ and _posts/zh/ with lang and shared ref.
  4. Layout uses site.data.i18n[current_lang] and the sibling lookup snippet above.

If you tell me your current repo structure (and whether you’re building on GitHub Pages directly or via Actions), I can tailor a ready-to-drop config and a couple of starter layouts.


Back Donate