diff --git a/dashboard/.yarnrc.yml b/dashboard/.yarnrc.yml
index e81d521..9bdeb26 100644
--- a/dashboard/.yarnrc.yml
+++ b/dashboard/.yarnrc.yml
@@ -4,4 +4,4 @@ enableGlobalCache: false
nodeLinker: node-modules
-npmRegistryServer: "https://registry.npmjs.org"
+npmRegistryServer: "https://registry.npmmirror.com"
diff --git a/dashboard/next-env.d.ts b/dashboard/next-env.d.ts
index 2d5420e..c4b7818 100644
--- a/dashboard/next-env.d.ts
+++ b/dashboard/next-env.d.ts
@@ -1,7 +1,6 @@
///
///
-///
-import "./.next/types/routes.d.ts";
+import "./.next/dev/types/routes.d.ts";
// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
diff --git a/dashboard/next.config.js.bak b/dashboard/next.config.js.bak
deleted file mode 100644
index 15fc014..0000000
--- a/dashboard/next.config.js.bak
+++ /dev/null
@@ -1,103 +0,0 @@
-/**
- * 功能控制的树形结构,每个节点都可以通过 enabled 控制是否启用。
- * - children 支持精确路径、动态段([param])、以及通配符(*)。
- * - 当某个节点 enabled 为 false 时,其所有子级都会默认关闭。
- */
-const path = require('path')
-
-const featureToggles = require('./config/feature-toggles.json')
-
-const normalizeSegments = (pathname = '') =>
- pathname
- .replace(/^\/+|\/+$/g, '')
- .split('/')
- .filter(Boolean)
-
-const findDynamicChildKey = (children = {}) =>
- Object.keys(children).find((key) => /^\[(\.\.\.)?.+\]$/.test(key))
-
-const resolveToggle = (node, segments) => {
- if (!node) return true
- const isEnabled = node.enabled !== false
- if (!isEnabled) return false
- if (!segments.length) return isEnabled
-
- const children = node.children || {}
- const [current, ...rest] = segments
- const exactChild = children[current]
- const dynamicChildKey = findDynamicChildKey(children)
- const wildcardChild = children['*']
- const nextNode =
- exactChild ?? (dynamicChildKey ? children[dynamicChildKey] : undefined) ?? wildcardChild
-
- if (!nextNode) return isEnabled
- return resolveToggle(nextNode, rest)
-}
-
-const isFeatureEnabled = (section, pathname) => {
- const tree = featureToggles[section]
- if (!tree) return true
- const segments = normalizeSegments(pathname)
- return resolveToggle(tree, segments)
-}
-
-// Static exports are incompatible with dynamic route handlers used for auth.
-// Allow opting-in explicitly to avoid breaking the default production build.
-const shouldUseStaticExport = process.env.NEXT_SHOULD_EXPORT === 'true'
-
-/** @type {import('next').NextConfig} */
-const nextConfig = {
- ...(shouldUseStaticExport ? { output: 'export' } : {}),
- trailingSlash: false,
- reactStrictMode: true,
- compress: false, // 压缩交给 Nginx,省 Node CPU
- poweredByHeader: false,
- images: { unoptimized: true }, // 关闭服务端图片处理
- httpAgentOptions: {
- keepAlive: true,
- },
- async headers() {
- return [
- {
- source: '/api/:path*',
- headers: [
- {
- key: 'Cache-Control',
- value: 'no-store',
- },
- ],
- },
- ]
- },
- async rewrites() {
- return [
- {
- source: '/api/:path*/',
- destination: '/api/:path*',
- },
- ]
- },
- webpack(config) {
- config.module.rules.push({
- test: /\.ya?ml$/i,
- type: 'asset/source',
- })
-
- config.resolve.alias = {
- ...(config.resolve.alias ?? {}),
- '@cms': path.join(__dirname, 'src', 'lib', 'cms'),
- '@components': path.join(__dirname, 'src', 'components'),
- '@i18n': path.join(__dirname, 'src', 'i18n'),
- '@lib': path.join(__dirname, 'src', 'lib'),
- '@types': path.join(__dirname, 'types'),
- '@server': path.join(__dirname, 'src', 'server'),
- '@modules': path.join(__dirname, 'src', 'modules'),
- '@extensions': path.join(__dirname, 'src', 'modules', 'extensions'),
- '@theme': path.join(__dirname, 'src', 'components', 'theme'),
- '@templates': path.join(__dirname, 'src', 'modules', 'templates'),
- '@src': path.join(__dirname, 'src'),
- }
- return config
- },
-}
-module.exports = nextConfig
diff --git a/dashboard/public/dl-index/artifacts-manifest.json b/dashboard/public/dl-index/artifacts-manifest.json
index bd38c7e..c604cdd 100644
--- a/dashboard/public/dl-index/artifacts-manifest.json
+++ b/dashboard/public/dl-index/artifacts-manifest.json
@@ -6,7 +6,7 @@
"name": "dashboard/",
"href": "/dashboard/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "deb/",
@@ -18,25 +18,25 @@
"name": "docs/",
"href": "/docs/",
"type": "dir",
- "lastModified": "2025-09-29T10:09:01Z"
+ "lastModified": "2025-09-29T10:09:12Z"
},
{
"name": "offline-package/",
"href": "/offline-package/",
"type": "dir",
- "lastModified": "2025-09-25T12:30:41Z"
+ "lastModified": "2025-09-19T01:55:53Z"
},
{
"name": "otel/",
"href": "/otel/",
"type": "dir",
- "lastModified": "2025-09-25T05:31:14Z"
+ "lastModified": "2025-09-19T01:55:53Z"
},
{
"name": "prometheus/",
"href": "/prometheus/",
"type": "dir",
- "lastModified": "2025-09-29T04:26:43Z"
+ "lastModified": "2025-09-29T04:25:56Z"
},
{
"name": "rpm/",
@@ -48,19 +48,19 @@
"name": "sealos/",
"href": "/sealos/",
"type": "dir",
- "lastModified": "2025-09-19T05:20:47Z"
+ "lastModified": "2025-09-19T01:55:53Z"
},
{
"name": "xray-core/",
"href": "/xray-core/",
"type": "dir",
- "lastModified": "2025-09-25T05:31:48Z"
+ "lastModified": "2025-09-19T01:55:53Z"
},
{
"name": "xstream/",
"href": "/xstream/",
"type": "dir",
- "lastModified": "2025-09-20T07:06:47Z"
+ "lastModified": "2025-09-19T01:55:53Z"
}
]
},
@@ -71,113 +71,113 @@
"name": "404/",
"href": "/dashboard/404/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "404.html",
"href": "/dashboard/404.html",
"type": "file",
"size": 6798,
- "lastModified": "2025-09-26T01:51:54Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "500/",
"href": "/dashboard/500/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:54Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "_build/",
"href": "/dashboard/_build/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:54Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "_next/",
"href": "/dashboard/_next/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "cloud_iac/",
"href": "/dashboard/cloud_iac/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "demo/",
"href": "/dashboard/demo/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "dl-index/",
"href": "/dashboard/dl-index/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:03Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "docs/",
"href": "/dashboard/docs/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "download/",
"href": "/dashboard/download/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "favicon.ico",
"href": "/dashboard/favicon.ico",
"type": "file",
"size": 32038,
- "lastModified": "2025-09-26T01:51:54Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "icons/",
"href": "/dashboard/icons/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "index.html",
"href": "/dashboard/index.html",
"type": "file",
"size": 20771,
- "lastModified": "2025-09-26T01:51:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/index.txt",
"type": "file",
"size": 3933,
- "lastModified": "2025-09-26T01:51:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "insight/",
"href": "/dashboard/insight/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "login/",
"href": "/dashboard/login/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "panel/",
"href": "/dashboard/panel/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "register/",
"href": "/dashboard/register/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -189,14 +189,14 @@
"href": "/dashboard/404/index.html",
"type": "file",
"size": 6355,
- "lastModified": "2025-09-26T01:51:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/404/index.txt",
"type": "file",
"size": 3504,
- "lastModified": "2025-09-26T01:51:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -208,7 +208,7 @@
"href": "/dashboard/500/index.html",
"type": "file",
"size": 2688,
- "lastModified": "2025-09-26T01:51:54Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
@@ -220,21 +220,21 @@
"href": "/dashboard/_build/cloud_iac_index.json",
"type": "file",
"size": 6284,
- "lastModified": "2025-09-26T01:51:54Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "docs_index.json",
"href": "/dashboard/_build/docs_index.json",
"type": "file",
"size": 246,
- "lastModified": "2025-09-26T01:51:54Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "docs_paths.json",
"href": "/dashboard/_build/docs_paths.json",
"type": "file",
"size": 762,
- "lastModified": "2025-09-26T01:51:54Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
@@ -245,13 +245,13 @@
"name": "C4jl8zBvWrRDVZ6h36PCq/",
"href": "/dashboard/_next/C4jl8zBvWrRDVZ6h36PCq/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:51Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "static/",
"href": "/dashboard/_next/static/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
@@ -266,19 +266,19 @@
"name": "C4jl8zBvWrRDVZ6h36PCq/",
"href": "/dashboard/_next/static/C4jl8zBvWrRDVZ6h36PCq/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:54Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "chunks/",
"href": "/dashboard/_next/static/chunks/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "css/",
"href": "/dashboard/_next/static/css/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
@@ -290,14 +290,14 @@
"href": "/dashboard/_next/static/C4jl8zBvWrRDVZ6h36PCq/_buildManifest.js",
"type": "file",
"size": 355,
- "lastModified": "2025-09-26T01:51:54Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "_ssgManifest.js",
"href": "/dashboard/_next/static/C4jl8zBvWrRDVZ6h36PCq/_ssgManifest.js",
"type": "file",
"size": 275,
- "lastModified": "2025-09-26T01:51:54Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
@@ -309,124 +309,124 @@
"href": "/dashboard/_next/static/chunks/117-6a3726805dfba300.js",
"type": "file",
"size": 123799,
- "lastModified": "2025-09-26T01:51:54Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "352-73bf50f0537e023f.js",
"href": "/dashboard/_next/static/chunks/352-73bf50f0537e023f.js",
"type": "file",
"size": 24645,
- "lastModified": "2025-09-26T01:51:54Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "428-657a815c79ad0bc6.js",
"href": "/dashboard/_next/static/chunks/428-657a815c79ad0bc6.js",
"type": "file",
"size": 8517,
- "lastModified": "2025-09-26T01:51:54Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "543.43fdf78fe779d061.js",
"href": "/dashboard/_next/static/chunks/543.43fdf78fe779d061.js",
"type": "file",
"size": 79204,
- "lastModified": "2025-09-26T01:51:54Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "583-9eac24a516ef3ad7.js",
"href": "/dashboard/_next/static/chunks/583-9eac24a516ef3ad7.js",
"type": "file",
"size": 52542,
- "lastModified": "2025-09-26T01:51:55Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "618.03dade8902ee368b.js",
"href": "/dashboard/_next/static/chunks/618.03dade8902ee368b.js",
"type": "file",
"size": 29274,
- "lastModified": "2025-09-26T01:51:55Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "659-f9c4d7cd4f724beb.js",
"href": "/dashboard/_next/static/chunks/659-f9c4d7cd4f724beb.js",
"type": "file",
"size": 9832,
- "lastModified": "2025-09-26T01:51:55Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "685f7497.c879d3fc2c1f598d.js",
"href": "/dashboard/_next/static/chunks/685f7497.c879d3fc2c1f598d.js",
"type": "file",
"size": 318700,
- "lastModified": "2025-09-26T01:51:55Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "957-d033c2db1c144d27.js",
"href": "/dashboard/_next/static/chunks/957-d033c2db1c144d27.js",
"type": "file",
"size": 22699,
- "lastModified": "2025-09-26T01:51:55Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "972-63622a33e9e5334f.js",
"href": "/dashboard/_next/static/chunks/972-63622a33e9e5334f.js",
"type": "file",
"size": 26066,
- "lastModified": "2025-09-26T01:51:55Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "app/",
"href": "/dashboard/_next/static/chunks/app/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "fd9d1056-5296711c48bf068c.js",
"href": "/dashboard/_next/static/chunks/fd9d1056-5296711c48bf068c.js",
"type": "file",
"size": 172834,
- "lastModified": "2025-09-26T01:51:55Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "framework-6f66816a5f0d80ad.js",
"href": "/dashboard/_next/static/chunks/framework-6f66816a5f0d80ad.js",
"type": "file",
"size": 140017,
- "lastModified": "2025-09-26T01:51:55Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "main-app-dc441e617920f385.js",
"href": "/dashboard/_next/static/chunks/main-app-dc441e617920f385.js",
"type": "file",
"size": 459,
- "lastModified": "2025-09-26T01:51:55Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "main-bdac568bfdd17e6f.js",
"href": "/dashboard/_next/static/chunks/main-bdac568bfdd17e6f.js",
"type": "file",
"size": 131864,
- "lastModified": "2025-09-26T01:51:55Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "pages/",
"href": "/dashboard/_next/static/chunks/pages/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "polyfills-42372ed130431b0a.js",
"href": "/dashboard/_next/static/chunks/polyfills-42372ed130431b0a.js",
"type": "file",
"size": 112594,
- "lastModified": "2025-09-26T01:51:55Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "webpack-8d2ae002b78e6287.js",
"href": "/dashboard/_next/static/chunks/webpack-8d2ae002b78e6287.js",
"type": "file",
"size": 3913,
- "lastModified": "2025-09-26T01:51:55Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
@@ -437,75 +437,75 @@
"name": "404/",
"href": "/dashboard/_next/static/chunks/app/404/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:55Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "_not-found/",
"href": "/dashboard/_next/static/chunks/app/_not-found/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:55Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "cloud_iac/",
"href": "/dashboard/_next/static/chunks/app/cloud_iac/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "demo/",
"href": "/dashboard/_next/static/chunks/app/demo/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "docs/",
"href": "/dashboard/_next/static/chunks/app/docs/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "download/",
"href": "/dashboard/_next/static/chunks/app/download/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "insight/",
"href": "/dashboard/_next/static/chunks/app/insight/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "layout-4db55386872fdb95.js",
"href": "/dashboard/_next/static/chunks/app/layout-4db55386872fdb95.js",
"type": "file",
"size": 633,
- "lastModified": "2025-09-26T01:51:55Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "login/",
"href": "/dashboard/_next/static/chunks/app/login/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "page-b9e2a021cd3e8e5f.js",
"href": "/dashboard/_next/static/chunks/app/page-b9e2a021cd3e8e5f.js",
"type": "file",
"size": 34174,
- "lastModified": "2025-09-26T01:51:55Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "panel/",
"href": "/dashboard/_next/static/chunks/app/panel/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "register/",
"href": "/dashboard/_next/static/chunks/app/register/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
@@ -517,7 +517,7 @@
"href": "/dashboard/_next/static/chunks/app/404/page-d033b86b7e12358c.js",
"type": "file",
"size": 214,
- "lastModified": "2025-09-26T01:51:55Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
@@ -529,7 +529,7 @@
"href": "/dashboard/_next/static/chunks/app/_not-found/page-fb75a9d20615c23b.js",
"type": "file",
"size": 1745,
- "lastModified": "2025-09-26T01:51:55Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
@@ -540,14 +540,14 @@
"name": "[provider]/",
"href": "/dashboard/_next/static/chunks/app/cloud_iac/[provider]/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "page-a800f97739aa8bf8.js",
"href": "/dashboard/_next/static/chunks/app/cloud_iac/page-a800f97739aa8bf8.js",
"type": "file",
"size": 150,
- "lastModified": "2025-09-26T01:51:55Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
@@ -558,14 +558,14 @@
"name": "[service]/",
"href": "/dashboard/_next/static/chunks/app/cloud_iac/[provider]/[service]/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "page-51318cda3f45d8ff.js",
"href": "/dashboard/_next/static/chunks/app/cloud_iac/[provider]/page-51318cda3f45d8ff.js",
"type": "file",
"size": 150,
- "lastModified": "2025-09-26T01:51:55Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
@@ -577,7 +577,7 @@
"href": "/dashboard/_next/static/chunks/app/cloud_iac/[provider]/[service]/page-c36f84c28d14ebc6.js",
"type": "file",
"size": 33649,
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
@@ -589,7 +589,7 @@
"href": "/dashboard/_next/static/chunks/app/demo/page-527921c198e587d6.js",
"type": "file",
"size": 6729,
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
@@ -600,14 +600,14 @@
"name": "[collection]/",
"href": "/dashboard/_next/static/chunks/app/docs/[collection]/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "page-b4cc914dbaf4cdff.js",
"href": "/dashboard/_next/static/chunks/app/docs/page-b4cc914dbaf4cdff.js",
"type": "file",
"size": 5295,
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
@@ -618,14 +618,14 @@
"name": "[version]/",
"href": "/dashboard/_next/static/chunks/app/docs/[collection]/[version]/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "page-6633878c20436dac.js",
"href": "/dashboard/_next/static/chunks/app/docs/[collection]/page-6633878c20436dac.js",
"type": "file",
"size": 195,
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
@@ -637,7 +637,7 @@
"href": "/dashboard/_next/static/chunks/app/docs/[collection]/[version]/page-1cbe2459f88dd240.js",
"type": "file",
"size": 23424,
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
@@ -648,14 +648,14 @@
"name": "[...segments]/",
"href": "/dashboard/_next/static/chunks/app/download/[...segments]/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "page-41dbd6ebf9f92ca0.js",
"href": "/dashboard/_next/static/chunks/app/download/page-41dbd6ebf9f92ca0.js",
"type": "file",
"size": 4413,
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
@@ -667,7 +667,7 @@
"href": "/dashboard/_next/static/chunks/app/download/[...segments]/page-255dabe7628e31fe.js",
"type": "file",
"size": 7800,
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
@@ -679,7 +679,7 @@
"href": "/dashboard/_next/static/chunks/app/insight/page-75c4a7533d660a6d.js",
"type": "file",
"size": 77139,
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
@@ -691,7 +691,7 @@
"href": "/dashboard/_next/static/chunks/app/login/page-c646ef0960a5bae3.js",
"type": "file",
"size": 195,
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
@@ -702,58 +702,58 @@
"name": "account/",
"href": "/dashboard/_next/static/chunks/app/panel/account/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "agent/",
"href": "/dashboard/_next/static/chunks/app/panel/agent/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "api/",
"href": "/dashboard/_next/static/chunks/app/panel/api/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "layout-ffc5a202c0330284.js",
"href": "/dashboard/_next/static/chunks/app/panel/layout-ffc5a202c0330284.js",
"type": "file",
"size": 7304,
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "ldp/",
"href": "/dashboard/_next/static/chunks/app/panel/ldp/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "loading-037d1c581c07a642.js",
"href": "/dashboard/_next/static/chunks/app/panel/loading-037d1c581c07a642.js",
"type": "file",
"size": 195,
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "page-f9ab98aadf4e8ebe.js",
"href": "/dashboard/_next/static/chunks/app/panel/page-f9ab98aadf4e8ebe.js",
"type": "file",
"size": 195,
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "subscription/",
"href": "/dashboard/_next/static/chunks/app/panel/subscription/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
- "name": "management/",
- "href": "/dashboard/_next/static/chunks/app/panel/management/",
+ "name": "xray/",
+ "href": "/dashboard/_next/static/chunks/app/panel/xray/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
@@ -765,7 +765,7 @@
"href": "/dashboard/_next/static/chunks/app/panel/account/page-6f6767ba761505a0.js",
"type": "file",
"size": 195,
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
@@ -777,7 +777,7 @@
"href": "/dashboard/_next/static/chunks/app/panel/agent/page-cbd83817a6999224.js",
"type": "file",
"size": 195,
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
@@ -789,7 +789,7 @@
"href": "/dashboard/_next/static/chunks/app/panel/api/page-e5b405bfc4c947b1.js",
"type": "file",
"size": 195,
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
@@ -801,7 +801,7 @@
"href": "/dashboard/_next/static/chunks/app/panel/ldp/page-c1220d75927524d9.js",
"type": "file",
"size": 214,
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
@@ -813,19 +813,19 @@
"href": "/dashboard/_next/static/chunks/app/panel/subscription/page-e153c2aa1ebc0f38.js",
"type": "file",
"size": 195,
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
{
- "path": "dashboard/_next/static/chunks/app/panel/management/",
+ "path": "dashboard/_next/static/chunks/app/panel/xray/",
"entries": [
{
"name": "page-f036d24f65fa1934.js",
- "href": "/dashboard/_next/static/chunks/app/panel/management/page-f036d24f65fa1934.js",
+ "href": "/dashboard/_next/static/chunks/app/panel/xray/page-f036d24f65fa1934.js",
"type": "file",
"size": 195,
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
@@ -837,7 +837,7 @@
"href": "/dashboard/_next/static/chunks/app/register/page-5ddbf51eadc2f7ec.js",
"type": "file",
"size": 195,
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
@@ -849,21 +849,21 @@
"href": "/dashboard/_next/static/chunks/pages/500-37b2908f349f28f9.js",
"type": "file",
"size": 7593,
- "lastModified": "2025-09-26T01:51:56Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "_app-72b849fbd24ac258.js",
"href": "/dashboard/_next/static/chunks/pages/_app-72b849fbd24ac258.js",
"type": "file",
"size": 280,
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "_error-7ba65e1336b92748.js",
"href": "/dashboard/_next/static/chunks/pages/_error-7ba65e1336b92748.js",
"type": "file",
"size": 247,
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
@@ -875,7 +875,7 @@
"href": "/dashboard/_next/static/css/e2d0e678cda188fd.css",
"type": "file",
"size": 44489,
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
@@ -886,39 +886,39 @@
"name": "aliyun/",
"href": "/dashboard/cloud_iac/aliyun/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "aws/",
"href": "/dashboard/cloud_iac/aws/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "azure/",
"href": "/dashboard/cloud_iac/azure/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "gcp/",
"href": "/dashboard/cloud_iac/gcp/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/cloud_iac/index.html",
"type": "file",
"size": 92456,
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/index.txt",
"type": "file",
"size": 23080,
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -929,105 +929,105 @@
"name": "ack/",
"href": "/dashboard/cloud_iac/aliyun/ack/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "aliyun-emr/",
"href": "/dashboard/cloud_iac/aliyun/aliyun-emr/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "aliyun-iot/",
"href": "/dashboard/cloud_iac/aliyun/aliyun-iot/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "apigateway-dataworks/",
"href": "/dashboard/cloud_iac/aliyun/apigateway-dataworks/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "apsaradb-rds/",
"href": "/dashboard/cloud_iac/aliyun/apsaradb-rds/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "apsaradb-redis/",
"href": "/dashboard/cloud_iac/aliyun/apsaradb-redis/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cloudmonitor-eventbridge/",
"href": "/dashboard/cloud_iac/aliyun/cloudmonitor-eventbridge/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "dns-acceleration/",
"href": "/dashboard/cloud_iac/aliyun/dns-acceleration/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "ecs/",
"href": "/dashboard/cloud_iac/aliyun/ecs/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/cloud_iac/aliyun/index.html",
"type": "file",
"size": 58795,
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aliyun/index.txt",
"type": "file",
"size": 23333,
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "mns/",
"href": "/dashboard/cloud_iac/aliyun/mns/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "oss/",
"href": "/dashboard/cloud_iac/aliyun/oss/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "ram/",
"href": "/dashboard/cloud_iac/aliyun/ram/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "security-group/",
"href": "/dashboard/cloud_iac/aliyun/security-group/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "slb/",
"href": "/dashboard/cloud_iac/aliyun/slb/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "vpc/",
"href": "/dashboard/cloud_iac/aliyun/vpc/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1039,14 +1039,14 @@
"href": "/dashboard/cloud_iac/aliyun/ack/index.html",
"type": "file",
"size": 20243,
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aliyun/ack/index.txt",
"type": "file",
"size": 5380,
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1058,14 +1058,14 @@
"href": "/dashboard/cloud_iac/aliyun/aliyun-emr/index.html",
"type": "file",
"size": 5684,
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aliyun/aliyun-emr/index.txt",
"type": "file",
"size": 3634,
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1077,14 +1077,14 @@
"href": "/dashboard/cloud_iac/aliyun/aliyun-iot/index.html",
"type": "file",
"size": 18367,
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aliyun/aliyun-iot/index.txt",
"type": "file",
"size": 5575,
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1096,14 +1096,14 @@
"href": "/dashboard/cloud_iac/aliyun/apigateway-dataworks/index.html",
"type": "file",
"size": 18590,
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aliyun/apigateway-dataworks/index.txt",
"type": "file",
"size": 5782,
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1115,14 +1115,14 @@
"href": "/dashboard/cloud_iac/aliyun/apsaradb-rds/index.html",
"type": "file",
"size": 20402,
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aliyun/apsaradb-rds/index.txt",
"type": "file",
"size": 5519,
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1134,14 +1134,14 @@
"href": "/dashboard/cloud_iac/aliyun/apsaradb-redis/index.html",
"type": "file",
"size": 20374,
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aliyun/apsaradb-redis/index.txt",
"type": "file",
"size": 5527,
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1153,14 +1153,14 @@
"href": "/dashboard/cloud_iac/aliyun/cloudmonitor-eventbridge/index.html",
"type": "file",
"size": 18574,
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aliyun/cloudmonitor-eventbridge/index.txt",
"type": "file",
"size": 5768,
- "lastModified": "2025-09-26T01:51:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1172,14 +1172,14 @@
"href": "/dashboard/cloud_iac/aliyun/dns-acceleration/index.html",
"type": "file",
"size": 18367,
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aliyun/dns-acceleration/index.txt",
"type": "file",
"size": 5595,
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1191,14 +1191,14 @@
"href": "/dashboard/cloud_iac/aliyun/ecs/index.html",
"type": "file",
"size": 20422,
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aliyun/ecs/index.txt",
"type": "file",
"size": 5446,
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1210,14 +1210,14 @@
"href": "/dashboard/cloud_iac/aliyun/mns/index.html",
"type": "file",
"size": 20233,
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aliyun/mns/index.txt",
"type": "file",
"size": 5391,
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1229,14 +1229,14 @@
"href": "/dashboard/cloud_iac/aliyun/oss/index.html",
"type": "file",
"size": 20326,
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aliyun/oss/index.txt",
"type": "file",
"size": 5434,
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1248,14 +1248,14 @@
"href": "/dashboard/cloud_iac/aliyun/ram/index.html",
"type": "file",
"size": 20260,
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aliyun/ram/index.txt",
"type": "file",
"size": 5410,
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1267,14 +1267,14 @@
"href": "/dashboard/cloud_iac/aliyun/security-group/index.html",
"type": "file",
"size": 20519,
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aliyun/security-group/index.txt",
"type": "file",
"size": 5598,
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1286,14 +1286,14 @@
"href": "/dashboard/cloud_iac/aliyun/slb/index.html",
"type": "file",
"size": 20381,
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aliyun/slb/index.txt",
"type": "file",
"size": 5501,
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1305,14 +1305,14 @@
"href": "/dashboard/cloud_iac/aliyun/vpc/index.html",
"type": "file",
"size": 20284,
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aliyun/vpc/index.txt",
"type": "file",
"size": 5405,
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1323,105 +1323,105 @@
"name": "alb/",
"href": "/dashboard/cloud_iac/aws/alb/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "api-gateway-appflow/",
"href": "/dashboard/cloud_iac/aws/api-gateway-appflow/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "aws-iot/",
"href": "/dashboard/cloud_iac/aws/aws-iot/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cloudwatch-eventbridge/",
"href": "/dashboard/cloud_iac/aws/cloudwatch-eventbridge/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "ec2/",
"href": "/dashboard/cloud_iac/aws/ec2/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "eks/",
"href": "/dashboard/cloud_iac/aws/eks/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "elasticache/",
"href": "/dashboard/cloud_iac/aws/elasticache/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "emr/",
"href": "/dashboard/cloud_iac/aws/emr/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "iam/",
"href": "/dashboard/cloud_iac/aws/iam/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/cloud_iac/aws/index.html",
"type": "file",
"size": 58484,
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aws/index.txt",
"type": "file",
"size": 23306,
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "rds/",
"href": "/dashboard/cloud_iac/aws/rds/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "route53-cloudfront/",
"href": "/dashboard/cloud_iac/aws/route53-cloudfront/",
"type": "dir",
- "lastModified": "2025-09-26T01:51:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "s3/",
"href": "/dashboard/cloud_iac/aws/s3/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "security-group/",
"href": "/dashboard/cloud_iac/aws/security-group/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "sqs/",
"href": "/dashboard/cloud_iac/aws/sqs/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "vpc/",
"href": "/dashboard/cloud_iac/aws/vpc/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1433,14 +1433,14 @@
"href": "/dashboard/cloud_iac/aws/alb/index.html",
"type": "file",
"size": 20372,
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aws/alb/index.txt",
"type": "file",
"size": 5486,
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1452,14 +1452,14 @@
"href": "/dashboard/cloud_iac/aws/api-gateway-appflow/index.html",
"type": "file",
"size": 18506,
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aws/api-gateway-appflow/index.txt",
"type": "file",
"size": 5743,
- "lastModified": "2025-09-26T01:51:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1471,14 +1471,14 @@
"href": "/dashboard/cloud_iac/aws/aws-iot/index.html",
"type": "file",
"size": 18250,
- "lastModified": "2025-09-26T01:51:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aws/aws-iot/index.txt",
"type": "file",
"size": 5519,
- "lastModified": "2025-09-26T01:51:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1490,14 +1490,14 @@
"href": "/dashboard/cloud_iac/aws/cloudwatch-eventbridge/index.html",
"type": "file",
"size": 18490,
- "lastModified": "2025-09-26T01:51:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aws/cloudwatch-eventbridge/index.txt",
"type": "file",
"size": 5726,
- "lastModified": "2025-09-26T01:51:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1509,14 +1509,14 @@
"href": "/dashboard/cloud_iac/aws/ec2/index.html",
"type": "file",
"size": 20341,
- "lastModified": "2025-09-26T01:51:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aws/ec2/index.txt",
"type": "file",
"size": 5413,
- "lastModified": "2025-09-26T01:51:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1528,14 +1528,14 @@
"href": "/dashboard/cloud_iac/aws/eks/index.html",
"type": "file",
"size": 20162,
- "lastModified": "2025-09-26T01:51:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aws/eks/index.txt",
"type": "file",
"size": 5347,
- "lastModified": "2025-09-26T01:51:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1547,14 +1547,14 @@
"href": "/dashboard/cloud_iac/aws/elasticache/index.html",
"type": "file",
"size": 20311,
- "lastModified": "2025-09-26T01:51:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aws/elasticache/index.txt",
"type": "file",
"size": 5497,
- "lastModified": "2025-09-26T01:51:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1566,14 +1566,14 @@
"href": "/dashboard/cloud_iac/aws/emr/index.html",
"type": "file",
"size": 20194,
- "lastModified": "2025-09-26T01:51:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aws/emr/index.txt",
"type": "file",
"size": 5369,
- "lastModified": "2025-09-26T01:51:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1585,14 +1585,14 @@
"href": "/dashboard/cloud_iac/aws/iam/index.html",
"type": "file",
"size": 20167,
- "lastModified": "2025-09-26T01:51:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aws/iam/index.txt",
"type": "file",
"size": 5374,
- "lastModified": "2025-09-26T01:51:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1604,14 +1604,14 @@
"href": "/dashboard/cloud_iac/aws/rds/index.html",
"type": "file",
"size": 20249,
- "lastModified": "2025-09-26T01:51:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aws/rds/index.txt",
"type": "file",
"size": 5423,
- "lastModified": "2025-09-26T01:51:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1623,14 +1623,14 @@
"href": "/dashboard/cloud_iac/aws/route53-cloudfront/index.html",
"type": "file",
"size": 18322,
- "lastModified": "2025-09-26T01:51:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aws/route53-cloudfront/index.txt",
"type": "file",
"size": 5578,
- "lastModified": "2025-09-26T01:51:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1642,14 +1642,14 @@
"href": "/dashboard/cloud_iac/aws/s3/index.html",
"type": "file",
"size": 20233,
- "lastModified": "2025-09-26T01:51:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aws/s3/index.txt",
"type": "file",
"size": 5393,
- "lastModified": "2025-09-26T01:52:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1661,14 +1661,14 @@
"href": "/dashboard/cloud_iac/aws/security-group/index.html",
"type": "file",
"size": 20498,
- "lastModified": "2025-09-26T01:52:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aws/security-group/index.txt",
"type": "file",
"size": 5580,
- "lastModified": "2025-09-26T01:52:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1680,14 +1680,14 @@
"href": "/dashboard/cloud_iac/aws/sqs/index.html",
"type": "file",
"size": 20152,
- "lastModified": "2025-09-26T01:52:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aws/sqs/index.txt",
"type": "file",
"size": 5358,
- "lastModified": "2025-09-26T01:52:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1699,14 +1699,14 @@
"href": "/dashboard/cloud_iac/aws/vpc/index.html",
"type": "file",
"size": 20209,
- "lastModified": "2025-09-26T01:52:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/aws/vpc/index.txt",
"type": "file",
"size": 5372,
- "lastModified": "2025-09-26T01:52:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1717,105 +1717,105 @@
"name": "aks/",
"href": "/dashboard/cloud_iac/azure/aks/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "apim-data-factory/",
"href": "/dashboard/cloud_iac/azure/apim-data-factory/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "azure-ad/",
"href": "/dashboard/cloud_iac/azure/azure-ad/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "azure-database/",
"href": "/dashboard/cloud_iac/azure/azure-database/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "azure-dns-front-door/",
"href": "/dashboard/cloud_iac/azure/azure-dns-front-door/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "azure-iot/",
"href": "/dashboard/cloud_iac/azure/azure-iot/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "azure-load-balancer/",
"href": "/dashboard/cloud_iac/azure/azure-load-balancer/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "blob-storage/",
"href": "/dashboard/cloud_iac/azure/blob-storage/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/cloud_iac/azure/index.html",
"type": "file",
"size": 58819,
- "lastModified": "2025-09-26T01:52:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/azure/index.txt",
"type": "file",
"size": 23320,
- "lastModified": "2025-09-26T01:52:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "monitor-event-grid/",
"href": "/dashboard/cloud_iac/azure/monitor-event-grid/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "network-security-group/",
"href": "/dashboard/cloud_iac/azure/network-security-group/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "redis-cache/",
"href": "/dashboard/cloud_iac/azure/redis-cache/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "service-bus/",
"href": "/dashboard/cloud_iac/azure/service-bus/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "synapse/",
"href": "/dashboard/cloud_iac/azure/synapse/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "virtual-machines/",
"href": "/dashboard/cloud_iac/azure/virtual-machines/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "virtual-network/",
"href": "/dashboard/cloud_iac/azure/virtual-network/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1827,14 +1827,14 @@
"href": "/dashboard/cloud_iac/azure/aks/index.html",
"type": "file",
"size": 20248,
- "lastModified": "2025-09-26T01:52:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/azure/aks/index.txt",
"type": "file",
"size": 5377,
- "lastModified": "2025-09-26T01:52:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1846,14 +1846,14 @@
"href": "/dashboard/cloud_iac/azure/apim-data-factory/index.html",
"type": "file",
"size": 18545,
- "lastModified": "2025-09-26T01:52:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/azure/apim-data-factory/index.txt",
"type": "file",
"size": 5756,
- "lastModified": "2025-09-26T01:52:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1865,14 +1865,14 @@
"href": "/dashboard/cloud_iac/azure/azure-ad/index.html",
"type": "file",
"size": 20311,
- "lastModified": "2025-09-26T01:52:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/azure/azure-ad/index.txt",
"type": "file",
"size": 5454,
- "lastModified": "2025-09-26T01:52:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1884,14 +1884,14 @@
"href": "/dashboard/cloud_iac/azure/azure-database/index.html",
"type": "file",
"size": 20443,
- "lastModified": "2025-09-26T01:52:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/azure/azure-database/index.txt",
"type": "file",
"size": 5535,
- "lastModified": "2025-09-26T01:52:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1903,14 +1903,14 @@
"href": "/dashboard/cloud_iac/azure/azure-dns-front-door/index.html",
"type": "file",
"size": 18346,
- "lastModified": "2025-09-26T01:52:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/azure/azure-dns-front-door/index.txt",
"type": "file",
"size": 5598,
- "lastModified": "2025-09-26T01:52:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1922,14 +1922,14 @@
"href": "/dashboard/cloud_iac/azure/azure-iot/index.html",
"type": "file",
"size": 18289,
- "lastModified": "2025-09-26T01:52:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/azure/azure-iot/index.txt",
"type": "file",
"size": 5544,
- "lastModified": "2025-09-26T01:52:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1941,14 +1941,14 @@
"href": "/dashboard/cloud_iac/azure/azure-load-balancer/index.html",
"type": "file",
"size": 20506,
- "lastModified": "2025-09-26T01:52:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/azure/azure-load-balancer/index.txt",
"type": "file",
"size": 5608,
- "lastModified": "2025-09-26T01:52:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1960,14 +1960,14 @@
"href": "/dashboard/cloud_iac/azure/blob-storage/index.html",
"type": "file",
"size": 20385,
- "lastModified": "2025-09-26T01:52:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/azure/blob-storage/index.txt",
"type": "file",
"size": 5494,
- "lastModified": "2025-09-26T01:52:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1979,14 +1979,14 @@
"href": "/dashboard/cloud_iac/azure/monitor-event-grid/index.html",
"type": "file",
"size": 18481,
- "lastModified": "2025-09-26T01:52:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/azure/monitor-event-grid/index.txt",
"type": "file",
"size": 5717,
- "lastModified": "2025-09-26T01:52:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -1998,14 +1998,14 @@
"href": "/dashboard/cloud_iac/azure/network-security-group/index.html",
"type": "file",
"size": 20608,
- "lastModified": "2025-09-26T01:52:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/azure/network-security-group/index.txt",
"type": "file",
"size": 5656,
- "lastModified": "2025-09-26T01:52:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2017,14 +2017,14 @@
"href": "/dashboard/cloud_iac/azure/redis-cache/index.html",
"type": "file",
"size": 20353,
- "lastModified": "2025-09-26T01:52:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/azure/redis-cache/index.txt",
"type": "file",
"size": 5516,
- "lastModified": "2025-09-26T01:52:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2036,14 +2036,14 @@
"href": "/dashboard/cloud_iac/azure/service-bus/index.html",
"type": "file",
"size": 20274,
- "lastModified": "2025-09-26T01:52:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/azure/service-bus/index.txt",
"type": "file",
"size": 5437,
- "lastModified": "2025-09-26T01:52:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2055,14 +2055,14 @@
"href": "/dashboard/cloud_iac/azure/synapse/index.html",
"type": "file",
"size": 20308,
- "lastModified": "2025-09-26T01:52:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/azure/synapse/index.txt",
"type": "file",
"size": 5426,
- "lastModified": "2025-09-26T01:52:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2074,14 +2074,14 @@
"href": "/dashboard/cloud_iac/azure/virtual-machines/index.html",
"type": "file",
"size": 20499,
- "lastModified": "2025-09-26T01:52:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/azure/virtual-machines/index.txt",
"type": "file",
"size": 5526,
- "lastModified": "2025-09-26T01:52:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2093,14 +2093,14 @@
"href": "/dashboard/cloud_iac/azure/virtual-network/index.html",
"type": "file",
"size": 20350,
- "lastModified": "2025-09-26T01:52:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/azure/virtual-network/index.txt",
"type": "file",
"size": 5477,
- "lastModified": "2025-09-26T01:52:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2111,105 +2111,105 @@
"name": "apigateway-integration/",
"href": "/dashboard/cloud_iac/gcp/apigateway-integration/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cloud-dns-cdn/",
"href": "/dashboard/cloud_iac/gcp/cloud-dns-cdn/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cloud-iam/",
"href": "/dashboard/cloud_iac/gcp/cloud-iam/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cloud-load-balancing/",
"href": "/dashboard/cloud_iac/gcp/cloud-load-balancing/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cloud-sql/",
"href": "/dashboard/cloud_iac/gcp/cloud-sql/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cloud-storage/",
"href": "/dashboard/cloud_iac/gcp/cloud-storage/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "compute-engine/",
"href": "/dashboard/cloud_iac/gcp/compute-engine/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "dataproc/",
"href": "/dashboard/cloud_iac/gcp/dataproc/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "gcp-iot/",
"href": "/dashboard/cloud_iac/gcp/gcp-iot/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "gke/",
"href": "/dashboard/cloud_iac/gcp/gke/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/cloud_iac/gcp/index.html",
"type": "file",
"size": 58576,
- "lastModified": "2025-09-26T01:52:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/gcp/index.txt",
"type": "file",
"size": 23306,
- "lastModified": "2025-09-26T01:52:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "memorystore/",
"href": "/dashboard/cloud_iac/gcp/memorystore/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "operations-eventarc/",
"href": "/dashboard/cloud_iac/gcp/operations-eventarc/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "pubsub/",
"href": "/dashboard/cloud_iac/gcp/pubsub/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "vpc/",
"href": "/dashboard/cloud_iac/gcp/vpc/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "vpc-firewall/",
"href": "/dashboard/cloud_iac/gcp/vpc-firewall/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2221,14 +2221,14 @@
"href": "/dashboard/cloud_iac/gcp/apigateway-integration/index.html",
"type": "file",
"size": 18548,
- "lastModified": "2025-09-26T01:52:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/gcp/apigateway-integration/index.txt",
"type": "file",
"size": 5766,
- "lastModified": "2025-09-26T01:52:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2240,14 +2240,14 @@
"href": "/dashboard/cloud_iac/gcp/cloud-dns-cdn/index.html",
"type": "file",
"size": 18271,
- "lastModified": "2025-09-26T01:52:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/gcp/cloud-dns-cdn/index.txt",
"type": "file",
"size": 5546,
- "lastModified": "2025-09-26T01:52:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2259,14 +2259,14 @@
"href": "/dashboard/cloud_iac/gcp/cloud-iam/index.html",
"type": "file",
"size": 20211,
- "lastModified": "2025-09-26T01:52:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/gcp/cloud-iam/index.txt",
"type": "file",
"size": 5406,
- "lastModified": "2025-09-26T01:52:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2278,14 +2278,14 @@
"href": "/dashboard/cloud_iac/gcp/cloud-load-balancing/index.html",
"type": "file",
"size": 20488,
- "lastModified": "2025-09-26T01:52:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/gcp/cloud-load-balancing/index.txt",
"type": "file",
"size": 5600,
- "lastModified": "2025-09-26T01:52:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2297,14 +2297,14 @@
"href": "/dashboard/cloud_iac/gcp/cloud-sql/index.html",
"type": "file",
"size": 20293,
- "lastModified": "2025-09-26T01:52:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/gcp/cloud-sql/index.txt",
"type": "file",
"size": 5464,
- "lastModified": "2025-09-26T01:52:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2316,14 +2316,14 @@
"href": "/dashboard/cloud_iac/gcp/cloud-storage/index.html",
"type": "file",
"size": 20337,
- "lastModified": "2025-09-26T01:52:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/gcp/cloud-storage/index.txt",
"type": "file",
"size": 5474,
- "lastModified": "2025-09-26T01:52:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2335,14 +2335,14 @@
"href": "/dashboard/cloud_iac/gcp/compute-engine/index.html",
"type": "file",
"size": 20445,
- "lastModified": "2025-09-26T01:52:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/gcp/compute-engine/index.txt",
"type": "file",
"size": 5494,
- "lastModified": "2025-09-26T01:52:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2354,14 +2354,14 @@
"href": "/dashboard/cloud_iac/gcp/dataproc/index.html",
"type": "file",
"size": 20226,
- "lastModified": "2025-09-26T01:52:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/gcp/dataproc/index.txt",
"type": "file",
"size": 5402,
- "lastModified": "2025-09-26T01:52:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2373,14 +2373,14 @@
"href": "/dashboard/cloud_iac/gcp/gcp-iot/index.html",
"type": "file",
"size": 18238,
- "lastModified": "2025-09-26T01:52:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/gcp/gcp-iot/index.txt",
"type": "file",
"size": 5515,
- "lastModified": "2025-09-26T01:52:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2392,14 +2392,14 @@
"href": "/dashboard/cloud_iac/gcp/gke/index.html",
"type": "file",
"size": 20218,
- "lastModified": "2025-09-26T01:52:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/gcp/gke/index.txt",
"type": "file",
"size": 5361,
- "lastModified": "2025-09-26T01:52:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2411,14 +2411,14 @@
"href": "/dashboard/cloud_iac/gcp/memorystore/index.html",
"type": "file",
"size": 20323,
- "lastModified": "2025-09-26T01:52:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/gcp/memorystore/index.txt",
"type": "file",
"size": 5500,
- "lastModified": "2025-09-26T01:52:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2430,14 +2430,14 @@
"href": "/dashboard/cloud_iac/gcp/operations-eventarc/index.html",
"type": "file",
"size": 18460,
- "lastModified": "2025-09-26T01:52:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/gcp/operations-eventarc/index.txt",
"type": "file",
"size": 5707,
- "lastModified": "2025-09-26T01:52:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2449,14 +2449,14 @@
"href": "/dashboard/cloud_iac/gcp/pubsub/index.html",
"type": "file",
"size": 20164,
- "lastModified": "2025-09-26T01:52:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/gcp/pubsub/index.txt",
"type": "file",
"size": 5376,
- "lastModified": "2025-09-26T01:52:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2468,14 +2468,14 @@
"href": "/dashboard/cloud_iac/gcp/vpc/index.html",
"type": "file",
"size": 20242,
- "lastModified": "2025-09-26T01:52:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/gcp/vpc/index.txt",
"type": "file",
"size": 5383,
- "lastModified": "2025-09-26T01:52:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2487,14 +2487,14 @@
"href": "/dashboard/cloud_iac/gcp/vpc-firewall/index.html",
"type": "file",
"size": 20482,
- "lastModified": "2025-09-26T01:52:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/cloud_iac/gcp/vpc-firewall/index.txt",
"type": "file",
"size": 5566,
- "lastModified": "2025-09-26T01:52:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2506,14 +2506,14 @@
"href": "/dashboard/demo/index.html",
"type": "file",
"size": 4841,
- "lastModified": "2025-09-26T01:52:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/demo/index.txt",
"type": "file",
"size": 2682,
- "lastModified": "2025-09-26T01:52:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2525,14 +2525,14 @@
"href": "/dashboard/dl-index/artifacts-manifest.json",
"type": "file",
"size": 458633,
- "lastModified": "2025-09-26T01:52:03Z"
+ "lastModified": "2025-09-26T01:51:24Z"
},
{
"name": "docs-manifest.json",
"href": "/dashboard/dl-index/docs-manifest.json",
"type": "file",
"size": 166058,
- "lastModified": "2025-09-26T01:52:03Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
@@ -2544,62 +2544,62 @@
"href": "/dashboard/docs/index.html",
"type": "file",
"size": 258827,
- "lastModified": "2025-09-26T01:52:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/index.txt",
"type": "file",
"size": 195765,
- "lastModified": "2025-09-26T01:52:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "interview-qa/",
"href": "/dashboard/docs/interview-qa/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "keycloak/",
"href": "/dashboard/docs/keycloak/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "landingzone/",
"href": "/dashboard/docs/landingzone/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "linux-k8s-ops/",
"href": "/dashboard/docs/linux-k8s-ops/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "observability/",
"href": "/dashboard/docs/observability/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal/",
"href": "/dashboard/docs/personal/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "techexploration/",
"href": "/dashboard/docs/techexploration/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "the-indiedeveloper-fullstack-roadmap/",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2610,51 +2610,51 @@
"name": "en-v42-18006148753/",
"href": "/dashboard/docs/interview-qa/en-v42-18006148753/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v43-18011536494/",
"href": "/dashboard/docs/interview-qa/en-v43-18011536494/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v44-18011825454/",
"href": "/dashboard/docs/interview-qa/en-v44-18011825454/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v45-18011937887/",
"href": "/dashboard/docs/interview-qa/en-v45-18011937887/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v46-18011951541/",
"href": "/dashboard/docs/interview-qa/en-v46-18011951541/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v47-18013619427/",
"href": "/dashboard/docs/interview-qa/en-v47-18013619427/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/docs/interview-qa/index.html",
"type": "file",
"size": 5049,
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/interview-qa/index.txt",
"type": "file",
"size": 3184,
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2666,14 +2666,14 @@
"href": "/dashboard/docs/interview-qa/en-v42-18006148753/index.html",
"type": "file",
"size": 23127,
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/interview-qa/en-v42-18006148753/index.txt",
"type": "file",
"size": 10296,
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2685,14 +2685,14 @@
"href": "/dashboard/docs/interview-qa/en-v43-18011536494/index.html",
"type": "file",
"size": 23127,
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/interview-qa/en-v43-18011536494/index.txt",
"type": "file",
"size": 10296,
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2704,14 +2704,14 @@
"href": "/dashboard/docs/interview-qa/en-v44-18011825454/index.html",
"type": "file",
"size": 23127,
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/interview-qa/en-v44-18011825454/index.txt",
"type": "file",
"size": 10296,
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2723,14 +2723,14 @@
"href": "/dashboard/docs/interview-qa/en-v45-18011937887/index.html",
"type": "file",
"size": 23127,
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/interview-qa/en-v45-18011937887/index.txt",
"type": "file",
"size": 10296,
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2742,14 +2742,14 @@
"href": "/dashboard/docs/interview-qa/en-v46-18011951541/index.html",
"type": "file",
"size": 23127,
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/interview-qa/en-v46-18011951541/index.txt",
"type": "file",
"size": 10296,
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2761,14 +2761,14 @@
"href": "/dashboard/docs/interview-qa/en-v47-18013619427/index.html",
"type": "file",
"size": 23127,
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/interview-qa/en-v47-18013619427/index.txt",
"type": "file",
"size": 10296,
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2779,93 +2779,93 @@
"name": "en-v33-17996525102/",
"href": "/dashboard/docs/keycloak/en-v33-17996525102/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v34-18001960544/",
"href": "/dashboard/docs/keycloak/en-v34-18001960544/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v35-18002040798/",
"href": "/dashboard/docs/keycloak/en-v35-18002040798/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v36-18002294267/",
"href": "/dashboard/docs/keycloak/en-v36-18002294267/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v39-18004672680/",
"href": "/dashboard/docs/keycloak/en-v39-18004672680/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v40-18004678416/",
"href": "/dashboard/docs/keycloak/en-v40-18004678416/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v41-18005142964/",
"href": "/dashboard/docs/keycloak/en-v41-18005142964/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v42-18006148753/",
"href": "/dashboard/docs/keycloak/en-v42-18006148753/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v43-18011536494/",
"href": "/dashboard/docs/keycloak/en-v43-18011536494/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v44-18011825454/",
"href": "/dashboard/docs/keycloak/en-v44-18011825454/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v45-18011937887/",
"href": "/dashboard/docs/keycloak/en-v45-18011937887/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v46-18011951541/",
"href": "/dashboard/docs/keycloak/en-v46-18011951541/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v47-18013619427/",
"href": "/dashboard/docs/keycloak/en-v47-18013619427/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/docs/keycloak/index.html",
"type": "file",
"size": 5025,
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/keycloak/index.txt",
"type": "file",
"size": 3164,
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2877,14 +2877,14 @@
"href": "/dashboard/docs/keycloak/en-v33-17996525102/index.html",
"type": "file",
"size": 28811,
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/keycloak/en-v33-17996525102/index.txt",
"type": "file",
"size": 15480,
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2896,14 +2896,14 @@
"href": "/dashboard/docs/keycloak/en-v34-18001960544/index.html",
"type": "file",
"size": 28811,
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/keycloak/en-v34-18001960544/index.txt",
"type": "file",
"size": 15480,
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2915,14 +2915,14 @@
"href": "/dashboard/docs/keycloak/en-v35-18002040798/index.html",
"type": "file",
"size": 28811,
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/keycloak/en-v35-18002040798/index.txt",
"type": "file",
"size": 15480,
- "lastModified": "2025-09-26T01:52:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2934,14 +2934,14 @@
"href": "/dashboard/docs/keycloak/en-v36-18002294267/index.html",
"type": "file",
"size": 28811,
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/keycloak/en-v36-18002294267/index.txt",
"type": "file",
"size": 15480,
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2953,14 +2953,14 @@
"href": "/dashboard/docs/keycloak/en-v39-18004672680/index.html",
"type": "file",
"size": 28811,
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/keycloak/en-v39-18004672680/index.txt",
"type": "file",
"size": 15480,
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2972,14 +2972,14 @@
"href": "/dashboard/docs/keycloak/en-v40-18004678416/index.html",
"type": "file",
"size": 28811,
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/keycloak/en-v40-18004678416/index.txt",
"type": "file",
"size": 15480,
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -2991,14 +2991,14 @@
"href": "/dashboard/docs/keycloak/en-v41-18005142964/index.html",
"type": "file",
"size": 28811,
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/keycloak/en-v41-18005142964/index.txt",
"type": "file",
"size": 15480,
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3010,14 +3010,14 @@
"href": "/dashboard/docs/keycloak/en-v42-18006148753/index.html",
"type": "file",
"size": 28811,
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/keycloak/en-v42-18006148753/index.txt",
"type": "file",
"size": 15480,
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3029,14 +3029,14 @@
"href": "/dashboard/docs/keycloak/en-v43-18011536494/index.html",
"type": "file",
"size": 28811,
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/keycloak/en-v43-18011536494/index.txt",
"type": "file",
"size": 15480,
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3048,14 +3048,14 @@
"href": "/dashboard/docs/keycloak/en-v44-18011825454/index.html",
"type": "file",
"size": 28811,
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/keycloak/en-v44-18011825454/index.txt",
"type": "file",
"size": 15480,
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3067,14 +3067,14 @@
"href": "/dashboard/docs/keycloak/en-v45-18011937887/index.html",
"type": "file",
"size": 28811,
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/keycloak/en-v45-18011937887/index.txt",
"type": "file",
"size": 15480,
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3086,14 +3086,14 @@
"href": "/dashboard/docs/keycloak/en-v46-18011951541/index.html",
"type": "file",
"size": 28811,
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/keycloak/en-v46-18011951541/index.txt",
"type": "file",
"size": 15480,
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3105,14 +3105,14 @@
"href": "/dashboard/docs/keycloak/en-v47-18013619427/index.html",
"type": "file",
"size": 28811,
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/keycloak/en-v47-18013619427/index.txt",
"type": "file",
"size": 15480,
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3123,105 +3123,105 @@
"name": "en-v33-17996525102/",
"href": "/dashboard/docs/landingzone/en-v33-17996525102/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v34-18001960544/",
"href": "/dashboard/docs/landingzone/en-v34-18001960544/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v35-18002040798/",
"href": "/dashboard/docs/landingzone/en-v35-18002040798/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v36-18002294267/",
"href": "/dashboard/docs/landingzone/en-v36-18002294267/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v37-18002553627/",
"href": "/dashboard/docs/landingzone/en-v37-18002553627/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v38-18003957466/",
"href": "/dashboard/docs/landingzone/en-v38-18003957466/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v39-18004672680/",
"href": "/dashboard/docs/landingzone/en-v39-18004672680/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v40-18004678416/",
"href": "/dashboard/docs/landingzone/en-v40-18004678416/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v41-18005142964/",
"href": "/dashboard/docs/landingzone/en-v41-18005142964/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v42-18006148753/",
"href": "/dashboard/docs/landingzone/en-v42-18006148753/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v43-18011536494/",
"href": "/dashboard/docs/landingzone/en-v43-18011536494/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v44-18011825454/",
"href": "/dashboard/docs/landingzone/en-v44-18011825454/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v45-18011937887/",
"href": "/dashboard/docs/landingzone/en-v45-18011937887/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v46-18011951541/",
"href": "/dashboard/docs/landingzone/en-v46-18011951541/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v47-18013619427/",
"href": "/dashboard/docs/landingzone/en-v47-18013619427/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/docs/landingzone/index.html",
"type": "file",
"size": 5043,
- "lastModified": "2025-09-26T01:52:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/landingzone/index.txt",
"type": "file",
"size": 3179,
- "lastModified": "2025-09-26T01:52:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3233,14 +3233,14 @@
"href": "/dashboard/docs/landingzone/en-v33-17996525102/index.html",
"type": "file",
"size": 31080,
- "lastModified": "2025-09-26T01:52:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/landingzone/en-v33-17996525102/index.txt",
"type": "file",
"size": 17352,
- "lastModified": "2025-09-26T01:52:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3252,14 +3252,14 @@
"href": "/dashboard/docs/landingzone/en-v34-18001960544/index.html",
"type": "file",
"size": 31080,
- "lastModified": "2025-09-26T01:52:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/landingzone/en-v34-18001960544/index.txt",
"type": "file",
"size": 17352,
- "lastModified": "2025-09-26T01:52:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3271,14 +3271,14 @@
"href": "/dashboard/docs/landingzone/en-v35-18002040798/index.html",
"type": "file",
"size": 31080,
- "lastModified": "2025-09-26T01:52:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/landingzone/en-v35-18002040798/index.txt",
"type": "file",
"size": 17352,
- "lastModified": "2025-09-26T01:52:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3290,14 +3290,14 @@
"href": "/dashboard/docs/landingzone/en-v36-18002294267/index.html",
"type": "file",
"size": 31080,
- "lastModified": "2025-09-26T01:52:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/landingzone/en-v36-18002294267/index.txt",
"type": "file",
"size": 17352,
- "lastModified": "2025-09-26T01:52:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3309,14 +3309,14 @@
"href": "/dashboard/docs/landingzone/en-v37-18002553627/index.html",
"type": "file",
"size": 31080,
- "lastModified": "2025-09-26T01:52:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/landingzone/en-v37-18002553627/index.txt",
"type": "file",
"size": 17352,
- "lastModified": "2025-09-26T01:52:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3328,14 +3328,14 @@
"href": "/dashboard/docs/landingzone/en-v38-18003957466/index.html",
"type": "file",
"size": 31080,
- "lastModified": "2025-09-26T01:52:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/landingzone/en-v38-18003957466/index.txt",
"type": "file",
"size": 17352,
- "lastModified": "2025-09-26T01:52:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3347,14 +3347,14 @@
"href": "/dashboard/docs/landingzone/en-v39-18004672680/index.html",
"type": "file",
"size": 31080,
- "lastModified": "2025-09-26T01:52:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/landingzone/en-v39-18004672680/index.txt",
"type": "file",
"size": 17352,
- "lastModified": "2025-09-26T01:52:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3366,14 +3366,14 @@
"href": "/dashboard/docs/landingzone/en-v40-18004678416/index.html",
"type": "file",
"size": 31080,
- "lastModified": "2025-09-26T01:52:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/landingzone/en-v40-18004678416/index.txt",
"type": "file",
"size": 17352,
- "lastModified": "2025-09-26T01:52:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3385,14 +3385,14 @@
"href": "/dashboard/docs/landingzone/en-v41-18005142964/index.html",
"type": "file",
"size": 31080,
- "lastModified": "2025-09-26T01:52:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/landingzone/en-v41-18005142964/index.txt",
"type": "file",
"size": 17352,
- "lastModified": "2025-09-26T01:52:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3404,14 +3404,14 @@
"href": "/dashboard/docs/landingzone/en-v42-18006148753/index.html",
"type": "file",
"size": 31080,
- "lastModified": "2025-09-26T01:52:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/landingzone/en-v42-18006148753/index.txt",
"type": "file",
"size": 17352,
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3423,14 +3423,14 @@
"href": "/dashboard/docs/landingzone/en-v43-18011536494/index.html",
"type": "file",
"size": 31080,
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/landingzone/en-v43-18011536494/index.txt",
"type": "file",
"size": 17352,
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3442,14 +3442,14 @@
"href": "/dashboard/docs/landingzone/en-v44-18011825454/index.html",
"type": "file",
"size": 31080,
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/landingzone/en-v44-18011825454/index.txt",
"type": "file",
"size": 17352,
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3461,14 +3461,14 @@
"href": "/dashboard/docs/landingzone/en-v45-18011937887/index.html",
"type": "file",
"size": 31080,
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/landingzone/en-v45-18011937887/index.txt",
"type": "file",
"size": 17352,
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3480,14 +3480,14 @@
"href": "/dashboard/docs/landingzone/en-v46-18011951541/index.html",
"type": "file",
"size": 31080,
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/landingzone/en-v46-18011951541/index.txt",
"type": "file",
"size": 17352,
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3499,14 +3499,14 @@
"href": "/dashboard/docs/landingzone/en-v47-18013619427/index.html",
"type": "file",
"size": 31080,
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/landingzone/en-v47-18013619427/index.txt",
"type": "file",
"size": 17352,
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3517,75 +3517,75 @@
"name": "cn-v33-17996525102/",
"href": "/dashboard/docs/linux-k8s-ops/cn-v33-17996525102/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v39-18004672680/",
"href": "/dashboard/docs/linux-k8s-ops/cn-v39-18004672680/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v40-18004678416/",
"href": "/dashboard/docs/linux-k8s-ops/cn-v40-18004678416/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v41-18005142964/",
"href": "/dashboard/docs/linux-k8s-ops/cn-v41-18005142964/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v42-18006148753/",
"href": "/dashboard/docs/linux-k8s-ops/cn-v42-18006148753/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v43-18011536494/",
"href": "/dashboard/docs/linux-k8s-ops/cn-v43-18011536494/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v44-18011825454/",
"href": "/dashboard/docs/linux-k8s-ops/cn-v44-18011825454/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v45-18011937887/",
"href": "/dashboard/docs/linux-k8s-ops/cn-v45-18011937887/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v46-18011951541/",
"href": "/dashboard/docs/linux-k8s-ops/cn-v46-18011951541/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v47-18013619427/",
"href": "/dashboard/docs/linux-k8s-ops/cn-v47-18013619427/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/docs/linux-k8s-ops/index.html",
"type": "file",
"size": 5055,
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/linux-k8s-ops/index.txt",
"type": "file",
"size": 3189,
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3597,14 +3597,14 @@
"href": "/dashboard/docs/linux-k8s-ops/cn-v33-17996525102/index.html",
"type": "file",
"size": 27170,
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/linux-k8s-ops/cn-v33-17996525102/index.txt",
"type": "file",
"size": 13650,
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3616,14 +3616,14 @@
"href": "/dashboard/docs/linux-k8s-ops/cn-v39-18004672680/index.html",
"type": "file",
"size": 27170,
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/linux-k8s-ops/cn-v39-18004672680/index.txt",
"type": "file",
"size": 13650,
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3635,14 +3635,14 @@
"href": "/dashboard/docs/linux-k8s-ops/cn-v40-18004678416/index.html",
"type": "file",
"size": 27170,
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/linux-k8s-ops/cn-v40-18004678416/index.txt",
"type": "file",
"size": 13650,
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3654,14 +3654,14 @@
"href": "/dashboard/docs/linux-k8s-ops/cn-v41-18005142964/index.html",
"type": "file",
"size": 27170,
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/linux-k8s-ops/cn-v41-18005142964/index.txt",
"type": "file",
"size": 13650,
- "lastModified": "2025-09-26T01:52:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3673,14 +3673,14 @@
"href": "/dashboard/docs/linux-k8s-ops/cn-v42-18006148753/index.html",
"type": "file",
"size": 27170,
- "lastModified": "2025-09-26T01:52:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/linux-k8s-ops/cn-v42-18006148753/index.txt",
"type": "file",
"size": 13650,
- "lastModified": "2025-09-26T01:52:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3692,14 +3692,14 @@
"href": "/dashboard/docs/linux-k8s-ops/cn-v43-18011536494/index.html",
"type": "file",
"size": 27170,
- "lastModified": "2025-09-26T01:52:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/linux-k8s-ops/cn-v43-18011536494/index.txt",
"type": "file",
"size": 13650,
- "lastModified": "2025-09-26T01:52:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3711,14 +3711,14 @@
"href": "/dashboard/docs/linux-k8s-ops/cn-v44-18011825454/index.html",
"type": "file",
"size": 27170,
- "lastModified": "2025-09-26T01:52:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/linux-k8s-ops/cn-v44-18011825454/index.txt",
"type": "file",
"size": 13650,
- "lastModified": "2025-09-26T01:52:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3730,14 +3730,14 @@
"href": "/dashboard/docs/linux-k8s-ops/cn-v45-18011937887/index.html",
"type": "file",
"size": 27170,
- "lastModified": "2025-09-26T01:52:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/linux-k8s-ops/cn-v45-18011937887/index.txt",
"type": "file",
"size": 13650,
- "lastModified": "2025-09-26T01:52:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3749,14 +3749,14 @@
"href": "/dashboard/docs/linux-k8s-ops/cn-v46-18011951541/index.html",
"type": "file",
"size": 27170,
- "lastModified": "2025-09-26T01:52:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/linux-k8s-ops/cn-v46-18011951541/index.txt",
"type": "file",
"size": 13650,
- "lastModified": "2025-09-26T01:52:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3768,14 +3768,14 @@
"href": "/dashboard/docs/linux-k8s-ops/cn-v47-18013619427/index.html",
"type": "file",
"size": 27170,
- "lastModified": "2025-09-26T01:52:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/linux-k8s-ops/cn-v47-18013619427/index.txt",
"type": "file",
"size": 13650,
- "lastModified": "2025-09-26T01:52:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3786,87 +3786,87 @@
"name": "cn-v33-17996525102/",
"href": "/dashboard/docs/observability/cn-v33-17996525102/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v36-18002294267/",
"href": "/dashboard/docs/observability/cn-v36-18002294267/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v37-18002553627/",
"href": "/dashboard/docs/observability/cn-v37-18002553627/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v39-18004672680/",
"href": "/dashboard/docs/observability/cn-v39-18004672680/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v40-18004678416/",
"href": "/dashboard/docs/observability/cn-v40-18004678416/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v41-18005142964/",
"href": "/dashboard/docs/observability/cn-v41-18005142964/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v42-18006148753/",
"href": "/dashboard/docs/observability/cn-v42-18006148753/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v43-18011536494/",
"href": "/dashboard/docs/observability/cn-v43-18011536494/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v44-18011825454/",
"href": "/dashboard/docs/observability/cn-v44-18011825454/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v45-18011937887/",
"href": "/dashboard/docs/observability/cn-v45-18011937887/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v46-18011951541/",
"href": "/dashboard/docs/observability/cn-v46-18011951541/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v47-18013619427/",
"href": "/dashboard/docs/observability/cn-v47-18013619427/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/docs/observability/index.html",
"type": "file",
"size": 5055,
- "lastModified": "2025-09-26T01:52:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/observability/index.txt",
"type": "file",
"size": 3189,
- "lastModified": "2025-09-26T01:52:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3878,14 +3878,14 @@
"href": "/dashboard/docs/observability/cn-v33-17996525102/index.html",
"type": "file",
"size": 30896,
- "lastModified": "2025-09-26T01:52:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/observability/cn-v33-17996525102/index.txt",
"type": "file",
"size": 16732,
- "lastModified": "2025-09-26T01:52:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3897,14 +3897,14 @@
"href": "/dashboard/docs/observability/cn-v36-18002294267/index.html",
"type": "file",
"size": 30896,
- "lastModified": "2025-09-26T01:52:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/observability/cn-v36-18002294267/index.txt",
"type": "file",
"size": 16732,
- "lastModified": "2025-09-26T01:52:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3916,14 +3916,14 @@
"href": "/dashboard/docs/observability/cn-v37-18002553627/index.html",
"type": "file",
"size": 30896,
- "lastModified": "2025-09-26T01:52:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/observability/cn-v37-18002553627/index.txt",
"type": "file",
"size": 16732,
- "lastModified": "2025-09-26T01:52:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3935,14 +3935,14 @@
"href": "/dashboard/docs/observability/cn-v39-18004672680/index.html",
"type": "file",
"size": 30896,
- "lastModified": "2025-09-26T01:52:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/observability/cn-v39-18004672680/index.txt",
"type": "file",
"size": 16732,
- "lastModified": "2025-09-26T01:52:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3954,14 +3954,14 @@
"href": "/dashboard/docs/observability/cn-v40-18004678416/index.html",
"type": "file",
"size": 30896,
- "lastModified": "2025-09-26T01:52:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/observability/cn-v40-18004678416/index.txt",
"type": "file",
"size": 16732,
- "lastModified": "2025-09-26T01:52:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3973,14 +3973,14 @@
"href": "/dashboard/docs/observability/cn-v41-18005142964/index.html",
"type": "file",
"size": 30896,
- "lastModified": "2025-09-26T01:52:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/observability/cn-v41-18005142964/index.txt",
"type": "file",
"size": 16732,
- "lastModified": "2025-09-26T01:52:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -3992,14 +3992,14 @@
"href": "/dashboard/docs/observability/cn-v42-18006148753/index.html",
"type": "file",
"size": 30896,
- "lastModified": "2025-09-26T01:52:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/observability/cn-v42-18006148753/index.txt",
"type": "file",
"size": 16732,
- "lastModified": "2025-09-26T01:52:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -4011,14 +4011,14 @@
"href": "/dashboard/docs/observability/cn-v43-18011536494/index.html",
"type": "file",
"size": 30896,
- "lastModified": "2025-09-26T01:52:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/observability/cn-v43-18011536494/index.txt",
"type": "file",
"size": 16732,
- "lastModified": "2025-09-26T01:52:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -4030,14 +4030,14 @@
"href": "/dashboard/docs/observability/cn-v44-18011825454/index.html",
"type": "file",
"size": 30896,
- "lastModified": "2025-09-26T01:52:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/observability/cn-v44-18011825454/index.txt",
"type": "file",
"size": 16732,
- "lastModified": "2025-09-26T01:52:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -4049,14 +4049,14 @@
"href": "/dashboard/docs/observability/cn-v45-18011937887/index.html",
"type": "file",
"size": 30896,
- "lastModified": "2025-09-26T01:52:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/observability/cn-v45-18011937887/index.txt",
"type": "file",
"size": 16732,
- "lastModified": "2025-09-26T01:52:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -4068,14 +4068,14 @@
"href": "/dashboard/docs/observability/cn-v46-18011951541/index.html",
"type": "file",
"size": 30896,
- "lastModified": "2025-09-26T01:52:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/observability/cn-v46-18011951541/index.txt",
"type": "file",
"size": 16732,
- "lastModified": "2025-09-26T01:52:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -4087,14 +4087,14 @@
"href": "/dashboard/docs/observability/cn-v47-18013619427/index.html",
"type": "file",
"size": 30896,
- "lastModified": "2025-09-26T01:52:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/observability/cn-v47-18013619427/index.txt",
"type": "file",
"size": 16732,
- "lastModified": "2025-09-26T01:52:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -4105,951 +4105,951 @@
"name": "en-v33-17996525102/",
"href": "/dashboard/docs/personal/en-v33-17996525102/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v33-17996525102-10/",
"href": "/dashboard/docs/personal/en-v33-17996525102-10/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v33-17996525102-11/",
"href": "/dashboard/docs/personal/en-v33-17996525102-11/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v33-17996525102-12/",
"href": "/dashboard/docs/personal/en-v33-17996525102-12/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v33-17996525102-2/",
"href": "/dashboard/docs/personal/en-v33-17996525102-2/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v33-17996525102-3/",
"href": "/dashboard/docs/personal/en-v33-17996525102-3/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v33-17996525102-4/",
"href": "/dashboard/docs/personal/en-v33-17996525102-4/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v33-17996525102-5/",
"href": "/dashboard/docs/personal/en-v33-17996525102-5/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v33-17996525102-6/",
"href": "/dashboard/docs/personal/en-v33-17996525102-6/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v33-17996525102-7/",
"href": "/dashboard/docs/personal/en-v33-17996525102-7/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v33-17996525102-8/",
"href": "/dashboard/docs/personal/en-v33-17996525102-8/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v33-17996525102-9/",
"href": "/dashboard/docs/personal/en-v33-17996525102-9/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v34-18001960544/",
"href": "/dashboard/docs/personal/en-v34-18001960544/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v34-18001960544-10/",
"href": "/dashboard/docs/personal/en-v34-18001960544-10/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v34-18001960544-11/",
"href": "/dashboard/docs/personal/en-v34-18001960544-11/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v34-18001960544-12/",
"href": "/dashboard/docs/personal/en-v34-18001960544-12/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v34-18001960544-2/",
"href": "/dashboard/docs/personal/en-v34-18001960544-2/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v34-18001960544-3/",
"href": "/dashboard/docs/personal/en-v34-18001960544-3/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v34-18001960544-4/",
"href": "/dashboard/docs/personal/en-v34-18001960544-4/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v34-18001960544-5/",
"href": "/dashboard/docs/personal/en-v34-18001960544-5/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v34-18001960544-6/",
"href": "/dashboard/docs/personal/en-v34-18001960544-6/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v34-18001960544-7/",
"href": "/dashboard/docs/personal/en-v34-18001960544-7/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v34-18001960544-8/",
"href": "/dashboard/docs/personal/en-v34-18001960544-8/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v34-18001960544-9/",
"href": "/dashboard/docs/personal/en-v34-18001960544-9/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v36-18002294267/",
"href": "/dashboard/docs/personal/en-v36-18002294267/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v36-18002294267-10/",
"href": "/dashboard/docs/personal/en-v36-18002294267-10/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v36-18002294267-11/",
"href": "/dashboard/docs/personal/en-v36-18002294267-11/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v36-18002294267-12/",
"href": "/dashboard/docs/personal/en-v36-18002294267-12/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v36-18002294267-2/",
"href": "/dashboard/docs/personal/en-v36-18002294267-2/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v36-18002294267-3/",
"href": "/dashboard/docs/personal/en-v36-18002294267-3/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v36-18002294267-4/",
"href": "/dashboard/docs/personal/en-v36-18002294267-4/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v36-18002294267-5/",
"href": "/dashboard/docs/personal/en-v36-18002294267-5/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v36-18002294267-6/",
"href": "/dashboard/docs/personal/en-v36-18002294267-6/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v36-18002294267-7/",
"href": "/dashboard/docs/personal/en-v36-18002294267-7/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v36-18002294267-8/",
"href": "/dashboard/docs/personal/en-v36-18002294267-8/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v36-18002294267-9/",
"href": "/dashboard/docs/personal/en-v36-18002294267-9/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v37-18002553627/",
"href": "/dashboard/docs/personal/en-v37-18002553627/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v37-18002553627-10/",
"href": "/dashboard/docs/personal/en-v37-18002553627-10/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v37-18002553627-11/",
"href": "/dashboard/docs/personal/en-v37-18002553627-11/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v37-18002553627-12/",
"href": "/dashboard/docs/personal/en-v37-18002553627-12/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v37-18002553627-2/",
"href": "/dashboard/docs/personal/en-v37-18002553627-2/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v37-18002553627-3/",
"href": "/dashboard/docs/personal/en-v37-18002553627-3/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v37-18002553627-4/",
"href": "/dashboard/docs/personal/en-v37-18002553627-4/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v37-18002553627-5/",
"href": "/dashboard/docs/personal/en-v37-18002553627-5/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v37-18002553627-6/",
"href": "/dashboard/docs/personal/en-v37-18002553627-6/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v37-18002553627-7/",
"href": "/dashboard/docs/personal/en-v37-18002553627-7/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v37-18002553627-8/",
"href": "/dashboard/docs/personal/en-v37-18002553627-8/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v37-18002553627-9/",
"href": "/dashboard/docs/personal/en-v37-18002553627-9/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v39-18004672680/",
"href": "/dashboard/docs/personal/en-v39-18004672680/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v39-18004672680-10/",
"href": "/dashboard/docs/personal/en-v39-18004672680-10/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v39-18004672680-11/",
"href": "/dashboard/docs/personal/en-v39-18004672680-11/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v39-18004672680-12/",
"href": "/dashboard/docs/personal/en-v39-18004672680-12/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v39-18004672680-2/",
"href": "/dashboard/docs/personal/en-v39-18004672680-2/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v39-18004672680-3/",
"href": "/dashboard/docs/personal/en-v39-18004672680-3/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v39-18004672680-4/",
"href": "/dashboard/docs/personal/en-v39-18004672680-4/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v39-18004672680-5/",
"href": "/dashboard/docs/personal/en-v39-18004672680-5/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v39-18004672680-6/",
"href": "/dashboard/docs/personal/en-v39-18004672680-6/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v39-18004672680-7/",
"href": "/dashboard/docs/personal/en-v39-18004672680-7/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v39-18004672680-8/",
"href": "/dashboard/docs/personal/en-v39-18004672680-8/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v39-18004672680-9/",
"href": "/dashboard/docs/personal/en-v39-18004672680-9/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v40-18004678416/",
"href": "/dashboard/docs/personal/en-v40-18004678416/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v40-18004678416-10/",
"href": "/dashboard/docs/personal/en-v40-18004678416-10/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v40-18004678416-11/",
"href": "/dashboard/docs/personal/en-v40-18004678416-11/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v40-18004678416-12/",
"href": "/dashboard/docs/personal/en-v40-18004678416-12/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v40-18004678416-2/",
"href": "/dashboard/docs/personal/en-v40-18004678416-2/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v40-18004678416-3/",
"href": "/dashboard/docs/personal/en-v40-18004678416-3/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v40-18004678416-4/",
"href": "/dashboard/docs/personal/en-v40-18004678416-4/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v40-18004678416-5/",
"href": "/dashboard/docs/personal/en-v40-18004678416-5/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v40-18004678416-6/",
"href": "/dashboard/docs/personal/en-v40-18004678416-6/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v40-18004678416-7/",
"href": "/dashboard/docs/personal/en-v40-18004678416-7/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v40-18004678416-8/",
"href": "/dashboard/docs/personal/en-v40-18004678416-8/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v40-18004678416-9/",
"href": "/dashboard/docs/personal/en-v40-18004678416-9/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v41-18005142964/",
"href": "/dashboard/docs/personal/en-v41-18005142964/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v41-18005142964-10/",
"href": "/dashboard/docs/personal/en-v41-18005142964-10/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v41-18005142964-11/",
"href": "/dashboard/docs/personal/en-v41-18005142964-11/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v41-18005142964-12/",
"href": "/dashboard/docs/personal/en-v41-18005142964-12/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v41-18005142964-2/",
"href": "/dashboard/docs/personal/en-v41-18005142964-2/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v41-18005142964-3/",
"href": "/dashboard/docs/personal/en-v41-18005142964-3/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v41-18005142964-4/",
"href": "/dashboard/docs/personal/en-v41-18005142964-4/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v41-18005142964-5/",
"href": "/dashboard/docs/personal/en-v41-18005142964-5/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v41-18005142964-6/",
"href": "/dashboard/docs/personal/en-v41-18005142964-6/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v41-18005142964-7/",
"href": "/dashboard/docs/personal/en-v41-18005142964-7/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v41-18005142964-8/",
"href": "/dashboard/docs/personal/en-v41-18005142964-8/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v41-18005142964-9/",
"href": "/dashboard/docs/personal/en-v41-18005142964-9/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v42-18006148753/",
"href": "/dashboard/docs/personal/en-v42-18006148753/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v42-18006148753-10/",
"href": "/dashboard/docs/personal/en-v42-18006148753-10/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v42-18006148753-11/",
"href": "/dashboard/docs/personal/en-v42-18006148753-11/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v42-18006148753-12/",
"href": "/dashboard/docs/personal/en-v42-18006148753-12/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v42-18006148753-2/",
"href": "/dashboard/docs/personal/en-v42-18006148753-2/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v42-18006148753-3/",
"href": "/dashboard/docs/personal/en-v42-18006148753-3/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v42-18006148753-4/",
"href": "/dashboard/docs/personal/en-v42-18006148753-4/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v42-18006148753-5/",
"href": "/dashboard/docs/personal/en-v42-18006148753-5/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v42-18006148753-6/",
"href": "/dashboard/docs/personal/en-v42-18006148753-6/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v42-18006148753-7/",
"href": "/dashboard/docs/personal/en-v42-18006148753-7/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v42-18006148753-8/",
"href": "/dashboard/docs/personal/en-v42-18006148753-8/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v42-18006148753-9/",
"href": "/dashboard/docs/personal/en-v42-18006148753-9/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v43-18011536494/",
"href": "/dashboard/docs/personal/en-v43-18011536494/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v43-18011536494-10/",
"href": "/dashboard/docs/personal/en-v43-18011536494-10/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v43-18011536494-11/",
"href": "/dashboard/docs/personal/en-v43-18011536494-11/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v43-18011536494-12/",
"href": "/dashboard/docs/personal/en-v43-18011536494-12/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v43-18011536494-2/",
"href": "/dashboard/docs/personal/en-v43-18011536494-2/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v43-18011536494-3/",
"href": "/dashboard/docs/personal/en-v43-18011536494-3/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v43-18011536494-4/",
"href": "/dashboard/docs/personal/en-v43-18011536494-4/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v43-18011536494-5/",
"href": "/dashboard/docs/personal/en-v43-18011536494-5/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v43-18011536494-6/",
"href": "/dashboard/docs/personal/en-v43-18011536494-6/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v43-18011536494-7/",
"href": "/dashboard/docs/personal/en-v43-18011536494-7/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v43-18011536494-8/",
"href": "/dashboard/docs/personal/en-v43-18011536494-8/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v43-18011536494-9/",
"href": "/dashboard/docs/personal/en-v43-18011536494-9/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v44-18011825454/",
"href": "/dashboard/docs/personal/en-v44-18011825454/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v44-18011825454-10/",
"href": "/dashboard/docs/personal/en-v44-18011825454-10/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v44-18011825454-11/",
"href": "/dashboard/docs/personal/en-v44-18011825454-11/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v44-18011825454-12/",
"href": "/dashboard/docs/personal/en-v44-18011825454-12/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v44-18011825454-2/",
"href": "/dashboard/docs/personal/en-v44-18011825454-2/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v44-18011825454-3/",
"href": "/dashboard/docs/personal/en-v44-18011825454-3/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v44-18011825454-4/",
"href": "/dashboard/docs/personal/en-v44-18011825454-4/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v44-18011825454-5/",
"href": "/dashboard/docs/personal/en-v44-18011825454-5/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v44-18011825454-6/",
"href": "/dashboard/docs/personal/en-v44-18011825454-6/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v44-18011825454-7/",
"href": "/dashboard/docs/personal/en-v44-18011825454-7/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v44-18011825454-8/",
"href": "/dashboard/docs/personal/en-v44-18011825454-8/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v44-18011825454-9/",
"href": "/dashboard/docs/personal/en-v44-18011825454-9/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v45-18011937887/",
"href": "/dashboard/docs/personal/en-v45-18011937887/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v45-18011937887-10/",
"href": "/dashboard/docs/personal/en-v45-18011937887-10/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v45-18011937887-11/",
"href": "/dashboard/docs/personal/en-v45-18011937887-11/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v45-18011937887-12/",
"href": "/dashboard/docs/personal/en-v45-18011937887-12/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v45-18011937887-2/",
"href": "/dashboard/docs/personal/en-v45-18011937887-2/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v45-18011937887-3/",
"href": "/dashboard/docs/personal/en-v45-18011937887-3/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v45-18011937887-4/",
"href": "/dashboard/docs/personal/en-v45-18011937887-4/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v45-18011937887-5/",
"href": "/dashboard/docs/personal/en-v45-18011937887-5/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v45-18011937887-6/",
"href": "/dashboard/docs/personal/en-v45-18011937887-6/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v45-18011937887-7/",
"href": "/dashboard/docs/personal/en-v45-18011937887-7/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v45-18011937887-8/",
"href": "/dashboard/docs/personal/en-v45-18011937887-8/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v45-18011937887-9/",
"href": "/dashboard/docs/personal/en-v45-18011937887-9/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v46-18011951541/",
"href": "/dashboard/docs/personal/en-v46-18011951541/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v46-18011951541-10/",
"href": "/dashboard/docs/personal/en-v46-18011951541-10/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v46-18011951541-11/",
"href": "/dashboard/docs/personal/en-v46-18011951541-11/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v46-18011951541-12/",
"href": "/dashboard/docs/personal/en-v46-18011951541-12/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v46-18011951541-2/",
"href": "/dashboard/docs/personal/en-v46-18011951541-2/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v46-18011951541-3/",
"href": "/dashboard/docs/personal/en-v46-18011951541-3/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v46-18011951541-4/",
"href": "/dashboard/docs/personal/en-v46-18011951541-4/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v46-18011951541-5/",
"href": "/dashboard/docs/personal/en-v46-18011951541-5/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v46-18011951541-6/",
"href": "/dashboard/docs/personal/en-v46-18011951541-6/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v46-18011951541-7/",
"href": "/dashboard/docs/personal/en-v46-18011951541-7/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v46-18011951541-8/",
"href": "/dashboard/docs/personal/en-v46-18011951541-8/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v46-18011951541-9/",
"href": "/dashboard/docs/personal/en-v46-18011951541-9/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v47-18013619427/",
"href": "/dashboard/docs/personal/en-v47-18013619427/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v47-18013619427-10/",
"href": "/dashboard/docs/personal/en-v47-18013619427-10/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v47-18013619427-11/",
"href": "/dashboard/docs/personal/en-v47-18013619427-11/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v47-18013619427-12/",
"href": "/dashboard/docs/personal/en-v47-18013619427-12/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v47-18013619427-2/",
"href": "/dashboard/docs/personal/en-v47-18013619427-2/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v47-18013619427-3/",
"href": "/dashboard/docs/personal/en-v47-18013619427-3/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v47-18013619427-4/",
"href": "/dashboard/docs/personal/en-v47-18013619427-4/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v47-18013619427-5/",
"href": "/dashboard/docs/personal/en-v47-18013619427-5/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v47-18013619427-6/",
"href": "/dashboard/docs/personal/en-v47-18013619427-6/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v47-18013619427-7/",
"href": "/dashboard/docs/personal/en-v47-18013619427-7/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v47-18013619427-8/",
"href": "/dashboard/docs/personal/en-v47-18013619427-8/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v47-18013619427-9/",
"href": "/dashboard/docs/personal/en-v47-18013619427-9/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/docs/personal/index.html",
"type": "file",
"size": 5025,
- "lastModified": "2025-09-26T01:52:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/index.txt",
"type": "file",
"size": 3164,
- "lastModified": "2025-09-26T01:52:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5061,14 +5061,14 @@
"href": "/dashboard/docs/personal/en-v33-17996525102/index.html",
"type": "file",
"size": 151226,
- "lastModified": "2025-09-26T01:52:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v33-17996525102/index.txt",
"type": "file",
"size": 115903,
- "lastModified": "2025-09-26T01:52:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5080,14 +5080,14 @@
"href": "/dashboard/docs/personal/en-v33-17996525102-10/index.html",
"type": "file",
"size": 151214,
- "lastModified": "2025-09-26T01:52:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v33-17996525102-10/index.txt",
"type": "file",
"size": 115907,
- "lastModified": "2025-09-26T01:52:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5099,14 +5099,14 @@
"href": "/dashboard/docs/personal/en-v33-17996525102-11/index.html",
"type": "file",
"size": 151214,
- "lastModified": "2025-09-26T01:52:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v33-17996525102-11/index.txt",
"type": "file",
"size": 115907,
- "lastModified": "2025-09-26T01:52:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5118,14 +5118,14 @@
"href": "/dashboard/docs/personal/en-v33-17996525102-12/index.html",
"type": "file",
"size": 151233,
- "lastModified": "2025-09-26T01:52:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v33-17996525102-12/index.txt",
"type": "file",
"size": 115913,
- "lastModified": "2025-09-26T01:52:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5137,14 +5137,14 @@
"href": "/dashboard/docs/personal/en-v33-17996525102-2/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v33-17996525102-2/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5156,14 +5156,14 @@
"href": "/dashboard/docs/personal/en-v33-17996525102-3/index.html",
"type": "file",
"size": 151198,
- "lastModified": "2025-09-26T01:52:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v33-17996525102-3/index.txt",
"type": "file",
"size": 115899,
- "lastModified": "2025-09-26T01:52:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5175,14 +5175,14 @@
"href": "/dashboard/docs/personal/en-v33-17996525102-4/index.html",
"type": "file",
"size": 151198,
- "lastModified": "2025-09-26T01:52:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v33-17996525102-4/index.txt",
"type": "file",
"size": 115899,
- "lastModified": "2025-09-26T01:52:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5194,14 +5194,14 @@
"href": "/dashboard/docs/personal/en-v33-17996525102-5/index.html",
"type": "file",
"size": 151220,
- "lastModified": "2025-09-26T01:52:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v33-17996525102-5/index.txt",
"type": "file",
"size": 115906,
- "lastModified": "2025-09-26T01:52:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5213,14 +5213,14 @@
"href": "/dashboard/docs/personal/en-v33-17996525102-6/index.html",
"type": "file",
"size": 151220,
- "lastModified": "2025-09-26T01:52:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v33-17996525102-6/index.txt",
"type": "file",
"size": 115906,
- "lastModified": "2025-09-26T01:52:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5232,14 +5232,14 @@
"href": "/dashboard/docs/personal/en-v33-17996525102-7/index.html",
"type": "file",
"size": 151189,
- "lastModified": "2025-09-26T01:52:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v33-17996525102-7/index.txt",
"type": "file",
"size": 115896,
- "lastModified": "2025-09-26T01:52:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5251,14 +5251,14 @@
"href": "/dashboard/docs/personal/en-v33-17996525102-8/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v33-17996525102-8/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5270,14 +5270,14 @@
"href": "/dashboard/docs/personal/en-v33-17996525102-9/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v33-17996525102-9/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5289,14 +5289,14 @@
"href": "/dashboard/docs/personal/en-v34-18001960544/index.html",
"type": "file",
"size": 151226,
- "lastModified": "2025-09-26T01:52:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v34-18001960544/index.txt",
"type": "file",
"size": 115903,
- "lastModified": "2025-09-26T01:52:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5308,14 +5308,14 @@
"href": "/dashboard/docs/personal/en-v34-18001960544-10/index.html",
"type": "file",
"size": 151214,
- "lastModified": "2025-09-26T01:52:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v34-18001960544-10/index.txt",
"type": "file",
"size": 115907,
- "lastModified": "2025-09-26T01:52:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5327,14 +5327,14 @@
"href": "/dashboard/docs/personal/en-v34-18001960544-11/index.html",
"type": "file",
"size": 151214,
- "lastModified": "2025-09-26T01:52:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v34-18001960544-11/index.txt",
"type": "file",
"size": 115907,
- "lastModified": "2025-09-26T01:52:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5346,14 +5346,14 @@
"href": "/dashboard/docs/personal/en-v34-18001960544-12/index.html",
"type": "file",
"size": 151233,
- "lastModified": "2025-09-26T01:52:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v34-18001960544-12/index.txt",
"type": "file",
"size": 115913,
- "lastModified": "2025-09-26T01:52:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5365,14 +5365,14 @@
"href": "/dashboard/docs/personal/en-v34-18001960544-2/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v34-18001960544-2/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5384,14 +5384,14 @@
"href": "/dashboard/docs/personal/en-v34-18001960544-3/index.html",
"type": "file",
"size": 151198,
- "lastModified": "2025-09-26T01:52:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v34-18001960544-3/index.txt",
"type": "file",
"size": 115899,
- "lastModified": "2025-09-26T01:52:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5403,14 +5403,14 @@
"href": "/dashboard/docs/personal/en-v34-18001960544-4/index.html",
"type": "file",
"size": 151198,
- "lastModified": "2025-09-26T01:52:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v34-18001960544-4/index.txt",
"type": "file",
"size": 115899,
- "lastModified": "2025-09-26T01:52:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5422,14 +5422,14 @@
"href": "/dashboard/docs/personal/en-v34-18001960544-5/index.html",
"type": "file",
"size": 151220,
- "lastModified": "2025-09-26T01:52:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v34-18001960544-5/index.txt",
"type": "file",
"size": 115906,
- "lastModified": "2025-09-26T01:52:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5441,14 +5441,14 @@
"href": "/dashboard/docs/personal/en-v34-18001960544-6/index.html",
"type": "file",
"size": 151220,
- "lastModified": "2025-09-26T01:52:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v34-18001960544-6/index.txt",
"type": "file",
"size": 115906,
- "lastModified": "2025-09-26T01:52:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5460,14 +5460,14 @@
"href": "/dashboard/docs/personal/en-v34-18001960544-7/index.html",
"type": "file",
"size": 151189,
- "lastModified": "2025-09-26T01:52:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v34-18001960544-7/index.txt",
"type": "file",
"size": 115896,
- "lastModified": "2025-09-26T01:52:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5479,14 +5479,14 @@
"href": "/dashboard/docs/personal/en-v34-18001960544-8/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v34-18001960544-8/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5498,14 +5498,14 @@
"href": "/dashboard/docs/personal/en-v34-18001960544-9/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v34-18001960544-9/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5517,14 +5517,14 @@
"href": "/dashboard/docs/personal/en-v36-18002294267/index.html",
"type": "file",
"size": 151226,
- "lastModified": "2025-09-26T01:52:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v36-18002294267/index.txt",
"type": "file",
"size": 115903,
- "lastModified": "2025-09-26T01:52:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5536,14 +5536,14 @@
"href": "/dashboard/docs/personal/en-v36-18002294267-10/index.html",
"type": "file",
"size": 151214,
- "lastModified": "2025-09-26T01:52:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v36-18002294267-10/index.txt",
"type": "file",
"size": 115907,
- "lastModified": "2025-09-26T01:52:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5555,14 +5555,14 @@
"href": "/dashboard/docs/personal/en-v36-18002294267-11/index.html",
"type": "file",
"size": 151214,
- "lastModified": "2025-09-26T01:52:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v36-18002294267-11/index.txt",
"type": "file",
"size": 115907,
- "lastModified": "2025-09-26T01:52:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5574,14 +5574,14 @@
"href": "/dashboard/docs/personal/en-v36-18002294267-12/index.html",
"type": "file",
"size": 151233,
- "lastModified": "2025-09-26T01:52:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v36-18002294267-12/index.txt",
"type": "file",
"size": 115913,
- "lastModified": "2025-09-26T01:52:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5593,14 +5593,14 @@
"href": "/dashboard/docs/personal/en-v36-18002294267-2/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v36-18002294267-2/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5612,14 +5612,14 @@
"href": "/dashboard/docs/personal/en-v36-18002294267-3/index.html",
"type": "file",
"size": 151198,
- "lastModified": "2025-09-26T01:52:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v36-18002294267-3/index.txt",
"type": "file",
"size": 115899,
- "lastModified": "2025-09-26T01:52:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5631,14 +5631,14 @@
"href": "/dashboard/docs/personal/en-v36-18002294267-4/index.html",
"type": "file",
"size": 151198,
- "lastModified": "2025-09-26T01:52:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v36-18002294267-4/index.txt",
"type": "file",
"size": 115899,
- "lastModified": "2025-09-26T01:52:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5650,14 +5650,14 @@
"href": "/dashboard/docs/personal/en-v36-18002294267-5/index.html",
"type": "file",
"size": 151220,
- "lastModified": "2025-09-26T01:52:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v36-18002294267-5/index.txt",
"type": "file",
"size": 115906,
- "lastModified": "2025-09-26T01:52:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5669,14 +5669,14 @@
"href": "/dashboard/docs/personal/en-v36-18002294267-6/index.html",
"type": "file",
"size": 151220,
- "lastModified": "2025-09-26T01:52:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v36-18002294267-6/index.txt",
"type": "file",
"size": 115906,
- "lastModified": "2025-09-26T01:52:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5688,14 +5688,14 @@
"href": "/dashboard/docs/personal/en-v36-18002294267-7/index.html",
"type": "file",
"size": 151189,
- "lastModified": "2025-09-26T01:52:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v36-18002294267-7/index.txt",
"type": "file",
"size": 115896,
- "lastModified": "2025-09-26T01:52:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5707,14 +5707,14 @@
"href": "/dashboard/docs/personal/en-v36-18002294267-8/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v36-18002294267-8/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5726,14 +5726,14 @@
"href": "/dashboard/docs/personal/en-v36-18002294267-9/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v36-18002294267-9/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5745,14 +5745,14 @@
"href": "/dashboard/docs/personal/en-v37-18002553627/index.html",
"type": "file",
"size": 151226,
- "lastModified": "2025-09-26T01:52:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v37-18002553627/index.txt",
"type": "file",
"size": 115903,
- "lastModified": "2025-09-26T01:52:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5764,14 +5764,14 @@
"href": "/dashboard/docs/personal/en-v37-18002553627-10/index.html",
"type": "file",
"size": 151214,
- "lastModified": "2025-09-26T01:52:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v37-18002553627-10/index.txt",
"type": "file",
"size": 115907,
- "lastModified": "2025-09-26T01:52:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5783,14 +5783,14 @@
"href": "/dashboard/docs/personal/en-v37-18002553627-11/index.html",
"type": "file",
"size": 151214,
- "lastModified": "2025-09-26T01:52:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v37-18002553627-11/index.txt",
"type": "file",
"size": 115907,
- "lastModified": "2025-09-26T01:52:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5802,14 +5802,14 @@
"href": "/dashboard/docs/personal/en-v37-18002553627-12/index.html",
"type": "file",
"size": 151233,
- "lastModified": "2025-09-26T01:52:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v37-18002553627-12/index.txt",
"type": "file",
"size": 115913,
- "lastModified": "2025-09-26T01:52:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5821,14 +5821,14 @@
"href": "/dashboard/docs/personal/en-v37-18002553627-2/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v37-18002553627-2/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5840,14 +5840,14 @@
"href": "/dashboard/docs/personal/en-v37-18002553627-3/index.html",
"type": "file",
"size": 151198,
- "lastModified": "2025-09-26T01:52:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v37-18002553627-3/index.txt",
"type": "file",
"size": 115899,
- "lastModified": "2025-09-26T01:52:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5859,14 +5859,14 @@
"href": "/dashboard/docs/personal/en-v37-18002553627-4/index.html",
"type": "file",
"size": 151198,
- "lastModified": "2025-09-26T01:52:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v37-18002553627-4/index.txt",
"type": "file",
"size": 115899,
- "lastModified": "2025-09-26T01:52:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5878,14 +5878,14 @@
"href": "/dashboard/docs/personal/en-v37-18002553627-5/index.html",
"type": "file",
"size": 151220,
- "lastModified": "2025-09-26T01:52:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v37-18002553627-5/index.txt",
"type": "file",
"size": 115906,
- "lastModified": "2025-09-26T01:52:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5897,14 +5897,14 @@
"href": "/dashboard/docs/personal/en-v37-18002553627-6/index.html",
"type": "file",
"size": 151220,
- "lastModified": "2025-09-26T01:52:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v37-18002553627-6/index.txt",
"type": "file",
"size": 115906,
- "lastModified": "2025-09-26T01:52:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5916,14 +5916,14 @@
"href": "/dashboard/docs/personal/en-v37-18002553627-7/index.html",
"type": "file",
"size": 151189,
- "lastModified": "2025-09-26T01:52:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v37-18002553627-7/index.txt",
"type": "file",
"size": 115896,
- "lastModified": "2025-09-26T01:52:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5935,14 +5935,14 @@
"href": "/dashboard/docs/personal/en-v37-18002553627-8/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v37-18002553627-8/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5954,14 +5954,14 @@
"href": "/dashboard/docs/personal/en-v37-18002553627-9/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v37-18002553627-9/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5973,14 +5973,14 @@
"href": "/dashboard/docs/personal/en-v39-18004672680/index.html",
"type": "file",
"size": 151226,
- "lastModified": "2025-09-26T01:52:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v39-18004672680/index.txt",
"type": "file",
"size": 115903,
- "lastModified": "2025-09-26T01:52:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -5992,14 +5992,14 @@
"href": "/dashboard/docs/personal/en-v39-18004672680-10/index.html",
"type": "file",
"size": 151214,
- "lastModified": "2025-09-26T01:52:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v39-18004672680-10/index.txt",
"type": "file",
"size": 115907,
- "lastModified": "2025-09-26T01:52:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6011,14 +6011,14 @@
"href": "/dashboard/docs/personal/en-v39-18004672680-11/index.html",
"type": "file",
"size": 151214,
- "lastModified": "2025-09-26T01:52:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v39-18004672680-11/index.txt",
"type": "file",
"size": 115907,
- "lastModified": "2025-09-26T01:52:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6030,14 +6030,14 @@
"href": "/dashboard/docs/personal/en-v39-18004672680-12/index.html",
"type": "file",
"size": 151233,
- "lastModified": "2025-09-26T01:52:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v39-18004672680-12/index.txt",
"type": "file",
"size": 115913,
- "lastModified": "2025-09-26T01:52:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6049,14 +6049,14 @@
"href": "/dashboard/docs/personal/en-v39-18004672680-2/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v39-18004672680-2/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6068,14 +6068,14 @@
"href": "/dashboard/docs/personal/en-v39-18004672680-3/index.html",
"type": "file",
"size": 151198,
- "lastModified": "2025-09-26T01:52:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v39-18004672680-3/index.txt",
"type": "file",
"size": 115899,
- "lastModified": "2025-09-26T01:52:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6087,14 +6087,14 @@
"href": "/dashboard/docs/personal/en-v39-18004672680-4/index.html",
"type": "file",
"size": 151198,
- "lastModified": "2025-09-26T01:52:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v39-18004672680-4/index.txt",
"type": "file",
"size": 115899,
- "lastModified": "2025-09-26T01:52:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6106,14 +6106,14 @@
"href": "/dashboard/docs/personal/en-v39-18004672680-5/index.html",
"type": "file",
"size": 151220,
- "lastModified": "2025-09-26T01:52:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v39-18004672680-5/index.txt",
"type": "file",
"size": 115906,
- "lastModified": "2025-09-26T01:52:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6125,14 +6125,14 @@
"href": "/dashboard/docs/personal/en-v39-18004672680-6/index.html",
"type": "file",
"size": 151220,
- "lastModified": "2025-09-26T01:52:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v39-18004672680-6/index.txt",
"type": "file",
"size": 115906,
- "lastModified": "2025-09-26T01:52:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6144,14 +6144,14 @@
"href": "/dashboard/docs/personal/en-v39-18004672680-7/index.html",
"type": "file",
"size": 151189,
- "lastModified": "2025-09-26T01:52:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v39-18004672680-7/index.txt",
"type": "file",
"size": 115896,
- "lastModified": "2025-09-26T01:52:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6163,14 +6163,14 @@
"href": "/dashboard/docs/personal/en-v39-18004672680-8/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v39-18004672680-8/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6182,14 +6182,14 @@
"href": "/dashboard/docs/personal/en-v39-18004672680-9/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v39-18004672680-9/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6201,14 +6201,14 @@
"href": "/dashboard/docs/personal/en-v40-18004678416/index.html",
"type": "file",
"size": 151226,
- "lastModified": "2025-09-26T01:52:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v40-18004678416/index.txt",
"type": "file",
"size": 115903,
- "lastModified": "2025-09-26T01:52:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6220,14 +6220,14 @@
"href": "/dashboard/docs/personal/en-v40-18004678416-10/index.html",
"type": "file",
"size": 151214,
- "lastModified": "2025-09-26T01:52:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v40-18004678416-10/index.txt",
"type": "file",
"size": 115907,
- "lastModified": "2025-09-26T01:52:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6239,14 +6239,14 @@
"href": "/dashboard/docs/personal/en-v40-18004678416-11/index.html",
"type": "file",
"size": 151214,
- "lastModified": "2025-09-26T01:52:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v40-18004678416-11/index.txt",
"type": "file",
"size": 115907,
- "lastModified": "2025-09-26T01:52:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6258,14 +6258,14 @@
"href": "/dashboard/docs/personal/en-v40-18004678416-12/index.html",
"type": "file",
"size": 151233,
- "lastModified": "2025-09-26T01:52:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v40-18004678416-12/index.txt",
"type": "file",
"size": 115913,
- "lastModified": "2025-09-26T01:52:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6277,14 +6277,14 @@
"href": "/dashboard/docs/personal/en-v40-18004678416-2/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v40-18004678416-2/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6296,14 +6296,14 @@
"href": "/dashboard/docs/personal/en-v40-18004678416-3/index.html",
"type": "file",
"size": 151198,
- "lastModified": "2025-09-26T01:52:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v40-18004678416-3/index.txt",
"type": "file",
"size": 115899,
- "lastModified": "2025-09-26T01:52:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6315,14 +6315,14 @@
"href": "/dashboard/docs/personal/en-v40-18004678416-4/index.html",
"type": "file",
"size": 151198,
- "lastModified": "2025-09-26T01:52:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v40-18004678416-4/index.txt",
"type": "file",
"size": 115899,
- "lastModified": "2025-09-26T01:52:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6334,14 +6334,14 @@
"href": "/dashboard/docs/personal/en-v40-18004678416-5/index.html",
"type": "file",
"size": 151220,
- "lastModified": "2025-09-26T01:52:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v40-18004678416-5/index.txt",
"type": "file",
"size": 115906,
- "lastModified": "2025-09-26T01:52:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6353,14 +6353,14 @@
"href": "/dashboard/docs/personal/en-v40-18004678416-6/index.html",
"type": "file",
"size": 151220,
- "lastModified": "2025-09-26T01:52:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v40-18004678416-6/index.txt",
"type": "file",
"size": 115906,
- "lastModified": "2025-09-26T01:52:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6372,14 +6372,14 @@
"href": "/dashboard/docs/personal/en-v40-18004678416-7/index.html",
"type": "file",
"size": 151189,
- "lastModified": "2025-09-26T01:52:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v40-18004678416-7/index.txt",
"type": "file",
"size": 115896,
- "lastModified": "2025-09-26T01:52:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6391,14 +6391,14 @@
"href": "/dashboard/docs/personal/en-v40-18004678416-8/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v40-18004678416-8/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6410,14 +6410,14 @@
"href": "/dashboard/docs/personal/en-v40-18004678416-9/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v40-18004678416-9/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6429,14 +6429,14 @@
"href": "/dashboard/docs/personal/en-v41-18005142964/index.html",
"type": "file",
"size": 151226,
- "lastModified": "2025-09-26T01:52:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v41-18005142964/index.txt",
"type": "file",
"size": 115903,
- "lastModified": "2025-09-26T01:52:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6448,14 +6448,14 @@
"href": "/dashboard/docs/personal/en-v41-18005142964-10/index.html",
"type": "file",
"size": 151214,
- "lastModified": "2025-09-26T01:52:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v41-18005142964-10/index.txt",
"type": "file",
"size": 115907,
- "lastModified": "2025-09-26T01:52:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6467,14 +6467,14 @@
"href": "/dashboard/docs/personal/en-v41-18005142964-11/index.html",
"type": "file",
"size": 151214,
- "lastModified": "2025-09-26T01:52:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v41-18005142964-11/index.txt",
"type": "file",
"size": 115907,
- "lastModified": "2025-09-26T01:52:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6486,14 +6486,14 @@
"href": "/dashboard/docs/personal/en-v41-18005142964-12/index.html",
"type": "file",
"size": 151233,
- "lastModified": "2025-09-26T01:52:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v41-18005142964-12/index.txt",
"type": "file",
"size": 115913,
- "lastModified": "2025-09-26T01:52:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6505,14 +6505,14 @@
"href": "/dashboard/docs/personal/en-v41-18005142964-2/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v41-18005142964-2/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6524,14 +6524,14 @@
"href": "/dashboard/docs/personal/en-v41-18005142964-3/index.html",
"type": "file",
"size": 151198,
- "lastModified": "2025-09-26T01:52:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v41-18005142964-3/index.txt",
"type": "file",
"size": 115899,
- "lastModified": "2025-09-26T01:52:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6543,14 +6543,14 @@
"href": "/dashboard/docs/personal/en-v41-18005142964-4/index.html",
"type": "file",
"size": 151198,
- "lastModified": "2025-09-26T01:52:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v41-18005142964-4/index.txt",
"type": "file",
"size": 115899,
- "lastModified": "2025-09-26T01:52:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6562,14 +6562,14 @@
"href": "/dashboard/docs/personal/en-v41-18005142964-5/index.html",
"type": "file",
"size": 151220,
- "lastModified": "2025-09-26T01:52:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v41-18005142964-5/index.txt",
"type": "file",
"size": 115906,
- "lastModified": "2025-09-26T01:52:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6581,14 +6581,14 @@
"href": "/dashboard/docs/personal/en-v41-18005142964-6/index.html",
"type": "file",
"size": 151220,
- "lastModified": "2025-09-26T01:52:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v41-18005142964-6/index.txt",
"type": "file",
"size": 115906,
- "lastModified": "2025-09-26T01:52:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6600,14 +6600,14 @@
"href": "/dashboard/docs/personal/en-v41-18005142964-7/index.html",
"type": "file",
"size": 151189,
- "lastModified": "2025-09-26T01:52:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v41-18005142964-7/index.txt",
"type": "file",
"size": 115896,
- "lastModified": "2025-09-26T01:52:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6619,14 +6619,14 @@
"href": "/dashboard/docs/personal/en-v41-18005142964-8/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v41-18005142964-8/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6638,14 +6638,14 @@
"href": "/dashboard/docs/personal/en-v41-18005142964-9/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v41-18005142964-9/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6657,14 +6657,14 @@
"href": "/dashboard/docs/personal/en-v42-18006148753/index.html",
"type": "file",
"size": 151226,
- "lastModified": "2025-09-26T01:52:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v42-18006148753/index.txt",
"type": "file",
"size": 115903,
- "lastModified": "2025-09-26T01:52:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6676,14 +6676,14 @@
"href": "/dashboard/docs/personal/en-v42-18006148753-10/index.html",
"type": "file",
"size": 151214,
- "lastModified": "2025-09-26T01:52:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v42-18006148753-10/index.txt",
"type": "file",
"size": 115907,
- "lastModified": "2025-09-26T01:52:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6695,14 +6695,14 @@
"href": "/dashboard/docs/personal/en-v42-18006148753-11/index.html",
"type": "file",
"size": 151214,
- "lastModified": "2025-09-26T01:52:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v42-18006148753-11/index.txt",
"type": "file",
"size": 115907,
- "lastModified": "2025-09-26T01:52:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6714,14 +6714,14 @@
"href": "/dashboard/docs/personal/en-v42-18006148753-12/index.html",
"type": "file",
"size": 151233,
- "lastModified": "2025-09-26T01:52:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v42-18006148753-12/index.txt",
"type": "file",
"size": 115913,
- "lastModified": "2025-09-26T01:52:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6733,14 +6733,14 @@
"href": "/dashboard/docs/personal/en-v42-18006148753-2/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v42-18006148753-2/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6752,14 +6752,14 @@
"href": "/dashboard/docs/personal/en-v42-18006148753-3/index.html",
"type": "file",
"size": 151198,
- "lastModified": "2025-09-26T01:52:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v42-18006148753-3/index.txt",
"type": "file",
"size": 115899,
- "lastModified": "2025-09-26T01:52:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6771,14 +6771,14 @@
"href": "/dashboard/docs/personal/en-v42-18006148753-4/index.html",
"type": "file",
"size": 151198,
- "lastModified": "2025-09-26T01:52:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v42-18006148753-4/index.txt",
"type": "file",
"size": 115899,
- "lastModified": "2025-09-26T01:52:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6790,14 +6790,14 @@
"href": "/dashboard/docs/personal/en-v42-18006148753-5/index.html",
"type": "file",
"size": 151220,
- "lastModified": "2025-09-26T01:52:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v42-18006148753-5/index.txt",
"type": "file",
"size": 115906,
- "lastModified": "2025-09-26T01:52:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6809,14 +6809,14 @@
"href": "/dashboard/docs/personal/en-v42-18006148753-6/index.html",
"type": "file",
"size": 151220,
- "lastModified": "2025-09-26T01:52:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v42-18006148753-6/index.txt",
"type": "file",
"size": 115906,
- "lastModified": "2025-09-26T01:52:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6828,14 +6828,14 @@
"href": "/dashboard/docs/personal/en-v42-18006148753-7/index.html",
"type": "file",
"size": 151189,
- "lastModified": "2025-09-26T01:52:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v42-18006148753-7/index.txt",
"type": "file",
"size": 115896,
- "lastModified": "2025-09-26T01:52:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6847,14 +6847,14 @@
"href": "/dashboard/docs/personal/en-v42-18006148753-8/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v42-18006148753-8/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6866,14 +6866,14 @@
"href": "/dashboard/docs/personal/en-v42-18006148753-9/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v42-18006148753-9/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6885,14 +6885,14 @@
"href": "/dashboard/docs/personal/en-v43-18011536494/index.html",
"type": "file",
"size": 151226,
- "lastModified": "2025-09-26T01:52:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v43-18011536494/index.txt",
"type": "file",
"size": 115903,
- "lastModified": "2025-09-26T01:52:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6904,14 +6904,14 @@
"href": "/dashboard/docs/personal/en-v43-18011536494-10/index.html",
"type": "file",
"size": 151214,
- "lastModified": "2025-09-26T01:52:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v43-18011536494-10/index.txt",
"type": "file",
"size": 115907,
- "lastModified": "2025-09-26T01:52:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6923,14 +6923,14 @@
"href": "/dashboard/docs/personal/en-v43-18011536494-11/index.html",
"type": "file",
"size": 151214,
- "lastModified": "2025-09-26T01:52:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v43-18011536494-11/index.txt",
"type": "file",
"size": 115907,
- "lastModified": "2025-09-26T01:52:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6942,14 +6942,14 @@
"href": "/dashboard/docs/personal/en-v43-18011536494-12/index.html",
"type": "file",
"size": 151233,
- "lastModified": "2025-09-26T01:52:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v43-18011536494-12/index.txt",
"type": "file",
"size": 115913,
- "lastModified": "2025-09-26T01:52:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6961,14 +6961,14 @@
"href": "/dashboard/docs/personal/en-v43-18011536494-2/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v43-18011536494-2/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6980,14 +6980,14 @@
"href": "/dashboard/docs/personal/en-v43-18011536494-3/index.html",
"type": "file",
"size": 151198,
- "lastModified": "2025-09-26T01:52:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v43-18011536494-3/index.txt",
"type": "file",
"size": 115899,
- "lastModified": "2025-09-26T01:52:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -6999,14 +6999,14 @@
"href": "/dashboard/docs/personal/en-v43-18011536494-4/index.html",
"type": "file",
"size": 151198,
- "lastModified": "2025-09-26T01:52:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v43-18011536494-4/index.txt",
"type": "file",
"size": 115899,
- "lastModified": "2025-09-26T01:52:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7018,14 +7018,14 @@
"href": "/dashboard/docs/personal/en-v43-18011536494-5/index.html",
"type": "file",
"size": 151220,
- "lastModified": "2025-09-26T01:52:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v43-18011536494-5/index.txt",
"type": "file",
"size": 115906,
- "lastModified": "2025-09-26T01:52:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7037,14 +7037,14 @@
"href": "/dashboard/docs/personal/en-v43-18011536494-6/index.html",
"type": "file",
"size": 151220,
- "lastModified": "2025-09-26T01:52:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v43-18011536494-6/index.txt",
"type": "file",
"size": 115906,
- "lastModified": "2025-09-26T01:52:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7056,14 +7056,14 @@
"href": "/dashboard/docs/personal/en-v43-18011536494-7/index.html",
"type": "file",
"size": 151189,
- "lastModified": "2025-09-26T01:52:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v43-18011536494-7/index.txt",
"type": "file",
"size": 115896,
- "lastModified": "2025-09-26T01:52:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7075,14 +7075,14 @@
"href": "/dashboard/docs/personal/en-v43-18011536494-8/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v43-18011536494-8/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7094,14 +7094,14 @@
"href": "/dashboard/docs/personal/en-v43-18011536494-9/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v43-18011536494-9/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7113,14 +7113,14 @@
"href": "/dashboard/docs/personal/en-v44-18011825454/index.html",
"type": "file",
"size": 151226,
- "lastModified": "2025-09-26T01:52:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v44-18011825454/index.txt",
"type": "file",
"size": 115903,
- "lastModified": "2025-09-26T01:52:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7132,14 +7132,14 @@
"href": "/dashboard/docs/personal/en-v44-18011825454-10/index.html",
"type": "file",
"size": 151214,
- "lastModified": "2025-09-26T01:52:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v44-18011825454-10/index.txt",
"type": "file",
"size": 115907,
- "lastModified": "2025-09-26T01:52:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7151,14 +7151,14 @@
"href": "/dashboard/docs/personal/en-v44-18011825454-11/index.html",
"type": "file",
"size": 151214,
- "lastModified": "2025-09-26T01:52:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v44-18011825454-11/index.txt",
"type": "file",
"size": 115907,
- "lastModified": "2025-09-26T01:52:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7170,14 +7170,14 @@
"href": "/dashboard/docs/personal/en-v44-18011825454-12/index.html",
"type": "file",
"size": 151233,
- "lastModified": "2025-09-26T01:52:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v44-18011825454-12/index.txt",
"type": "file",
"size": 115913,
- "lastModified": "2025-09-26T01:52:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7189,14 +7189,14 @@
"href": "/dashboard/docs/personal/en-v44-18011825454-2/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v44-18011825454-2/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7208,14 +7208,14 @@
"href": "/dashboard/docs/personal/en-v44-18011825454-3/index.html",
"type": "file",
"size": 151198,
- "lastModified": "2025-09-26T01:52:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v44-18011825454-3/index.txt",
"type": "file",
"size": 115899,
- "lastModified": "2025-09-26T01:52:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7227,14 +7227,14 @@
"href": "/dashboard/docs/personal/en-v44-18011825454-4/index.html",
"type": "file",
"size": 151198,
- "lastModified": "2025-09-26T01:52:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v44-18011825454-4/index.txt",
"type": "file",
"size": 115899,
- "lastModified": "2025-09-26T01:52:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7246,14 +7246,14 @@
"href": "/dashboard/docs/personal/en-v44-18011825454-5/index.html",
"type": "file",
"size": 151220,
- "lastModified": "2025-09-26T01:52:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v44-18011825454-5/index.txt",
"type": "file",
"size": 115906,
- "lastModified": "2025-09-26T01:52:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7265,14 +7265,14 @@
"href": "/dashboard/docs/personal/en-v44-18011825454-6/index.html",
"type": "file",
"size": 151220,
- "lastModified": "2025-09-26T01:52:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v44-18011825454-6/index.txt",
"type": "file",
"size": 115906,
- "lastModified": "2025-09-26T01:52:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7284,14 +7284,14 @@
"href": "/dashboard/docs/personal/en-v44-18011825454-7/index.html",
"type": "file",
"size": 151189,
- "lastModified": "2025-09-26T01:52:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v44-18011825454-7/index.txt",
"type": "file",
"size": 115896,
- "lastModified": "2025-09-26T01:52:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7303,14 +7303,14 @@
"href": "/dashboard/docs/personal/en-v44-18011825454-8/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v44-18011825454-8/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7322,14 +7322,14 @@
"href": "/dashboard/docs/personal/en-v44-18011825454-9/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v44-18011825454-9/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7341,14 +7341,14 @@
"href": "/dashboard/docs/personal/en-v45-18011937887/index.html",
"type": "file",
"size": 151226,
- "lastModified": "2025-09-26T01:52:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v45-18011937887/index.txt",
"type": "file",
"size": 115903,
- "lastModified": "2025-09-26T01:52:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7360,14 +7360,14 @@
"href": "/dashboard/docs/personal/en-v45-18011937887-10/index.html",
"type": "file",
"size": 151214,
- "lastModified": "2025-09-26T01:52:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v45-18011937887-10/index.txt",
"type": "file",
"size": 115907,
- "lastModified": "2025-09-26T01:52:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7379,14 +7379,14 @@
"href": "/dashboard/docs/personal/en-v45-18011937887-11/index.html",
"type": "file",
"size": 151214,
- "lastModified": "2025-09-26T01:52:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v45-18011937887-11/index.txt",
"type": "file",
"size": 115907,
- "lastModified": "2025-09-26T01:52:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7398,14 +7398,14 @@
"href": "/dashboard/docs/personal/en-v45-18011937887-12/index.html",
"type": "file",
"size": 151233,
- "lastModified": "2025-09-26T01:52:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v45-18011937887-12/index.txt",
"type": "file",
"size": 115913,
- "lastModified": "2025-09-26T01:52:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7417,14 +7417,14 @@
"href": "/dashboard/docs/personal/en-v45-18011937887-2/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v45-18011937887-2/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7436,14 +7436,14 @@
"href": "/dashboard/docs/personal/en-v45-18011937887-3/index.html",
"type": "file",
"size": 151198,
- "lastModified": "2025-09-26T01:52:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v45-18011937887-3/index.txt",
"type": "file",
"size": 115899,
- "lastModified": "2025-09-26T01:52:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7455,14 +7455,14 @@
"href": "/dashboard/docs/personal/en-v45-18011937887-4/index.html",
"type": "file",
"size": 151198,
- "lastModified": "2025-09-26T01:52:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v45-18011937887-4/index.txt",
"type": "file",
"size": 115899,
- "lastModified": "2025-09-26T01:52:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7474,14 +7474,14 @@
"href": "/dashboard/docs/personal/en-v45-18011937887-5/index.html",
"type": "file",
"size": 151220,
- "lastModified": "2025-09-26T01:52:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v45-18011937887-5/index.txt",
"type": "file",
"size": 115906,
- "lastModified": "2025-09-26T01:52:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7493,14 +7493,14 @@
"href": "/dashboard/docs/personal/en-v45-18011937887-6/index.html",
"type": "file",
"size": 151220,
- "lastModified": "2025-09-26T01:52:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v45-18011937887-6/index.txt",
"type": "file",
"size": 115906,
- "lastModified": "2025-09-26T01:52:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7512,14 +7512,14 @@
"href": "/dashboard/docs/personal/en-v45-18011937887-7/index.html",
"type": "file",
"size": 151189,
- "lastModified": "2025-09-26T01:52:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v45-18011937887-7/index.txt",
"type": "file",
"size": 115896,
- "lastModified": "2025-09-26T01:52:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7531,14 +7531,14 @@
"href": "/dashboard/docs/personal/en-v45-18011937887-8/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v45-18011937887-8/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7550,14 +7550,14 @@
"href": "/dashboard/docs/personal/en-v45-18011937887-9/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v45-18011937887-9/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7569,14 +7569,14 @@
"href": "/dashboard/docs/personal/en-v46-18011951541/index.html",
"type": "file",
"size": 151226,
- "lastModified": "2025-09-26T01:52:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v46-18011951541/index.txt",
"type": "file",
"size": 115903,
- "lastModified": "2025-09-26T01:52:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7588,14 +7588,14 @@
"href": "/dashboard/docs/personal/en-v46-18011951541-10/index.html",
"type": "file",
"size": 151214,
- "lastModified": "2025-09-26T01:52:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v46-18011951541-10/index.txt",
"type": "file",
"size": 115907,
- "lastModified": "2025-09-26T01:52:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7607,14 +7607,14 @@
"href": "/dashboard/docs/personal/en-v46-18011951541-11/index.html",
"type": "file",
"size": 151214,
- "lastModified": "2025-09-26T01:52:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v46-18011951541-11/index.txt",
"type": "file",
"size": 115907,
- "lastModified": "2025-09-26T01:52:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7626,14 +7626,14 @@
"href": "/dashboard/docs/personal/en-v46-18011951541-12/index.html",
"type": "file",
"size": 151233,
- "lastModified": "2025-09-26T01:52:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v46-18011951541-12/index.txt",
"type": "file",
"size": 115913,
- "lastModified": "2025-09-26T01:52:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7645,14 +7645,14 @@
"href": "/dashboard/docs/personal/en-v46-18011951541-2/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v46-18011951541-2/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7664,14 +7664,14 @@
"href": "/dashboard/docs/personal/en-v46-18011951541-3/index.html",
"type": "file",
"size": 151198,
- "lastModified": "2025-09-26T01:52:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v46-18011951541-3/index.txt",
"type": "file",
"size": 115899,
- "lastModified": "2025-09-26T01:52:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7683,14 +7683,14 @@
"href": "/dashboard/docs/personal/en-v46-18011951541-4/index.html",
"type": "file",
"size": 151198,
- "lastModified": "2025-09-26T01:52:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v46-18011951541-4/index.txt",
"type": "file",
"size": 115899,
- "lastModified": "2025-09-26T01:52:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7702,14 +7702,14 @@
"href": "/dashboard/docs/personal/en-v46-18011951541-5/index.html",
"type": "file",
"size": 151220,
- "lastModified": "2025-09-26T01:52:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v46-18011951541-5/index.txt",
"type": "file",
"size": 115906,
- "lastModified": "2025-09-26T01:52:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7721,14 +7721,14 @@
"href": "/dashboard/docs/personal/en-v46-18011951541-6/index.html",
"type": "file",
"size": 151220,
- "lastModified": "2025-09-26T01:52:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v46-18011951541-6/index.txt",
"type": "file",
"size": 115906,
- "lastModified": "2025-09-26T01:52:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7740,14 +7740,14 @@
"href": "/dashboard/docs/personal/en-v46-18011951541-7/index.html",
"type": "file",
"size": 151189,
- "lastModified": "2025-09-26T01:52:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v46-18011951541-7/index.txt",
"type": "file",
"size": 115896,
- "lastModified": "2025-09-26T01:52:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7759,14 +7759,14 @@
"href": "/dashboard/docs/personal/en-v46-18011951541-8/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v46-18011951541-8/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7778,14 +7778,14 @@
"href": "/dashboard/docs/personal/en-v46-18011951541-9/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v46-18011951541-9/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7797,14 +7797,14 @@
"href": "/dashboard/docs/personal/en-v47-18013619427/index.html",
"type": "file",
"size": 151226,
- "lastModified": "2025-09-26T01:52:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v47-18013619427/index.txt",
"type": "file",
"size": 115903,
- "lastModified": "2025-09-26T01:52:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7816,14 +7816,14 @@
"href": "/dashboard/docs/personal/en-v47-18013619427-10/index.html",
"type": "file",
"size": 151214,
- "lastModified": "2025-09-26T01:52:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v47-18013619427-10/index.txt",
"type": "file",
"size": 115907,
- "lastModified": "2025-09-26T01:52:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7835,14 +7835,14 @@
"href": "/dashboard/docs/personal/en-v47-18013619427-11/index.html",
"type": "file",
"size": 151214,
- "lastModified": "2025-09-26T01:52:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v47-18013619427-11/index.txt",
"type": "file",
"size": 115907,
- "lastModified": "2025-09-26T01:52:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7854,14 +7854,14 @@
"href": "/dashboard/docs/personal/en-v47-18013619427-12/index.html",
"type": "file",
"size": 151233,
- "lastModified": "2025-09-26T01:52:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v47-18013619427-12/index.txt",
"type": "file",
"size": 115913,
- "lastModified": "2025-09-26T01:52:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7873,14 +7873,14 @@
"href": "/dashboard/docs/personal/en-v47-18013619427-2/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v47-18013619427-2/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7892,14 +7892,14 @@
"href": "/dashboard/docs/personal/en-v47-18013619427-3/index.html",
"type": "file",
"size": 151198,
- "lastModified": "2025-09-26T01:52:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v47-18013619427-3/index.txt",
"type": "file",
"size": 115899,
- "lastModified": "2025-09-26T01:52:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7911,14 +7911,14 @@
"href": "/dashboard/docs/personal/en-v47-18013619427-4/index.html",
"type": "file",
"size": 151198,
- "lastModified": "2025-09-26T01:52:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v47-18013619427-4/index.txt",
"type": "file",
"size": 115899,
- "lastModified": "2025-09-26T01:52:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7930,14 +7930,14 @@
"href": "/dashboard/docs/personal/en-v47-18013619427-5/index.html",
"type": "file",
"size": 151220,
- "lastModified": "2025-09-26T01:52:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v47-18013619427-5/index.txt",
"type": "file",
"size": 115906,
- "lastModified": "2025-09-26T01:52:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7949,14 +7949,14 @@
"href": "/dashboard/docs/personal/en-v47-18013619427-6/index.html",
"type": "file",
"size": 151220,
- "lastModified": "2025-09-26T01:52:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v47-18013619427-6/index.txt",
"type": "file",
"size": 115906,
- "lastModified": "2025-09-26T01:52:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7968,14 +7968,14 @@
"href": "/dashboard/docs/personal/en-v47-18013619427-7/index.html",
"type": "file",
"size": 151189,
- "lastModified": "2025-09-26T01:52:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v47-18013619427-7/index.txt",
"type": "file",
"size": 115896,
- "lastModified": "2025-09-26T01:52:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -7987,14 +7987,14 @@
"href": "/dashboard/docs/personal/en-v47-18013619427-8/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v47-18013619427-8/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8006,14 +8006,14 @@
"href": "/dashboard/docs/personal/en-v47-18013619427-9/index.html",
"type": "file",
"size": 151186,
- "lastModified": "2025-09-26T01:52:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/personal/en-v47-18013619427-9/index.txt",
"type": "file",
"size": 115895,
- "lastModified": "2025-09-26T01:52:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8024,93 +8024,93 @@
"name": "en-v33-17996525102/",
"href": "/dashboard/docs/techexploration/en-v33-17996525102/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v34-18001960544/",
"href": "/dashboard/docs/techexploration/en-v34-18001960544/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v36-18002294267/",
"href": "/dashboard/docs/techexploration/en-v36-18002294267/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v37-18002553627/",
"href": "/dashboard/docs/techexploration/en-v37-18002553627/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v39-18004672680/",
"href": "/dashboard/docs/techexploration/en-v39-18004672680/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v40-18004678416/",
"href": "/dashboard/docs/techexploration/en-v40-18004678416/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v41-18005142964/",
"href": "/dashboard/docs/techexploration/en-v41-18005142964/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v42-18006148753/",
"href": "/dashboard/docs/techexploration/en-v42-18006148753/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v43-18011536494/",
"href": "/dashboard/docs/techexploration/en-v43-18011536494/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v44-18011825454/",
"href": "/dashboard/docs/techexploration/en-v44-18011825454/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v45-18011937887/",
"href": "/dashboard/docs/techexploration/en-v45-18011937887/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v46-18011951541/",
"href": "/dashboard/docs/techexploration/en-v46-18011951541/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v47-18013619427/",
"href": "/dashboard/docs/techexploration/en-v47-18013619427/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/docs/techexploration/index.html",
"type": "file",
"size": 5067,
- "lastModified": "2025-09-26T01:52:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/techexploration/index.txt",
"type": "file",
"size": 3199,
- "lastModified": "2025-09-26T01:52:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8122,14 +8122,14 @@
"href": "/dashboard/docs/techexploration/en-v33-17996525102/index.html",
"type": "file",
"size": 30019,
- "lastModified": "2025-09-26T01:52:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/techexploration/en-v33-17996525102/index.txt",
"type": "file",
"size": 16018,
- "lastModified": "2025-09-26T01:52:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8141,14 +8141,14 @@
"href": "/dashboard/docs/techexploration/en-v34-18001960544/index.html",
"type": "file",
"size": 30019,
- "lastModified": "2025-09-26T01:52:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/techexploration/en-v34-18001960544/index.txt",
"type": "file",
"size": 16018,
- "lastModified": "2025-09-26T01:52:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8160,14 +8160,14 @@
"href": "/dashboard/docs/techexploration/en-v36-18002294267/index.html",
"type": "file",
"size": 30019,
- "lastModified": "2025-09-26T01:52:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/techexploration/en-v36-18002294267/index.txt",
"type": "file",
"size": 16018,
- "lastModified": "2025-09-26T01:52:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8179,14 +8179,14 @@
"href": "/dashboard/docs/techexploration/en-v37-18002553627/index.html",
"type": "file",
"size": 30019,
- "lastModified": "2025-09-26T01:52:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/techexploration/en-v37-18002553627/index.txt",
"type": "file",
"size": 16018,
- "lastModified": "2025-09-26T01:52:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8198,14 +8198,14 @@
"href": "/dashboard/docs/techexploration/en-v39-18004672680/index.html",
"type": "file",
"size": 30019,
- "lastModified": "2025-09-26T01:52:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/techexploration/en-v39-18004672680/index.txt",
"type": "file",
"size": 16018,
- "lastModified": "2025-09-26T01:52:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8217,14 +8217,14 @@
"href": "/dashboard/docs/techexploration/en-v40-18004678416/index.html",
"type": "file",
"size": 30019,
- "lastModified": "2025-09-26T01:52:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/techexploration/en-v40-18004678416/index.txt",
"type": "file",
"size": 16018,
- "lastModified": "2025-09-26T01:52:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8236,14 +8236,14 @@
"href": "/dashboard/docs/techexploration/en-v41-18005142964/index.html",
"type": "file",
"size": 30019,
- "lastModified": "2025-09-26T01:52:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/techexploration/en-v41-18005142964/index.txt",
"type": "file",
"size": 16018,
- "lastModified": "2025-09-26T01:52:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8255,14 +8255,14 @@
"href": "/dashboard/docs/techexploration/en-v42-18006148753/index.html",
"type": "file",
"size": 30019,
- "lastModified": "2025-09-26T01:52:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/techexploration/en-v42-18006148753/index.txt",
"type": "file",
"size": 16018,
- "lastModified": "2025-09-26T01:52:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8274,14 +8274,14 @@
"href": "/dashboard/docs/techexploration/en-v43-18011536494/index.html",
"type": "file",
"size": 30019,
- "lastModified": "2025-09-26T01:52:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/techexploration/en-v43-18011536494/index.txt",
"type": "file",
"size": 16018,
- "lastModified": "2025-09-26T01:52:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8293,14 +8293,14 @@
"href": "/dashboard/docs/techexploration/en-v44-18011825454/index.html",
"type": "file",
"size": 30019,
- "lastModified": "2025-09-26T01:52:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/techexploration/en-v44-18011825454/index.txt",
"type": "file",
"size": 16018,
- "lastModified": "2025-09-26T01:52:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8312,14 +8312,14 @@
"href": "/dashboard/docs/techexploration/en-v45-18011937887/index.html",
"type": "file",
"size": 30019,
- "lastModified": "2025-09-26T01:52:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/techexploration/en-v45-18011937887/index.txt",
"type": "file",
"size": 16018,
- "lastModified": "2025-09-26T01:52:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8331,14 +8331,14 @@
"href": "/dashboard/docs/techexploration/en-v46-18011951541/index.html",
"type": "file",
"size": 30019,
- "lastModified": "2025-09-26T01:52:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/techexploration/en-v46-18011951541/index.txt",
"type": "file",
"size": 16018,
- "lastModified": "2025-09-26T01:52:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8350,14 +8350,14 @@
"href": "/dashboard/docs/techexploration/en-v47-18013619427/index.html",
"type": "file",
"size": 30019,
- "lastModified": "2025-09-26T01:52:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/techexploration/en-v47-18013619427/index.txt",
"type": "file",
"size": 16018,
- "lastModified": "2025-09-26T01:52:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8368,141 +8368,141 @@
"name": "cn-v33-17996525102/",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v33-17996525102/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v34-18001960544/",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v34-18001960544/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v36-18002294267/",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v36-18002294267/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v38-18003957466/",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v38-18003957466/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v39-18004672680/",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v39-18004672680/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v40-18004678416/",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v40-18004678416/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v41-18005142964/",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v41-18005142964/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v33-17996525102/",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v33-17996525102/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v34-18001960544/",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v34-18001960544/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v36-18002294267/",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v36-18002294267/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v37-18002553627/",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v37-18002553627/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v38-18003957466/",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v38-18003957466/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v39-18004672680/",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v39-18004672680/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v40-18004678416/",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v40-18004678416/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v41-18005142964/",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v41-18005142964/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v42-18006148753/",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v42-18006148753/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v43-18011536494/",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v43-18011536494/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v44-18011825454/",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v44-18011825454/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v45-18011937887/",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v45-18011937887/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v46-18011951541/",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v46-18011951541/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v47-18013619427/",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v47-18013619427/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/index.html",
"type": "file",
"size": 5193,
- "lastModified": "2025-09-26T01:52:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/index.txt",
"type": "file",
"size": 3304,
- "lastModified": "2025-09-26T01:52:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8514,14 +8514,14 @@
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v33-17996525102/index.html",
"type": "file",
"size": 42751,
- "lastModified": "2025-09-26T01:52:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v33-17996525102/index.txt",
"type": "file",
"size": 26748,
- "lastModified": "2025-09-26T01:52:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8533,14 +8533,14 @@
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v34-18001960544/index.html",
"type": "file",
"size": 42751,
- "lastModified": "2025-09-26T01:52:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v34-18001960544/index.txt",
"type": "file",
"size": 26748,
- "lastModified": "2025-09-26T01:52:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8552,14 +8552,14 @@
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v36-18002294267/index.html",
"type": "file",
"size": 42751,
- "lastModified": "2025-09-26T01:52:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v36-18002294267/index.txt",
"type": "file",
"size": 26748,
- "lastModified": "2025-09-26T01:52:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8571,14 +8571,14 @@
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v38-18003957466/index.html",
"type": "file",
"size": 42751,
- "lastModified": "2025-09-26T01:52:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v38-18003957466/index.txt",
"type": "file",
"size": 26748,
- "lastModified": "2025-09-26T01:52:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8590,14 +8590,14 @@
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v39-18004672680/index.html",
"type": "file",
"size": 42751,
- "lastModified": "2025-09-26T01:52:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v39-18004672680/index.txt",
"type": "file",
"size": 26748,
- "lastModified": "2025-09-26T01:52:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8609,14 +8609,14 @@
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v40-18004678416/index.html",
"type": "file",
"size": 42751,
- "lastModified": "2025-09-26T01:52:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v40-18004678416/index.txt",
"type": "file",
"size": 26748,
- "lastModified": "2025-09-26T01:52:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8628,14 +8628,14 @@
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v41-18005142964/index.html",
"type": "file",
"size": 42751,
- "lastModified": "2025-09-26T01:52:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v41-18005142964/index.txt",
"type": "file",
"size": 26748,
- "lastModified": "2025-09-26T01:52:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8647,14 +8647,14 @@
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v33-17996525102/index.html",
"type": "file",
"size": 42751,
- "lastModified": "2025-09-26T01:52:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v33-17996525102/index.txt",
"type": "file",
"size": 26748,
- "lastModified": "2025-09-26T01:52:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8666,14 +8666,14 @@
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v34-18001960544/index.html",
"type": "file",
"size": 42751,
- "lastModified": "2025-09-26T01:52:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v34-18001960544/index.txt",
"type": "file",
"size": 26748,
- "lastModified": "2025-09-26T01:52:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8685,14 +8685,14 @@
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v36-18002294267/index.html",
"type": "file",
"size": 42751,
- "lastModified": "2025-09-26T01:52:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v36-18002294267/index.txt",
"type": "file",
"size": 26748,
- "lastModified": "2025-09-26T01:52:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8704,14 +8704,14 @@
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v37-18002553627/index.html",
"type": "file",
"size": 42751,
- "lastModified": "2025-09-26T01:52:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v37-18002553627/index.txt",
"type": "file",
"size": 26748,
- "lastModified": "2025-09-26T01:52:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8723,14 +8723,14 @@
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v38-18003957466/index.html",
"type": "file",
"size": 42751,
- "lastModified": "2025-09-26T01:52:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v38-18003957466/index.txt",
"type": "file",
"size": 26748,
- "lastModified": "2025-09-26T01:52:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8742,14 +8742,14 @@
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v39-18004672680/index.html",
"type": "file",
"size": 42751,
- "lastModified": "2025-09-26T01:52:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v39-18004672680/index.txt",
"type": "file",
"size": 26748,
- "lastModified": "2025-09-26T01:52:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8761,14 +8761,14 @@
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v40-18004678416/index.html",
"type": "file",
"size": 42751,
- "lastModified": "2025-09-26T01:52:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v40-18004678416/index.txt",
"type": "file",
"size": 26748,
- "lastModified": "2025-09-26T01:52:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8780,14 +8780,14 @@
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v41-18005142964/index.html",
"type": "file",
"size": 42751,
- "lastModified": "2025-09-26T01:52:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v41-18005142964/index.txt",
"type": "file",
"size": 26748,
- "lastModified": "2025-09-26T01:52:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8799,14 +8799,14 @@
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v42-18006148753/index.html",
"type": "file",
"size": 42751,
- "lastModified": "2025-09-26T01:52:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v42-18006148753/index.txt",
"type": "file",
"size": 26748,
- "lastModified": "2025-09-26T01:52:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8818,14 +8818,14 @@
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v43-18011536494/index.html",
"type": "file",
"size": 42751,
- "lastModified": "2025-09-26T01:52:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v43-18011536494/index.txt",
"type": "file",
"size": 26748,
- "lastModified": "2025-09-26T01:52:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8837,14 +8837,14 @@
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v44-18011825454/index.html",
"type": "file",
"size": 42751,
- "lastModified": "2025-09-26T01:52:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v44-18011825454/index.txt",
"type": "file",
"size": 26748,
- "lastModified": "2025-09-26T01:52:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8856,14 +8856,14 @@
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v45-18011937887/index.html",
"type": "file",
"size": 42751,
- "lastModified": "2025-09-26T01:52:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v45-18011937887/index.txt",
"type": "file",
"size": 26748,
- "lastModified": "2025-09-26T01:52:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8875,14 +8875,14 @@
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v46-18011951541/index.html",
"type": "file",
"size": 42751,
- "lastModified": "2025-09-26T01:52:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v46-18011951541/index.txt",
"type": "file",
"size": 26748,
- "lastModified": "2025-09-26T01:52:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8894,14 +8894,14 @@
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v47-18013619427/index.html",
"type": "file",
"size": 42751,
- "lastModified": "2025-09-26T01:52:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v47-18013619427/index.txt",
"type": "file",
"size": 26748,
- "lastModified": "2025-09-26T01:52:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8912,69 +8912,69 @@
"name": "dashboard/",
"href": "/dashboard/download/dashboard/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "deb/",
"href": "/dashboard/download/deb/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "docs/",
"href": "/dashboard/download/docs/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/index.html",
"type": "file",
"size": 41876,
- "lastModified": "2025-09-26T01:52:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/index.txt",
"type": "file",
"size": 9009,
- "lastModified": "2025-09-26T01:52:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "offline-package/",
"href": "/dashboard/download/offline-package/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "otel/",
"href": "/dashboard/download/otel/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "rpm/",
"href": "/dashboard/download/rpm/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "sealos/",
"href": "/dashboard/download/sealos/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "xray-core/",
"href": "/dashboard/download/xray-core/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "xstream/",
"href": "/dashboard/download/xstream/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -8985,99 +8985,99 @@
"name": "404/",
"href": "/dashboard/download/dashboard/404/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "500/",
"href": "/dashboard/download/dashboard/500/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "_build/",
"href": "/dashboard/download/dashboard/_build/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "_next/",
"href": "/dashboard/download/dashboard/_next/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cloud_iac/",
"href": "/dashboard/download/dashboard/cloud_iac/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:40Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "demo/",
"href": "/dashboard/download/dashboard/demo/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:40Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "dl-index/",
"href": "/dashboard/download/dashboard/dl-index/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:40Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "docs/",
"href": "/dashboard/download/dashboard/docs/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "download/",
"href": "/dashboard/download/dashboard/download/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "icons/",
"href": "/dashboard/download/dashboard/icons/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/index.html",
"type": "file",
"size": 24959,
- "lastModified": "2025-09-26T01:52:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/index.txt",
"type": "file",
"size": 6213,
- "lastModified": "2025-09-26T01:52:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "insight/",
"href": "/dashboard/download/dashboard/insight/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "login/",
"href": "/dashboard/download/dashboard/login/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "panel/",
"href": "/dashboard/download/dashboard/panel/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "register/",
"href": "/dashboard/download/dashboard/register/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9089,14 +9089,14 @@
"href": "/dashboard/download/dashboard/404/index.html",
"type": "file",
"size": 10820,
- "lastModified": "2025-09-26T01:52:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/404/index.txt",
"type": "file",
"size": 3951,
- "lastModified": "2025-09-26T01:52:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9108,14 +9108,14 @@
"href": "/dashboard/download/dashboard/500/index.html",
"type": "file",
"size": 9810,
- "lastModified": "2025-09-26T01:52:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/500/index.txt",
"type": "file",
"size": 3832,
- "lastModified": "2025-09-26T01:52:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9127,14 +9127,14 @@
"href": "/dashboard/download/dashboard/_build/index.html",
"type": "file",
"size": 11977,
- "lastModified": "2025-09-26T01:52:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/_build/index.txt",
"type": "file",
"size": 4147,
- "lastModified": "2025-09-26T01:52:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9145,27 +9145,27 @@
"name": "0ziXklCxmfxSZ7QwxTqZG/",
"href": "/dashboard/download/dashboard/_next/0ziXklCxmfxSZ7QwxTqZG/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/_next/index.html",
"type": "file",
"size": 10628,
- "lastModified": "2025-09-26T01:52:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/_next/index.txt",
"type": "file",
"size": 4095,
- "lastModified": "2025-09-26T01:52:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "static/",
"href": "/dashboard/download/dashboard/_next/static/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9177,14 +9177,14 @@
"href": "/dashboard/download/dashboard/_next/0ziXklCxmfxSZ7QwxTqZG/index.html",
"type": "file",
"size": 8689,
- "lastModified": "2025-09-26T01:52:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/_next/0ziXklCxmfxSZ7QwxTqZG/index.txt",
"type": "file",
"size": 3918,
- "lastModified": "2025-09-26T01:52:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9195,33 +9195,33 @@
"name": "0ziXklCxmfxSZ7QwxTqZG/",
"href": "/dashboard/download/dashboard/_next/static/0ziXklCxmfxSZ7QwxTqZG/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "chunks/",
"href": "/dashboard/download/dashboard/_next/static/chunks/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "css/",
"href": "/dashboard/download/dashboard/_next/static/css/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/_next/static/index.html",
"type": "file",
"size": 11779,
- "lastModified": "2025-09-26T01:52:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/_next/static/index.txt",
"type": "file",
"size": 4352,
- "lastModified": "2025-09-26T01:52:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9233,14 +9233,14 @@
"href": "/dashboard/download/dashboard/_next/static/0ziXklCxmfxSZ7QwxTqZG/index.html",
"type": "file",
"size": 11782,
- "lastModified": "2025-09-26T01:52:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/_next/static/0ziXklCxmfxSZ7QwxTqZG/index.txt",
"type": "file",
"size": 4315,
- "lastModified": "2025-09-26T01:52:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9251,27 +9251,27 @@
"name": "app/",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/_next/static/chunks/index.html",
"type": "file",
"size": 26181,
- "lastModified": "2025-09-26T01:52:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/_next/static/chunks/index.txt",
"type": "file",
"size": 6405,
- "lastModified": "2025-09-26T01:52:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "pages/",
"href": "/dashboard/download/dashboard/_next/static/chunks/pages/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9282,75 +9282,75 @@
"name": "404/",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/404/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "_not-found/",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/_not-found/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cloud_iac/",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/cloud_iac/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "demo/",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/demo/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "docs/",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/docs/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "download/",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/download/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/index.html",
"type": "file",
"size": 21502,
- "lastModified": "2025-09-26T01:52:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/index.txt",
"type": "file",
"size": 6199,
- "lastModified": "2025-09-26T01:52:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "insight/",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/insight/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "login/",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/login/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "panel/",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/panel/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "register/",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/register/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9362,14 +9362,14 @@
"href": "/dashboard/download/dashboard/_next/static/chunks/app/404/index.html",
"type": "file",
"size": 10881,
- "lastModified": "2025-09-26T01:52:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/404/index.txt",
"type": "file",
"size": 4099,
- "lastModified": "2025-09-26T01:52:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9381,14 +9381,14 @@
"href": "/dashboard/download/dashboard/_next/static/chunks/app/_not-found/index.html",
"type": "file",
"size": 11012,
- "lastModified": "2025-09-26T01:52:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/_not-found/index.txt",
"type": "file",
"size": 4169,
- "lastModified": "2025-09-26T01:52:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9399,21 +9399,21 @@
"name": "[provider]/",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/cloud_iac/[provider]/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/cloud_iac/index.html",
"type": "file",
"size": 12622,
- "lastModified": "2025-09-26T01:52:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/cloud_iac/index.txt",
"type": "file",
"size": 4386,
- "lastModified": "2025-09-26T01:52:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9424,21 +9424,21 @@
"name": "[service]/",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/cloud_iac/[provider]/[service]/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/cloud_iac/[provider]/index.html",
"type": "file",
"size": 6203,
- "lastModified": "2025-09-26T01:52:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/cloud_iac/[provider]/index.txt",
"type": "file",
"size": 3587,
- "lastModified": "2025-09-26T01:52:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9450,14 +9450,14 @@
"href": "/dashboard/download/dashboard/_next/static/chunks/app/cloud_iac/[provider]/[service]/index.html",
"type": "file",
"size": 6281,
- "lastModified": "2025-09-26T01:52:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/cloud_iac/[provider]/[service]/index.txt",
"type": "file",
"size": 3643,
- "lastModified": "2025-09-26T01:52:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9469,14 +9469,14 @@
"href": "/dashboard/download/dashboard/_next/static/chunks/app/demo/index.html",
"type": "file",
"size": 10903,
- "lastModified": "2025-09-26T01:52:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/demo/index.txt",
"type": "file",
"size": 4110,
- "lastModified": "2025-09-26T01:52:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9487,21 +9487,21 @@
"name": "[collection]/",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/docs/[collection]/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/docs/index.html",
"type": "file",
"size": 12525,
- "lastModified": "2025-09-26T01:52:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/docs/index.txt",
"type": "file",
"size": 4333,
- "lastModified": "2025-09-26T01:52:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9512,21 +9512,21 @@
"name": "[version]/",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/docs/[collection]/[version]/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/docs/[collection]/index.html",
"type": "file",
"size": 6188,
- "lastModified": "2025-09-26T01:52:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/docs/[collection]/index.txt",
"type": "file",
"size": 3575,
- "lastModified": "2025-09-26T01:52:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9538,14 +9538,14 @@
"href": "/dashboard/download/dashboard/_next/static/chunks/app/docs/[collection]/[version]/index.html",
"type": "file",
"size": 6266,
- "lastModified": "2025-09-26T01:52:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/docs/[collection]/[version]/index.txt",
"type": "file",
"size": 3631,
- "lastModified": "2025-09-26T01:52:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9556,21 +9556,21 @@
"name": "[...segments]/",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/download/[...segments]/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/download/index.html",
"type": "file",
"size": 12617,
- "lastModified": "2025-09-26T01:52:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/download/index.txt",
"type": "file",
"size": 4384,
- "lastModified": "2025-09-26T01:52:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9582,14 +9582,14 @@
"href": "/dashboard/download/dashboard/_next/static/chunks/app/download/[...segments]/index.html",
"type": "file",
"size": 6213,
- "lastModified": "2025-09-26T01:52:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/download/[...segments]/index.txt",
"type": "file",
"size": 3595,
- "lastModified": "2025-09-26T01:52:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9601,14 +9601,14 @@
"href": "/dashboard/download/dashboard/_next/static/chunks/app/insight/index.html",
"type": "file",
"size": 10962,
- "lastModified": "2025-09-26T01:52:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/insight/index.txt",
"type": "file",
"size": 4141,
- "lastModified": "2025-09-26T01:52:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9620,14 +9620,14 @@
"href": "/dashboard/download/dashboard/_next/static/chunks/app/login/index.html",
"type": "file",
"size": 10919,
- "lastModified": "2025-09-26T01:52:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/login/index.txt",
"type": "file",
"size": 4119,
- "lastModified": "2025-09-26T01:52:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9638,51 +9638,51 @@
"name": "account/",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/panel/account/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "agent/",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/panel/agent/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "api/",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/panel/api/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/panel/index.html",
"type": "file",
"size": 19377,
- "lastModified": "2025-09-26T01:52:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/panel/index.txt",
"type": "file",
"size": 5719,
- "lastModified": "2025-09-26T01:52:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "ldp/",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/panel/ldp/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "subscription/",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/panel/subscription/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
- "name": "management/",
- "href": "/dashboard/download/dashboard/_next/static/chunks/app/panel/management/",
+ "name": "xray/",
+ "href": "/dashboard/download/dashboard/_next/static/chunks/app/panel/xray/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9694,14 +9694,14 @@
"href": "/dashboard/download/dashboard/_next/static/chunks/app/panel/account/index.html",
"type": "file",
"size": 11226,
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/panel/account/index.txt",
"type": "file",
"size": 4199,
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9713,14 +9713,14 @@
"href": "/dashboard/download/dashboard/_next/static/chunks/app/panel/agent/index.html",
"type": "file",
"size": 11188,
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/panel/agent/index.txt",
"type": "file",
"size": 4179,
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9732,14 +9732,14 @@
"href": "/dashboard/download/dashboard/_next/static/chunks/app/panel/api/index.html",
"type": "file",
"size": 11150,
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/panel/api/index.txt",
"type": "file",
"size": 4159,
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9751,14 +9751,14 @@
"href": "/dashboard/download/dashboard/_next/static/chunks/app/panel/ldp/index.html",
"type": "file",
"size": 11150,
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/panel/ldp/index.txt",
"type": "file",
"size": 4159,
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9770,33 +9770,33 @@
"href": "/dashboard/download/dashboard/_next/static/chunks/app/panel/subscription/index.html",
"type": "file",
"size": 11321,
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/panel/subscription/index.txt",
"type": "file",
"size": 4249,
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
{
- "path": "dashboard/download/dashboard/_next/static/chunks/app/panel/management/",
+ "path": "dashboard/download/dashboard/_next/static/chunks/app/panel/xray/",
"entries": [
{
"name": "index.html",
- "href": "/dashboard/download/dashboard/_next/static/chunks/app/panel/management/index.html",
+ "href": "/dashboard/download/dashboard/_next/static/chunks/app/panel/xray/index.html",
"type": "file",
"size": 11169,
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
- "href": "/dashboard/download/dashboard/_next/static/chunks/app/panel/management/index.txt",
+ "href": "/dashboard/download/dashboard/_next/static/chunks/app/panel/xray/index.txt",
"type": "file",
"size": 4169,
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9808,14 +9808,14 @@
"href": "/dashboard/download/dashboard/_next/static/chunks/app/register/index.html",
"type": "file",
"size": 10976,
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/_next/static/chunks/app/register/index.txt",
"type": "file",
"size": 4149,
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9827,14 +9827,14 @@
"href": "/dashboard/download/dashboard/_next/static/chunks/pages/index.html",
"type": "file",
"size": 12917,
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/_next/static/chunks/pages/index.txt",
"type": "file",
"size": 4420,
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9846,14 +9846,14 @@
"href": "/dashboard/download/dashboard/_next/static/css/index.html",
"type": "file",
"size": 10364,
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/_next/static/css/index.txt",
"type": "file",
"size": 3982,
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9864,39 +9864,39 @@
"name": "aliyun/",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "aws/",
"href": "/dashboard/download/dashboard/cloud_iac/aws/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "azure/",
"href": "/dashboard/download/dashboard/cloud_iac/azure/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:38Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "gcp/",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:40Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/cloud_iac/index.html",
"type": "file",
"size": 15050,
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/index.txt",
"type": "file",
"size": 4675,
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -9907,105 +9907,105 @@
"name": "ack/",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/ack/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "aliyun-emr/",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/aliyun-emr/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "aliyun-iot/",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/aliyun-iot/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "apigateway-dataworks/",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/apigateway-dataworks/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "apsaradb-rds/",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/apsaradb-rds/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "apsaradb-redis/",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/apsaradb-redis/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cloudmonitor-eventbridge/",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/cloudmonitor-eventbridge/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "dns-acceleration/",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/dns-acceleration/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "ecs/",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/ecs/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/index.html",
"type": "file",
"size": 25399,
- "lastModified": "2025-09-26T01:52:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/index.txt",
"type": "file",
"size": 6975,
- "lastModified": "2025-09-26T01:52:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "mns/",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/mns/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "oss/",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/oss/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "ram/",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/ram/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "security-group/",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/security-group/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "slb/",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/slb/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "vpc/",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/vpc/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10017,14 +10017,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/ack/index.html",
"type": "file",
"size": 11441,
- "lastModified": "2025-09-26T01:52:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/ack/index.txt",
"type": "file",
"size": 4134,
- "lastModified": "2025-09-26T01:52:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10036,14 +10036,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/aliyun-emr/index.html",
"type": "file",
"size": 11586,
- "lastModified": "2025-09-26T01:52:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/aliyun-emr/index.txt",
"type": "file",
"size": 4210,
- "lastModified": "2025-09-26T01:52:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10055,14 +10055,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/aliyun-iot/index.html",
"type": "file",
"size": 11588,
- "lastModified": "2025-09-26T01:52:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/aliyun-iot/index.txt",
"type": "file",
"size": 4211,
- "lastModified": "2025-09-26T01:52:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10074,14 +10074,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/apigateway-dataworks/index.html",
"type": "file",
"size": 11798,
- "lastModified": "2025-09-26T01:52:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/apigateway-dataworks/index.txt",
"type": "file",
"size": 4321,
- "lastModified": "2025-09-26T01:52:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10093,14 +10093,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/apsaradb-rds/index.html",
"type": "file",
"size": 11630,
- "lastModified": "2025-09-26T01:52:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/apsaradb-rds/index.txt",
"type": "file",
"size": 4233,
- "lastModified": "2025-09-26T01:52:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10112,14 +10112,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/apsaradb-redis/index.html",
"type": "file",
"size": 11670,
- "lastModified": "2025-09-26T01:52:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/apsaradb-redis/index.txt",
"type": "file",
"size": 4255,
- "lastModified": "2025-09-26T01:52:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10131,14 +10131,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/cloudmonitor-eventbridge/index.html",
"type": "file",
"size": 11882,
- "lastModified": "2025-09-26T01:52:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/cloudmonitor-eventbridge/index.txt",
"type": "file",
"size": 4365,
- "lastModified": "2025-09-26T01:52:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10150,14 +10150,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/dns-acceleration/index.html",
"type": "file",
"size": 11714,
- "lastModified": "2025-09-26T01:52:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/dns-acceleration/index.txt",
"type": "file",
"size": 4277,
- "lastModified": "2025-09-26T01:52:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10169,14 +10169,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/ecs/index.html",
"type": "file",
"size": 11441,
- "lastModified": "2025-09-26T01:52:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/ecs/index.txt",
"type": "file",
"size": 4134,
- "lastModified": "2025-09-26T01:52:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10188,14 +10188,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/mns/index.html",
"type": "file",
"size": 11441,
- "lastModified": "2025-09-26T01:52:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/mns/index.txt",
"type": "file",
"size": 4134,
- "lastModified": "2025-09-26T01:52:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10207,14 +10207,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/oss/index.html",
"type": "file",
"size": 11441,
- "lastModified": "2025-09-26T01:52:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/oss/index.txt",
"type": "file",
"size": 4134,
- "lastModified": "2025-09-26T01:52:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10226,14 +10226,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/ram/index.html",
"type": "file",
"size": 11441,
- "lastModified": "2025-09-26T01:52:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/ram/index.txt",
"type": "file",
"size": 4134,
- "lastModified": "2025-09-26T01:52:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10245,14 +10245,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/security-group/index.html",
"type": "file",
"size": 11672,
- "lastModified": "2025-09-26T01:52:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/security-group/index.txt",
"type": "file",
"size": 4255,
- "lastModified": "2025-09-26T01:52:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10264,14 +10264,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/slb/index.html",
"type": "file",
"size": 11440,
- "lastModified": "2025-09-26T01:52:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/slb/index.txt",
"type": "file",
"size": 4134,
- "lastModified": "2025-09-26T01:52:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10283,14 +10283,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/vpc/index.html",
"type": "file",
"size": 11441,
- "lastModified": "2025-09-26T01:52:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aliyun/vpc/index.txt",
"type": "file",
"size": 4134,
- "lastModified": "2025-09-26T01:52:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10301,105 +10301,105 @@
"name": "alb/",
"href": "/dashboard/download/dashboard/cloud_iac/aws/alb/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "api-gateway-appflow/",
"href": "/dashboard/download/dashboard/cloud_iac/aws/api-gateway-appflow/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "aws-iot/",
"href": "/dashboard/download/dashboard/cloud_iac/aws/aws-iot/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cloudwatch-eventbridge/",
"href": "/dashboard/download/dashboard/cloud_iac/aws/cloudwatch-eventbridge/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "ec2/",
"href": "/dashboard/download/dashboard/cloud_iac/aws/ec2/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "eks/",
"href": "/dashboard/download/dashboard/cloud_iac/aws/eks/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "elasticache/",
"href": "/dashboard/download/dashboard/cloud_iac/aws/elasticache/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "emr/",
"href": "/dashboard/download/dashboard/cloud_iac/aws/emr/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "iam/",
"href": "/dashboard/download/dashboard/cloud_iac/aws/iam/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/cloud_iac/aws/index.html",
"type": "file",
"size": 25081,
- "lastModified": "2025-09-26T01:52:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aws/index.txt",
"type": "file",
"size": 6780,
- "lastModified": "2025-09-26T01:52:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "rds/",
"href": "/dashboard/download/dashboard/cloud_iac/aws/rds/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "route53-cloudfront/",
"href": "/dashboard/download/dashboard/cloud_iac/aws/route53-cloudfront/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "s3/",
"href": "/dashboard/download/dashboard/cloud_iac/aws/s3/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "security-group/",
"href": "/dashboard/download/dashboard/cloud_iac/aws/security-group/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "sqs/",
"href": "/dashboard/download/dashboard/cloud_iac/aws/sqs/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "vpc/",
"href": "/dashboard/download/dashboard/cloud_iac/aws/vpc/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10411,14 +10411,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/aws/alb/index.html",
"type": "file",
"size": 11384,
- "lastModified": "2025-09-26T01:52:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aws/alb/index.txt",
"type": "file",
"size": 4104,
- "lastModified": "2025-09-26T01:52:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10430,14 +10430,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/aws/api-gateway-appflow/index.html",
"type": "file",
"size": 11720,
- "lastModified": "2025-09-26T01:52:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aws/api-gateway-appflow/index.txt",
"type": "file",
"size": 4280,
- "lastModified": "2025-09-26T01:52:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10449,14 +10449,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/aws/aws-iot/index.html",
"type": "file",
"size": 11468,
- "lastModified": "2025-09-26T01:52:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aws/aws-iot/index.txt",
"type": "file",
"size": 4148,
- "lastModified": "2025-09-26T01:52:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10468,14 +10468,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/aws/cloudwatch-eventbridge/index.html",
"type": "file",
"size": 11783,
- "lastModified": "2025-09-26T01:52:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aws/cloudwatch-eventbridge/index.txt",
"type": "file",
"size": 4313,
- "lastModified": "2025-09-26T01:52:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10487,14 +10487,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/aws/ec2/index.html",
"type": "file",
"size": 11384,
- "lastModified": "2025-09-26T01:52:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aws/ec2/index.txt",
"type": "file",
"size": 4104,
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10506,14 +10506,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/aws/eks/index.html",
"type": "file",
"size": 11384,
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aws/eks/index.txt",
"type": "file",
"size": 4104,
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10525,14 +10525,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/aws/elasticache/index.html",
"type": "file",
"size": 11552,
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aws/elasticache/index.txt",
"type": "file",
"size": 4192,
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10544,14 +10544,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/aws/emr/index.html",
"type": "file",
"size": 11384,
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aws/emr/index.txt",
"type": "file",
"size": 4104,
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10563,14 +10563,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/aws/iam/index.html",
"type": "file",
"size": 11384,
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aws/iam/index.txt",
"type": "file",
"size": 4104,
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10582,14 +10582,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/aws/rds/index.html",
"type": "file",
"size": 11383,
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aws/rds/index.txt",
"type": "file",
"size": 4104,
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10601,14 +10601,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/aws/route53-cloudfront/index.html",
"type": "file",
"size": 11699,
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aws/route53-cloudfront/index.txt",
"type": "file",
"size": 4269,
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10620,14 +10620,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/aws/s3/index.html",
"type": "file",
"size": 11363,
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aws/s3/index.txt",
"type": "file",
"size": 4093,
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10639,14 +10639,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/aws/security-group/index.html",
"type": "file",
"size": 11615,
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aws/security-group/index.txt",
"type": "file",
"size": 4225,
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10658,14 +10658,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/aws/sqs/index.html",
"type": "file",
"size": 11384,
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aws/sqs/index.txt",
"type": "file",
"size": 4104,
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10677,14 +10677,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/aws/vpc/index.html",
"type": "file",
"size": 11384,
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/aws/vpc/index.txt",
"type": "file",
"size": 4104,
- "lastModified": "2025-09-26T01:52:36Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10695,105 +10695,105 @@
"name": "aks/",
"href": "/dashboard/download/dashboard/cloud_iac/azure/aks/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:37Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "apim-data-factory/",
"href": "/dashboard/download/dashboard/cloud_iac/azure/apim-data-factory/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:37Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "azure-ad/",
"href": "/dashboard/download/dashboard/cloud_iac/azure/azure-ad/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:37Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "azure-database/",
"href": "/dashboard/download/dashboard/cloud_iac/azure/azure-database/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:37Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "azure-dns-front-door/",
"href": "/dashboard/download/dashboard/cloud_iac/azure/azure-dns-front-door/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:37Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "azure-iot/",
"href": "/dashboard/download/dashboard/cloud_iac/azure/azure-iot/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:37Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "azure-load-balancer/",
"href": "/dashboard/download/dashboard/cloud_iac/azure/azure-load-balancer/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:37Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "blob-storage/",
"href": "/dashboard/download/dashboard/cloud_iac/azure/blob-storage/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:37Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/cloud_iac/azure/index.html",
"type": "file",
"size": 25638,
- "lastModified": "2025-09-26T01:52:37Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/azure/index.txt",
"type": "file",
"size": 7117,
- "lastModified": "2025-09-26T01:52:37Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "monitor-event-grid/",
"href": "/dashboard/download/dashboard/cloud_iac/azure/monitor-event-grid/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:37Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "network-security-group/",
"href": "/dashboard/download/dashboard/cloud_iac/azure/network-security-group/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:38Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "redis-cache/",
"href": "/dashboard/download/dashboard/cloud_iac/azure/redis-cache/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:38Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "service-bus/",
"href": "/dashboard/download/dashboard/cloud_iac/azure/service-bus/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:38Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "synapse/",
"href": "/dashboard/download/dashboard/cloud_iac/azure/synapse/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:38Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "virtual-machines/",
"href": "/dashboard/download/dashboard/cloud_iac/azure/virtual-machines/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:38Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "virtual-network/",
"href": "/dashboard/download/dashboard/cloud_iac/azure/virtual-network/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:38Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10805,14 +10805,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/azure/aks/index.html",
"type": "file",
"size": 11422,
- "lastModified": "2025-09-26T01:52:37Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/azure/aks/index.txt",
"type": "file",
"size": 4124,
- "lastModified": "2025-09-26T01:52:37Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10824,14 +10824,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/azure/apim-data-factory/index.html",
"type": "file",
"size": 11716,
- "lastModified": "2025-09-26T01:52:37Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/azure/apim-data-factory/index.txt",
"type": "file",
"size": 4278,
- "lastModified": "2025-09-26T01:52:37Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10843,14 +10843,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/azure/azure-ad/index.html",
"type": "file",
"size": 11527,
- "lastModified": "2025-09-26T01:52:37Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/azure/azure-ad/index.txt",
"type": "file",
"size": 4179,
- "lastModified": "2025-09-26T01:52:37Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10862,14 +10862,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/azure/azure-database/index.html",
"type": "file",
"size": 11653,
- "lastModified": "2025-09-26T01:52:37Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/azure/azure-database/index.txt",
"type": "file",
"size": 4245,
- "lastModified": "2025-09-26T01:52:37Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10881,14 +10881,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/azure/azure-dns-front-door/index.html",
"type": "file",
"size": 11779,
- "lastModified": "2025-09-26T01:52:37Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/azure/azure-dns-front-door/index.txt",
"type": "file",
"size": 4311,
- "lastModified": "2025-09-26T01:52:37Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10900,14 +10900,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/azure/azure-iot/index.html",
"type": "file",
"size": 11548,
- "lastModified": "2025-09-26T01:52:37Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/azure/azure-iot/index.txt",
"type": "file",
"size": 4190,
- "lastModified": "2025-09-26T01:52:37Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10919,14 +10919,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/azure/azure-load-balancer/index.html",
"type": "file",
"size": 11758,
- "lastModified": "2025-09-26T01:52:37Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/azure/azure-load-balancer/index.txt",
"type": "file",
"size": 4300,
- "lastModified": "2025-09-26T01:52:37Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10938,14 +10938,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/azure/blob-storage/index.html",
"type": "file",
"size": 11611,
- "lastModified": "2025-09-26T01:52:37Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/azure/blob-storage/index.txt",
"type": "file",
"size": 4223,
- "lastModified": "2025-09-26T01:52:37Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10957,14 +10957,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/azure/monitor-event-grid/index.html",
"type": "file",
"size": 11737,
- "lastModified": "2025-09-26T01:52:37Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/azure/monitor-event-grid/index.txt",
"type": "file",
"size": 4289,
- "lastModified": "2025-09-26T01:52:37Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10976,14 +10976,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/azure/network-security-group/index.html",
"type": "file",
"size": 11821,
- "lastModified": "2025-09-26T01:52:38Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/azure/network-security-group/index.txt",
"type": "file",
"size": 4333,
- "lastModified": "2025-09-26T01:52:38Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -10995,14 +10995,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/azure/redis-cache/index.html",
"type": "file",
"size": 11590,
- "lastModified": "2025-09-26T01:52:38Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/azure/redis-cache/index.txt",
"type": "file",
"size": 4212,
- "lastModified": "2025-09-26T01:52:38Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11014,14 +11014,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/azure/service-bus/index.html",
"type": "file",
"size": 11589,
- "lastModified": "2025-09-26T01:52:38Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/azure/service-bus/index.txt",
"type": "file",
"size": 4212,
- "lastModified": "2025-09-26T01:52:38Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11033,14 +11033,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/azure/synapse/index.html",
"type": "file",
"size": 11505,
- "lastModified": "2025-09-26T01:52:38Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/azure/synapse/index.txt",
"type": "file",
"size": 4168,
- "lastModified": "2025-09-26T01:52:38Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11052,14 +11052,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/azure/virtual-machines/index.html",
"type": "file",
"size": 11694,
- "lastModified": "2025-09-26T01:52:38Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/azure/virtual-machines/index.txt",
"type": "file",
"size": 4267,
- "lastModified": "2025-09-26T01:52:38Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11071,14 +11071,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/azure/virtual-network/index.html",
"type": "file",
"size": 11674,
- "lastModified": "2025-09-26T01:52:38Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/azure/virtual-network/index.txt",
"type": "file",
"size": 4256,
- "lastModified": "2025-09-26T01:52:38Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11089,105 +11089,105 @@
"name": "apigateway-integration/",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/apigateway-integration/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:38Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cloud-dns-cdn/",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/cloud-dns-cdn/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:38Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cloud-iam/",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/cloud-iam/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:38Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cloud-load-balancing/",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/cloud-load-balancing/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:39Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cloud-sql/",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/cloud-sql/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:39Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cloud-storage/",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/cloud-storage/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:39Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "compute-engine/",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/compute-engine/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:39Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "dataproc/",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/dataproc/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:39Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "gcp-iot/",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/gcp-iot/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:39Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "gke/",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/gke/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:39Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/index.html",
"type": "file",
"size": 25340,
- "lastModified": "2025-09-26T01:52:38Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/index.txt",
"type": "file",
"size": 6936,
- "lastModified": "2025-09-26T01:52:38Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "memorystore/",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/memorystore/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:39Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "operations-eventarc/",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/operations-eventarc/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:39Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "pubsub/",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/pubsub/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:39Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "vpc/",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/vpc/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:40Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "vpc-firewall/",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/vpc-firewall/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:40Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11199,14 +11199,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/gcp/apigateway-integration/index.html",
"type": "file",
"size": 11783,
- "lastModified": "2025-09-26T01:52:38Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/apigateway-integration/index.txt",
"type": "file",
"size": 4313,
- "lastModified": "2025-09-26T01:52:38Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11218,14 +11218,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/gcp/cloud-dns-cdn/index.html",
"type": "file",
"size": 11594,
- "lastModified": "2025-09-26T01:52:38Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/cloud-dns-cdn/index.txt",
"type": "file",
"size": 4214,
- "lastModified": "2025-09-26T01:52:38Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11237,14 +11237,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/gcp/cloud-iam/index.html",
"type": "file",
"size": 11510,
- "lastModified": "2025-09-26T01:52:38Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/cloud-iam/index.txt",
"type": "file",
"size": 4170,
- "lastModified": "2025-09-26T01:52:38Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11256,14 +11256,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/gcp/cloud-load-balancing/index.html",
"type": "file",
"size": 11741,
- "lastModified": "2025-09-26T01:52:39Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/cloud-load-balancing/index.txt",
"type": "file",
"size": 4291,
- "lastModified": "2025-09-26T01:52:39Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11275,14 +11275,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/gcp/cloud-sql/index.html",
"type": "file",
"size": 11510,
- "lastModified": "2025-09-26T01:52:39Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/cloud-sql/index.txt",
"type": "file",
"size": 4170,
- "lastModified": "2025-09-26T01:52:39Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11294,14 +11294,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/gcp/cloud-storage/index.html",
"type": "file",
"size": 11594,
- "lastModified": "2025-09-26T01:52:39Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/cloud-storage/index.txt",
"type": "file",
"size": 4214,
- "lastModified": "2025-09-26T01:52:39Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11313,14 +11313,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/gcp/compute-engine/index.html",
"type": "file",
"size": 11615,
- "lastModified": "2025-09-26T01:52:39Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/compute-engine/index.txt",
"type": "file",
"size": 4225,
- "lastModified": "2025-09-26T01:52:39Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11332,14 +11332,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/gcp/dataproc/index.html",
"type": "file",
"size": 11489,
- "lastModified": "2025-09-26T01:52:39Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/dataproc/index.txt",
"type": "file",
"size": 4159,
- "lastModified": "2025-09-26T01:52:39Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11351,14 +11351,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/gcp/gcp-iot/index.html",
"type": "file",
"size": 11468,
- "lastModified": "2025-09-26T01:52:39Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/gcp-iot/index.txt",
"type": "file",
"size": 4148,
- "lastModified": "2025-09-26T01:52:39Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11370,14 +11370,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/gcp/gke/index.html",
"type": "file",
"size": 11384,
- "lastModified": "2025-09-26T01:52:39Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/gke/index.txt",
"type": "file",
"size": 4104,
- "lastModified": "2025-09-26T01:52:39Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11389,14 +11389,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/gcp/memorystore/index.html",
"type": "file",
"size": 11552,
- "lastModified": "2025-09-26T01:52:39Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/memorystore/index.txt",
"type": "file",
"size": 4192,
- "lastModified": "2025-09-26T01:52:39Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11408,14 +11408,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/gcp/operations-eventarc/index.html",
"type": "file",
"size": 11720,
- "lastModified": "2025-09-26T01:52:39Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/operations-eventarc/index.txt",
"type": "file",
"size": 4280,
- "lastModified": "2025-09-26T01:52:39Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11427,14 +11427,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/gcp/pubsub/index.html",
"type": "file",
"size": 11447,
- "lastModified": "2025-09-26T01:52:39Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/pubsub/index.txt",
"type": "file",
"size": 4137,
- "lastModified": "2025-09-26T01:52:39Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11446,14 +11446,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/gcp/vpc/index.html",
"type": "file",
"size": 11384,
- "lastModified": "2025-09-26T01:52:40Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/vpc/index.txt",
"type": "file",
"size": 4104,
- "lastModified": "2025-09-26T01:52:40Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11465,14 +11465,14 @@
"href": "/dashboard/download/dashboard/cloud_iac/gcp/vpc-firewall/index.html",
"type": "file",
"size": 11570,
- "lastModified": "2025-09-26T01:52:39Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/cloud_iac/gcp/vpc-firewall/index.txt",
"type": "file",
"size": 4203,
- "lastModified": "2025-09-26T01:52:40Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11484,14 +11484,14 @@
"href": "/dashboard/download/dashboard/demo/index.html",
"type": "file",
"size": 10841,
- "lastModified": "2025-09-26T01:52:40Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/demo/index.txt",
"type": "file",
"size": 3962,
- "lastModified": "2025-09-26T01:52:40Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11503,14 +11503,14 @@
"href": "/dashboard/download/dashboard/dl-index/index.html",
"type": "file",
"size": 11019,
- "lastModified": "2025-09-26T01:52:40Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/dl-index/index.txt",
"type": "file",
"size": 4054,
- "lastModified": "2025-09-26T01:52:40Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11522,86 +11522,86 @@
"href": "/dashboard/download/dashboard/docs/index.html",
"type": "file",
"size": 22463,
- "lastModified": "2025-09-26T01:52:40Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/index.txt",
"type": "file",
"size": 6323,
- "lastModified": "2025-09-26T01:52:40Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "interview-qa/",
"href": "/dashboard/download/dashboard/docs/interview-qa/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "keycloak/",
"href": "/dashboard/download/dashboard/docs/keycloak/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:42Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "keycloak-v30-17935243600/",
"href": "/dashboard/download/dashboard/docs/keycloak-v30-17935243600/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "landingzone/",
"href": "/dashboard/download/dashboard/docs/landingzone/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "landingzone-v30-17935243600/",
"href": "/dashboard/download/dashboard/docs/landingzone-v30-17935243600/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:42Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "linux-k8s-ops/",
"href": "/dashboard/download/dashboard/docs/linux-k8s-ops/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "observability/",
"href": "/dashboard/download/dashboard/docs/observability/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:44Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal/",
"href": "/dashboard/download/dashboard/docs/personal/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v30-17935243600/",
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:45Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "techexploration/",
"href": "/dashboard/download/dashboard/docs/techexploration/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:52Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "techexploration-v30-17935243600/",
"href": "/dashboard/download/dashboard/docs/techexploration-v30-17935243600/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:52Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "the-indiedeveloper-fullstack-roadmap/",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11612,63 +11612,63 @@
"name": "cn-v23-17739490366/",
"href": "/dashboard/download/dashboard/docs/interview-qa/cn-v23-17739490366/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:40Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v26-17740473328/",
"href": "/dashboard/download/dashboard/docs/interview-qa/cn-v26-17740473328/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:40Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v27-17740487419/",
"href": "/dashboard/download/dashboard/docs/interview-qa/cn-v27-17740487419/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:40Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v28-17749789283/",
"href": "/dashboard/download/dashboard/docs/interview-qa/cn-v28-17749789283/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:40Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v29-17749815392/",
"href": "/dashboard/download/dashboard/docs/interview-qa/cn-v29-17749815392/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v30-17935243600/",
"href": "/dashboard/download/dashboard/docs/interview-qa/cn-v30-17935243600/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v31-17976868329/",
"href": "/dashboard/download/dashboard/docs/interview-qa/cn-v31-17976868329/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v32-17977204714/",
"href": "/dashboard/download/dashboard/docs/interview-qa/cn-v32-17977204714/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/docs/interview-qa/index.html",
"type": "file",
"size": 19492,
- "lastModified": "2025-09-26T01:52:40Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/interview-qa/index.txt",
"type": "file",
"size": 5866,
- "lastModified": "2025-09-26T01:52:40Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11680,14 +11680,14 @@
"href": "/dashboard/download/dashboard/docs/interview-qa/cn-v23-17739490366/index.html",
"type": "file",
"size": 11771,
- "lastModified": "2025-09-26T01:52:40Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/interview-qa/cn-v23-17739490366/index.txt",
"type": "file",
"size": 4310,
- "lastModified": "2025-09-26T01:52:40Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11699,14 +11699,14 @@
"href": "/dashboard/download/dashboard/docs/interview-qa/cn-v26-17740473328/index.html",
"type": "file",
"size": 11771,
- "lastModified": "2025-09-26T01:52:40Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/interview-qa/cn-v26-17740473328/index.txt",
"type": "file",
"size": 4310,
- "lastModified": "2025-09-26T01:52:40Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11718,14 +11718,14 @@
"href": "/dashboard/download/dashboard/docs/interview-qa/cn-v27-17740487419/index.html",
"type": "file",
"size": 11771,
- "lastModified": "2025-09-26T01:52:40Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/interview-qa/cn-v27-17740487419/index.txt",
"type": "file",
"size": 4310,
- "lastModified": "2025-09-26T01:52:40Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11737,14 +11737,14 @@
"href": "/dashboard/download/dashboard/docs/interview-qa/cn-v28-17749789283/index.html",
"type": "file",
"size": 11771,
- "lastModified": "2025-09-26T01:52:40Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/interview-qa/cn-v28-17749789283/index.txt",
"type": "file",
"size": 4310,
- "lastModified": "2025-09-26T01:52:40Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11756,14 +11756,14 @@
"href": "/dashboard/download/dashboard/docs/interview-qa/cn-v29-17749815392/index.html",
"type": "file",
"size": 11771,
- "lastModified": "2025-09-26T01:52:40Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/interview-qa/cn-v29-17749815392/index.txt",
"type": "file",
"size": 4310,
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11775,14 +11775,14 @@
"href": "/dashboard/download/dashboard/docs/interview-qa/cn-v30-17935243600/index.html",
"type": "file",
"size": 11771,
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/interview-qa/cn-v30-17935243600/index.txt",
"type": "file",
"size": 4310,
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11794,14 +11794,14 @@
"href": "/dashboard/download/dashboard/docs/interview-qa/cn-v31-17976868329/index.html",
"type": "file",
"size": 11771,
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/interview-qa/cn-v31-17976868329/index.txt",
"type": "file",
"size": 4310,
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11813,14 +11813,14 @@
"href": "/dashboard/download/dashboard/docs/interview-qa/cn-v32-17977204714/index.html",
"type": "file",
"size": 11771,
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/interview-qa/cn-v32-17977204714/index.txt",
"type": "file",
"size": 4310,
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11831,51 +11831,51 @@
"name": "en-v31-17976868329/",
"href": "/dashboard/download/dashboard/docs/keycloak/en-v31-17976868329/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v32-17977204714/",
"href": "/dashboard/download/dashboard/docs/keycloak/en-v32-17977204714/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/docs/keycloak/index.html",
"type": "file",
"size": 17564,
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/keycloak/index.txt",
"type": "file",
"size": 5406,
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "keycloak-v24-17740025432/",
"href": "/dashboard/download/dashboard/docs/keycloak/keycloak-v24-17740025432/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "keycloak-v26-17740473328/",
"href": "/dashboard/download/dashboard/docs/keycloak/keycloak-v26-17740473328/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "keycloak-v28-17749789283/",
"href": "/dashboard/download/dashboard/docs/keycloak/keycloak-v28-17749789283/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:42Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "keycloak-v29-17749815392/",
"href": "/dashboard/download/dashboard/docs/keycloak/keycloak-v29-17749815392/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:42Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11887,14 +11887,14 @@
"href": "/dashboard/download/dashboard/docs/keycloak/en-v31-17976868329/index.html",
"type": "file",
"size": 11696,
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/keycloak/en-v31-17976868329/index.txt",
"type": "file",
"size": 4270,
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11906,14 +11906,14 @@
"href": "/dashboard/download/dashboard/docs/keycloak/en-v32-17977204714/index.html",
"type": "file",
"size": 11696,
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/keycloak/en-v32-17977204714/index.txt",
"type": "file",
"size": 4270,
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11925,14 +11925,14 @@
"href": "/dashboard/download/dashboard/docs/keycloak/keycloak-v24-17740025432/index.html",
"type": "file",
"size": 11821,
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/keycloak/keycloak-v24-17740025432/index.txt",
"type": "file",
"size": 4336,
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11944,14 +11944,14 @@
"href": "/dashboard/download/dashboard/docs/keycloak/keycloak-v26-17740473328/index.html",
"type": "file",
"size": 11821,
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/keycloak/keycloak-v26-17740473328/index.txt",
"type": "file",
"size": 4336,
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11963,14 +11963,14 @@
"href": "/dashboard/download/dashboard/docs/keycloak/keycloak-v28-17749789283/index.html",
"type": "file",
"size": 11821,
- "lastModified": "2025-09-26T01:52:42Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/keycloak/keycloak-v28-17749789283/index.txt",
"type": "file",
"size": 4336,
- "lastModified": "2025-09-26T01:52:42Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -11982,14 +11982,14 @@
"href": "/dashboard/download/dashboard/docs/keycloak/keycloak-v29-17749815392/index.html",
"type": "file",
"size": 11821,
- "lastModified": "2025-09-26T01:52:42Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/keycloak/keycloak-v29-17749815392/index.txt",
"type": "file",
"size": 4336,
- "lastModified": "2025-09-26T01:52:42Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -12001,20 +12001,20 @@
"href": "/dashboard/download/dashboard/docs/keycloak-v30-17935243600/index.html",
"type": "file",
"size": 13254,
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/keycloak-v30-17935243600/index.txt",
"type": "file",
"size": 4541,
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "keycloak-sso-design-and-implementation/",
"href": "/dashboard/download/dashboard/docs/keycloak-v30-17935243600/keycloak-sso-design-and-implementation/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -12026,14 +12026,14 @@
"href": "/dashboard/download/dashboard/docs/keycloak-v30-17935243600/keycloak-sso-design-and-implementation/index.html",
"type": "file",
"size": 12418,
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/keycloak-v30-17935243600/keycloak-sso-design-and-implementation/index.txt",
"type": "file",
"size": 4649,
- "lastModified": "2025-09-26T01:52:41Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -12044,45 +12044,45 @@
"name": "en-v31-17976868329/",
"href": "/dashboard/download/dashboard/docs/landingzone/en-v31-17976868329/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:42Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v32-17977204714/",
"href": "/dashboard/download/dashboard/docs/landingzone/en-v32-17977204714/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:42Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/docs/landingzone/index.html",
"type": "file",
"size": 16752,
- "lastModified": "2025-09-26T01:52:42Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/landingzone/index.txt",
"type": "file",
"size": 5266,
- "lastModified": "2025-09-26T01:52:42Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "landingzone-v27-17740487419/",
"href": "/dashboard/download/dashboard/docs/landingzone/landingzone-v27-17740487419/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:42Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "landingzone-v28-17749789283/",
"href": "/dashboard/download/dashboard/docs/landingzone/landingzone-v28-17749789283/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:42Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "landingzone-v29-17749815392/",
"href": "/dashboard/download/dashboard/docs/landingzone/landingzone-v29-17749815392/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -12094,14 +12094,14 @@
"href": "/dashboard/download/dashboard/docs/landingzone/en-v31-17976868329/index.html",
"type": "file",
"size": 11753,
- "lastModified": "2025-09-26T01:52:42Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/landingzone/en-v31-17976868329/index.txt",
"type": "file",
"size": 4300,
- "lastModified": "2025-09-26T01:52:42Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -12113,14 +12113,14 @@
"href": "/dashboard/download/dashboard/docs/landingzone/en-v32-17977204714/index.html",
"type": "file",
"size": 11753,
- "lastModified": "2025-09-26T01:52:42Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/landingzone/en-v32-17977204714/index.txt",
"type": "file",
"size": 4300,
- "lastModified": "2025-09-26T01:52:42Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -12132,14 +12132,14 @@
"href": "/dashboard/download/dashboard/docs/landingzone/landingzone-v27-17740487419/index.html",
"type": "file",
"size": 11942,
- "lastModified": "2025-09-26T01:52:42Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/landingzone/landingzone-v27-17740487419/index.txt",
"type": "file",
"size": 4399,
- "lastModified": "2025-09-26T01:52:42Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -12151,14 +12151,14 @@
"href": "/dashboard/download/dashboard/docs/landingzone/landingzone-v28-17749789283/index.html",
"type": "file",
"size": 11942,
- "lastModified": "2025-09-26T01:52:42Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/landingzone/landingzone-v28-17749789283/index.txt",
"type": "file",
"size": 4399,
- "lastModified": "2025-09-26T01:52:42Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -12170,14 +12170,14 @@
"href": "/dashboard/download/dashboard/docs/landingzone/landingzone-v29-17749815392/index.html",
"type": "file",
"size": 11942,
- "lastModified": "2025-09-26T01:52:42Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/landingzone/landingzone-v29-17749815392/index.txt",
"type": "file",
"size": 4399,
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -12189,20 +12189,20 @@
"href": "/dashboard/download/dashboard/docs/landingzone-v30-17935243600/index.html",
"type": "file",
"size": 13325,
- "lastModified": "2025-09-26T01:52:42Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/landingzone-v30-17935243600/index.txt",
"type": "file",
"size": 4580,
- "lastModified": "2025-09-26T01:52:42Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "landing-zone-design-and-implementation/",
"href": "/dashboard/download/dashboard/docs/landingzone-v30-17935243600/landing-zone-design-and-implementation/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:42Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -12214,14 +12214,14 @@
"href": "/dashboard/download/dashboard/docs/landingzone-v30-17935243600/landing-zone-design-and-implementation/index.html",
"type": "file",
"size": 12474,
- "lastModified": "2025-09-26T01:52:42Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/landingzone-v30-17935243600/landing-zone-design-and-implementation/index.txt",
"type": "file",
"size": 4679,
- "lastModified": "2025-09-26T01:52:42Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -12232,57 +12232,57 @@
"name": "cn-v25-17740048053/",
"href": "/dashboard/download/dashboard/docs/linux-k8s-ops/cn-v25-17740048053/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v27-17740487419/",
"href": "/dashboard/download/dashboard/docs/linux-k8s-ops/cn-v27-17740487419/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v28-17749789283/",
"href": "/dashboard/download/dashboard/docs/linux-k8s-ops/cn-v28-17749789283/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v29-17749815392/",
"href": "/dashboard/download/dashboard/docs/linux-k8s-ops/cn-v29-17749815392/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v30-17935243600/",
"href": "/dashboard/download/dashboard/docs/linux-k8s-ops/cn-v30-17935243600/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v31-17976868329/",
"href": "/dashboard/download/dashboard/docs/linux-k8s-ops/cn-v31-17976868329/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v32-17977204714/",
"href": "/dashboard/download/dashboard/docs/linux-k8s-ops/cn-v32-17977204714/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/docs/linux-k8s-ops/index.html",
"type": "file",
"size": 18588,
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/linux-k8s-ops/index.txt",
"type": "file",
"size": 5671,
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -12294,14 +12294,14 @@
"href": "/dashboard/download/dashboard/docs/linux-k8s-ops/cn-v25-17740048053/index.html",
"type": "file",
"size": 11790,
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/linux-k8s-ops/cn-v25-17740048053/index.txt",
"type": "file",
"size": 4320,
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -12313,14 +12313,14 @@
"href": "/dashboard/download/dashboard/docs/linux-k8s-ops/cn-v27-17740487419/index.html",
"type": "file",
"size": 11790,
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/linux-k8s-ops/cn-v27-17740487419/index.txt",
"type": "file",
"size": 4320,
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -12332,14 +12332,14 @@
"href": "/dashboard/download/dashboard/docs/linux-k8s-ops/cn-v28-17749789283/index.html",
"type": "file",
"size": 11790,
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/linux-k8s-ops/cn-v28-17749789283/index.txt",
"type": "file",
"size": 4320,
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -12351,14 +12351,14 @@
"href": "/dashboard/download/dashboard/docs/linux-k8s-ops/cn-v29-17749815392/index.html",
"type": "file",
"size": 11790,
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/linux-k8s-ops/cn-v29-17749815392/index.txt",
"type": "file",
"size": 4320,
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -12370,14 +12370,14 @@
"href": "/dashboard/download/dashboard/docs/linux-k8s-ops/cn-v30-17935243600/index.html",
"type": "file",
"size": 11790,
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/linux-k8s-ops/cn-v30-17935243600/index.txt",
"type": "file",
"size": 4320,
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -12389,14 +12389,14 @@
"href": "/dashboard/download/dashboard/docs/linux-k8s-ops/cn-v31-17976868329/index.html",
"type": "file",
"size": 11790,
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/linux-k8s-ops/cn-v31-17976868329/index.txt",
"type": "file",
"size": 4320,
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -12408,14 +12408,14 @@
"href": "/dashboard/download/dashboard/docs/linux-k8s-ops/cn-v32-17977204714/index.html",
"type": "file",
"size": 11790,
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/linux-k8s-ops/cn-v32-17977204714/index.txt",
"type": "file",
"size": 4320,
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -12426,57 +12426,57 @@
"name": "cn-v20-17738959811/",
"href": "/dashboard/download/dashboard/docs/observability/cn-v20-17738959811/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v23-17739490366/",
"href": "/dashboard/download/dashboard/docs/observability/cn-v23-17739490366/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:44Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v28-17749789283/",
"href": "/dashboard/download/dashboard/docs/observability/cn-v28-17749789283/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:44Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v29-17749815392/",
"href": "/dashboard/download/dashboard/docs/observability/cn-v29-17749815392/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:44Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v30-17935243600/",
"href": "/dashboard/download/dashboard/docs/observability/cn-v30-17935243600/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:44Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v31-17976868329/",
"href": "/dashboard/download/dashboard/docs/observability/cn-v31-17976868329/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:44Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v32-17977204714/",
"href": "/dashboard/download/dashboard/docs/observability/cn-v32-17977204714/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:44Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/docs/observability/index.html",
"type": "file",
"size": 18588,
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/observability/index.txt",
"type": "file",
"size": 5671,
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -12488,14 +12488,14 @@
"href": "/dashboard/download/dashboard/docs/observability/cn-v20-17738959811/index.html",
"type": "file",
"size": 11791,
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/observability/cn-v20-17738959811/index.txt",
"type": "file",
"size": 4320,
- "lastModified": "2025-09-26T01:52:43Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -12507,14 +12507,14 @@
"href": "/dashboard/download/dashboard/docs/observability/cn-v23-17739490366/index.html",
"type": "file",
"size": 11791,
- "lastModified": "2025-09-26T01:52:44Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/observability/cn-v23-17739490366/index.txt",
"type": "file",
"size": 4320,
- "lastModified": "2025-09-26T01:52:44Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -12526,14 +12526,14 @@
"href": "/dashboard/download/dashboard/docs/observability/cn-v28-17749789283/index.html",
"type": "file",
"size": 11791,
- "lastModified": "2025-09-26T01:52:44Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/observability/cn-v28-17749789283/index.txt",
"type": "file",
"size": 4320,
- "lastModified": "2025-09-26T01:52:44Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -12545,14 +12545,14 @@
"href": "/dashboard/download/dashboard/docs/observability/cn-v29-17749815392/index.html",
"type": "file",
"size": 11791,
- "lastModified": "2025-09-26T01:52:44Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/observability/cn-v29-17749815392/index.txt",
"type": "file",
"size": 4320,
- "lastModified": "2025-09-26T01:52:44Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -12564,14 +12564,14 @@
"href": "/dashboard/download/dashboard/docs/observability/cn-v30-17935243600/index.html",
"type": "file",
"size": 11791,
- "lastModified": "2025-09-26T01:52:44Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/observability/cn-v30-17935243600/index.txt",
"type": "file",
"size": 4320,
- "lastModified": "2025-09-26T01:52:44Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -12583,14 +12583,14 @@
"href": "/dashboard/download/dashboard/docs/observability/cn-v31-17976868329/index.html",
"type": "file",
"size": 11791,
- "lastModified": "2025-09-26T01:52:44Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/observability/cn-v31-17976868329/index.txt",
"type": "file",
"size": 4320,
- "lastModified": "2025-09-26T01:52:44Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -12602,14 +12602,14 @@
"href": "/dashboard/download/dashboard/docs/observability/cn-v32-17977204714/index.html",
"type": "file",
"size": 11791,
- "lastModified": "2025-09-26T01:52:44Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/observability/cn-v32-17977204714/index.txt",
"type": "file",
"size": 4320,
- "lastModified": "2025-09-26T01:52:44Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -12620,375 +12620,375 @@
"name": "en-v31-17976868329/",
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:47Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v31-17976868329-10/",
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-10/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v31-17976868329-11/",
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-11/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v31-17976868329-12/",
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-12/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v31-17976868329-2/",
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-2/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v31-17976868329-3/",
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-3/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v31-17976868329-4/",
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-4/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v31-17976868329-5/",
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-5/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v31-17976868329-6/",
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-6/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v31-17976868329-7/",
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-7/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v31-17976868329-8/",
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-8/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v31-17976868329-9/",
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-9/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v32-17977204714/",
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:48Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v32-17977204714-10/",
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-10/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:47Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v32-17977204714-11/",
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-11/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:47Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v32-17977204714-12/",
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-12/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:47Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v32-17977204714-2/",
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-2/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:47Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v32-17977204714-3/",
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-3/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:47Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v32-17977204714-4/",
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-4/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:47Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v32-17977204714-5/",
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-5/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:47Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v32-17977204714-6/",
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-6/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:47Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v32-17977204714-7/",
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-7/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:47Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v32-17977204714-8/",
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-8/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:48Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v32-17977204714-9/",
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-9/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:48Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/docs/personal/index.html",
"type": "file",
"size": 69589,
- "lastModified": "2025-09-26T01:52:45Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/index.txt",
"type": "file",
"size": 17806,
- "lastModified": "2025-09-26T01:52:45Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v27-17740487419/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:49Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v27-17740487419-10/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-10/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:48Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v27-17740487419-11/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-11/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:48Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v27-17740487419-12/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-12/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:48Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v27-17740487419-2/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-2/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:48Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v27-17740487419-3/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-3/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:48Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v27-17740487419-4/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-4/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:48Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v27-17740487419-5/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-5/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:48Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v27-17740487419-6/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-6/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:49Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v27-17740487419-7/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-7/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:49Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v27-17740487419-8/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-8/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:49Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v27-17740487419-9/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-9/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:49Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v28-17749789283/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:50Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v28-17749789283-10/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-10/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:49Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v28-17749789283-11/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-11/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:49Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v28-17749789283-12/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-12/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:49Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v28-17749789283-2/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-2/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:49Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v28-17749789283-3/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-3/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:49Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v28-17749789283-4/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-4/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:50Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v28-17749789283-5/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-5/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:50Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v28-17749789283-6/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-6/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:50Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v28-17749789283-7/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-7/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:50Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v28-17749789283-8/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-8/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:50Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v28-17749789283-9/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-9/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:50Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v29-17749815392/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v29-17749815392-10/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-10/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:50Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v29-17749815392-11/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-11/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:50Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v29-17749815392-12/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-12/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v29-17749815392-2/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-2/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v29-17749815392-3/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-3/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v29-17749815392-4/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-4/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v29-17749815392-5/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-5/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v29-17749815392-6/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-6/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v29-17749815392-7/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-7/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v29-17749815392-8/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-8/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-v29-17749815392-9/",
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-9/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13000,14 +13000,14 @@
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329/index.html",
"type": "file",
"size": 11696,
- "lastModified": "2025-09-26T01:52:47Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329/index.txt",
"type": "file",
"size": 4270,
- "lastModified": "2025-09-26T01:52:47Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13019,14 +13019,14 @@
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-10/index.html",
"type": "file",
"size": 11759,
- "lastModified": "2025-09-26T01:52:45Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-10/index.txt",
"type": "file",
"size": 4303,
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13038,14 +13038,14 @@
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-11/index.html",
"type": "file",
"size": 11759,
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-11/index.txt",
"type": "file",
"size": 4303,
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13057,14 +13057,14 @@
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-12/index.html",
"type": "file",
"size": 11759,
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-12/index.txt",
"type": "file",
"size": 4303,
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13076,14 +13076,14 @@
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-2/index.html",
"type": "file",
"size": 11738,
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-2/index.txt",
"type": "file",
"size": 4292,
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13095,14 +13095,14 @@
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-3/index.html",
"type": "file",
"size": 11737,
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-3/index.txt",
"type": "file",
"size": 4292,
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13114,14 +13114,14 @@
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-4/index.html",
"type": "file",
"size": 11737,
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-4/index.txt",
"type": "file",
"size": 4292,
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13133,14 +13133,14 @@
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-5/index.html",
"type": "file",
"size": 11738,
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-5/index.txt",
"type": "file",
"size": 4292,
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13152,14 +13152,14 @@
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-6/index.html",
"type": "file",
"size": 11738,
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-6/index.txt",
"type": "file",
"size": 4292,
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13171,14 +13171,14 @@
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-7/index.html",
"type": "file",
"size": 11738,
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-7/index.txt",
"type": "file",
"size": 4292,
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13190,14 +13190,14 @@
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-8/index.html",
"type": "file",
"size": 11738,
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-8/index.txt",
"type": "file",
"size": 4292,
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13209,14 +13209,14 @@
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-9/index.html",
"type": "file",
"size": 11738,
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/en-v31-17976868329-9/index.txt",
"type": "file",
"size": 4292,
- "lastModified": "2025-09-26T01:52:46Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13228,14 +13228,14 @@
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714/index.html",
"type": "file",
"size": 11696,
- "lastModified": "2025-09-26T01:52:48Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714/index.txt",
"type": "file",
"size": 4270,
- "lastModified": "2025-09-26T01:52:48Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13247,14 +13247,14 @@
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-10/index.html",
"type": "file",
"size": 11759,
- "lastModified": "2025-09-26T01:52:47Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-10/index.txt",
"type": "file",
"size": 4303,
- "lastModified": "2025-09-26T01:52:47Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13266,14 +13266,14 @@
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-11/index.html",
"type": "file",
"size": 11759,
- "lastModified": "2025-09-26T01:52:47Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-11/index.txt",
"type": "file",
"size": 4303,
- "lastModified": "2025-09-26T01:52:47Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13285,14 +13285,14 @@
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-12/index.html",
"type": "file",
"size": 11759,
- "lastModified": "2025-09-26T01:52:47Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-12/index.txt",
"type": "file",
"size": 4303,
- "lastModified": "2025-09-26T01:52:47Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13304,14 +13304,14 @@
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-2/index.html",
"type": "file",
"size": 11738,
- "lastModified": "2025-09-26T01:52:47Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-2/index.txt",
"type": "file",
"size": 4292,
- "lastModified": "2025-09-26T01:52:47Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13323,14 +13323,14 @@
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-3/index.html",
"type": "file",
"size": 11737,
- "lastModified": "2025-09-26T01:52:47Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-3/index.txt",
"type": "file",
"size": 4292,
- "lastModified": "2025-09-26T01:52:47Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13342,14 +13342,14 @@
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-4/index.html",
"type": "file",
"size": 11737,
- "lastModified": "2025-09-26T01:52:47Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-4/index.txt",
"type": "file",
"size": 4292,
- "lastModified": "2025-09-26T01:52:47Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13361,14 +13361,14 @@
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-5/index.html",
"type": "file",
"size": 11738,
- "lastModified": "2025-09-26T01:52:47Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-5/index.txt",
"type": "file",
"size": 4292,
- "lastModified": "2025-09-26T01:52:47Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13380,14 +13380,14 @@
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-6/index.html",
"type": "file",
"size": 11738,
- "lastModified": "2025-09-26T01:52:47Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-6/index.txt",
"type": "file",
"size": 4292,
- "lastModified": "2025-09-26T01:52:47Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13399,14 +13399,14 @@
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-7/index.html",
"type": "file",
"size": 11738,
- "lastModified": "2025-09-26T01:52:47Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-7/index.txt",
"type": "file",
"size": 4292,
- "lastModified": "2025-09-26T01:52:47Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13418,14 +13418,14 @@
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-8/index.html",
"type": "file",
"size": 11738,
- "lastModified": "2025-09-26T01:52:48Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-8/index.txt",
"type": "file",
"size": 4292,
- "lastModified": "2025-09-26T01:52:48Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13437,14 +13437,14 @@
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-9/index.html",
"type": "file",
"size": 11738,
- "lastModified": "2025-09-26T01:52:48Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/en-v32-17977204714-9/index.txt",
"type": "file",
"size": 4292,
- "lastModified": "2025-09-26T01:52:48Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13456,14 +13456,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419/index.html",
"type": "file",
"size": 11821,
- "lastModified": "2025-09-26T01:52:49Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419/index.txt",
"type": "file",
"size": 4336,
- "lastModified": "2025-09-26T01:52:49Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13475,14 +13475,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-10/index.html",
"type": "file",
"size": 11884,
- "lastModified": "2025-09-26T01:52:48Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-10/index.txt",
"type": "file",
"size": 4369,
- "lastModified": "2025-09-26T01:52:48Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13494,14 +13494,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-11/index.html",
"type": "file",
"size": 11884,
- "lastModified": "2025-09-26T01:52:48Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-11/index.txt",
"type": "file",
"size": 4369,
- "lastModified": "2025-09-26T01:52:48Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13513,14 +13513,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-12/index.html",
"type": "file",
"size": 11885,
- "lastModified": "2025-09-26T01:52:48Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-12/index.txt",
"type": "file",
"size": 4369,
- "lastModified": "2025-09-26T01:52:48Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13532,14 +13532,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-2/index.html",
"type": "file",
"size": 11864,
- "lastModified": "2025-09-26T01:52:48Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-2/index.txt",
"type": "file",
"size": 4358,
- "lastModified": "2025-09-26T01:52:48Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13551,14 +13551,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-3/index.html",
"type": "file",
"size": 11863,
- "lastModified": "2025-09-26T01:52:48Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-3/index.txt",
"type": "file",
"size": 4358,
- "lastModified": "2025-09-26T01:52:48Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13570,14 +13570,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-4/index.html",
"type": "file",
"size": 11863,
- "lastModified": "2025-09-26T01:52:48Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-4/index.txt",
"type": "file",
"size": 4358,
- "lastModified": "2025-09-26T01:52:48Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13589,14 +13589,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-5/index.html",
"type": "file",
"size": 11864,
- "lastModified": "2025-09-26T01:52:48Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-5/index.txt",
"type": "file",
"size": 4358,
- "lastModified": "2025-09-26T01:52:48Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13608,14 +13608,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-6/index.html",
"type": "file",
"size": 11864,
- "lastModified": "2025-09-26T01:52:49Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-6/index.txt",
"type": "file",
"size": 4358,
- "lastModified": "2025-09-26T01:52:49Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13627,14 +13627,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-7/index.html",
"type": "file",
"size": 11864,
- "lastModified": "2025-09-26T01:52:49Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-7/index.txt",
"type": "file",
"size": 4358,
- "lastModified": "2025-09-26T01:52:49Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13646,14 +13646,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-8/index.html",
"type": "file",
"size": 11863,
- "lastModified": "2025-09-26T01:52:49Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-8/index.txt",
"type": "file",
"size": 4358,
- "lastModified": "2025-09-26T01:52:49Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13665,14 +13665,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-9/index.html",
"type": "file",
"size": 11863,
- "lastModified": "2025-09-26T01:52:49Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v27-17740487419-9/index.txt",
"type": "file",
"size": 4358,
- "lastModified": "2025-09-26T01:52:49Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13684,14 +13684,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283/index.html",
"type": "file",
"size": 11821,
- "lastModified": "2025-09-26T01:52:50Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283/index.txt",
"type": "file",
"size": 4336,
- "lastModified": "2025-09-26T01:52:50Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13703,14 +13703,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-10/index.html",
"type": "file",
"size": 11885,
- "lastModified": "2025-09-26T01:52:49Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-10/index.txt",
"type": "file",
"size": 4369,
- "lastModified": "2025-09-26T01:52:49Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13722,14 +13722,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-11/index.html",
"type": "file",
"size": 11884,
- "lastModified": "2025-09-26T01:52:49Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-11/index.txt",
"type": "file",
"size": 4369,
- "lastModified": "2025-09-26T01:52:49Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13741,14 +13741,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-12/index.html",
"type": "file",
"size": 11885,
- "lastModified": "2025-09-26T01:52:49Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-12/index.txt",
"type": "file",
"size": 4369,
- "lastModified": "2025-09-26T01:52:49Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13760,14 +13760,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-2/index.html",
"type": "file",
"size": 11864,
- "lastModified": "2025-09-26T01:52:49Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-2/index.txt",
"type": "file",
"size": 4358,
- "lastModified": "2025-09-26T01:52:49Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13779,14 +13779,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-3/index.html",
"type": "file",
"size": 11864,
- "lastModified": "2025-09-26T01:52:49Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-3/index.txt",
"type": "file",
"size": 4358,
- "lastModified": "2025-09-26T01:52:49Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13798,14 +13798,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-4/index.html",
"type": "file",
"size": 11864,
- "lastModified": "2025-09-26T01:52:50Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-4/index.txt",
"type": "file",
"size": 4358,
- "lastModified": "2025-09-26T01:52:50Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13817,14 +13817,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-5/index.html",
"type": "file",
"size": 11863,
- "lastModified": "2025-09-26T01:52:50Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-5/index.txt",
"type": "file",
"size": 4358,
- "lastModified": "2025-09-26T01:52:50Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13836,14 +13836,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-6/index.html",
"type": "file",
"size": 11863,
- "lastModified": "2025-09-26T01:52:50Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-6/index.txt",
"type": "file",
"size": 4358,
- "lastModified": "2025-09-26T01:52:50Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13855,14 +13855,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-7/index.html",
"type": "file",
"size": 11863,
- "lastModified": "2025-09-26T01:52:50Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-7/index.txt",
"type": "file",
"size": 4358,
- "lastModified": "2025-09-26T01:52:50Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13874,14 +13874,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-8/index.html",
"type": "file",
"size": 11863,
- "lastModified": "2025-09-26T01:52:50Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-8/index.txt",
"type": "file",
"size": 4358,
- "lastModified": "2025-09-26T01:52:50Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13893,14 +13893,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-9/index.html",
"type": "file",
"size": 11863,
- "lastModified": "2025-09-26T01:52:50Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v28-17749789283-9/index.txt",
"type": "file",
"size": 4358,
- "lastModified": "2025-09-26T01:52:50Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13912,14 +13912,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392/index.html",
"type": "file",
"size": 11821,
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392/index.txt",
"type": "file",
"size": 4336,
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13931,14 +13931,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-10/index.html",
"type": "file",
"size": 11884,
- "lastModified": "2025-09-26T01:52:50Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-10/index.txt",
"type": "file",
"size": 4369,
- "lastModified": "2025-09-26T01:52:50Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13950,14 +13950,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-11/index.html",
"type": "file",
"size": 11885,
- "lastModified": "2025-09-26T01:52:50Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-11/index.txt",
"type": "file",
"size": 4369,
- "lastModified": "2025-09-26T01:52:50Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13969,14 +13969,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-12/index.html",
"type": "file",
"size": 11885,
- "lastModified": "2025-09-26T01:52:50Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-12/index.txt",
"type": "file",
"size": 4369,
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -13988,14 +13988,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-2/index.html",
"type": "file",
"size": 11863,
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-2/index.txt",
"type": "file",
"size": 4358,
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14007,14 +14007,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-3/index.html",
"type": "file",
"size": 11864,
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-3/index.txt",
"type": "file",
"size": 4358,
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14026,14 +14026,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-4/index.html",
"type": "file",
"size": 11864,
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-4/index.txt",
"type": "file",
"size": 4358,
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14045,14 +14045,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-5/index.html",
"type": "file",
"size": 11864,
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-5/index.txt",
"type": "file",
"size": 4358,
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14064,14 +14064,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-6/index.html",
"type": "file",
"size": 11864,
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-6/index.txt",
"type": "file",
"size": 4358,
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14083,14 +14083,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-7/index.html",
"type": "file",
"size": 11863,
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-7/index.txt",
"type": "file",
"size": 4358,
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14102,14 +14102,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-8/index.html",
"type": "file",
"size": 11863,
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-8/index.txt",
"type": "file",
"size": 4358,
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14121,14 +14121,14 @@
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-9/index.html",
"type": "file",
"size": 11863,
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal/personal-v29-17749815392-9/index.txt",
"type": "file",
"size": 4358,
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14139,87 +14139,87 @@
"name": "activebalance-plan/",
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/activebalance-plan/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:44Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cet-6/",
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/cet-6/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:44Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cv-ai-dev-en/",
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/cv-ai-dev-en/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:44Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cv-ai-dev-zh/",
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/cv-ai-dev-zh/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:45Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cv-en/",
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/cv-en/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:45Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cv-zh/",
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/cv-zh/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:45Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "fullstack-language-core/",
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/fullstack-language-core/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:45Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/index.html",
"type": "file",
"size": 23562,
- "lastModified": "2025-09-26T01:52:44Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/index.txt",
"type": "file",
"size": 6926,
- "lastModified": "2025-09-26T01:52:44Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "readme/",
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/readme/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:45Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "resume-devops-en/",
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/resume-devops-en/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:45Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "resume-devops-zh/",
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/resume-devops-zh/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:45Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "resume-en/",
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/resume-en/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:45Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "resume-zh/",
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/resume-zh/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:45Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14231,14 +14231,14 @@
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/activebalance-plan/index.html",
"type": "file",
"size": 12000,
- "lastModified": "2025-09-26T01:52:44Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/activebalance-plan/index.txt",
"type": "file",
"size": 4430,
- "lastModified": "2025-09-26T01:52:44Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14250,14 +14250,14 @@
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/cet-6/index.html",
"type": "file",
"size": 11727,
- "lastModified": "2025-09-26T01:52:44Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/cet-6/index.txt",
"type": "file",
"size": 4287,
- "lastModified": "2025-09-26T01:52:44Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14269,14 +14269,14 @@
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/cv-ai-dev-en/index.html",
"type": "file",
"size": 11874,
- "lastModified": "2025-09-26T01:52:44Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/cv-ai-dev-en/index.txt",
"type": "file",
"size": 4364,
- "lastModified": "2025-09-26T01:52:44Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14288,14 +14288,14 @@
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/cv-ai-dev-zh/index.html",
"type": "file",
"size": 11874,
- "lastModified": "2025-09-26T01:52:44Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/cv-ai-dev-zh/index.txt",
"type": "file",
"size": 4364,
- "lastModified": "2025-09-26T01:52:45Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14307,14 +14307,14 @@
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/cv-en/index.html",
"type": "file",
"size": 11726,
- "lastModified": "2025-09-26T01:52:45Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/cv-en/index.txt",
"type": "file",
"size": 4287,
- "lastModified": "2025-09-26T01:52:45Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14326,14 +14326,14 @@
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/cv-zh/index.html",
"type": "file",
"size": 11726,
- "lastModified": "2025-09-26T01:52:45Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/cv-zh/index.txt",
"type": "file",
"size": 4287,
- "lastModified": "2025-09-26T01:52:45Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14345,14 +14345,14 @@
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/fullstack-language-core/index.html",
"type": "file",
"size": 12105,
- "lastModified": "2025-09-26T01:52:45Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/fullstack-language-core/index.txt",
"type": "file",
"size": 4485,
- "lastModified": "2025-09-26T01:52:45Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14364,14 +14364,14 @@
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/readme/index.html",
"type": "file",
"size": 11747,
- "lastModified": "2025-09-26T01:52:45Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/readme/index.txt",
"type": "file",
"size": 4298,
- "lastModified": "2025-09-26T01:52:45Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14383,14 +14383,14 @@
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/resume-devops-en/index.html",
"type": "file",
"size": 11958,
- "lastModified": "2025-09-26T01:52:45Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/resume-devops-en/index.txt",
"type": "file",
"size": 4408,
- "lastModified": "2025-09-26T01:52:45Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14402,14 +14402,14 @@
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/resume-devops-zh/index.html",
"type": "file",
"size": 11958,
- "lastModified": "2025-09-26T01:52:45Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/resume-devops-zh/index.txt",
"type": "file",
"size": 4408,
- "lastModified": "2025-09-26T01:52:45Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14421,14 +14421,14 @@
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/resume-en/index.html",
"type": "file",
"size": 11811,
- "lastModified": "2025-09-26T01:52:45Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/resume-en/index.txt",
"type": "file",
"size": 4331,
- "lastModified": "2025-09-26T01:52:45Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14440,14 +14440,14 @@
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/resume-zh/index.html",
"type": "file",
"size": 11811,
- "lastModified": "2025-09-26T01:52:45Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/personal-v30-17935243600/resume-zh/index.txt",
"type": "file",
"size": 4331,
- "lastModified": "2025-09-26T01:52:45Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14458,51 +14458,51 @@
"name": "en-v31-17976868329/",
"href": "/dashboard/download/dashboard/docs/techexploration/en-v31-17976868329/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:52Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v32-17977204714/",
"href": "/dashboard/download/dashboard/docs/techexploration/en-v32-17977204714/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:52Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/docs/techexploration/index.html",
"type": "file",
"size": 17977,
- "lastModified": "2025-09-26T01:52:52Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/techexploration/index.txt",
"type": "file",
"size": 5651,
- "lastModified": "2025-09-26T01:52:52Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "techexploration-v25-17740048053/",
"href": "/dashboard/download/dashboard/docs/techexploration/techexploration-v25-17740048053/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:52Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "techexploration-v27-17740487419/",
"href": "/dashboard/download/dashboard/docs/techexploration/techexploration-v27-17740487419/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:52Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "techexploration-v28-17749789283/",
"href": "/dashboard/download/dashboard/docs/techexploration/techexploration-v28-17749789283/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:52Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "techexploration-v29-17749815392/",
"href": "/dashboard/download/dashboard/docs/techexploration/techexploration-v29-17749815392/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:52Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14514,14 +14514,14 @@
"href": "/dashboard/download/dashboard/docs/techexploration/en-v31-17976868329/index.html",
"type": "file",
"size": 11828,
- "lastModified": "2025-09-26T01:52:52Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/techexploration/en-v31-17976868329/index.txt",
"type": "file",
"size": 4340,
- "lastModified": "2025-09-26T01:52:52Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14533,14 +14533,14 @@
"href": "/dashboard/download/dashboard/docs/techexploration/en-v32-17977204714/index.html",
"type": "file",
"size": 11828,
- "lastModified": "2025-09-26T01:52:52Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/techexploration/en-v32-17977204714/index.txt",
"type": "file",
"size": 4340,
- "lastModified": "2025-09-26T01:52:52Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14552,14 +14552,14 @@
"href": "/dashboard/download/dashboard/docs/techexploration/techexploration-v25-17740048053/index.html",
"type": "file",
"size": 12102,
- "lastModified": "2025-09-26T01:52:52Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/techexploration/techexploration-v25-17740048053/index.txt",
"type": "file",
"size": 4483,
- "lastModified": "2025-09-26T01:52:52Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14571,14 +14571,14 @@
"href": "/dashboard/download/dashboard/docs/techexploration/techexploration-v27-17740487419/index.html",
"type": "file",
"size": 12102,
- "lastModified": "2025-09-26T01:52:52Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/techexploration/techexploration-v27-17740487419/index.txt",
"type": "file",
"size": 4483,
- "lastModified": "2025-09-26T01:52:52Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14590,14 +14590,14 @@
"href": "/dashboard/download/dashboard/docs/techexploration/techexploration-v28-17749789283/index.html",
"type": "file",
"size": 12102,
- "lastModified": "2025-09-26T01:52:52Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/techexploration/techexploration-v28-17749789283/index.txt",
"type": "file",
"size": 4483,
- "lastModified": "2025-09-26T01:52:52Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14609,14 +14609,14 @@
"href": "/dashboard/download/dashboard/docs/techexploration/techexploration-v29-17749815392/index.html",
"type": "file",
"size": 12102,
- "lastModified": "2025-09-26T01:52:52Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/techexploration/techexploration-v29-17749815392/index.txt",
"type": "file",
"size": 4483,
- "lastModified": "2025-09-26T01:52:52Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14628,20 +14628,20 @@
"href": "/dashboard/download/dashboard/docs/techexploration-v30-17935243600/index.html",
"type": "file",
"size": 13311,
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/techexploration-v30-17935243600/index.txt",
"type": "file",
"size": 4566,
- "lastModified": "2025-09-26T01:52:51Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "tech-exploration/",
"href": "/dashboard/download/dashboard/docs/techexploration-v30-17935243600/tech-exploration/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:52Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14653,14 +14653,14 @@
"href": "/dashboard/download/dashboard/docs/techexploration-v30-17935243600/tech-exploration/index.html",
"type": "file",
"size": 12089,
- "lastModified": "2025-09-26T01:52:52Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/techexploration-v30-17935243600/tech-exploration/index.txt",
"type": "file",
"size": 4477,
- "lastModified": "2025-09-26T01:52:52Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14671,123 +14671,123 @@
"name": "cn-v20-17738959811/",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v20-17738959811/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:53Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v21-17739112034/",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v21-17739112034/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:53Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v23-17739490366/",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v23-17739490366/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:53Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v28-17749789283/",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v28-17749789283/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:53Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v29-17749815392/",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v29-17749815392/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:53Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v30-17935243600/",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v30-17935243600/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:53Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v31-17976868329/",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v31-17976868329/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:53Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cn-v32-17977204714/",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v32-17977204714/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:53Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v21-17739112034/",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v21-17739112034/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:53Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v22-17739462094/",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v22-17739462094/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:53Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v23-17739490366/",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v23-17739490366/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v26-17740473328/",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v26-17740473328/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v27-17740487419/",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v27-17740487419/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v28-17749789283/",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v28-17749789283/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v29-17749815392/",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v29-17749815392/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v30-17935243600/",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v30-17935243600/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v31-17976868329/",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v31-17976868329/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "en-v32-17977204714/",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v32-17977204714/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/index.html",
"type": "file",
"size": 30754,
- "lastModified": "2025-09-26T01:52:52Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/index.txt",
"type": "file",
"size": 9194,
- "lastModified": "2025-09-26T01:52:52Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14799,14 +14799,14 @@
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v20-17738959811/index.html",
"type": "file",
"size": 12228,
- "lastModified": "2025-09-26T01:52:52Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v20-17738959811/index.txt",
"type": "file",
"size": 4550,
- "lastModified": "2025-09-26T01:52:53Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14818,14 +14818,14 @@
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v21-17739112034/index.html",
"type": "file",
"size": 12228,
- "lastModified": "2025-09-26T01:52:53Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v21-17739112034/index.txt",
"type": "file",
"size": 4550,
- "lastModified": "2025-09-26T01:52:53Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14837,14 +14837,14 @@
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v23-17739490366/index.html",
"type": "file",
"size": 12228,
- "lastModified": "2025-09-26T01:52:53Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v23-17739490366/index.txt",
"type": "file",
"size": 4550,
- "lastModified": "2025-09-26T01:52:53Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14856,14 +14856,14 @@
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v28-17749789283/index.html",
"type": "file",
"size": 12228,
- "lastModified": "2025-09-26T01:52:53Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v28-17749789283/index.txt",
"type": "file",
"size": 4550,
- "lastModified": "2025-09-26T01:52:53Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14875,14 +14875,14 @@
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v29-17749815392/index.html",
"type": "file",
"size": 12228,
- "lastModified": "2025-09-26T01:52:53Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v29-17749815392/index.txt",
"type": "file",
"size": 4550,
- "lastModified": "2025-09-26T01:52:53Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14894,14 +14894,14 @@
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v30-17935243600/index.html",
"type": "file",
"size": 12228,
- "lastModified": "2025-09-26T01:52:53Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v30-17935243600/index.txt",
"type": "file",
"size": 4550,
- "lastModified": "2025-09-26T01:52:53Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14913,14 +14913,14 @@
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v31-17976868329/index.html",
"type": "file",
"size": 12228,
- "lastModified": "2025-09-26T01:52:53Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v31-17976868329/index.txt",
"type": "file",
"size": 4550,
- "lastModified": "2025-09-26T01:52:53Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14932,14 +14932,14 @@
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v32-17977204714/index.html",
"type": "file",
"size": 12228,
- "lastModified": "2025-09-26T01:52:53Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/cn-v32-17977204714/index.txt",
"type": "file",
"size": 4550,
- "lastModified": "2025-09-26T01:52:53Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14951,14 +14951,14 @@
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v21-17739112034/index.html",
"type": "file",
"size": 12228,
- "lastModified": "2025-09-26T01:52:53Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v21-17739112034/index.txt",
"type": "file",
"size": 4550,
- "lastModified": "2025-09-26T01:52:53Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14970,14 +14970,14 @@
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v22-17739462094/index.html",
"type": "file",
"size": 12228,
- "lastModified": "2025-09-26T01:52:53Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v22-17739462094/index.txt",
"type": "file",
"size": 4550,
- "lastModified": "2025-09-26T01:52:53Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -14989,14 +14989,14 @@
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v23-17739490366/index.html",
"type": "file",
"size": 12228,
- "lastModified": "2025-09-26T01:52:53Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v23-17739490366/index.txt",
"type": "file",
"size": 4550,
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15008,14 +15008,14 @@
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v26-17740473328/index.html",
"type": "file",
"size": 12228,
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v26-17740473328/index.txt",
"type": "file",
"size": 4550,
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15027,14 +15027,14 @@
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v27-17740487419/index.html",
"type": "file",
"size": 12228,
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v27-17740487419/index.txt",
"type": "file",
"size": 4550,
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15046,14 +15046,14 @@
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v28-17749789283/index.html",
"type": "file",
"size": 12228,
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v28-17749789283/index.txt",
"type": "file",
"size": 4550,
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15065,14 +15065,14 @@
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v29-17749815392/index.html",
"type": "file",
"size": 12228,
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v29-17749815392/index.txt",
"type": "file",
"size": 4550,
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15084,14 +15084,14 @@
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v30-17935243600/index.html",
"type": "file",
"size": 12228,
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v30-17935243600/index.txt",
"type": "file",
"size": 4550,
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15103,14 +15103,14 @@
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v31-17976868329/index.html",
"type": "file",
"size": 12228,
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v31-17976868329/index.txt",
"type": "file",
"size": 4550,
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15122,14 +15122,14 @@
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v32-17977204714/index.html",
"type": "file",
"size": 12228,
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap/en-v32-17977204714/index.txt",
"type": "file",
"size": 4550,
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15140,69 +15140,69 @@
"name": "dashboard/",
"href": "/dashboard/download/dashboard/download/dashboard/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "deb/",
"href": "/dashboard/download/dashboard/download/deb/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "docs/",
"href": "/dashboard/download/dashboard/download/docs/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/index.html",
"type": "file",
"size": 19383,
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/index.txt",
"type": "file",
"size": 5528,
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "offline-package/",
"href": "/dashboard/download/dashboard/download/offline-package/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "otel/",
"href": "/dashboard/download/dashboard/download/otel/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "rpm/",
"href": "/dashboard/download/dashboard/download/rpm/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "sealos/",
"href": "/dashboard/download/dashboard/download/sealos/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "xray-core/",
"href": "/dashboard/download/dashboard/download/xray-core/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "xstream/",
"href": "/dashboard/download/dashboard/download/xstream/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15213,99 +15213,99 @@
"name": "404/",
"href": "/dashboard/download/dashboard/download/dashboard/404/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "500/",
"href": "/dashboard/download/dashboard/download/dashboard/500/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:55Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "_build/",
"href": "/dashboard/download/dashboard/download/dashboard/_build/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:55Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "_next/",
"href": "/dashboard/download/dashboard/download/dashboard/_next/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cloud_iac/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "demo/",
"href": "/dashboard/download/dashboard/download/dashboard/demo/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "dl-index/",
"href": "/dashboard/download/dashboard/download/dashboard/dl-index/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "docs/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "download/",
"href": "/dashboard/download/dashboard/download/dashboard/download/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "icons/",
"href": "/dashboard/download/dashboard/download/dashboard/icons/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/dashboard/index.html",
"type": "file",
"size": 24379,
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/index.txt",
"type": "file",
"size": 6712,
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "insight/",
"href": "/dashboard/download/dashboard/download/dashboard/insight/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "login/",
"href": "/dashboard/download/dashboard/download/dashboard/login/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "panel/",
"href": "/dashboard/download/dashboard/download/dashboard/panel/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "register/",
"href": "/dashboard/download/dashboard/download/dashboard/register/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15317,14 +15317,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/404/index.html",
"type": "file",
"size": 11478,
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/404/index.txt",
"type": "file",
"size": 4154,
- "lastModified": "2025-09-26T01:52:54Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15336,14 +15336,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/500/index.html",
"type": "file",
"size": 11476,
- "lastModified": "2025-09-26T01:52:55Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/500/index.txt",
"type": "file",
"size": 4153,
- "lastModified": "2025-09-26T01:52:55Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15355,14 +15355,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/_build/index.html",
"type": "file",
"size": 11536,
- "lastModified": "2025-09-26T01:52:55Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/_build/index.txt",
"type": "file",
"size": 4186,
- "lastModified": "2025-09-26T01:52:55Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15373,27 +15373,27 @@
"name": "54pjtS5iaMbvVeyaFusyy/",
"href": "/dashboard/download/dashboard/download/dashboard/_next/54pjtS5iaMbvVeyaFusyy/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:55Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/dashboard/_next/index.html",
"type": "file",
"size": 14081,
- "lastModified": "2025-09-26T01:52:55Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/_next/index.txt",
"type": "file",
"size": 4617,
- "lastModified": "2025-09-26T01:52:55Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "static/",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15405,14 +15405,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/_next/54pjtS5iaMbvVeyaFusyy/index.html",
"type": "file",
"size": 12129,
- "lastModified": "2025-09-26T01:52:55Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/_next/54pjtS5iaMbvVeyaFusyy/index.txt",
"type": "file",
"size": 4417,
- "lastModified": "2025-09-26T01:52:55Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15423,33 +15423,33 @@
"name": "54pjtS5iaMbvVeyaFusyy/",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/54pjtS5iaMbvVeyaFusyy/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:55Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "chunks/",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "css/",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/css/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/index.html",
"type": "file",
"size": 15338,
- "lastModified": "2025-09-26T01:52:55Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/index.txt",
"type": "file",
"size": 4926,
- "lastModified": "2025-09-26T01:52:55Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15461,14 +15461,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/54pjtS5iaMbvVeyaFusyy/index.html",
"type": "file",
"size": 12432,
- "lastModified": "2025-09-26T01:52:55Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/54pjtS5iaMbvVeyaFusyy/index.txt",
"type": "file",
"size": 4494,
- "lastModified": "2025-09-26T01:52:55Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15479,27 +15479,27 @@
"name": "app/",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/index.html",
"type": "file",
"size": 14674,
- "lastModified": "2025-09-26T01:52:55Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/index.txt",
"type": "file",
"size": 4770,
- "lastModified": "2025-09-26T01:52:55Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "pages/",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/pages/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15510,75 +15510,75 @@
"name": "404/",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/404/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:55Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "_not-found/",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/_not-found/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:55Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cloud_iac/",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/cloud_iac/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:56Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "demo/",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/demo/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:56Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "docs/",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/docs/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:56Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "download/",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/download/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:56Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/index.html",
"type": "file",
"size": 22663,
- "lastModified": "2025-09-26T01:52:55Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/index.txt",
"type": "file",
"size": 6721,
- "lastModified": "2025-09-26T01:52:55Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "insight/",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/insight/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:56Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "login/",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/login/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "panel/",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/panel/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "register/",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/register/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15590,14 +15590,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/404/index.html",
"type": "file",
"size": 12617,
- "lastModified": "2025-09-26T01:52:55Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/404/index.txt",
"type": "file",
"size": 4418,
- "lastModified": "2025-09-26T01:52:55Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15609,14 +15609,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/_not-found/index.html",
"type": "file",
"size": 12763,
- "lastModified": "2025-09-26T01:52:55Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/_not-found/index.txt",
"type": "file",
"size": 4494,
- "lastModified": "2025-09-26T01:52:55Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15627,21 +15627,21 @@
"name": "[provider]/",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/cloud_iac/[provider]/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:56Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/cloud_iac/index.html",
"type": "file",
"size": 14430,
- "lastModified": "2025-09-26T01:52:56Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/cloud_iac/index.txt",
"type": "file",
"size": 4749,
- "lastModified": "2025-09-26T01:52:56Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15652,21 +15652,21 @@
"name": "[service]/",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/cloud_iac/[provider]/[service]/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:56Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/cloud_iac/[provider]/index.html",
"type": "file",
"size": 6322,
- "lastModified": "2025-09-26T01:52:56Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/cloud_iac/[provider]/index.txt",
"type": "file",
"size": 3671,
- "lastModified": "2025-09-26T01:52:56Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15678,14 +15678,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/cloud_iac/[provider]/[service]/index.html",
"type": "file",
"size": 6400,
- "lastModified": "2025-09-26T01:52:56Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/cloud_iac/[provider]/[service]/index.txt",
"type": "file",
"size": 3727,
- "lastModified": "2025-09-26T01:52:56Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15697,14 +15697,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/demo/index.html",
"type": "file",
"size": 12641,
- "lastModified": "2025-09-26T01:52:56Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/demo/index.txt",
"type": "file",
"size": 4429,
- "lastModified": "2025-09-26T01:52:56Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15715,21 +15715,21 @@
"name": "[name]/",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/docs/[name]/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:56Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/docs/index.html",
"type": "file",
"size": 14289,
- "lastModified": "2025-09-26T01:52:56Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/docs/index.txt",
"type": "file",
"size": 4672,
- "lastModified": "2025-09-26T01:52:56Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15741,14 +15741,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/docs/[name]/index.html",
"type": "file",
"size": 6277,
- "lastModified": "2025-09-26T01:52:56Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/docs/[name]/index.txt",
"type": "file",
"size": 3635,
- "lastModified": "2025-09-26T01:52:56Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15759,21 +15759,21 @@
"name": "[...segments]/",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/download/[...segments]/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:56Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/download/index.html",
"type": "file",
"size": 14420,
- "lastModified": "2025-09-26T01:52:56Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/download/index.txt",
"type": "file",
"size": 4745,
- "lastModified": "2025-09-26T01:52:56Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15785,14 +15785,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/download/[...segments]/index.html",
"type": "file",
"size": 6332,
- "lastModified": "2025-09-26T01:52:56Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/download/[...segments]/index.txt",
"type": "file",
"size": 3679,
- "lastModified": "2025-09-26T01:52:56Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15804,14 +15804,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/insight/index.html",
"type": "file",
"size": 12704,
- "lastModified": "2025-09-26T01:52:56Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/insight/index.txt",
"type": "file",
"size": 4462,
- "lastModified": "2025-09-26T01:52:56Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15823,14 +15823,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/login/index.html",
"type": "file",
"size": 12662,
- "lastModified": "2025-09-26T01:52:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/login/index.txt",
"type": "file",
"size": 4440,
- "lastModified": "2025-09-26T01:52:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15841,51 +15841,51 @@
"name": "account/",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/panel/account/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "agent/",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/panel/agent/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "api/",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/panel/api/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/panel/index.html",
"type": "file",
"size": 19203,
- "lastModified": "2025-09-26T01:52:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/panel/index.txt",
"type": "file",
"size": 5910,
- "lastModified": "2025-09-26T01:52:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "ldp/",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/panel/ldp/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "subscription/",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/panel/subscription/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
- "name": "management/",
- "href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/panel/management/",
+ "name": "xray/",
+ "href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/panel/xray/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15897,14 +15897,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/panel/account/index.html",
"type": "file",
"size": 13003,
- "lastModified": "2025-09-26T01:52:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/panel/account/index.txt",
"type": "file",
"size": 4528,
- "lastModified": "2025-09-26T01:52:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15916,14 +15916,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/panel/agent/index.html",
"type": "file",
"size": 12962,
- "lastModified": "2025-09-26T01:52:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/panel/agent/index.txt",
"type": "file",
"size": 4506,
- "lastModified": "2025-09-26T01:52:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15935,14 +15935,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/panel/api/index.html",
"type": "file",
"size": 12920,
- "lastModified": "2025-09-26T01:52:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/panel/api/index.txt",
"type": "file",
"size": 4484,
- "lastModified": "2025-09-26T01:52:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15954,14 +15954,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/panel/ldp/index.html",
"type": "file",
"size": 12920,
- "lastModified": "2025-09-26T01:52:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/panel/ldp/index.txt",
"type": "file",
"size": 4484,
- "lastModified": "2025-09-26T01:52:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -15973,33 +15973,33 @@
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/panel/subscription/index.html",
"type": "file",
"size": 13109,
- "lastModified": "2025-09-26T01:52:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/panel/subscription/index.txt",
"type": "file",
"size": 4583,
- "lastModified": "2025-09-26T01:52:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
{
- "path": "dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/panel/management/",
+ "path": "dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/panel/xray/",
"entries": [
{
"name": "index.html",
- "href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/panel/management/index.html",
+ "href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/panel/xray/index.html",
"type": "file",
"size": 12941,
- "lastModified": "2025-09-26T01:52:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
- "href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/panel/management/index.txt",
+ "href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/panel/xray/index.txt",
"type": "file",
"size": 4495,
- "lastModified": "2025-09-26T01:52:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16011,14 +16011,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/register/index.html",
"type": "file",
"size": 12725,
- "lastModified": "2025-09-26T01:52:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/app/register/index.txt",
"type": "file",
"size": 4473,
- "lastModified": "2025-09-26T01:52:57Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16030,14 +16030,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/pages/index.html",
"type": "file",
"size": 12404,
- "lastModified": "2025-09-26T01:52:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/chunks/pages/index.txt",
"type": "file",
"size": 4394,
- "lastModified": "2025-09-26T01:52:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16049,14 +16049,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/css/index.html",
"type": "file",
"size": 12054,
- "lastModified": "2025-09-26T01:52:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/_next/static/css/index.txt",
"type": "file",
"size": 4296,
- "lastModified": "2025-09-26T01:52:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16067,39 +16067,39 @@
"name": "aliyun/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "aws/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "azure/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "gcp/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/index.html",
"type": "file",
"size": 15931,
- "lastModified": "2025-09-26T01:52:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/index.txt",
"type": "file",
"size": 5028,
- "lastModified": "2025-09-26T01:52:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16110,105 +16110,105 @@
"name": "ack/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/ack/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "aliyun-emr/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/aliyun-emr/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "aliyun-iot/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/aliyun-iot/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "apigateway-dataworks/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/apigateway-dataworks/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "apsaradb-rds/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/apsaradb-rds/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "apsaradb-redis/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/apsaradb-redis/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cloudmonitor-eventbridge/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/cloudmonitor-eventbridge/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "dns-acceleration/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/dns-acceleration/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "ecs/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/ecs/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/index.html",
"type": "file",
"size": 26926,
- "lastModified": "2025-09-26T01:52:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/index.txt",
"type": "file",
"size": 7746,
- "lastModified": "2025-09-26T01:52:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "mns/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/mns/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "oss/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/oss/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "ram/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/ram/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "security-group/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/security-group/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "slb/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/slb/",
"type": "dir",
- "lastModified": "2025-09-26T01:52:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "vpc/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/vpc/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16220,14 +16220,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/ack/index.html",
"type": "file",
"size": 12135,
- "lastModified": "2025-09-26T01:52:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/ack/index.txt",
"type": "file",
"size": 4336,
- "lastModified": "2025-09-26T01:52:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16239,14 +16239,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/aliyun-emr/index.html",
"type": "file",
"size": 12282,
- "lastModified": "2025-09-26T01:52:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/aliyun-emr/index.txt",
"type": "file",
"size": 4413,
- "lastModified": "2025-09-26T01:52:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16258,14 +16258,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/aliyun-iot/index.html",
"type": "file",
"size": 12282,
- "lastModified": "2025-09-26T01:52:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/aliyun-iot/index.txt",
"type": "file",
"size": 4413,
- "lastModified": "2025-09-26T01:52:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16277,14 +16277,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/apigateway-dataworks/index.html",
"type": "file",
"size": 12492,
- "lastModified": "2025-09-26T01:52:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/apigateway-dataworks/index.txt",
"type": "file",
"size": 4523,
- "lastModified": "2025-09-26T01:52:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16296,14 +16296,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/apsaradb-rds/index.html",
"type": "file",
"size": 12324,
- "lastModified": "2025-09-26T01:52:58Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/apsaradb-rds/index.txt",
"type": "file",
"size": 4435,
- "lastModified": "2025-09-26T01:52:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16315,14 +16315,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/apsaradb-redis/index.html",
"type": "file",
"size": 12365,
- "lastModified": "2025-09-26T01:52:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/apsaradb-redis/index.txt",
"type": "file",
"size": 4457,
- "lastModified": "2025-09-26T01:52:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16334,14 +16334,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/cloudmonitor-eventbridge/index.html",
"type": "file",
"size": 12575,
- "lastModified": "2025-09-26T01:52:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/cloudmonitor-eventbridge/index.txt",
"type": "file",
"size": 4567,
- "lastModified": "2025-09-26T01:52:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16353,14 +16353,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/dns-acceleration/index.html",
"type": "file",
"size": 12408,
- "lastModified": "2025-09-26T01:52:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/dns-acceleration/index.txt",
"type": "file",
"size": 4479,
- "lastModified": "2025-09-26T01:52:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16372,14 +16372,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/ecs/index.html",
"type": "file",
"size": 12135,
- "lastModified": "2025-09-26T01:52:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/ecs/index.txt",
"type": "file",
"size": 4336,
- "lastModified": "2025-09-26T01:52:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16391,14 +16391,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/mns/index.html",
"type": "file",
"size": 12135,
- "lastModified": "2025-09-26T01:52:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/mns/index.txt",
"type": "file",
"size": 4336,
- "lastModified": "2025-09-26T01:52:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16410,14 +16410,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/oss/index.html",
"type": "file",
"size": 12135,
- "lastModified": "2025-09-26T01:52:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/oss/index.txt",
"type": "file",
"size": 4336,
- "lastModified": "2025-09-26T01:52:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16429,14 +16429,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/ram/index.html",
"type": "file",
"size": 12135,
- "lastModified": "2025-09-26T01:52:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/ram/index.txt",
"type": "file",
"size": 4336,
- "lastModified": "2025-09-26T01:52:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16448,14 +16448,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/security-group/index.html",
"type": "file",
"size": 12365,
- "lastModified": "2025-09-26T01:52:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/security-group/index.txt",
"type": "file",
"size": 4457,
- "lastModified": "2025-09-26T01:52:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16467,14 +16467,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/slb/index.html",
"type": "file",
"size": 12135,
- "lastModified": "2025-09-26T01:52:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/slb/index.txt",
"type": "file",
"size": 4336,
- "lastModified": "2025-09-26T01:52:59Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16486,14 +16486,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/vpc/index.html",
"type": "file",
"size": 12135,
- "lastModified": "2025-09-26T01:53:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aliyun/vpc/index.txt",
"type": "file",
"size": 4336,
- "lastModified": "2025-09-26T01:53:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16504,105 +16504,105 @@
"name": "alb/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/alb/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "api-gateway-appflow/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/api-gateway-appflow/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "aws-iot/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/aws-iot/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cloudwatch-eventbridge/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/cloudwatch-eventbridge/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "ec2/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/ec2/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "eks/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/eks/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "elasticache/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/elasticache/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "emr/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/emr/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "iam/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/iam/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/index.html",
"type": "file",
"size": 26609,
- "lastModified": "2025-09-26T01:53:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/index.txt",
"type": "file",
"size": 7551,
- "lastModified": "2025-09-26T01:53:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "rds/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/rds/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "route53-cloudfront/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/route53-cloudfront/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "s3/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/s3/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "security-group/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/security-group/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "sqs/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/sqs/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "vpc/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/vpc/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16614,14 +16614,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/alb/index.html",
"type": "file",
"size": 12078,
- "lastModified": "2025-09-26T01:53:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/alb/index.txt",
"type": "file",
"size": 4306,
- "lastModified": "2025-09-26T01:53:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16633,14 +16633,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/api-gateway-appflow/index.html",
"type": "file",
"size": 12414,
- "lastModified": "2025-09-26T01:53:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/api-gateway-appflow/index.txt",
"type": "file",
"size": 4482,
- "lastModified": "2025-09-26T01:53:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16652,14 +16652,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/aws-iot/index.html",
"type": "file",
"size": 12161,
- "lastModified": "2025-09-26T01:53:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/aws-iot/index.txt",
"type": "file",
"size": 4350,
- "lastModified": "2025-09-26T01:53:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16671,14 +16671,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/cloudwatch-eventbridge/index.html",
"type": "file",
"size": 12477,
- "lastModified": "2025-09-26T01:53:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/cloudwatch-eventbridge/index.txt",
"type": "file",
"size": 4515,
- "lastModified": "2025-09-26T01:53:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16690,14 +16690,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/ec2/index.html",
"type": "file",
"size": 12078,
- "lastModified": "2025-09-26T01:53:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/ec2/index.txt",
"type": "file",
"size": 4306,
- "lastModified": "2025-09-26T01:53:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16709,14 +16709,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/eks/index.html",
"type": "file",
"size": 12078,
- "lastModified": "2025-09-26T01:53:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/eks/index.txt",
"type": "file",
"size": 4306,
- "lastModified": "2025-09-26T01:53:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16728,14 +16728,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/elasticache/index.html",
"type": "file",
"size": 12246,
- "lastModified": "2025-09-26T01:53:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/elasticache/index.txt",
"type": "file",
"size": 4394,
- "lastModified": "2025-09-26T01:53:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16747,14 +16747,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/emr/index.html",
"type": "file",
"size": 12078,
- "lastModified": "2025-09-26T01:53:00Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/emr/index.txt",
"type": "file",
"size": 4306,
- "lastModified": "2025-09-26T01:53:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16766,14 +16766,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/iam/index.html",
"type": "file",
"size": 12078,
- "lastModified": "2025-09-26T01:53:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/iam/index.txt",
"type": "file",
"size": 4306,
- "lastModified": "2025-09-26T01:53:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16785,14 +16785,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/rds/index.html",
"type": "file",
"size": 12078,
- "lastModified": "2025-09-26T01:53:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/rds/index.txt",
"type": "file",
"size": 4306,
- "lastModified": "2025-09-26T01:53:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16804,14 +16804,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/route53-cloudfront/index.html",
"type": "file",
"size": 12393,
- "lastModified": "2025-09-26T01:53:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/route53-cloudfront/index.txt",
"type": "file",
"size": 4471,
- "lastModified": "2025-09-26T01:53:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16823,14 +16823,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/s3/index.html",
"type": "file",
"size": 12053,
- "lastModified": "2025-09-26T01:53:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/s3/index.txt",
"type": "file",
"size": 4295,
- "lastModified": "2025-09-26T01:53:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16842,14 +16842,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/security-group/index.html",
"type": "file",
"size": 12309,
- "lastModified": "2025-09-26T01:53:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/security-group/index.txt",
"type": "file",
"size": 4427,
- "lastModified": "2025-09-26T01:53:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16861,14 +16861,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/sqs/index.html",
"type": "file",
"size": 12078,
- "lastModified": "2025-09-26T01:53:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/sqs/index.txt",
"type": "file",
"size": 4306,
- "lastModified": "2025-09-26T01:53:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16880,14 +16880,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/vpc/index.html",
"type": "file",
"size": 12078,
- "lastModified": "2025-09-26T01:53:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/aws/vpc/index.txt",
"type": "file",
"size": 4306,
- "lastModified": "2025-09-26T01:53:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -16898,105 +16898,105 @@
"name": "aks/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/aks/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "apim-data-factory/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/apim-data-factory/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "azure-ad/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/azure-ad/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "azure-database/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/azure-database/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "azure-dns-front-door/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/azure-dns-front-door/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "azure-iot/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/azure-iot/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "azure-load-balancer/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/azure-load-balancer/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "blob-storage/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/blob-storage/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/index.html",
"type": "file",
"size": 27166,
- "lastModified": "2025-09-26T01:53:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/index.txt",
"type": "file",
"size": 7888,
- "lastModified": "2025-09-26T01:53:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "monitor-event-grid/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/monitor-event-grid/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "network-security-group/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/network-security-group/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "redis-cache/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/redis-cache/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "service-bus/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/service-bus/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "synapse/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/synapse/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "virtual-machines/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/virtual-machines/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "virtual-network/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/virtual-network/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17008,14 +17008,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/aks/index.html",
"type": "file",
"size": 12116,
- "lastModified": "2025-09-26T01:53:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/aks/index.txt",
"type": "file",
"size": 4326,
- "lastModified": "2025-09-26T01:53:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17027,14 +17027,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/apim-data-factory/index.html",
"type": "file",
"size": 12410,
- "lastModified": "2025-09-26T01:53:01Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/apim-data-factory/index.txt",
"type": "file",
"size": 4480,
- "lastModified": "2025-09-26T01:53:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17046,14 +17046,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/azure-ad/index.html",
"type": "file",
"size": 12221,
- "lastModified": "2025-09-26T01:53:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/azure-ad/index.txt",
"type": "file",
"size": 4381,
- "lastModified": "2025-09-26T01:53:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17065,14 +17065,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/azure-database/index.html",
"type": "file",
"size": 12347,
- "lastModified": "2025-09-26T01:53:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/azure-database/index.txt",
"type": "file",
"size": 4447,
- "lastModified": "2025-09-26T01:53:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17084,14 +17084,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/azure-dns-front-door/index.html",
"type": "file",
"size": 12472,
- "lastModified": "2025-09-26T01:53:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/azure-dns-front-door/index.txt",
"type": "file",
"size": 4513,
- "lastModified": "2025-09-26T01:53:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17103,14 +17103,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/azure-iot/index.html",
"type": "file",
"size": 12242,
- "lastModified": "2025-09-26T01:53:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/azure-iot/index.txt",
"type": "file",
"size": 4392,
- "lastModified": "2025-09-26T01:53:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17122,14 +17122,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/azure-load-balancer/index.html",
"type": "file",
"size": 12451,
- "lastModified": "2025-09-26T01:53:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/azure-load-balancer/index.txt",
"type": "file",
"size": 4502,
- "lastModified": "2025-09-26T01:53:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17141,14 +17141,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/blob-storage/index.html",
"type": "file",
"size": 12305,
- "lastModified": "2025-09-26T01:53:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/blob-storage/index.txt",
"type": "file",
"size": 4425,
- "lastModified": "2025-09-26T01:53:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17160,14 +17160,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/monitor-event-grid/index.html",
"type": "file",
"size": 12431,
- "lastModified": "2025-09-26T01:53:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/monitor-event-grid/index.txt",
"type": "file",
"size": 4491,
- "lastModified": "2025-09-26T01:53:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17179,14 +17179,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/network-security-group/index.html",
"type": "file",
"size": 12515,
- "lastModified": "2025-09-26T01:53:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/network-security-group/index.txt",
"type": "file",
"size": 4535,
- "lastModified": "2025-09-26T01:53:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17198,14 +17198,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/redis-cache/index.html",
"type": "file",
"size": 12284,
- "lastModified": "2025-09-26T01:53:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/redis-cache/index.txt",
"type": "file",
"size": 4414,
- "lastModified": "2025-09-26T01:53:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17217,14 +17217,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/service-bus/index.html",
"type": "file",
"size": 12284,
- "lastModified": "2025-09-26T01:53:02Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/service-bus/index.txt",
"type": "file",
"size": 4414,
- "lastModified": "2025-09-26T01:53:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17236,14 +17236,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/synapse/index.html",
"type": "file",
"size": 12200,
- "lastModified": "2025-09-26T01:53:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/synapse/index.txt",
"type": "file",
"size": 4370,
- "lastModified": "2025-09-26T01:53:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17255,14 +17255,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/virtual-machines/index.html",
"type": "file",
"size": 12389,
- "lastModified": "2025-09-26T01:53:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/virtual-machines/index.txt",
"type": "file",
"size": 4469,
- "lastModified": "2025-09-26T01:53:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17274,14 +17274,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/virtual-network/index.html",
"type": "file",
"size": 12367,
- "lastModified": "2025-09-26T01:53:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/azure/virtual-network/index.txt",
"type": "file",
"size": 4458,
- "lastModified": "2025-09-26T01:53:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17292,105 +17292,105 @@
"name": "apigateway-integration/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/apigateway-integration/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cloud-dns-cdn/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/cloud-dns-cdn/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cloud-iam/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/cloud-iam/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cloud-load-balancing/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/cloud-load-balancing/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cloud-sql/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/cloud-sql/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "cloud-storage/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/cloud-storage/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "compute-engine/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/compute-engine/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "dataproc/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/dataproc/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "gcp-iot/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/gcp-iot/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "gke/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/gke/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/index.html",
"type": "file",
"size": 26869,
- "lastModified": "2025-09-26T01:53:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/index.txt",
"type": "file",
"size": 7707,
- "lastModified": "2025-09-26T01:53:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "memorystore/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/memorystore/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "operations-eventarc/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/operations-eventarc/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "pubsub/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/pubsub/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "vpc/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/vpc/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "vpc-firewall/",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/vpc-firewall/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17402,14 +17402,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/apigateway-integration/index.html",
"type": "file",
"size": 12477,
- "lastModified": "2025-09-26T01:53:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/apigateway-integration/index.txt",
"type": "file",
"size": 4515,
- "lastModified": "2025-09-26T01:53:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17421,14 +17421,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/cloud-dns-cdn/index.html",
"type": "file",
"size": 12288,
- "lastModified": "2025-09-26T01:53:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/cloud-dns-cdn/index.txt",
"type": "file",
"size": 4416,
- "lastModified": "2025-09-26T01:53:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17440,14 +17440,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/cloud-iam/index.html",
"type": "file",
"size": 12204,
- "lastModified": "2025-09-26T01:53:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/cloud-iam/index.txt",
"type": "file",
"size": 4372,
- "lastModified": "2025-09-26T01:53:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17459,14 +17459,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/cloud-load-balancing/index.html",
"type": "file",
"size": 12435,
- "lastModified": "2025-09-26T01:53:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/cloud-load-balancing/index.txt",
"type": "file",
"size": 4493,
- "lastModified": "2025-09-26T01:53:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17478,14 +17478,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/cloud-sql/index.html",
"type": "file",
"size": 12204,
- "lastModified": "2025-09-26T01:53:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/cloud-sql/index.txt",
"type": "file",
"size": 4372,
- "lastModified": "2025-09-26T01:53:03Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17497,14 +17497,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/cloud-storage/index.html",
"type": "file",
"size": 12288,
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/cloud-storage/index.txt",
"type": "file",
"size": 4416,
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17516,14 +17516,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/compute-engine/index.html",
"type": "file",
"size": 12309,
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/compute-engine/index.txt",
"type": "file",
"size": 4427,
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17535,14 +17535,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/dataproc/index.html",
"type": "file",
"size": 12183,
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/dataproc/index.txt",
"type": "file",
"size": 4361,
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17554,14 +17554,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/gcp-iot/index.html",
"type": "file",
"size": 12161,
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/gcp-iot/index.txt",
"type": "file",
"size": 4350,
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17573,14 +17573,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/gke/index.html",
"type": "file",
"size": 12078,
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/gke/index.txt",
"type": "file",
"size": 4306,
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17592,14 +17592,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/memorystore/index.html",
"type": "file",
"size": 12246,
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/memorystore/index.txt",
"type": "file",
"size": 4394,
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17611,14 +17611,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/operations-eventarc/index.html",
"type": "file",
"size": 12414,
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/operations-eventarc/index.txt",
"type": "file",
"size": 4482,
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17630,14 +17630,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/pubsub/index.html",
"type": "file",
"size": 12141,
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/pubsub/index.txt",
"type": "file",
"size": 4339,
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17649,14 +17649,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/vpc/index.html",
"type": "file",
"size": 12078,
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/vpc/index.txt",
"type": "file",
"size": 4306,
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17668,14 +17668,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/vpc-firewall/index.html",
"type": "file",
"size": 12265,
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/cloud_iac/gcp/vpc-firewall/index.txt",
"type": "file",
"size": 4405,
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17687,14 +17687,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/demo/index.html",
"type": "file",
"size": 11499,
- "lastModified": "2025-09-26T01:53:04Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/demo/index.txt",
"type": "file",
"size": 4165,
- "lastModified": "2025-09-26T01:53:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17706,14 +17706,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/dl-index/index.html",
"type": "file",
"size": 11583,
- "lastModified": "2025-09-26T01:53:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/dl-index/index.txt",
"type": "file",
"size": 4209,
- "lastModified": "2025-09-26T01:53:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -17725,446 +17725,446 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/index.html",
"type": "file",
"size": 95450,
- "lastModified": "2025-09-26T01:53:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/index.txt",
"type": "file",
"size": 29187,
- "lastModified": "2025-09-26T01:53:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "interview-qa-cn-v23-17739490366-interview-qa-guide/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/interview-qa-cn-v23-17739490366-interview-qa-guide/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "interview-qa-cn-v26-17740473328-interview-qa-guide/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/interview-qa-cn-v26-17740473328-interview-qa-guide/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "interview-qa-cn-v27-17740487419-interview-qa-guide/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/interview-qa-cn-v27-17740487419-interview-qa-guide/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "interview-qa-cn-v28-17749789283-interview-qa-guide/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/interview-qa-cn-v28-17749789283-interview-qa-guide/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "interview-qa-cn-v29-17749815392-interview-qa-guide/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/interview-qa-cn-v29-17749815392-interview-qa-guide/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "keycloak-keycloak-v24-17740025432-keycloak-sso-design-and-implementation/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/keycloak-keycloak-v24-17740025432-keycloak-sso-design-and-implementation/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "keycloak-keycloak-v26-17740473328-keycloak-sso-design-and-implementation/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/keycloak-keycloak-v26-17740473328-keycloak-sso-design-and-implementation/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "keycloak-keycloak-v28-17749789283-keycloak-sso-design-and-implementation/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/keycloak-keycloak-v28-17749789283-keycloak-sso-design-and-implementation/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "keycloak-keycloak-v29-17749815392-keycloak-sso-design-and-implementation/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/keycloak-keycloak-v29-17749815392-keycloak-sso-design-and-implementation/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "landingzone-landingzone-v27-17740487419-landing-zone-design-and-implementation/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/landingzone-landingzone-v27-17740487419-landing-zone-design-and-implementation/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "landingzone-landingzone-v28-17749789283-landing-zone-design-and-implementation/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/landingzone-landingzone-v28-17749789283-landing-zone-design-and-implementation/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "landingzone-landingzone-v29-17749815392-landing-zone-design-and-implementation/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/landingzone-landingzone-v29-17749815392-landing-zone-design-and-implementation/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "linux-k8s-ops-cn-v25-17740048053-linux-k8s-ops-guide/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/linux-k8s-ops-cn-v25-17740048053-linux-k8s-ops-guide/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "linux-k8s-ops-cn-v27-17740487419-linux-k8s-ops-guide/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/linux-k8s-ops-cn-v27-17740487419-linux-k8s-ops-guide/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "linux-k8s-ops-cn-v28-17749789283-linux-k8s-ops-guide/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/linux-k8s-ops-cn-v28-17749789283-linux-k8s-ops-guide/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "linux-k8s-ops-cn-v29-17749815392-linux-k8s-ops-guide/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/linux-k8s-ops-cn-v29-17749815392-linux-k8s-ops-guide/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "observability-cn-v20-17738959811-observability-design-and-implementation/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/observability-cn-v20-17738959811-observability-design-and-implementation/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "observability-cn-v23-17739490366-observability-design-and-implementation/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/observability-cn-v23-17739490366-observability-design-and-implementation/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "observability-cn-v28-17749789283-observability-design-and-implementation/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/observability-cn-v28-17749789283-observability-design-and-implementation/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "observability-cn-v29-17749815392-observability-design-and-implementation/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/observability-cn-v29-17749815392-observability-design-and-implementation/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v27-17740487419-activebalance-plan/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-activebalance-plan/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v27-17740487419-cet-6/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-cet-6/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v27-17740487419-cv-ai-dev-en/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-cv-ai-dev-en/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v27-17740487419-cv-ai-dev-zh/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-cv-ai-dev-zh/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v27-17740487419-cv-en/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-cv-en/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v27-17740487419-cv-zh/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-cv-zh/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v27-17740487419-fullstack-language-core/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-fullstack-language-core/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v27-17740487419-readme/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-readme/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v27-17740487419-resume-devops-en/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-resume-devops-en/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v27-17740487419-resume-devops-zh/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-resume-devops-zh/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v27-17740487419-resume-en/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-resume-en/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v27-17740487419-resume-zh/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-resume-zh/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v28-17749789283-activebalance-plan/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-activebalance-plan/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v28-17749789283-cet-6/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-cet-6/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v28-17749789283-cv-ai-dev-en/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-cv-ai-dev-en/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v28-17749789283-cv-ai-dev-zh/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-cv-ai-dev-zh/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v28-17749789283-cv-en/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-cv-en/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v28-17749789283-cv-zh/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-cv-zh/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v28-17749789283-fullstack-language-core/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-fullstack-language-core/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v28-17749789283-readme/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-readme/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v28-17749789283-resume-devops-en/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-resume-devops-en/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v28-17749789283-resume-devops-zh/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-resume-devops-zh/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v28-17749789283-resume-en/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-resume-en/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v28-17749789283-resume-zh/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-resume-zh/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v29-17749815392-activebalance-plan/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-activebalance-plan/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v29-17749815392-cet-6/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-cet-6/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v29-17749815392-cv-ai-dev-en/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-cv-ai-dev-en/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v29-17749815392-cv-ai-dev-zh/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-cv-ai-dev-zh/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v29-17749815392-cv-en/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-cv-en/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v29-17749815392-cv-zh/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-cv-zh/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v29-17749815392-fullstack-language-core/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-fullstack-language-core/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v29-17749815392-readme/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-readme/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v29-17749815392-resume-devops-en/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-resume-devops-en/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v29-17749815392-resume-devops-zh/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-resume-devops-zh/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v29-17749815392-resume-en/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-resume-en/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "personal-personal-v29-17749815392-resume-zh/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-resume-zh/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "techexploration-techexploration-v25-17740048053-tech-exploration/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/techexploration-techexploration-v25-17740048053-tech-exploration/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "techexploration-techexploration-v27-17740487419-tech-exploration/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/techexploration-techexploration-v27-17740487419-tech-exploration/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "techexploration-techexploration-v28-17749789283-tech-exploration/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/techexploration-techexploration-v28-17749789283-tech-exploration/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "techexploration-techexploration-v29-17749815392-tech-exploration/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/techexploration-techexploration-v29-17749815392-tech-exploration/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "the-indiedeveloper-fullstack-roadmap-cn-v20-17738959811-fullstack-roadmap-cn/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-cn-v20-17738959811-fullstack-roadmap-cn/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "the-indiedeveloper-fullstack-roadmap-cn-v21-17739112034-fullstack-roadmap-cn/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-cn-v21-17739112034-fullstack-roadmap-cn/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "the-indiedeveloper-fullstack-roadmap-cn-v23-17739490366-fullstack-roadmap-cn/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-cn-v23-17739490366-fullstack-roadmap-cn/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "the-indiedeveloper-fullstack-roadmap-cn-v28-17749789283-fullstack-roadmap-cn/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-cn-v28-17749789283-fullstack-roadmap-cn/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "the-indiedeveloper-fullstack-roadmap-cn-v29-17749815392-fullstack-roadmap-cn/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-cn-v29-17749815392-fullstack-roadmap-cn/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "the-indiedeveloper-fullstack-roadmap-en-v21-17739112034-fullstack-roadmap-en/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-en-v21-17739112034-fullstack-roadmap-en/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "the-indiedeveloper-fullstack-roadmap-en-v22-17739462094-fullstack-roadmap-en/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-en-v22-17739462094-fullstack-roadmap-en/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "the-indiedeveloper-fullstack-roadmap-en-v23-17739490366-fullstack-roadmap-en/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-en-v23-17739490366-fullstack-roadmap-en/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "the-indiedeveloper-fullstack-roadmap-en-v26-17740473328-fullstack-roadmap-en/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-en-v26-17740473328-fullstack-roadmap-en/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "the-indiedeveloper-fullstack-roadmap-en-v27-17740487419-fullstack-roadmap-en/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-en-v27-17740487419-fullstack-roadmap-en/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "the-indiedeveloper-fullstack-roadmap-en-v28-17749789283-fullstack-roadmap-en/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-en-v28-17749789283-fullstack-roadmap-en/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "the-indiedeveloper-fullstack-roadmap-en-v29-17749815392-fullstack-roadmap-en/",
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-en-v29-17749815392-fullstack-roadmap-en/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18176,14 +18176,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/interview-qa-cn-v23-17739490366-interview-qa-guide/index.html",
"type": "file",
"size": 12722,
- "lastModified": "2025-09-26T01:53:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/interview-qa-cn-v23-17739490366-interview-qa-guide/index.txt",
"type": "file",
"size": 4727,
- "lastModified": "2025-09-26T01:53:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18195,14 +18195,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/interview-qa-cn-v26-17740473328-interview-qa-guide/index.html",
"type": "file",
"size": 12722,
- "lastModified": "2025-09-26T01:53:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/interview-qa-cn-v26-17740473328-interview-qa-guide/index.txt",
"type": "file",
"size": 4727,
- "lastModified": "2025-09-26T01:53:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18214,14 +18214,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/interview-qa-cn-v27-17740487419-interview-qa-guide/index.html",
"type": "file",
"size": 12722,
- "lastModified": "2025-09-26T01:53:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/interview-qa-cn-v27-17740487419-interview-qa-guide/index.txt",
"type": "file",
"size": 4727,
- "lastModified": "2025-09-26T01:53:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18233,14 +18233,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/interview-qa-cn-v28-17749789283-interview-qa-guide/index.html",
"type": "file",
"size": 12722,
- "lastModified": "2025-09-26T01:53:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/interview-qa-cn-v28-17749789283-interview-qa-guide/index.txt",
"type": "file",
"size": 4727,
- "lastModified": "2025-09-26T01:53:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18252,14 +18252,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/interview-qa-cn-v29-17749815392-interview-qa-guide/index.html",
"type": "file",
"size": 12722,
- "lastModified": "2025-09-26T01:53:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/interview-qa-cn-v29-17749815392-interview-qa-guide/index.txt",
"type": "file",
"size": 4727,
- "lastModified": "2025-09-26T01:53:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18271,14 +18271,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/keycloak-keycloak-v24-17740025432-keycloak-sso-design-and-implementation/index.html",
"type": "file",
"size": 13184,
- "lastModified": "2025-09-26T01:53:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/keycloak-keycloak-v24-17740025432-keycloak-sso-design-and-implementation/index.txt",
"type": "file",
"size": 4969,
- "lastModified": "2025-09-26T01:53:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18290,14 +18290,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/keycloak-keycloak-v26-17740473328-keycloak-sso-design-and-implementation/index.html",
"type": "file",
"size": 13184,
- "lastModified": "2025-09-26T01:53:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/keycloak-keycloak-v26-17740473328-keycloak-sso-design-and-implementation/index.txt",
"type": "file",
"size": 4969,
- "lastModified": "2025-09-26T01:53:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18309,14 +18309,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/keycloak-keycloak-v28-17749789283-keycloak-sso-design-and-implementation/index.html",
"type": "file",
"size": 13184,
- "lastModified": "2025-09-26T01:53:05Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/keycloak-keycloak-v28-17749789283-keycloak-sso-design-and-implementation/index.txt",
"type": "file",
"size": 4969,
- "lastModified": "2025-09-26T01:53:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18328,14 +18328,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/keycloak-keycloak-v29-17749815392-keycloak-sso-design-and-implementation/index.html",
"type": "file",
"size": 13184,
- "lastModified": "2025-09-26T01:53:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/keycloak-keycloak-v29-17749815392-keycloak-sso-design-and-implementation/index.txt",
"type": "file",
"size": 4969,
- "lastModified": "2025-09-26T01:53:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18347,14 +18347,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/landingzone-landingzone-v27-17740487419-landing-zone-design-and-implementation/index.html",
"type": "file",
"size": 13310,
- "lastModified": "2025-09-26T01:53:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/landingzone-landingzone-v27-17740487419-landing-zone-design-and-implementation/index.txt",
"type": "file",
"size": 5035,
- "lastModified": "2025-09-26T01:53:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18366,14 +18366,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/landingzone-landingzone-v28-17749789283-landing-zone-design-and-implementation/index.html",
"type": "file",
"size": 13310,
- "lastModified": "2025-09-26T01:53:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/landingzone-landingzone-v28-17749789283-landing-zone-design-and-implementation/index.txt",
"type": "file",
"size": 5035,
- "lastModified": "2025-09-26T01:53:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18385,14 +18385,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/landingzone-landingzone-v29-17749815392-landing-zone-design-and-implementation/index.html",
"type": "file",
"size": 13310,
- "lastModified": "2025-09-26T01:53:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/landingzone-landingzone-v29-17749815392-landing-zone-design-and-implementation/index.txt",
"type": "file",
"size": 5035,
- "lastModified": "2025-09-26T01:53:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18404,14 +18404,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/linux-k8s-ops-cn-v25-17740048053-linux-k8s-ops-guide/index.html",
"type": "file",
"size": 12764,
- "lastModified": "2025-09-26T01:53:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/linux-k8s-ops-cn-v25-17740048053-linux-k8s-ops-guide/index.txt",
"type": "file",
"size": 4749,
- "lastModified": "2025-09-26T01:53:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18423,14 +18423,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/linux-k8s-ops-cn-v27-17740487419-linux-k8s-ops-guide/index.html",
"type": "file",
"size": 12764,
- "lastModified": "2025-09-26T01:53:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/linux-k8s-ops-cn-v27-17740487419-linux-k8s-ops-guide/index.txt",
"type": "file",
"size": 4749,
- "lastModified": "2025-09-26T01:53:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18442,14 +18442,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/linux-k8s-ops-cn-v28-17749789283-linux-k8s-ops-guide/index.html",
"type": "file",
"size": 12764,
- "lastModified": "2025-09-26T01:53:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/linux-k8s-ops-cn-v28-17749789283-linux-k8s-ops-guide/index.txt",
"type": "file",
"size": 4749,
- "lastModified": "2025-09-26T01:53:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18461,14 +18461,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/linux-k8s-ops-cn-v29-17749815392-linux-k8s-ops-guide/index.html",
"type": "file",
"size": 12764,
- "lastModified": "2025-09-26T01:53:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/linux-k8s-ops-cn-v29-17749815392-linux-k8s-ops-guide/index.txt",
"type": "file",
"size": 4749,
- "lastModified": "2025-09-26T01:53:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18480,14 +18480,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/observability-cn-v20-17738959811-observability-design-and-implementation/index.html",
"type": "file",
"size": 13184,
- "lastModified": "2025-09-26T01:53:06Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/observability-cn-v20-17738959811-observability-design-and-implementation/index.txt",
"type": "file",
"size": 4969,
- "lastModified": "2025-09-26T01:53:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18499,14 +18499,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/observability-cn-v23-17739490366-observability-design-and-implementation/index.html",
"type": "file",
"size": 13184,
- "lastModified": "2025-09-26T01:53:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/observability-cn-v23-17739490366-observability-design-and-implementation/index.txt",
"type": "file",
"size": 4969,
- "lastModified": "2025-09-26T01:53:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18518,14 +18518,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/observability-cn-v28-17749789283-observability-design-and-implementation/index.html",
"type": "file",
"size": 13184,
- "lastModified": "2025-09-26T01:53:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/observability-cn-v28-17749789283-observability-design-and-implementation/index.txt",
"type": "file",
"size": 4969,
- "lastModified": "2025-09-26T01:53:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18537,14 +18537,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/observability-cn-v29-17749815392-observability-design-and-implementation/index.html",
"type": "file",
"size": 13184,
- "lastModified": "2025-09-26T01:53:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/observability-cn-v29-17749815392-observability-design-and-implementation/index.txt",
"type": "file",
"size": 4969,
- "lastModified": "2025-09-26T01:53:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18556,14 +18556,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-activebalance-plan/index.html",
"type": "file",
"size": 12764,
- "lastModified": "2025-09-26T01:53:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-activebalance-plan/index.txt",
"type": "file",
"size": 4749,
- "lastModified": "2025-09-26T01:53:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18575,14 +18575,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-cet-6/index.html",
"type": "file",
"size": 12490,
- "lastModified": "2025-09-26T01:53:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-cet-6/index.txt",
"type": "file",
"size": 4606,
- "lastModified": "2025-09-26T01:53:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18594,14 +18594,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-cv-ai-dev-en/index.html",
"type": "file",
"size": 12638,
- "lastModified": "2025-09-26T01:53:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-cv-ai-dev-en/index.txt",
"type": "file",
"size": 4683,
- "lastModified": "2025-09-26T01:53:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18613,14 +18613,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-cv-ai-dev-zh/index.html",
"type": "file",
"size": 12638,
- "lastModified": "2025-09-26T01:53:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-cv-ai-dev-zh/index.txt",
"type": "file",
"size": 4683,
- "lastModified": "2025-09-26T01:53:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18632,14 +18632,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-cv-en/index.html",
"type": "file",
"size": 12490,
- "lastModified": "2025-09-26T01:53:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-cv-en/index.txt",
"type": "file",
"size": 4606,
- "lastModified": "2025-09-26T01:53:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18651,14 +18651,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-cv-zh/index.html",
"type": "file",
"size": 12490,
- "lastModified": "2025-09-26T01:53:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-cv-zh/index.txt",
"type": "file",
"size": 4606,
- "lastModified": "2025-09-26T01:53:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18670,14 +18670,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-fullstack-language-core/index.html",
"type": "file",
"size": 12869,
- "lastModified": "2025-09-26T01:53:07Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-fullstack-language-core/index.txt",
"type": "file",
"size": 4804,
- "lastModified": "2025-09-26T01:53:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18689,14 +18689,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-readme/index.html",
"type": "file",
"size": 12512,
- "lastModified": "2025-09-26T01:53:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-readme/index.txt",
"type": "file",
"size": 4617,
- "lastModified": "2025-09-26T01:53:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18708,14 +18708,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-resume-devops-en/index.html",
"type": "file",
"size": 12722,
- "lastModified": "2025-09-26T01:53:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-resume-devops-en/index.txt",
"type": "file",
"size": 4727,
- "lastModified": "2025-09-26T01:53:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18727,14 +18727,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-resume-devops-zh/index.html",
"type": "file",
"size": 12722,
- "lastModified": "2025-09-26T01:53:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-resume-devops-zh/index.txt",
"type": "file",
"size": 4727,
- "lastModified": "2025-09-26T01:53:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18746,14 +18746,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-resume-en/index.html",
"type": "file",
"size": 12575,
- "lastModified": "2025-09-26T01:53:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-resume-en/index.txt",
"type": "file",
"size": 4650,
- "lastModified": "2025-09-26T01:53:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18765,14 +18765,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-resume-zh/index.html",
"type": "file",
"size": 12575,
- "lastModified": "2025-09-26T01:53:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v27-17740487419-resume-zh/index.txt",
"type": "file",
"size": 4650,
- "lastModified": "2025-09-26T01:53:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18784,14 +18784,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-activebalance-plan/index.html",
"type": "file",
"size": 12764,
- "lastModified": "2025-09-26T01:53:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-activebalance-plan/index.txt",
"type": "file",
"size": 4749,
- "lastModified": "2025-09-26T01:53:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18803,14 +18803,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-cet-6/index.html",
"type": "file",
"size": 12490,
- "lastModified": "2025-09-26T01:53:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-cet-6/index.txt",
"type": "file",
"size": 4606,
- "lastModified": "2025-09-26T01:53:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18822,14 +18822,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-cv-ai-dev-en/index.html",
"type": "file",
"size": 12638,
- "lastModified": "2025-09-26T01:53:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-cv-ai-dev-en/index.txt",
"type": "file",
"size": 4683,
- "lastModified": "2025-09-26T01:53:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18841,14 +18841,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-cv-ai-dev-zh/index.html",
"type": "file",
"size": 12638,
- "lastModified": "2025-09-26T01:53:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-cv-ai-dev-zh/index.txt",
"type": "file",
"size": 4683,
- "lastModified": "2025-09-26T01:53:08Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18860,14 +18860,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-cv-en/index.html",
"type": "file",
"size": 12490,
- "lastModified": "2025-09-26T01:53:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-cv-en/index.txt",
"type": "file",
"size": 4606,
- "lastModified": "2025-09-26T01:53:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18879,14 +18879,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-cv-zh/index.html",
"type": "file",
"size": 12490,
- "lastModified": "2025-09-26T01:53:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-cv-zh/index.txt",
"type": "file",
"size": 4606,
- "lastModified": "2025-09-26T01:53:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18898,14 +18898,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-fullstack-language-core/index.html",
"type": "file",
"size": 12869,
- "lastModified": "2025-09-26T01:53:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-fullstack-language-core/index.txt",
"type": "file",
"size": 4804,
- "lastModified": "2025-09-26T01:53:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18917,14 +18917,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-readme/index.html",
"type": "file",
"size": 12512,
- "lastModified": "2025-09-26T01:53:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-readme/index.txt",
"type": "file",
"size": 4617,
- "lastModified": "2025-09-26T01:53:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18936,14 +18936,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-resume-devops-en/index.html",
"type": "file",
"size": 12722,
- "lastModified": "2025-09-26T01:53:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-resume-devops-en/index.txt",
"type": "file",
"size": 4727,
- "lastModified": "2025-09-26T01:53:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18955,14 +18955,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-resume-devops-zh/index.html",
"type": "file",
"size": 12722,
- "lastModified": "2025-09-26T01:53:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-resume-devops-zh/index.txt",
"type": "file",
"size": 4727,
- "lastModified": "2025-09-26T01:53:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18974,14 +18974,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-resume-en/index.html",
"type": "file",
"size": 12575,
- "lastModified": "2025-09-26T01:53:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-resume-en/index.txt",
"type": "file",
"size": 4650,
- "lastModified": "2025-09-26T01:53:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -18993,14 +18993,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-resume-zh/index.html",
"type": "file",
"size": 12575,
- "lastModified": "2025-09-26T01:53:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v28-17749789283-resume-zh/index.txt",
"type": "file",
"size": 4650,
- "lastModified": "2025-09-26T01:53:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19012,14 +19012,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-activebalance-plan/index.html",
"type": "file",
"size": 12764,
- "lastModified": "2025-09-26T01:53:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-activebalance-plan/index.txt",
"type": "file",
"size": 4749,
- "lastModified": "2025-09-26T01:53:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19031,14 +19031,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-cet-6/index.html",
"type": "file",
"size": 12490,
- "lastModified": "2025-09-26T01:53:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-cet-6/index.txt",
"type": "file",
"size": 4606,
- "lastModified": "2025-09-26T01:53:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19050,14 +19050,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-cv-ai-dev-en/index.html",
"type": "file",
"size": 12638,
- "lastModified": "2025-09-26T01:53:09Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-cv-ai-dev-en/index.txt",
"type": "file",
"size": 4683,
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19069,14 +19069,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-cv-ai-dev-zh/index.html",
"type": "file",
"size": 12638,
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-cv-ai-dev-zh/index.txt",
"type": "file",
"size": 4683,
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19088,14 +19088,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-cv-en/index.html",
"type": "file",
"size": 12490,
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-cv-en/index.txt",
"type": "file",
"size": 4606,
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19107,14 +19107,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-cv-zh/index.html",
"type": "file",
"size": 12490,
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-cv-zh/index.txt",
"type": "file",
"size": 4606,
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19126,14 +19126,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-fullstack-language-core/index.html",
"type": "file",
"size": 12869,
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-fullstack-language-core/index.txt",
"type": "file",
"size": 4804,
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19145,14 +19145,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-readme/index.html",
"type": "file",
"size": 12512,
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-readme/index.txt",
"type": "file",
"size": 4617,
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19164,14 +19164,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-resume-devops-en/index.html",
"type": "file",
"size": 12722,
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-resume-devops-en/index.txt",
"type": "file",
"size": 4727,
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19183,14 +19183,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-resume-devops-zh/index.html",
"type": "file",
"size": 12722,
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-resume-devops-zh/index.txt",
"type": "file",
"size": 4727,
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19202,14 +19202,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-resume-en/index.html",
"type": "file",
"size": 12575,
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-resume-en/index.txt",
"type": "file",
"size": 4650,
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19221,14 +19221,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-resume-zh/index.html",
"type": "file",
"size": 12575,
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/personal-personal-v29-17749815392-resume-zh/index.txt",
"type": "file",
"size": 4650,
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19240,14 +19240,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/techexploration-techexploration-v25-17740048053-tech-exploration/index.html",
"type": "file",
"size": 13016,
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/techexploration-techexploration-v25-17740048053-tech-exploration/index.txt",
"type": "file",
"size": 4881,
- "lastModified": "2025-09-26T01:53:10Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19259,14 +19259,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/techexploration-techexploration-v27-17740487419-tech-exploration/index.html",
"type": "file",
"size": 13016,
- "lastModified": "2025-09-26T01:53:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/techexploration-techexploration-v27-17740487419-tech-exploration/index.txt",
"type": "file",
"size": 4881,
- "lastModified": "2025-09-26T01:53:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19278,14 +19278,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/techexploration-techexploration-v28-17749789283-tech-exploration/index.html",
"type": "file",
"size": 13016,
- "lastModified": "2025-09-26T01:53:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/techexploration-techexploration-v28-17749789283-tech-exploration/index.txt",
"type": "file",
"size": 4881,
- "lastModified": "2025-09-26T01:53:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19297,14 +19297,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/techexploration-techexploration-v29-17749815392-tech-exploration/index.html",
"type": "file",
"size": 13016,
- "lastModified": "2025-09-26T01:53:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/techexploration-techexploration-v29-17749815392-tech-exploration/index.txt",
"type": "file",
"size": 4881,
- "lastModified": "2025-09-26T01:53:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19316,14 +19316,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-cn-v20-17738959811-fullstack-roadmap-cn/index.html",
"type": "file",
"size": 13266,
- "lastModified": "2025-09-26T01:53:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-cn-v20-17738959811-fullstack-roadmap-cn/index.txt",
"type": "file",
"size": 5013,
- "lastModified": "2025-09-26T01:53:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19335,14 +19335,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-cn-v21-17739112034-fullstack-roadmap-cn/index.html",
"type": "file",
"size": 13266,
- "lastModified": "2025-09-26T01:53:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-cn-v21-17739112034-fullstack-roadmap-cn/index.txt",
"type": "file",
"size": 5013,
- "lastModified": "2025-09-26T01:53:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19354,14 +19354,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-cn-v23-17739490366-fullstack-roadmap-cn/index.html",
"type": "file",
"size": 13266,
- "lastModified": "2025-09-26T01:53:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-cn-v23-17739490366-fullstack-roadmap-cn/index.txt",
"type": "file",
"size": 5013,
- "lastModified": "2025-09-26T01:53:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19373,14 +19373,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-cn-v28-17749789283-fullstack-roadmap-cn/index.html",
"type": "file",
"size": 13266,
- "lastModified": "2025-09-26T01:53:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-cn-v28-17749789283-fullstack-roadmap-cn/index.txt",
"type": "file",
"size": 5013,
- "lastModified": "2025-09-26T01:53:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19392,14 +19392,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-cn-v29-17749815392-fullstack-roadmap-cn/index.html",
"type": "file",
"size": 13266,
- "lastModified": "2025-09-26T01:53:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-cn-v29-17749815392-fullstack-roadmap-cn/index.txt",
"type": "file",
"size": 5013,
- "lastModified": "2025-09-26T01:53:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19411,14 +19411,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-en-v21-17739112034-fullstack-roadmap-en/index.html",
"type": "file",
"size": 13266,
- "lastModified": "2025-09-26T01:53:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-en-v21-17739112034-fullstack-roadmap-en/index.txt",
"type": "file",
"size": 5013,
- "lastModified": "2025-09-26T01:53:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19430,14 +19430,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-en-v22-17739462094-fullstack-roadmap-en/index.html",
"type": "file",
"size": 13266,
- "lastModified": "2025-09-26T01:53:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-en-v22-17739462094-fullstack-roadmap-en/index.txt",
"type": "file",
"size": 5013,
- "lastModified": "2025-09-26T01:53:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19449,14 +19449,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-en-v23-17739490366-fullstack-roadmap-en/index.html",
"type": "file",
"size": 13266,
- "lastModified": "2025-09-26T01:53:11Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-en-v23-17739490366-fullstack-roadmap-en/index.txt",
"type": "file",
"size": 5013,
- "lastModified": "2025-09-26T01:53:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19468,14 +19468,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-en-v26-17740473328-fullstack-roadmap-en/index.html",
"type": "file",
"size": 13266,
- "lastModified": "2025-09-26T01:53:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-en-v26-17740473328-fullstack-roadmap-en/index.txt",
"type": "file",
"size": 5013,
- "lastModified": "2025-09-26T01:53:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19487,14 +19487,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-en-v27-17740487419-fullstack-roadmap-en/index.html",
"type": "file",
"size": 13266,
- "lastModified": "2025-09-26T01:53:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-en-v27-17740487419-fullstack-roadmap-en/index.txt",
"type": "file",
"size": 5013,
- "lastModified": "2025-09-26T01:53:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19506,14 +19506,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-en-v28-17749789283-fullstack-roadmap-en/index.html",
"type": "file",
"size": 13266,
- "lastModified": "2025-09-26T01:53:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-en-v28-17749789283-fullstack-roadmap-en/index.txt",
"type": "file",
"size": 5013,
- "lastModified": "2025-09-26T01:53:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19525,14 +19525,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-en-v29-17749815392-fullstack-roadmap-en/index.html",
"type": "file",
"size": 13266,
- "lastModified": "2025-09-26T01:53:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/docs/the-indiedeveloper-fullstack-roadmap-en-v29-17749815392-fullstack-roadmap-en/index.txt",
"type": "file",
"size": 5013,
- "lastModified": "2025-09-26T01:53:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19543,51 +19543,51 @@
"name": "deb/",
"href": "/dashboard/download/dashboard/download/dashboard/download/deb/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/dashboard/download/index.html",
"type": "file",
"size": 17770,
- "lastModified": "2025-09-26T01:53:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/index.txt",
"type": "file",
"size": 5441,
- "lastModified": "2025-09-26T01:53:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "offline-package/",
"href": "/dashboard/download/dashboard/download/dashboard/download/offline-package/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "otel/",
"href": "/dashboard/download/dashboard/download/dashboard/download/otel/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "rpm/",
"href": "/dashboard/download/dashboard/download/dashboard/download/rpm/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "sealos/",
"href": "/dashboard/download/dashboard/download/dashboard/download/sealos/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "xstream/",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19599,14 +19599,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/download/deb/index.html",
"type": "file",
"size": 11811,
- "lastModified": "2025-09-26T01:53:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/deb/index.txt",
"type": "file",
"size": 4250,
- "lastModified": "2025-09-26T01:53:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19617,45 +19617,45 @@
"name": "apisix-gateway/",
"href": "/dashboard/download/dashboard/download/dashboard/download/offline-package/apisix-gateway/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/dashboard/download/offline-package/index.html",
"type": "file",
"size": 17648,
- "lastModified": "2025-09-26T01:53:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/offline-package/index.txt",
"type": "file",
"size": 5616,
- "lastModified": "2025-09-26T01:53:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "k3s/",
"href": "/dashboard/download/dashboard/download/dashboard/download/offline-package/k3s/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "kong-gateway/",
"href": "/dashboard/download/dashboard/download/dashboard/download/offline-package/kong-gateway/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "nginx-ingress/",
"href": "/dashboard/download/dashboard/download/dashboard/download/offline-package/nginx-ingress/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "sealos/",
"href": "/dashboard/download/dashboard/download/dashboard/download/offline-package/sealos/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19667,14 +19667,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/download/offline-package/apisix-gateway/index.html",
"type": "file",
"size": 12517,
- "lastModified": "2025-09-26T01:53:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/offline-package/apisix-gateway/index.txt",
"type": "file",
"size": 4537,
- "lastModified": "2025-09-26T01:53:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19686,14 +19686,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/download/offline-package/k3s/index.html",
"type": "file",
"size": 12286,
- "lastModified": "2025-09-26T01:53:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/offline-package/k3s/index.txt",
"type": "file",
"size": 4416,
- "lastModified": "2025-09-26T01:53:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19705,14 +19705,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/download/offline-package/kong-gateway/index.html",
"type": "file",
"size": 12474,
- "lastModified": "2025-09-26T01:53:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/offline-package/kong-gateway/index.txt",
"type": "file",
"size": 4515,
- "lastModified": "2025-09-26T01:53:12Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19724,14 +19724,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/download/offline-package/nginx-ingress/index.html",
"type": "file",
"size": 12496,
- "lastModified": "2025-09-26T01:53:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/offline-package/nginx-ingress/index.txt",
"type": "file",
"size": 4526,
- "lastModified": "2025-09-26T01:53:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19743,14 +19743,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/download/offline-package/sealos/index.html",
"type": "file",
"size": 12349,
- "lastModified": "2025-09-26T01:53:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/offline-package/sealos/index.txt",
"type": "file",
"size": 4449,
- "lastModified": "2025-09-26T01:53:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19761,21 +19761,21 @@
"name": "OpenTelemetry/",
"href": "/dashboard/download/dashboard/download/dashboard/download/otel/OpenTelemetry/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/dashboard/download/otel/index.html",
"type": "file",
"size": 13471,
- "lastModified": "2025-09-26T01:53:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/otel/index.txt",
"type": "file",
"size": 4495,
- "lastModified": "2025-09-26T01:53:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19787,20 +19787,20 @@
"href": "/dashboard/download/dashboard/download/dashboard/download/otel/OpenTelemetry/index.html",
"type": "file",
"size": 13942,
- "lastModified": "2025-09-26T01:53:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/otel/OpenTelemetry/index.txt",
"type": "file",
"size": 4663,
- "lastModified": "2025-09-26T01:53:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "v0.133.0/",
"href": "/dashboard/download/dashboard/download/dashboard/download/otel/OpenTelemetry/v0.133.0/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19812,14 +19812,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/download/otel/OpenTelemetry/v0.133.0/index.html",
"type": "file",
"size": 12622,
- "lastModified": "2025-09-26T01:53:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/otel/OpenTelemetry/v0.133.0/index.txt",
"type": "file",
"size": 4507,
- "lastModified": "2025-09-26T01:53:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19831,14 +19831,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/download/rpm/index.html",
"type": "file",
"size": 11811,
- "lastModified": "2025-09-26T01:53:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/rpm/index.txt",
"type": "file",
"size": 4250,
- "lastModified": "2025-09-26T01:53:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19850,32 +19850,32 @@
"href": "/dashboard/download/dashboard/download/dashboard/download/sealos/index.html",
"type": "file",
"size": 15509,
- "lastModified": "2025-09-26T01:53:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/sealos/index.txt",
"type": "file",
"size": 5026,
- "lastModified": "2025-09-26T01:53:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "offline-sealos-5/",
"href": "/dashboard/download/dashboard/download/dashboard/download/sealos/offline-sealos-5/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "offline-sealos-6/",
"href": "/dashboard/download/dashboard/download/dashboard/download/sealos/offline-sealos-6/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "offline-sealos-8/",
"href": "/dashboard/download/dashboard/download/dashboard/download/sealos/offline-sealos-8/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19887,14 +19887,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/download/sealos/offline-sealos-5/index.html",
"type": "file",
"size": 12388,
- "lastModified": "2025-09-26T01:53:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/sealos/offline-sealos-5/index.txt",
"type": "file",
"size": 4469,
- "lastModified": "2025-09-26T01:53:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19906,14 +19906,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/download/sealos/offline-sealos-6/index.html",
"type": "file",
"size": 12388,
- "lastModified": "2025-09-26T01:53:13Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/sealos/offline-sealos-6/index.txt",
"type": "file",
"size": 4469,
- "lastModified": "2025-09-26T01:53:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19925,14 +19925,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/download/sealos/offline-sealos-8/index.html",
"type": "file",
"size": 12388,
- "lastModified": "2025-09-26T01:53:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/sealos/offline-sealos-8/index.txt",
"type": "file",
"size": 4469,
- "lastModified": "2025-09-26T01:53:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19943,45 +19943,45 @@
"name": "android/",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/android/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/index.html",
"type": "file",
"size": 17259,
- "lastModified": "2025-09-26T01:53:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/index.txt",
"type": "file",
"size": 5386,
- "lastModified": "2025-09-26T01:53:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "ios/",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/ios/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "linux/",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/linux/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "macos/",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/macos/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "windows/",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/windows/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -19993,20 +19993,20 @@
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/android/index.html",
"type": "file",
"size": 13855,
- "lastModified": "2025-09-26T01:53:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/android/index.txt",
"type": "file",
"size": 4615,
- "lastModified": "2025-09-26T01:53:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "latest/",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/android/latest/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20018,14 +20018,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/android/latest/index.html",
"type": "file",
"size": 12528,
- "lastModified": "2025-09-26T01:53:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/android/latest/index.txt",
"type": "file",
"size": 4455,
- "lastModified": "2025-09-26T01:53:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20037,20 +20037,20 @@
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/ios/index.html",
"type": "file",
"size": 13758,
- "lastModified": "2025-09-26T01:53:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/ios/index.txt",
"type": "file",
"size": 4563,
- "lastModified": "2025-09-26T01:53:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "latest/",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/ios/latest/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20062,14 +20062,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/ios/latest/index.html",
"type": "file",
"size": 12452,
- "lastModified": "2025-09-26T01:53:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/ios/latest/index.txt",
"type": "file",
"size": 4415,
- "lastModified": "2025-09-26T01:53:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20081,26 +20081,26 @@
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/linux/index.html",
"type": "file",
"size": 14767,
- "lastModified": "2025-09-26T01:53:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/linux/index.txt",
"type": "file",
"size": 4821,
- "lastModified": "2025-09-26T01:53:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "latest/",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/linux/latest/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "stable/",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/linux/stable/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20112,14 +20112,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/linux/latest/index.html",
"type": "file",
"size": 12489,
- "lastModified": "2025-09-26T01:53:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/linux/latest/index.txt",
"type": "file",
"size": 4435,
- "lastModified": "2025-09-26T01:53:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20131,14 +20131,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/linux/stable/index.html",
"type": "file",
"size": 12489,
- "lastModified": "2025-09-26T01:53:14Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/linux/stable/index.txt",
"type": "file",
"size": 4435,
- "lastModified": "2025-09-26T01:53:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20149,33 +20149,33 @@
"name": "docs/",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/macos/docs/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/macos/index.html",
"type": "file",
"size": 15714,
- "lastModified": "2025-09-26T01:53:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/macos/index.txt",
"type": "file",
"size": 5047,
- "lastModified": "2025-09-26T01:53:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "latest/",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/macos/latest/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "stable/",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/macos/stable/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20187,14 +20187,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/macos/docs/index.html",
"type": "file",
"size": 12448,
- "lastModified": "2025-09-26T01:53:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/macos/docs/index.txt",
"type": "file",
"size": 4413,
- "lastModified": "2025-09-26T01:53:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20206,14 +20206,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/macos/latest/index.html",
"type": "file",
"size": 12489,
- "lastModified": "2025-09-26T01:53:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/macos/latest/index.txt",
"type": "file",
"size": 4435,
- "lastModified": "2025-09-26T01:53:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20225,14 +20225,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/macos/stable/index.html",
"type": "file",
"size": 12489,
- "lastModified": "2025-09-26T01:53:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/macos/stable/index.txt",
"type": "file",
"size": 4435,
- "lastModified": "2025-09-26T01:53:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20244,38 +20244,38 @@
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/windows/index.html",
"type": "file",
"size": 16741,
- "lastModified": "2025-09-26T01:53:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/windows/index.txt",
"type": "file",
"size": 5318,
- "lastModified": "2025-09-26T01:53:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "latest/",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/windows/latest/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "stable/",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/windows/stable/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "win10/",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/windows/win10/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "win11/",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/windows/win11/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20287,14 +20287,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/windows/latest/index.html",
"type": "file",
"size": 12528,
- "lastModified": "2025-09-26T01:53:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/windows/latest/index.txt",
"type": "file",
"size": 4455,
- "lastModified": "2025-09-26T01:53:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20306,14 +20306,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/windows/stable/index.html",
"type": "file",
"size": 12528,
- "lastModified": "2025-09-26T01:53:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/windows/stable/index.txt",
"type": "file",
"size": 4455,
- "lastModified": "2025-09-26T01:53:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20325,14 +20325,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/windows/win10/index.html",
"type": "file",
"size": 12507,
- "lastModified": "2025-09-26T01:53:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/windows/win10/index.txt",
"type": "file",
"size": 4444,
- "lastModified": "2025-09-26T01:53:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20344,14 +20344,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/windows/win11/index.html",
"type": "file",
"size": 12507,
- "lastModified": "2025-09-26T01:53:15Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/download/xstream/windows/win11/index.txt",
"type": "file",
"size": 4444,
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20363,14 +20363,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/icons/index.html",
"type": "file",
"size": 11518,
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/icons/index.txt",
"type": "file",
"size": 4175,
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20382,14 +20382,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/insight/index.html",
"type": "file",
"size": 11561,
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/insight/index.txt",
"type": "file",
"size": 4198,
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20401,14 +20401,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/login/index.html",
"type": "file",
"size": 11520,
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/login/index.txt",
"type": "file",
"size": 4176,
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20419,51 +20419,51 @@
"name": "account/",
"href": "/dashboard/download/dashboard/download/dashboard/panel/account/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "agent/",
"href": "/dashboard/download/dashboard/download/dashboard/panel/agent/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "api/",
"href": "/dashboard/download/dashboard/download/dashboard/panel/api/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/dashboard/panel/index.html",
"type": "file",
"size": 17629,
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/panel/index.txt",
"type": "file",
"size": 5358,
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "ldp/",
"href": "/dashboard/download/dashboard/download/dashboard/panel/ldp/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "subscription/",
"href": "/dashboard/download/dashboard/download/dashboard/panel/subscription/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
- "name": "management/",
- "href": "/dashboard/download/dashboard/download/dashboard/panel/management/",
+ "name": "xray/",
+ "href": "/dashboard/download/dashboard/download/dashboard/panel/xray/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20475,14 +20475,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/panel/account/index.html",
"type": "file",
"size": 11837,
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/panel/account/index.txt",
"type": "file",
"size": 4264,
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20494,14 +20494,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/panel/agent/index.html",
"type": "file",
"size": 11796,
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/panel/agent/index.txt",
"type": "file",
"size": 4242,
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20513,14 +20513,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/panel/api/index.html",
"type": "file",
"size": 11754,
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/panel/api/index.txt",
"type": "file",
"size": 4220,
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20532,14 +20532,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/panel/ldp/index.html",
"type": "file",
"size": 11754,
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/panel/ldp/index.txt",
"type": "file",
"size": 4220,
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20551,33 +20551,33 @@
"href": "/dashboard/download/dashboard/download/dashboard/panel/subscription/index.html",
"type": "file",
"size": 11940,
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/panel/subscription/index.txt",
"type": "file",
"size": 4319,
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
{
- "path": "dashboard/download/dashboard/download/dashboard/panel/management/",
+ "path": "dashboard/download/dashboard/download/dashboard/panel/xray/",
"entries": [
{
"name": "index.html",
- "href": "/dashboard/download/dashboard/download/dashboard/panel/management/index.html",
+ "href": "/dashboard/download/dashboard/download/dashboard/panel/xray/index.html",
"type": "file",
"size": 11775,
- "lastModified": "2025-09-26T01:53:16Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
- "href": "/dashboard/download/dashboard/download/dashboard/panel/management/index.txt",
+ "href": "/dashboard/download/dashboard/download/dashboard/panel/xray/index.txt",
"type": "file",
"size": 4231,
- "lastModified": "2025-09-26T01:53:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20589,14 +20589,14 @@
"href": "/dashboard/download/dashboard/download/dashboard/register/index.html",
"type": "file",
"size": 11583,
- "lastModified": "2025-09-26T01:53:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/dashboard/register/index.txt",
"type": "file",
"size": 4209,
- "lastModified": "2025-09-26T01:53:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20608,14 +20608,14 @@
"href": "/dashboard/download/dashboard/download/deb/index.html",
"type": "file",
"size": 11134,
- "lastModified": "2025-09-26T01:53:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/deb/index.txt",
"type": "file",
"size": 4047,
- "lastModified": "2025-09-26T01:53:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20626,87 +20626,87 @@
"name": "Keycloak/",
"href": "/dashboard/download/dashboard/download/docs/Keycloak/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "Keycloak-v30-17935243600/",
"href": "/dashboard/download/dashboard/download/docs/Keycloak-v30-17935243600/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "LandingZone/",
"href": "/dashboard/download/dashboard/download/docs/LandingZone/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "LandingZone-v30-17935243600/",
"href": "/dashboard/download/dashboard/download/docs/LandingZone-v30-17935243600/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "Linux-K8S-OPS/",
"href": "/dashboard/download/dashboard/download/docs/Linux-K8S-OPS/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "Observability/",
"href": "/dashboard/download/dashboard/download/docs/Observability/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "Personal/",
"href": "/dashboard/download/dashboard/download/docs/Personal/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "Personal-v30-17935243600/",
"href": "/dashboard/download/dashboard/download/docs/Personal-v30-17935243600/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "TechExploration/",
"href": "/dashboard/download/dashboard/download/docs/TechExploration/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "TechExploration-v30-17935243600/",
"href": "/dashboard/download/dashboard/download/docs/TechExploration-v30-17935243600/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "The-IndieDeveloper-Fullstack-Roadmap/",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/docs/index.html",
"type": "file",
"size": 23092,
- "lastModified": "2025-09-26T01:53:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/index.txt",
"type": "file",
"size": 6630,
- "lastModified": "2025-09-26T01:53:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "interview-qa/",
"href": "/dashboard/download/dashboard/download/docs/interview-qa/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20717,51 +20717,51 @@
"name": "EN-v31-17976868329/",
"href": "/dashboard/download/dashboard/download/docs/Keycloak/EN-v31-17976868329/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "EN-v32-17977204714/",
"href": "/dashboard/download/dashboard/download/docs/Keycloak/EN-v32-17977204714/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "Keycloak-v24-17740025432/",
"href": "/dashboard/download/dashboard/download/docs/Keycloak/Keycloak-v24-17740025432/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "Keycloak-v26-17740473328/",
"href": "/dashboard/download/dashboard/download/docs/Keycloak/Keycloak-v26-17740473328/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "Keycloak-v28-17749789283/",
"href": "/dashboard/download/dashboard/download/docs/Keycloak/Keycloak-v28-17749789283/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "Keycloak-v29-17749815392/",
"href": "/dashboard/download/dashboard/download/docs/Keycloak/Keycloak-v29-17749815392/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/docs/Keycloak/index.html",
"type": "file",
"size": 18051,
- "lastModified": "2025-09-26T01:53:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/Keycloak/index.txt",
"type": "file",
"size": 5611,
- "lastModified": "2025-09-26T01:53:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20773,14 +20773,14 @@
"href": "/dashboard/download/dashboard/download/docs/Keycloak/EN-v31-17976868329/index.html",
"type": "file",
"size": 12023,
- "lastModified": "2025-09-26T01:53:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/Keycloak/EN-v31-17976868329/index.txt",
"type": "file",
"size": 4365,
- "lastModified": "2025-09-26T01:53:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20792,14 +20792,14 @@
"href": "/dashboard/download/dashboard/download/docs/Keycloak/EN-v32-17977204714/index.html",
"type": "file",
"size": 12023,
- "lastModified": "2025-09-26T01:53:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/Keycloak/EN-v32-17977204714/index.txt",
"type": "file",
"size": 4365,
- "lastModified": "2025-09-26T01:53:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20811,14 +20811,14 @@
"href": "/dashboard/download/dashboard/download/docs/Keycloak/Keycloak-v24-17740025432/index.html",
"type": "file",
"size": 12151,
- "lastModified": "2025-09-26T01:53:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/Keycloak/Keycloak-v24-17740025432/index.txt",
"type": "file",
"size": 4431,
- "lastModified": "2025-09-26T01:53:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20830,14 +20830,14 @@
"href": "/dashboard/download/dashboard/download/docs/Keycloak/Keycloak-v26-17740473328/index.html",
"type": "file",
"size": 12151,
- "lastModified": "2025-09-26T01:53:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/Keycloak/Keycloak-v26-17740473328/index.txt",
"type": "file",
"size": 4431,
- "lastModified": "2025-09-26T01:53:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20849,14 +20849,14 @@
"href": "/dashboard/download/dashboard/download/docs/Keycloak/Keycloak-v28-17749789283/index.html",
"type": "file",
"size": 12151,
- "lastModified": "2025-09-26T01:53:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/Keycloak/Keycloak-v28-17749789283/index.txt",
"type": "file",
"size": 4431,
- "lastModified": "2025-09-26T01:53:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20868,14 +20868,14 @@
"href": "/dashboard/download/dashboard/download/docs/Keycloak/Keycloak-v29-17749815392/index.html",
"type": "file",
"size": 12151,
- "lastModified": "2025-09-26T01:53:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/Keycloak/Keycloak-v29-17749815392/index.txt",
"type": "file",
"size": 4431,
- "lastModified": "2025-09-26T01:53:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20887,14 +20887,14 @@
"href": "/dashboard/download/dashboard/download/docs/Keycloak-v30-17935243600/index.html",
"type": "file",
"size": 11824,
- "lastModified": "2025-09-26T01:53:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/Keycloak-v30-17935243600/index.txt",
"type": "file",
"size": 4335,
- "lastModified": "2025-09-26T01:53:17Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20905,45 +20905,45 @@
"name": "EN-v31-17976868329/",
"href": "/dashboard/download/dashboard/download/docs/LandingZone/EN-v31-17976868329/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "EN-v32-17977204714/",
"href": "/dashboard/download/dashboard/download/docs/LandingZone/EN-v32-17977204714/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "LandingZone-v27-17740487419/",
"href": "/dashboard/download/dashboard/download/docs/LandingZone/LandingZone-v27-17740487419/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "LandingZone-v28-17749789283/",
"href": "/dashboard/download/dashboard/download/docs/LandingZone/LandingZone-v28-17749789283/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "LandingZone-v29-17749815392/",
"href": "/dashboard/download/dashboard/download/docs/LandingZone/LandingZone-v29-17749815392/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/docs/LandingZone/index.html",
"type": "file",
"size": 17213,
- "lastModified": "2025-09-26T01:53:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/LandingZone/index.txt",
"type": "file",
"size": 5453,
- "lastModified": "2025-09-26T01:53:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20955,14 +20955,14 @@
"href": "/dashboard/download/dashboard/download/docs/LandingZone/EN-v31-17976868329/index.html",
"type": "file",
"size": 12083,
- "lastModified": "2025-09-26T01:53:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/LandingZone/EN-v31-17976868329/index.txt",
"type": "file",
"size": 4395,
- "lastModified": "2025-09-26T01:53:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20974,14 +20974,14 @@
"href": "/dashboard/download/dashboard/download/docs/LandingZone/EN-v32-17977204714/index.html",
"type": "file",
"size": 12083,
- "lastModified": "2025-09-26T01:53:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/LandingZone/EN-v32-17977204714/index.txt",
"type": "file",
"size": 4395,
- "lastModified": "2025-09-26T01:53:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -20993,14 +20993,14 @@
"href": "/dashboard/download/dashboard/download/docs/LandingZone/LandingZone-v27-17740487419/index.html",
"type": "file",
"size": 12271,
- "lastModified": "2025-09-26T01:53:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/LandingZone/LandingZone-v27-17740487419/index.txt",
"type": "file",
"size": 4494,
- "lastModified": "2025-09-26T01:53:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21012,14 +21012,14 @@
"href": "/dashboard/download/dashboard/download/docs/LandingZone/LandingZone-v28-17749789283/index.html",
"type": "file",
"size": 12272,
- "lastModified": "2025-09-26T01:53:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/LandingZone/LandingZone-v28-17749789283/index.txt",
"type": "file",
"size": 4494,
- "lastModified": "2025-09-26T01:53:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21031,14 +21031,14 @@
"href": "/dashboard/download/dashboard/download/docs/LandingZone/LandingZone-v29-17749815392/index.html",
"type": "file",
"size": 12272,
- "lastModified": "2025-09-26T01:53:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/LandingZone/LandingZone-v29-17749815392/index.txt",
"type": "file",
"size": 4494,
- "lastModified": "2025-09-26T01:53:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21050,14 +21050,14 @@
"href": "/dashboard/download/dashboard/download/docs/LandingZone-v30-17935243600/index.html",
"type": "file",
"size": 11884,
- "lastModified": "2025-09-26T01:53:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/LandingZone-v30-17935243600/index.txt",
"type": "file",
"size": 4368,
- "lastModified": "2025-09-26T01:53:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21068,57 +21068,57 @@
"name": "CN-v25-17740048053/",
"href": "/dashboard/download/dashboard/download/docs/Linux-K8S-OPS/CN-v25-17740048053/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "CN-v27-17740487419/",
"href": "/dashboard/download/dashboard/download/docs/Linux-K8S-OPS/CN-v27-17740487419/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "CN-v28-17749789283/",
"href": "/dashboard/download/dashboard/download/docs/Linux-K8S-OPS/CN-v28-17749789283/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "CN-v29-17749815392/",
"href": "/dashboard/download/dashboard/download/docs/Linux-K8S-OPS/CN-v29-17749815392/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "CN-v30-17935243600/",
"href": "/dashboard/download/dashboard/download/docs/Linux-K8S-OPS/CN-v30-17935243600/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "CN-v31-17976868329/",
"href": "/dashboard/download/dashboard/download/docs/Linux-K8S-OPS/CN-v31-17976868329/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "CN-v32-17977204714/",
"href": "/dashboard/download/dashboard/download/docs/Linux-K8S-OPS/CN-v32-17977204714/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/docs/Linux-K8S-OPS/index.html",
"type": "file",
"size": 19102,
- "lastModified": "2025-09-26T01:53:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/Linux-K8S-OPS/index.txt",
"type": "file",
"size": 5894,
- "lastModified": "2025-09-26T01:53:18Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21130,14 +21130,14 @@
"href": "/dashboard/download/dashboard/download/docs/Linux-K8S-OPS/CN-v25-17740048053/index.html",
"type": "file",
"size": 12121,
- "lastModified": "2025-09-26T01:53:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/Linux-K8S-OPS/CN-v25-17740048053/index.txt",
"type": "file",
"size": 4415,
- "lastModified": "2025-09-26T01:53:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21149,14 +21149,14 @@
"href": "/dashboard/download/dashboard/download/docs/Linux-K8S-OPS/CN-v27-17740487419/index.html",
"type": "file",
"size": 12121,
- "lastModified": "2025-09-26T01:53:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/Linux-K8S-OPS/CN-v27-17740487419/index.txt",
"type": "file",
"size": 4415,
- "lastModified": "2025-09-26T01:53:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21168,14 +21168,14 @@
"href": "/dashboard/download/dashboard/download/docs/Linux-K8S-OPS/CN-v28-17749789283/index.html",
"type": "file",
"size": 12121,
- "lastModified": "2025-09-26T01:53:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/Linux-K8S-OPS/CN-v28-17749789283/index.txt",
"type": "file",
"size": 4415,
- "lastModified": "2025-09-26T01:53:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21187,14 +21187,14 @@
"href": "/dashboard/download/dashboard/download/docs/Linux-K8S-OPS/CN-v29-17749815392/index.html",
"type": "file",
"size": 12121,
- "lastModified": "2025-09-26T01:53:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/Linux-K8S-OPS/CN-v29-17749815392/index.txt",
"type": "file",
"size": 4415,
- "lastModified": "2025-09-26T01:53:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21206,14 +21206,14 @@
"href": "/dashboard/download/dashboard/download/docs/Linux-K8S-OPS/CN-v30-17935243600/index.html",
"type": "file",
"size": 12121,
- "lastModified": "2025-09-26T01:53:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/Linux-K8S-OPS/CN-v30-17935243600/index.txt",
"type": "file",
"size": 4415,
- "lastModified": "2025-09-26T01:53:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21225,14 +21225,14 @@
"href": "/dashboard/download/dashboard/download/docs/Linux-K8S-OPS/CN-v31-17976868329/index.html",
"type": "file",
"size": 12121,
- "lastModified": "2025-09-26T01:53:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/Linux-K8S-OPS/CN-v31-17976868329/index.txt",
"type": "file",
"size": 4415,
- "lastModified": "2025-09-26T01:53:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21244,14 +21244,14 @@
"href": "/dashboard/download/dashboard/download/docs/Linux-K8S-OPS/CN-v32-17977204714/index.html",
"type": "file",
"size": 12121,
- "lastModified": "2025-09-26T01:53:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/Linux-K8S-OPS/CN-v32-17977204714/index.txt",
"type": "file",
"size": 4415,
- "lastModified": "2025-09-26T01:53:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21262,57 +21262,57 @@
"name": "CN-v20-17738959811/",
"href": "/dashboard/download/dashboard/download/docs/Observability/CN-v20-17738959811/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "CN-v23-17739490366/",
"href": "/dashboard/download/dashboard/download/docs/Observability/CN-v23-17739490366/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "CN-v28-17749789283/",
"href": "/dashboard/download/dashboard/download/docs/Observability/CN-v28-17749789283/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "CN-v29-17749815392/",
"href": "/dashboard/download/dashboard/download/docs/Observability/CN-v29-17749815392/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "CN-v30-17935243600/",
"href": "/dashboard/download/dashboard/download/docs/Observability/CN-v30-17935243600/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "CN-v31-17976868329/",
"href": "/dashboard/download/dashboard/download/docs/Observability/CN-v31-17976868329/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "CN-v32-17977204714/",
"href": "/dashboard/download/dashboard/download/docs/Observability/CN-v32-17977204714/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/docs/Observability/index.html",
"type": "file",
"size": 19102,
- "lastModified": "2025-09-26T01:53:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/Observability/index.txt",
"type": "file",
"size": 5894,
- "lastModified": "2025-09-26T01:53:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21324,14 +21324,14 @@
"href": "/dashboard/download/dashboard/download/docs/Observability/CN-v20-17738959811/index.html",
"type": "file",
"size": 12121,
- "lastModified": "2025-09-26T01:53:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/Observability/CN-v20-17738959811/index.txt",
"type": "file",
"size": 4415,
- "lastModified": "2025-09-26T01:53:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21343,14 +21343,14 @@
"href": "/dashboard/download/dashboard/download/docs/Observability/CN-v23-17739490366/index.html",
"type": "file",
"size": 12121,
- "lastModified": "2025-09-26T01:53:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/Observability/CN-v23-17739490366/index.txt",
"type": "file",
"size": 4415,
- "lastModified": "2025-09-26T01:53:19Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21362,14 +21362,14 @@
"href": "/dashboard/download/dashboard/download/docs/Observability/CN-v28-17749789283/index.html",
"type": "file",
"size": 12121,
- "lastModified": "2025-09-26T01:53:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/Observability/CN-v28-17749789283/index.txt",
"type": "file",
"size": 4415,
- "lastModified": "2025-09-26T01:53:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21381,14 +21381,14 @@
"href": "/dashboard/download/dashboard/download/docs/Observability/CN-v29-17749815392/index.html",
"type": "file",
"size": 12121,
- "lastModified": "2025-09-26T01:53:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/Observability/CN-v29-17749815392/index.txt",
"type": "file",
"size": 4415,
- "lastModified": "2025-09-26T01:53:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21400,14 +21400,14 @@
"href": "/dashboard/download/dashboard/download/docs/Observability/CN-v30-17935243600/index.html",
"type": "file",
"size": 12121,
- "lastModified": "2025-09-26T01:53:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/Observability/CN-v30-17935243600/index.txt",
"type": "file",
"size": 4415,
- "lastModified": "2025-09-26T01:53:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21419,14 +21419,14 @@
"href": "/dashboard/download/dashboard/download/docs/Observability/CN-v31-17976868329/index.html",
"type": "file",
"size": 12121,
- "lastModified": "2025-09-26T01:53:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/Observability/CN-v31-17976868329/index.txt",
"type": "file",
"size": 4415,
- "lastModified": "2025-09-26T01:53:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21438,14 +21438,14 @@
"href": "/dashboard/download/dashboard/download/docs/Observability/CN-v32-17977204714/index.html",
"type": "file",
"size": 12121,
- "lastModified": "2025-09-26T01:53:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/Observability/CN-v32-17977204714/index.txt",
"type": "file",
"size": 4415,
- "lastModified": "2025-09-26T01:53:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21456,45 +21456,45 @@
"name": "EN-v31-17976868329/",
"href": "/dashboard/download/dashboard/download/docs/Personal/EN-v31-17976868329/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "EN-v32-17977204714/",
"href": "/dashboard/download/dashboard/download/docs/Personal/EN-v32-17977204714/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "Personal-v27-17740487419/",
"href": "/dashboard/download/dashboard/download/docs/Personal/Personal-v27-17740487419/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "Personal-v28-17749789283/",
"href": "/dashboard/download/dashboard/download/docs/Personal/Personal-v28-17749789283/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "Personal-v29-17749815392/",
"href": "/dashboard/download/dashboard/download/docs/Personal/Personal-v29-17749815392/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/docs/Personal/index.html",
"type": "file",
"size": 17059,
- "lastModified": "2025-09-26T01:53:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/Personal/index.txt",
"type": "file",
"size": 5363,
- "lastModified": "2025-09-26T01:53:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21506,14 +21506,14 @@
"href": "/dashboard/download/dashboard/download/docs/Personal/EN-v31-17976868329/index.html",
"type": "file",
"size": 12026,
- "lastModified": "2025-09-26T01:53:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/Personal/EN-v31-17976868329/index.txt",
"type": "file",
"size": 4365,
- "lastModified": "2025-09-26T01:53:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21525,14 +21525,14 @@
"href": "/dashboard/download/dashboard/download/docs/Personal/EN-v32-17977204714/index.html",
"type": "file",
"size": 12026,
- "lastModified": "2025-09-26T01:53:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/Personal/EN-v32-17977204714/index.txt",
"type": "file",
"size": 4365,
- "lastModified": "2025-09-26T01:53:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21544,14 +21544,14 @@
"href": "/dashboard/download/dashboard/download/docs/Personal/Personal-v27-17740487419/index.html",
"type": "file",
"size": 12152,
- "lastModified": "2025-09-26T01:53:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/Personal/Personal-v27-17740487419/index.txt",
"type": "file",
"size": 4431,
- "lastModified": "2025-09-26T01:53:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21563,14 +21563,14 @@
"href": "/dashboard/download/dashboard/download/docs/Personal/Personal-v28-17749789283/index.html",
"type": "file",
"size": 12152,
- "lastModified": "2025-09-26T01:53:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/Personal/Personal-v28-17749789283/index.txt",
"type": "file",
"size": 4431,
- "lastModified": "2025-09-26T01:53:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21582,14 +21582,14 @@
"href": "/dashboard/download/dashboard/download/docs/Personal/Personal-v29-17749815392/index.html",
"type": "file",
"size": 12152,
- "lastModified": "2025-09-26T01:53:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/Personal/Personal-v29-17749815392/index.txt",
"type": "file",
"size": 4431,
- "lastModified": "2025-09-26T01:53:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21601,14 +21601,14 @@
"href": "/dashboard/download/dashboard/download/docs/Personal-v30-17935243600/index.html",
"type": "file",
"size": 11821,
- "lastModified": "2025-09-26T01:53:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/Personal-v30-17935243600/index.txt",
"type": "file",
"size": 4335,
- "lastModified": "2025-09-26T01:53:20Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21619,51 +21619,51 @@
"name": "EN-v31-17976868329/",
"href": "/dashboard/download/dashboard/download/docs/TechExploration/EN-v31-17976868329/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "EN-v32-17977204714/",
"href": "/dashboard/download/dashboard/download/docs/TechExploration/EN-v32-17977204714/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "TechExploration-v25-17740048053/",
"href": "/dashboard/download/dashboard/download/docs/TechExploration/TechExploration-v25-17740048053/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "TechExploration-v27-17740487419/",
"href": "/dashboard/download/dashboard/download/docs/TechExploration/TechExploration-v27-17740487419/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "TechExploration-v28-17749789283/",
"href": "/dashboard/download/dashboard/download/docs/TechExploration/TechExploration-v28-17749789283/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "TechExploration-v29-17749815392/",
"href": "/dashboard/download/dashboard/download/docs/TechExploration/TechExploration-v29-17749815392/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/docs/TechExploration/index.html",
"type": "file",
"size": 18464,
- "lastModified": "2025-09-26T01:53:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/TechExploration/index.txt",
"type": "file",
"size": 5856,
- "lastModified": "2025-09-26T01:53:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21675,14 +21675,14 @@
"href": "/dashboard/download/dashboard/download/docs/TechExploration/EN-v31-17976868329/index.html",
"type": "file",
"size": 12159,
- "lastModified": "2025-09-26T01:53:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/TechExploration/EN-v31-17976868329/index.txt",
"type": "file",
"size": 4435,
- "lastModified": "2025-09-26T01:53:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21694,14 +21694,14 @@
"href": "/dashboard/download/dashboard/download/docs/TechExploration/EN-v32-17977204714/index.html",
"type": "file",
"size": 12159,
- "lastModified": "2025-09-26T01:53:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/TechExploration/EN-v32-17977204714/index.txt",
"type": "file",
"size": 4435,
- "lastModified": "2025-09-26T01:53:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21713,14 +21713,14 @@
"href": "/dashboard/download/dashboard/download/docs/TechExploration/TechExploration-v25-17740048053/index.html",
"type": "file",
"size": 12432,
- "lastModified": "2025-09-26T01:53:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/TechExploration/TechExploration-v25-17740048053/index.txt",
"type": "file",
"size": 4578,
- "lastModified": "2025-09-26T01:53:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21732,14 +21732,14 @@
"href": "/dashboard/download/dashboard/download/docs/TechExploration/TechExploration-v27-17740487419/index.html",
"type": "file",
"size": 12432,
- "lastModified": "2025-09-26T01:53:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/TechExploration/TechExploration-v27-17740487419/index.txt",
"type": "file",
"size": 4578,
- "lastModified": "2025-09-26T01:53:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21751,14 +21751,14 @@
"href": "/dashboard/download/dashboard/download/docs/TechExploration/TechExploration-v28-17749789283/index.html",
"type": "file",
"size": 12432,
- "lastModified": "2025-09-26T01:53:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/TechExploration/TechExploration-v28-17749789283/index.txt",
"type": "file",
"size": 4578,
- "lastModified": "2025-09-26T01:53:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21770,14 +21770,14 @@
"href": "/dashboard/download/dashboard/download/docs/TechExploration/TechExploration-v29-17749815392/index.html",
"type": "file",
"size": 12432,
- "lastModified": "2025-09-26T01:53:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/TechExploration/TechExploration-v29-17749815392/index.txt",
"type": "file",
"size": 4578,
- "lastModified": "2025-09-26T01:53:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21789,14 +21789,14 @@
"href": "/dashboard/download/dashboard/download/docs/TechExploration-v30-17935243600/index.html",
"type": "file",
"size": 11971,
- "lastModified": "2025-09-26T01:53:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/TechExploration-v30-17935243600/index.txt",
"type": "file",
"size": 4412,
- "lastModified": "2025-09-26T01:53:21Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21807,123 +21807,123 @@
"name": "CN-v20-17738959811/",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v20-17738959811/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "CN-v21-17739112034/",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v21-17739112034/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "CN-v23-17739490366/",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v23-17739490366/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "CN-v28-17749789283/",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v28-17749789283/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "CN-v29-17749815392/",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v29-17749815392/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "CN-v30-17935243600/",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v30-17935243600/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "CN-v31-17976868329/",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v31-17976868329/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "CN-v32-17977204714/",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v32-17977204714/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "EN-v21-17739112034/",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v21-17739112034/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "EN-v22-17739462094/",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v22-17739462094/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "EN-v23-17739490366/",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v23-17739490366/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "EN-v26-17740473328/",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v26-17740473328/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "EN-v27-17740487419/",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v27-17740487419/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "EN-v28-17749789283/",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v28-17749789283/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "EN-v29-17749815392/",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v29-17749815392/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "EN-v30-17935243600/",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v30-17935243600/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "EN-v31-17976868329/",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v31-17976868329/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "EN-v32-17977204714/",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v32-17977204714/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/index.html",
"type": "file",
"size": 31564,
- "lastModified": "2025-09-26T01:53:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/index.txt",
"type": "file",
"size": 9615,
- "lastModified": "2025-09-26T01:53:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21935,14 +21935,14 @@
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v20-17738959811/index.html",
"type": "file",
"size": 12558,
- "lastModified": "2025-09-26T01:53:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v20-17738959811/index.txt",
"type": "file",
"size": 4645,
- "lastModified": "2025-09-26T01:53:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21954,14 +21954,14 @@
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v21-17739112034/index.html",
"type": "file",
"size": 12558,
- "lastModified": "2025-09-26T01:53:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v21-17739112034/index.txt",
"type": "file",
"size": 4645,
- "lastModified": "2025-09-26T01:53:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21973,14 +21973,14 @@
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v23-17739490366/index.html",
"type": "file",
"size": 12557,
- "lastModified": "2025-09-26T01:53:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v23-17739490366/index.txt",
"type": "file",
"size": 4645,
- "lastModified": "2025-09-26T01:53:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -21992,14 +21992,14 @@
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v28-17749789283/index.html",
"type": "file",
"size": 12557,
- "lastModified": "2025-09-26T01:53:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v28-17749789283/index.txt",
"type": "file",
"size": 4645,
- "lastModified": "2025-09-26T01:53:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22011,14 +22011,14 @@
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v29-17749815392/index.html",
"type": "file",
"size": 12557,
- "lastModified": "2025-09-26T01:53:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v29-17749815392/index.txt",
"type": "file",
"size": 4645,
- "lastModified": "2025-09-26T01:53:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22030,14 +22030,14 @@
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v30-17935243600/index.html",
"type": "file",
"size": 12557,
- "lastModified": "2025-09-26T01:53:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v30-17935243600/index.txt",
"type": "file",
"size": 4645,
- "lastModified": "2025-09-26T01:53:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22049,14 +22049,14 @@
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v31-17976868329/index.html",
"type": "file",
"size": 12557,
- "lastModified": "2025-09-26T01:53:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v31-17976868329/index.txt",
"type": "file",
"size": 4645,
- "lastModified": "2025-09-26T01:53:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22068,14 +22068,14 @@
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v32-17977204714/index.html",
"type": "file",
"size": 12557,
- "lastModified": "2025-09-26T01:53:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v32-17977204714/index.txt",
"type": "file",
"size": 4645,
- "lastModified": "2025-09-26T01:53:22Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22087,14 +22087,14 @@
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v21-17739112034/index.html",
"type": "file",
"size": 12558,
- "lastModified": "2025-09-26T01:53:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v21-17739112034/index.txt",
"type": "file",
"size": 4645,
- "lastModified": "2025-09-26T01:53:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22106,14 +22106,14 @@
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v22-17739462094/index.html",
"type": "file",
"size": 12558,
- "lastModified": "2025-09-26T01:53:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v22-17739462094/index.txt",
"type": "file",
"size": 4645,
- "lastModified": "2025-09-26T01:53:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22125,14 +22125,14 @@
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v23-17739490366/index.html",
"type": "file",
"size": 12558,
- "lastModified": "2025-09-26T01:53:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v23-17739490366/index.txt",
"type": "file",
"size": 4645,
- "lastModified": "2025-09-26T01:53:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22144,14 +22144,14 @@
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v26-17740473328/index.html",
"type": "file",
"size": 12557,
- "lastModified": "2025-09-26T01:53:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v26-17740473328/index.txt",
"type": "file",
"size": 4645,
- "lastModified": "2025-09-26T01:53:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22163,14 +22163,14 @@
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v27-17740487419/index.html",
"type": "file",
"size": 12557,
- "lastModified": "2025-09-26T01:53:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v27-17740487419/index.txt",
"type": "file",
"size": 4645,
- "lastModified": "2025-09-26T01:53:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22182,14 +22182,14 @@
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v28-17749789283/index.html",
"type": "file",
"size": 12557,
- "lastModified": "2025-09-26T01:53:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v28-17749789283/index.txt",
"type": "file",
"size": 4645,
- "lastModified": "2025-09-26T01:53:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22201,14 +22201,14 @@
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v29-17749815392/index.html",
"type": "file",
"size": 12557,
- "lastModified": "2025-09-26T01:53:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v29-17749815392/index.txt",
"type": "file",
"size": 4645,
- "lastModified": "2025-09-26T01:53:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22220,14 +22220,14 @@
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v30-17935243600/index.html",
"type": "file",
"size": 12557,
- "lastModified": "2025-09-26T01:53:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v30-17935243600/index.txt",
"type": "file",
"size": 4645,
- "lastModified": "2025-09-26T01:53:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22239,14 +22239,14 @@
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v31-17976868329/index.html",
"type": "file",
"size": 12557,
- "lastModified": "2025-09-26T01:53:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v31-17976868329/index.txt",
"type": "file",
"size": 4645,
- "lastModified": "2025-09-26T01:53:23Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22258,14 +22258,14 @@
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v32-17977204714/index.html",
"type": "file",
"size": 12557,
- "lastModified": "2025-09-26T01:53:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v32-17977204714/index.txt",
"type": "file",
"size": 4645,
- "lastModified": "2025-09-26T01:53:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22276,63 +22276,63 @@
"name": "CN-v23-17739490366/",
"href": "/dashboard/download/dashboard/download/docs/interview-qa/CN-v23-17739490366/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "CN-v26-17740473328/",
"href": "/dashboard/download/dashboard/download/docs/interview-qa/CN-v26-17740473328/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "CN-v27-17740487419/",
"href": "/dashboard/download/dashboard/download/docs/interview-qa/CN-v27-17740487419/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "CN-v28-17749789283/",
"href": "/dashboard/download/dashboard/download/docs/interview-qa/CN-v28-17749789283/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "CN-v29-17749815392/",
"href": "/dashboard/download/dashboard/download/docs/interview-qa/CN-v29-17749815392/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "CN-v30-17935243600/",
"href": "/dashboard/download/dashboard/download/docs/interview-qa/CN-v30-17935243600/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "CN-v31-17976868329/",
"href": "/dashboard/download/dashboard/download/docs/interview-qa/CN-v31-17976868329/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "CN-v32-17977204714/",
"href": "/dashboard/download/dashboard/download/docs/interview-qa/CN-v32-17977204714/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/docs/interview-qa/index.html",
"type": "file",
"size": 20033,
- "lastModified": "2025-09-26T01:53:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/interview-qa/index.txt",
"type": "file",
"size": 6107,
- "lastModified": "2025-09-26T01:53:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22344,14 +22344,14 @@
"href": "/dashboard/download/dashboard/download/docs/interview-qa/CN-v23-17739490366/index.html",
"type": "file",
"size": 12102,
- "lastModified": "2025-09-26T01:53:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/interview-qa/CN-v23-17739490366/index.txt",
"type": "file",
"size": 4405,
- "lastModified": "2025-09-26T01:53:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22363,14 +22363,14 @@
"href": "/dashboard/download/dashboard/download/docs/interview-qa/CN-v26-17740473328/index.html",
"type": "file",
"size": 12102,
- "lastModified": "2025-09-26T01:53:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/interview-qa/CN-v26-17740473328/index.txt",
"type": "file",
"size": 4405,
- "lastModified": "2025-09-26T01:53:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22382,14 +22382,14 @@
"href": "/dashboard/download/dashboard/download/docs/interview-qa/CN-v27-17740487419/index.html",
"type": "file",
"size": 12102,
- "lastModified": "2025-09-26T01:53:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/interview-qa/CN-v27-17740487419/index.txt",
"type": "file",
"size": 4405,
- "lastModified": "2025-09-26T01:53:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22401,14 +22401,14 @@
"href": "/dashboard/download/dashboard/download/docs/interview-qa/CN-v28-17749789283/index.html",
"type": "file",
"size": 12102,
- "lastModified": "2025-09-26T01:53:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/interview-qa/CN-v28-17749789283/index.txt",
"type": "file",
"size": 4405,
- "lastModified": "2025-09-26T01:53:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22420,14 +22420,14 @@
"href": "/dashboard/download/dashboard/download/docs/interview-qa/CN-v29-17749815392/index.html",
"type": "file",
"size": 12102,
- "lastModified": "2025-09-26T01:53:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/interview-qa/CN-v29-17749815392/index.txt",
"type": "file",
"size": 4405,
- "lastModified": "2025-09-26T01:53:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22439,14 +22439,14 @@
"href": "/dashboard/download/dashboard/download/docs/interview-qa/CN-v30-17935243600/index.html",
"type": "file",
"size": 12102,
- "lastModified": "2025-09-26T01:53:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/interview-qa/CN-v30-17935243600/index.txt",
"type": "file",
"size": 4405,
- "lastModified": "2025-09-26T01:53:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22458,14 +22458,14 @@
"href": "/dashboard/download/dashboard/download/docs/interview-qa/CN-v31-17976868329/index.html",
"type": "file",
"size": 12102,
- "lastModified": "2025-09-26T01:53:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/interview-qa/CN-v31-17976868329/index.txt",
"type": "file",
"size": 4405,
- "lastModified": "2025-09-26T01:53:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22477,14 +22477,14 @@
"href": "/dashboard/download/dashboard/download/docs/interview-qa/CN-v32-17977204714/index.html",
"type": "file",
"size": 12102,
- "lastModified": "2025-09-26T01:53:24Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/docs/interview-qa/CN-v32-17977204714/index.txt",
"type": "file",
"size": 4405,
- "lastModified": "2025-09-26T01:53:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22495,45 +22495,45 @@
"name": "apisix-gateway/",
"href": "/dashboard/download/dashboard/download/offline-package/apisix-gateway/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/offline-package/index.html",
"type": "file",
"size": 16690,
- "lastModified": "2025-09-26T01:53:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/offline-package/index.txt",
"type": "file",
"size": 5224,
- "lastModified": "2025-09-26T01:53:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "k3s/",
"href": "/dashboard/download/dashboard/download/offline-package/k3s/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "kong-gateway/",
"href": "/dashboard/download/dashboard/download/offline-package/kong-gateway/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "nginx-ingress/",
"href": "/dashboard/download/dashboard/download/offline-package/nginx-ingress/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "sealos/",
"href": "/dashboard/download/dashboard/download/offline-package/sealos/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22545,14 +22545,14 @@
"href": "/dashboard/download/dashboard/download/offline-package/apisix-gateway/index.html",
"type": "file",
"size": 11823,
- "lastModified": "2025-09-26T01:53:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/offline-package/apisix-gateway/index.txt",
"type": "file",
"size": 4335,
- "lastModified": "2025-09-26T01:53:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22564,14 +22564,14 @@
"href": "/dashboard/download/dashboard/download/offline-package/k3s/index.html",
"type": "file",
"size": 11592,
- "lastModified": "2025-09-26T01:53:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/offline-package/k3s/index.txt",
"type": "file",
"size": 4214,
- "lastModified": "2025-09-26T01:53:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22583,14 +22583,14 @@
"href": "/dashboard/download/dashboard/download/offline-package/kong-gateway/index.html",
"type": "file",
"size": 11781,
- "lastModified": "2025-09-26T01:53:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/offline-package/kong-gateway/index.txt",
"type": "file",
"size": 4313,
- "lastModified": "2025-09-26T01:53:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22602,14 +22602,14 @@
"href": "/dashboard/download/dashboard/download/offline-package/nginx-ingress/index.html",
"type": "file",
"size": 11802,
- "lastModified": "2025-09-26T01:53:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/offline-package/nginx-ingress/index.txt",
"type": "file",
"size": 4324,
- "lastModified": "2025-09-26T01:53:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22621,14 +22621,14 @@
"href": "/dashboard/download/dashboard/download/offline-package/sealos/index.html",
"type": "file",
"size": 11654,
- "lastModified": "2025-09-26T01:53:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/offline-package/sealos/index.txt",
"type": "file",
"size": 4247,
- "lastModified": "2025-09-26T01:53:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22639,21 +22639,21 @@
"name": "OpenTelemetry/",
"href": "/dashboard/download/dashboard/download/otel/OpenTelemetry/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/otel/index.html",
"type": "file",
"size": 12736,
- "lastModified": "2025-09-26T01:53:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/otel/index.txt",
"type": "file",
"size": 4254,
- "lastModified": "2025-09-26T01:53:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22665,20 +22665,20 @@
"href": "/dashboard/download/dashboard/download/otel/OpenTelemetry/index.html",
"type": "file",
"size": 13189,
- "lastModified": "2025-09-26T01:53:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/otel/OpenTelemetry/index.txt",
"type": "file",
"size": 4422,
- "lastModified": "2025-09-26T01:53:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "v0.133.0/",
"href": "/dashboard/download/dashboard/download/otel/OpenTelemetry/v0.133.0/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22690,14 +22690,14 @@
"href": "/dashboard/download/dashboard/download/otel/OpenTelemetry/v0.133.0/index.html",
"type": "file",
"size": 11910,
- "lastModified": "2025-09-26T01:53:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/otel/OpenTelemetry/v0.133.0/index.txt",
"type": "file",
"size": 4305,
- "lastModified": "2025-09-26T01:53:25Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22709,14 +22709,14 @@
"href": "/dashboard/download/dashboard/download/rpm/index.html",
"type": "file",
"size": 11134,
- "lastModified": "2025-09-26T01:53:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/rpm/index.txt",
"type": "file",
"size": 4047,
- "lastModified": "2025-09-26T01:53:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22728,32 +22728,32 @@
"href": "/dashboard/download/dashboard/download/sealos/index.html",
"type": "file",
"size": 14664,
- "lastModified": "2025-09-26T01:53:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/sealos/index.txt",
"type": "file",
"size": 4710,
- "lastModified": "2025-09-26T01:53:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "offline-sealos-5/",
"href": "/dashboard/download/dashboard/download/sealos/offline-sealos-5/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "offline-sealos-6/",
"href": "/dashboard/download/dashboard/download/sealos/offline-sealos-6/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "offline-sealos-8/",
"href": "/dashboard/download/dashboard/download/sealos/offline-sealos-8/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22765,14 +22765,14 @@
"href": "/dashboard/download/dashboard/download/sealos/offline-sealos-5/index.html",
"type": "file",
"size": 11692,
- "lastModified": "2025-09-26T01:53:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/sealos/offline-sealos-5/index.txt",
"type": "file",
"size": 4266,
- "lastModified": "2025-09-26T01:53:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22784,14 +22784,14 @@
"href": "/dashboard/download/dashboard/download/sealos/offline-sealos-6/index.html",
"type": "file",
"size": 11692,
- "lastModified": "2025-09-26T01:53:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/sealos/offline-sealos-6/index.txt",
"type": "file",
"size": 4266,
- "lastModified": "2025-09-26T01:53:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22803,14 +22803,14 @@
"href": "/dashboard/download/dashboard/download/sealos/offline-sealos-8/index.html",
"type": "file",
"size": 11692,
- "lastModified": "2025-09-26T01:53:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/sealos/offline-sealos-8/index.txt",
"type": "file",
"size": 4266,
- "lastModified": "2025-09-26T01:53:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22822,50 +22822,50 @@
"href": "/dashboard/download/dashboard/download/xray-core/index.html",
"type": "file",
"size": 17317,
- "lastModified": "2025-09-26T01:53:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/xray-core/index.txt",
"type": "file",
"size": 5260,
- "lastModified": "2025-09-26T01:53:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "v25.8.29/",
"href": "/dashboard/download/dashboard/download/xray-core/v25.8.29/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "v25.8.3/",
"href": "/dashboard/download/dashboard/download/xray-core/v25.8.3/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "v25.8.31/",
"href": "/dashboard/download/dashboard/download/xray-core/v25.8.31/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "v25.9.10/",
"href": "/dashboard/download/dashboard/download/xray-core/v25.9.10/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "v25.9.11/",
"href": "/dashboard/download/dashboard/download/xray-core/v25.9.11/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "v25.9.5/",
"href": "/dashboard/download/dashboard/download/xray-core/v25.9.5/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22877,14 +22877,14 @@
"href": "/dashboard/download/dashboard/download/xray-core/v25.8.29/index.html",
"type": "file",
"size": 11582,
- "lastModified": "2025-09-26T01:53:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/xray-core/v25.8.29/index.txt",
"type": "file",
"size": 4209,
- "lastModified": "2025-09-26T01:53:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22896,14 +22896,14 @@
"href": "/dashboard/download/dashboard/download/xray-core/v25.8.3/index.html",
"type": "file",
"size": 11561,
- "lastModified": "2025-09-26T01:53:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/xray-core/v25.8.3/index.txt",
"type": "file",
"size": 4198,
- "lastModified": "2025-09-26T01:53:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22915,14 +22915,14 @@
"href": "/dashboard/download/dashboard/download/xray-core/v25.8.31/index.html",
"type": "file",
"size": 11582,
- "lastModified": "2025-09-26T01:53:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/xray-core/v25.8.31/index.txt",
"type": "file",
"size": 4209,
- "lastModified": "2025-09-26T01:53:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22934,14 +22934,14 @@
"href": "/dashboard/download/dashboard/download/xray-core/v25.9.10/index.html",
"type": "file",
"size": 11580,
- "lastModified": "2025-09-26T01:53:26Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/xray-core/v25.9.10/index.txt",
"type": "file",
"size": 4208,
- "lastModified": "2025-09-26T01:53:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22953,14 +22953,14 @@
"href": "/dashboard/download/dashboard/download/xray-core/v25.9.11/index.html",
"type": "file",
"size": 11580,
- "lastModified": "2025-09-26T01:53:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/xray-core/v25.9.11/index.txt",
"type": "file",
"size": 4208,
- "lastModified": "2025-09-26T01:53:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22972,14 +22972,14 @@
"href": "/dashboard/download/dashboard/download/xray-core/v25.9.5/index.html",
"type": "file",
"size": 11559,
- "lastModified": "2025-09-26T01:53:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/xray-core/v25.9.5/index.txt",
"type": "file",
"size": 4197,
- "lastModified": "2025-09-26T01:53:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -22990,45 +22990,45 @@
"name": "android/",
"href": "/dashboard/download/dashboard/download/xstream/android/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/xstream/index.html",
"type": "file",
"size": 16299,
- "lastModified": "2025-09-26T01:53:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/xstream/index.txt",
"type": "file",
"size": 4994,
- "lastModified": "2025-09-26T01:53:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "ios/",
"href": "/dashboard/download/dashboard/download/xstream/ios/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "linux/",
"href": "/dashboard/download/dashboard/download/xstream/linux/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "macos/",
"href": "/dashboard/download/dashboard/download/xstream/macos/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "windows/",
"href": "/dashboard/download/dashboard/download/xstream/windows/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23040,20 +23040,20 @@
"href": "/dashboard/download/dashboard/download/xstream/android/index.html",
"type": "file",
"size": 13101,
- "lastModified": "2025-09-26T01:53:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/xstream/android/index.txt",
"type": "file",
"size": 4374,
- "lastModified": "2025-09-26T01:53:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "latest/",
"href": "/dashboard/download/dashboard/download/xstream/android/latest/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23065,14 +23065,14 @@
"href": "/dashboard/download/dashboard/download/xstream/android/latest/index.html",
"type": "file",
"size": 11814,
- "lastModified": "2025-09-26T01:53:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/xstream/android/latest/index.txt",
"type": "file",
"size": 4253,
- "lastModified": "2025-09-26T01:53:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23084,20 +23084,20 @@
"href": "/dashboard/download/dashboard/download/xstream/ios/index.html",
"type": "file",
"size": 13005,
- "lastModified": "2025-09-26T01:53:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/xstream/ios/index.txt",
"type": "file",
"size": 4322,
- "lastModified": "2025-09-26T01:53:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "latest/",
"href": "/dashboard/download/dashboard/download/xstream/ios/latest/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23109,14 +23109,14 @@
"href": "/dashboard/download/dashboard/download/xstream/ios/latest/index.html",
"type": "file",
"size": 11738,
- "lastModified": "2025-09-26T01:53:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/xstream/ios/latest/index.txt",
"type": "file",
"size": 4213,
- "lastModified": "2025-09-26T01:53:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23128,26 +23128,26 @@
"href": "/dashboard/download/dashboard/download/xstream/linux/index.html",
"type": "file",
"size": 13959,
- "lastModified": "2025-09-26T01:53:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/xstream/linux/index.txt",
"type": "file",
"size": 4543,
- "lastModified": "2025-09-26T01:53:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "latest/",
"href": "/dashboard/download/dashboard/download/xstream/linux/latest/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "stable/",
"href": "/dashboard/download/dashboard/download/xstream/linux/stable/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23159,14 +23159,14 @@
"href": "/dashboard/download/dashboard/download/xstream/linux/latest/index.html",
"type": "file",
"size": 11775,
- "lastModified": "2025-09-26T01:53:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/xstream/linux/latest/index.txt",
"type": "file",
"size": 4233,
- "lastModified": "2025-09-26T01:53:27Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23178,14 +23178,14 @@
"href": "/dashboard/download/dashboard/download/xstream/linux/stable/index.html",
"type": "file",
"size": 11775,
- "lastModified": "2025-09-26T01:53:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/xstream/linux/stable/index.txt",
"type": "file",
"size": 4233,
- "lastModified": "2025-09-26T01:53:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23196,33 +23196,33 @@
"name": "docs/",
"href": "/dashboard/download/dashboard/download/xstream/macos/docs/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/download/xstream/macos/index.html",
"type": "file",
"size": 14850,
- "lastModified": "2025-09-26T01:53:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/xstream/macos/index.txt",
"type": "file",
"size": 4731,
- "lastModified": "2025-09-26T01:53:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "latest/",
"href": "/dashboard/download/dashboard/download/xstream/macos/latest/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "stable/",
"href": "/dashboard/download/dashboard/download/xstream/macos/stable/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23234,14 +23234,14 @@
"href": "/dashboard/download/dashboard/download/xstream/macos/docs/index.html",
"type": "file",
"size": 11733,
- "lastModified": "2025-09-26T01:53:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/xstream/macos/docs/index.txt",
"type": "file",
"size": 4210,
- "lastModified": "2025-09-26T01:53:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23253,14 +23253,14 @@
"href": "/dashboard/download/dashboard/download/xstream/macos/latest/index.html",
"type": "file",
"size": 11775,
- "lastModified": "2025-09-26T01:53:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/xstream/macos/latest/index.txt",
"type": "file",
"size": 4233,
- "lastModified": "2025-09-26T01:53:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23272,14 +23272,14 @@
"href": "/dashboard/download/dashboard/download/xstream/macos/stable/index.html",
"type": "file",
"size": 11774,
- "lastModified": "2025-09-26T01:53:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/xstream/macos/stable/index.txt",
"type": "file",
"size": 4233,
- "lastModified": "2025-09-26T01:53:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23291,38 +23291,38 @@
"href": "/dashboard/download/dashboard/download/xstream/windows/index.html",
"type": "file",
"size": 15819,
- "lastModified": "2025-09-26T01:53:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/xstream/windows/index.txt",
"type": "file",
"size": 4964,
- "lastModified": "2025-09-26T01:53:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "latest/",
"href": "/dashboard/download/dashboard/download/xstream/windows/latest/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "stable/",
"href": "/dashboard/download/dashboard/download/xstream/windows/stable/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "win10/",
"href": "/dashboard/download/dashboard/download/xstream/windows/win10/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "win11/",
"href": "/dashboard/download/dashboard/download/xstream/windows/win11/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23334,14 +23334,14 @@
"href": "/dashboard/download/dashboard/download/xstream/windows/latest/index.html",
"type": "file",
"size": 11814,
- "lastModified": "2025-09-26T01:53:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/xstream/windows/latest/index.txt",
"type": "file",
"size": 4253,
- "lastModified": "2025-09-26T01:53:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23353,14 +23353,14 @@
"href": "/dashboard/download/dashboard/download/xstream/windows/stable/index.html",
"type": "file",
"size": 11814,
- "lastModified": "2025-09-26T01:53:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/xstream/windows/stable/index.txt",
"type": "file",
"size": 4253,
- "lastModified": "2025-09-26T01:53:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23372,14 +23372,14 @@
"href": "/dashboard/download/dashboard/download/xstream/windows/win10/index.html",
"type": "file",
"size": 11792,
- "lastModified": "2025-09-26T01:53:28Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/xstream/windows/win10/index.txt",
"type": "file",
"size": 4241,
- "lastModified": "2025-09-26T01:53:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23391,14 +23391,14 @@
"href": "/dashboard/download/dashboard/download/xstream/windows/win11/index.html",
"type": "file",
"size": 11792,
- "lastModified": "2025-09-26T01:53:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/download/xstream/windows/win11/index.txt",
"type": "file",
"size": 4241,
- "lastModified": "2025-09-26T01:53:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23410,14 +23410,14 @@
"href": "/dashboard/download/dashboard/icons/index.html",
"type": "file",
"size": 9880,
- "lastModified": "2025-09-26T01:53:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/icons/index.txt",
"type": "file",
"size": 3868,
- "lastModified": "2025-09-26T01:53:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23429,14 +23429,14 @@
"href": "/dashboard/download/dashboard/insight/index.html",
"type": "file",
"size": 10906,
- "lastModified": "2025-09-26T01:53:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/insight/index.txt",
"type": "file",
"size": 3996,
- "lastModified": "2025-09-26T01:53:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23448,14 +23448,14 @@
"href": "/dashboard/download/dashboard/login/index.html",
"type": "file",
"size": 10862,
- "lastModified": "2025-09-26T01:53:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/login/index.txt",
"type": "file",
"size": 3973,
- "lastModified": "2025-09-26T01:53:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23466,51 +23466,51 @@
"name": "account/",
"href": "/dashboard/download/dashboard/panel/account/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "agent/",
"href": "/dashboard/download/dashboard/panel/agent/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "api/",
"href": "/dashboard/download/dashboard/panel/api/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/dashboard/panel/index.html",
"type": "file",
"size": 16631,
- "lastModified": "2025-09-26T01:53:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/panel/index.txt",
"type": "file",
"size": 4928,
- "lastModified": "2025-09-26T01:53:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "ldp/",
"href": "/dashboard/download/dashboard/panel/ldp/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "subscription/",
"href": "/dashboard/download/dashboard/panel/subscription/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
- "name": "management/",
- "href": "/dashboard/download/dashboard/panel/management/",
+ "name": "xray/",
+ "href": "/dashboard/download/dashboard/panel/xray/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23522,14 +23522,14 @@
"href": "/dashboard/download/dashboard/panel/account/index.html",
"type": "file",
"size": 11163,
- "lastModified": "2025-09-26T01:53:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/panel/account/index.txt",
"type": "file",
"size": 4062,
- "lastModified": "2025-09-26T01:53:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23541,14 +23541,14 @@
"href": "/dashboard/download/dashboard/panel/agent/index.html",
"type": "file",
"size": 11121,
- "lastModified": "2025-09-26T01:53:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/panel/agent/index.txt",
"type": "file",
"size": 4040,
- "lastModified": "2025-09-26T01:53:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23560,14 +23560,14 @@
"href": "/dashboard/download/dashboard/panel/api/index.html",
"type": "file",
"size": 11079,
- "lastModified": "2025-09-26T01:53:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/panel/api/index.txt",
"type": "file",
"size": 4018,
- "lastModified": "2025-09-26T01:53:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23579,14 +23579,14 @@
"href": "/dashboard/download/dashboard/panel/ldp/index.html",
"type": "file",
"size": 11079,
- "lastModified": "2025-09-26T01:53:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/panel/ldp/index.txt",
"type": "file",
"size": 4018,
- "lastModified": "2025-09-26T01:53:29Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23598,33 +23598,33 @@
"href": "/dashboard/download/dashboard/panel/subscription/index.html",
"type": "file",
"size": 11267,
- "lastModified": "2025-09-26T01:53:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/panel/subscription/index.txt",
"type": "file",
"size": 4117,
- "lastModified": "2025-09-26T01:53:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
{
- "path": "dashboard/download/dashboard/panel/management/",
+ "path": "dashboard/download/dashboard/panel/xray/",
"entries": [
{
"name": "index.html",
- "href": "/dashboard/download/dashboard/panel/management/index.html",
+ "href": "/dashboard/download/dashboard/panel/xray/index.html",
"type": "file",
"size": 11100,
- "lastModified": "2025-09-26T01:53:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
- "href": "/dashboard/download/dashboard/panel/management/index.txt",
+ "href": "/dashboard/download/dashboard/panel/xray/index.txt",
"type": "file",
"size": 4029,
- "lastModified": "2025-09-26T01:53:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23636,14 +23636,14 @@
"href": "/dashboard/download/dashboard/register/index.html",
"type": "file",
"size": 10924,
- "lastModified": "2025-09-26T01:53:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/dashboard/register/index.txt",
"type": "file",
"size": 4006,
- "lastModified": "2025-09-26T01:53:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23655,14 +23655,14 @@
"href": "/dashboard/download/deb/index.html",
"type": "file",
"size": 9506,
- "lastModified": "2025-09-26T01:53:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/deb/index.txt",
"type": "file",
"size": 3735,
- "lastModified": "2025-09-26T01:53:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23674,14 +23674,14 @@
"href": "/dashboard/download/docs/index.html",
"type": "file",
"size": 7885,
- "lastModified": "2025-09-26T01:53:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/docs/index.txt",
"type": "file",
"size": 3625,
- "lastModified": "2025-09-26T01:53:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23692,45 +23692,45 @@
"name": "apisix-gateway/",
"href": "/dashboard/download/offline-package/apisix-gateway/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/offline-package/index.html",
"type": "file",
"size": 13148,
- "lastModified": "2025-09-26T01:53:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/offline-package/index.txt",
"type": "file",
"size": 4618,
- "lastModified": "2025-09-26T01:53:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "k3s/",
"href": "/dashboard/download/offline-package/k3s/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "kong-gateway/",
"href": "/dashboard/download/offline-package/kong-gateway/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "nginx-ingress/",
"href": "/dashboard/download/offline-package/nginx-ingress/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "sealos/",
"href": "/dashboard/download/offline-package/sealos/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23742,14 +23742,14 @@
"href": "/dashboard/download/offline-package/apisix-gateway/index.html",
"type": "file",
"size": 12650,
- "lastModified": "2025-09-26T01:53:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/offline-package/apisix-gateway/index.txt",
"type": "file",
"size": 4567,
- "lastModified": "2025-09-26T01:53:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23761,14 +23761,14 @@
"href": "/dashboard/download/offline-package/k3s/index.html",
"type": "file",
"size": 13768,
- "lastModified": "2025-09-26T01:53:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/offline-package/k3s/index.txt",
"type": "file",
"size": 4741,
- "lastModified": "2025-09-26T01:53:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23780,14 +23780,14 @@
"href": "/dashboard/download/offline-package/kong-gateway/index.html",
"type": "file",
"size": 12580,
- "lastModified": "2025-09-26T01:53:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/offline-package/kong-gateway/index.txt",
"type": "file",
"size": 4529,
- "lastModified": "2025-09-26T01:53:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23799,14 +23799,14 @@
"href": "/dashboard/download/offline-package/nginx-ingress/index.html",
"type": "file",
"size": 12616,
- "lastModified": "2025-09-26T01:53:30Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/offline-package/nginx-ingress/index.txt",
"type": "file",
"size": 4548,
- "lastModified": "2025-09-26T01:53:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23818,14 +23818,14 @@
"href": "/dashboard/download/offline-package/sealos/index.html",
"type": "file",
"size": 12393,
- "lastModified": "2025-09-26T01:53:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/offline-package/sealos/index.txt",
"type": "file",
"size": 4423,
- "lastModified": "2025-09-26T01:53:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23836,21 +23836,21 @@
"name": "OpenTelemetry/",
"href": "/dashboard/download/otel/OpenTelemetry/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/otel/index.html",
"type": "file",
"size": 9395,
- "lastModified": "2025-09-26T01:53:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/otel/index.txt",
"type": "file",
"size": 3788,
- "lastModified": "2025-09-26T01:53:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23862,20 +23862,20 @@
"href": "/dashboard/download/otel/OpenTelemetry/index.html",
"type": "file",
"size": 9772,
- "lastModified": "2025-09-26T01:53:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/otel/OpenTelemetry/index.txt",
"type": "file",
"size": 3928,
- "lastModified": "2025-09-26T01:53:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "v0.133.0/",
"href": "/dashboard/download/otel/OpenTelemetry/v0.133.0/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23887,14 +23887,14 @@
"href": "/dashboard/download/otel/OpenTelemetry/v0.133.0/index.html",
"type": "file",
"size": 13792,
- "lastModified": "2025-09-26T01:53:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/otel/OpenTelemetry/v0.133.0/index.txt",
"type": "file",
"size": 4618,
- "lastModified": "2025-09-26T01:53:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23906,14 +23906,14 @@
"href": "/dashboard/download/rpm/index.html",
"type": "file",
"size": 7868,
- "lastModified": "2025-09-26T01:53:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/rpm/index.txt",
"type": "file",
"size": 3616,
- "lastModified": "2025-09-26T01:53:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23925,32 +23925,32 @@
"href": "/dashboard/download/sealos/index.html",
"type": "file",
"size": 11192,
- "lastModified": "2025-09-26T01:53:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/sealos/index.txt",
"type": "file",
"size": 4159,
- "lastModified": "2025-09-26T01:53:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "offline-sealos-5/",
"href": "/dashboard/download/sealos/offline-sealos-5/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "offline-sealos-6/",
"href": "/dashboard/download/sealos/offline-sealos-6/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "offline-sealos-8/",
"href": "/dashboard/download/sealos/offline-sealos-8/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23962,14 +23962,14 @@
"href": "/dashboard/download/sealos/offline-sealos-5/index.html",
"type": "file",
"size": 8327,
- "lastModified": "2025-09-26T01:53:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/sealos/offline-sealos-5/index.txt",
"type": "file",
"size": 3795,
- "lastModified": "2025-09-26T01:53:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -23981,14 +23981,14 @@
"href": "/dashboard/download/sealos/offline-sealos-6/index.html",
"type": "file",
"size": 8327,
- "lastModified": "2025-09-26T01:53:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/sealos/offline-sealos-6/index.txt",
"type": "file",
"size": 3795,
- "lastModified": "2025-09-26T01:53:31Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24000,14 +24000,14 @@
"href": "/dashboard/download/sealos/offline-sealos-8/index.html",
"type": "file",
"size": 8327,
- "lastModified": "2025-09-26T01:53:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/sealos/offline-sealos-8/index.txt",
"type": "file",
"size": 3795,
- "lastModified": "2025-09-26T01:53:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24019,50 +24019,50 @@
"href": "/dashboard/download/xray-core/index.html",
"type": "file",
"size": 13681,
- "lastModified": "2025-09-26T01:53:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/xray-core/index.txt",
"type": "file",
"size": 4597,
- "lastModified": "2025-09-26T01:53:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "v25.8.29/",
"href": "/dashboard/download/xray-core/v25.8.29/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "v25.8.3/",
"href": "/dashboard/download/xray-core/v25.8.3/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "v25.8.31/",
"href": "/dashboard/download/xray-core/v25.8.31/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "v25.9.10/",
"href": "/dashboard/download/xray-core/v25.9.10/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "v25.9.11/",
"href": "/dashboard/download/xray-core/v25.9.11/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "v25.9.5/",
"href": "/dashboard/download/xray-core/v25.9.5/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24074,14 +24074,14 @@
"href": "/dashboard/download/xray-core/v25.8.29/index.html",
"type": "file",
"size": 12063,
- "lastModified": "2025-09-26T01:53:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/xray-core/v25.8.29/index.txt",
"type": "file",
"size": 4192,
- "lastModified": "2025-09-26T01:53:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24093,14 +24093,14 @@
"href": "/dashboard/download/xray-core/v25.8.3/index.html",
"type": "file",
"size": 12036,
- "lastModified": "2025-09-26T01:53:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/xray-core/v25.8.3/index.txt",
"type": "file",
"size": 4180,
- "lastModified": "2025-09-26T01:53:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24112,14 +24112,14 @@
"href": "/dashboard/download/xray-core/v25.8.31/index.html",
"type": "file",
"size": 12059,
- "lastModified": "2025-09-26T01:53:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/xray-core/v25.8.31/index.txt",
"type": "file",
"size": 4192,
- "lastModified": "2025-09-26T01:53:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24131,14 +24131,14 @@
"href": "/dashboard/download/xray-core/v25.9.10/index.html",
"type": "file",
"size": 8235,
- "lastModified": "2025-09-26T01:53:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/xray-core/v25.9.10/index.txt",
"type": "file",
"size": 3747,
- "lastModified": "2025-09-26T01:53:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24150,14 +24150,14 @@
"href": "/dashboard/download/xray-core/v25.9.11/index.html",
"type": "file",
"size": 8235,
- "lastModified": "2025-09-26T01:53:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/xray-core/v25.9.11/index.txt",
"type": "file",
"size": 3747,
- "lastModified": "2025-09-26T01:53:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24169,14 +24169,14 @@
"href": "/dashboard/download/xray-core/v25.9.5/index.html",
"type": "file",
"size": 8218,
- "lastModified": "2025-09-26T01:53:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/xray-core/v25.9.5/index.txt",
"type": "file",
"size": 3738,
- "lastModified": "2025-09-26T01:53:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24187,45 +24187,45 @@
"name": "android/",
"href": "/dashboard/download/xstream/android/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/xstream/index.html",
"type": "file",
"size": 12705,
- "lastModified": "2025-09-26T01:53:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/xstream/index.txt",
"type": "file",
"size": 4362,
- "lastModified": "2025-09-26T01:53:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "ios/",
"href": "/dashboard/download/xstream/ios/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "linux/",
"href": "/dashboard/download/xstream/linux/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "macos/",
"href": "/dashboard/download/xstream/macos/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "windows/",
"href": "/dashboard/download/xstream/windows/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24237,20 +24237,20 @@
"href": "/dashboard/download/xstream/android/index.html",
"type": "file",
"size": 9703,
- "lastModified": "2025-09-26T01:53:32Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/xstream/android/index.txt",
"type": "file",
"size": 3889,
- "lastModified": "2025-09-26T01:53:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "latest/",
"href": "/dashboard/download/xstream/android/latest/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24262,14 +24262,14 @@
"href": "/dashboard/download/xstream/android/latest/index.html",
"type": "file",
"size": 10176,
- "lastModified": "2025-09-26T01:53:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/xstream/android/latest/index.txt",
"type": "file",
"size": 3958,
- "lastModified": "2025-09-26T01:53:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24281,20 +24281,20 @@
"href": "/dashboard/download/xstream/ios/index.html",
"type": "file",
"size": 9623,
- "lastModified": "2025-09-26T01:53:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/xstream/ios/index.txt",
"type": "file",
"size": 3845,
- "lastModified": "2025-09-26T01:53:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "latest/",
"href": "/dashboard/download/xstream/ios/latest/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24306,14 +24306,14 @@
"href": "/dashboard/download/xstream/ios/latest/index.html",
"type": "file",
"size": 10093,
- "lastModified": "2025-09-26T01:53:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/xstream/ios/latest/index.txt",
"type": "file",
"size": 3914,
- "lastModified": "2025-09-26T01:53:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24325,26 +24325,26 @@
"href": "/dashboard/download/xstream/linux/index.html",
"type": "file",
"size": 10506,
- "lastModified": "2025-09-26T01:53:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/xstream/linux/index.txt",
"type": "file",
"size": 4021,
- "lastModified": "2025-09-26T01:53:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "latest/",
"href": "/dashboard/download/xstream/linux/latest/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "stable/",
"href": "/dashboard/download/xstream/linux/stable/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24356,14 +24356,14 @@
"href": "/dashboard/download/xstream/linux/latest/index.html",
"type": "file",
"size": 10135,
- "lastModified": "2025-09-26T01:53:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/xstream/linux/latest/index.txt",
"type": "file",
"size": 3936,
- "lastModified": "2025-09-26T01:53:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24375,14 +24375,14 @@
"href": "/dashboard/download/xstream/linux/stable/index.html",
"type": "file",
"size": 10137,
- "lastModified": "2025-09-26T01:53:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/xstream/linux/stable/index.txt",
"type": "file",
"size": 3936,
- "lastModified": "2025-09-26T01:53:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24393,33 +24393,33 @@
"name": "docs/",
"href": "/dashboard/download/xstream/macos/docs/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/download/xstream/macos/index.html",
"type": "file",
"size": 11337,
- "lastModified": "2025-09-26T01:53:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/xstream/macos/index.txt",
"type": "file",
"size": 4169,
- "lastModified": "2025-09-26T01:53:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "latest/",
"href": "/dashboard/download/xstream/macos/latest/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "stable/",
"href": "/dashboard/download/xstream/macos/stable/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24431,14 +24431,14 @@
"href": "/dashboard/download/xstream/macos/docs/index.html",
"type": "file",
"size": 8369,
- "lastModified": "2025-09-26T01:53:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/xstream/macos/docs/index.txt",
"type": "file",
"size": 3749,
- "lastModified": "2025-09-26T01:53:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24450,14 +24450,14 @@
"href": "/dashboard/download/xstream/macos/latest/index.html",
"type": "file",
"size": 10135,
- "lastModified": "2025-09-26T01:53:33Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/xstream/macos/latest/index.txt",
"type": "file",
"size": 3936,
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24469,14 +24469,14 @@
"href": "/dashboard/download/xstream/macos/stable/index.html",
"type": "file",
"size": 11234,
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/xstream/macos/stable/index.txt",
"type": "file",
"size": 4100,
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24488,38 +24488,38 @@
"href": "/dashboard/download/xstream/windows/index.html",
"type": "file",
"size": 12236,
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/xstream/windows/index.txt",
"type": "file",
"size": 4357,
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "latest/",
"href": "/dashboard/download/xstream/windows/latest/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "stable/",
"href": "/dashboard/download/xstream/windows/stable/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "win10/",
"href": "/dashboard/download/xstream/windows/win10/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "win11/",
"href": "/dashboard/download/xstream/windows/win11/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24531,14 +24531,14 @@
"href": "/dashboard/download/xstream/windows/latest/index.html",
"type": "file",
"size": 10177,
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/xstream/windows/latest/index.txt",
"type": "file",
"size": 3958,
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24550,14 +24550,14 @@
"href": "/dashboard/download/xstream/windows/stable/index.html",
"type": "file",
"size": 10179,
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/xstream/windows/stable/index.txt",
"type": "file",
"size": 3958,
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24569,14 +24569,14 @@
"href": "/dashboard/download/xstream/windows/win10/index.html",
"type": "file",
"size": 8416,
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/xstream/windows/win10/index.txt",
"type": "file",
"size": 3774,
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24588,14 +24588,14 @@
"href": "/dashboard/download/xstream/windows/win11/index.html",
"type": "file",
"size": 8416,
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/download/xstream/windows/win11/index.txt",
"type": "file",
"size": 3774,
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24607,7 +24607,7 @@
"href": "/dashboard/icons/cloudnative_32.png",
"type": "file",
"size": 1486,
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:24Z"
}
]
},
@@ -24619,14 +24619,14 @@
"href": "/dashboard/insight/index.html",
"type": "file",
"size": 23810,
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/insight/index.txt",
"type": "file",
"size": 2739,
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24638,14 +24638,14 @@
"href": "/dashboard/login/index.html",
"type": "file",
"size": 4454,
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/login/index.txt",
"type": "file",
"size": 2647,
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24656,51 +24656,51 @@
"name": "account/",
"href": "/dashboard/panel/account/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "agent/",
"href": "/dashboard/panel/agent/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "api/",
"href": "/dashboard/panel/api/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.html",
"href": "/dashboard/panel/index.html",
"type": "file",
"size": 16113,
- "lastModified": "2025-09-26T01:53:34Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/panel/index.txt",
"type": "file",
"size": 4173,
- "lastModified": "2025-09-26T01:53:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "ldp/",
"href": "/dashboard/panel/ldp/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "subscription/",
"href": "/dashboard/panel/subscription/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
- "name": "management/",
- "href": "/dashboard/panel/management/",
+ "name": "xray/",
+ "href": "/dashboard/panel/xray/",
"type": "dir",
- "lastModified": "2025-09-26T01:53:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24712,14 +24712,14 @@
"href": "/dashboard/panel/account/index.html",
"type": "file",
"size": 14801,
- "lastModified": "2025-09-26T01:53:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/panel/account/index.txt",
"type": "file",
"size": 3639,
- "lastModified": "2025-09-26T01:53:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24731,14 +24731,14 @@
"href": "/dashboard/panel/agent/index.html",
"type": "file",
"size": 14757,
- "lastModified": "2025-09-26T01:53:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/panel/agent/index.txt",
"type": "file",
"size": 3615,
- "lastModified": "2025-09-26T01:53:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24750,14 +24750,14 @@
"href": "/dashboard/panel/api/index.html",
"type": "file",
"size": 14713,
- "lastModified": "2025-09-26T01:53:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/panel/api/index.txt",
"type": "file",
"size": 3591,
- "lastModified": "2025-09-26T01:53:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24769,14 +24769,14 @@
"href": "/dashboard/panel/ldp/index.html",
"type": "file",
"size": 19018,
- "lastModified": "2025-09-26T01:53:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/panel/ldp/index.txt",
"type": "file",
"size": 5911,
- "lastModified": "2025-09-26T01:53:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24788,33 +24788,33 @@
"href": "/dashboard/panel/subscription/index.html",
"type": "file",
"size": 14743,
- "lastModified": "2025-09-26T01:53:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/panel/subscription/index.txt",
"type": "file",
"size": 3615,
- "lastModified": "2025-09-26T01:53:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
{
- "path": "dashboard/panel/management/",
+ "path": "dashboard/panel/xray/",
"entries": [
{
"name": "index.html",
- "href": "/dashboard/panel/management/index.html",
+ "href": "/dashboard/panel/xray/index.html",
"type": "file",
"size": 14719,
- "lastModified": "2025-09-26T01:53:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
- "href": "/dashboard/panel/management/index.txt",
+ "href": "/dashboard/panel/xray/index.txt",
"type": "file",
"size": 3595,
- "lastModified": "2025-09-26T01:53:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24826,14 +24826,14 @@
"href": "/dashboard/register/index.html",
"type": "file",
"size": 4472,
- "lastModified": "2025-09-26T01:53:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
},
{
"name": "index.txt",
"href": "/dashboard/register/index.txt",
"type": "file",
"size": 2662,
- "lastModified": "2025-09-26T01:53:35Z"
+ "lastModified": "2025-09-26T01:51:25Z"
}
]
},
@@ -24856,49 +24856,49 @@
"name": "Keycloak/",
"href": "/docs/Keycloak/",
"type": "dir",
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-29T02:31:30Z"
},
{
"name": "LandingZone/",
"href": "/docs/LandingZone/",
"type": "dir",
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-29T02:31:29Z"
},
{
"name": "Linux-K8S-OPS/",
"href": "/docs/Linux-K8S-OPS/",
"type": "dir",
- "lastModified": "2025-09-25T12:35:19Z"
+ "lastModified": "2025-09-29T02:32:09Z"
},
{
"name": "Observability/",
"href": "/docs/Observability/",
"type": "dir",
- "lastModified": "2025-09-25T11:07:40Z"
+ "lastModified": "2025-09-29T02:32:06Z"
},
{
"name": "Personal/",
"href": "/docs/Personal/",
"type": "dir",
- "lastModified": "2025-09-25T11:55:22Z"
+ "lastModified": "2025-09-29T02:33:41Z"
},
{
"name": "TechExploration/",
"href": "/docs/TechExploration/",
"type": "dir",
- "lastModified": "2025-09-25T12:23:45Z"
+ "lastModified": "2025-09-29T02:33:03Z"
},
{
"name": "The-IndieDeveloper-Fullstack-Roadmap/",
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/",
"type": "dir",
- "lastModified": "2025-09-25T12:29:13Z"
+ "lastModified": "2025-09-29T02:33:20Z"
},
{
"name": "interview-qa/",
"href": "/docs/interview-qa/",
"type": "dir",
- "lastModified": "2025-09-19T01:59:55Z"
+ "lastModified": "2025-09-29T02:31:35Z"
}
]
},
@@ -24909,49 +24909,145 @@
"name": "EN-v33-17996525102/",
"href": "/docs/Keycloak/EN-v33-17996525102/",
"type": "dir",
- "lastModified": "2025-09-25T12:34:01Z"
+ "lastModified": "2025-09-25T04:06:18Z"
},
{
"name": "EN-v34-18001960544/",
"href": "/docs/Keycloak/EN-v34-18001960544/",
"type": "dir",
- "lastModified": "2025-09-25T12:34:01Z"
+ "lastModified": "2025-09-25T08:46:00Z"
},
{
"name": "EN-v35-18002040798/",
"href": "/docs/Keycloak/EN-v35-18002040798/",
"type": "dir",
- "lastModified": "2025-09-25T12:34:01Z"
+ "lastModified": "2025-09-25T08:49:00Z"
},
{
"name": "EN-v36-18002294267/",
"href": "/docs/Keycloak/EN-v36-18002294267/",
"type": "dir",
- "lastModified": "2025-09-25T12:34:01Z"
+ "lastModified": "2025-09-25T08:59:56Z"
},
{
"name": "EN-v39-18004672680/",
"href": "/docs/Keycloak/EN-v39-18004672680/",
"type": "dir",
- "lastModified": "2025-09-25T12:34:01Z"
+ "lastModified": "2025-09-25T10:35:24Z"
},
{
"name": "EN-v40-18004678416/",
"href": "/docs/Keycloak/EN-v40-18004678416/",
"type": "dir",
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-25T10:37:05Z"
},
{
"name": "EN-v41-18005142964/",
"href": "/docs/Keycloak/EN-v41-18005142964/",
"type": "dir",
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-25T10:54:22Z"
},
{
"name": "EN-v42-18006148753/",
"href": "/docs/Keycloak/EN-v42-18006148753/",
"type": "dir",
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-25T11:36:30Z"
+ },
+ {
+ "name": "EN-v43-18011536494/",
+ "href": "/docs/Keycloak/EN-v43-18011536494/",
+ "type": "dir",
+ "lastModified": "2025-09-25T14:56:07Z"
+ },
+ {
+ "name": "EN-v44-18011825454/",
+ "href": "/docs/Keycloak/EN-v44-18011825454/",
+ "type": "dir",
+ "lastModified": "2025-09-25T15:06:29Z"
+ },
+ {
+ "name": "EN-v45-18011937887/",
+ "href": "/docs/Keycloak/EN-v45-18011937887/",
+ "type": "dir",
+ "lastModified": "2025-09-25T15:10:20Z"
+ },
+ {
+ "name": "EN-v46-18011951541/",
+ "href": "/docs/Keycloak/EN-v46-18011951541/",
+ "type": "dir",
+ "lastModified": "2025-09-25T15:13:23Z"
+ },
+ {
+ "name": "EN-v47-18013619427/",
+ "href": "/docs/Keycloak/EN-v47-18013619427/",
+ "type": "dir",
+ "lastModified": "2025-09-25T16:13:00Z"
+ },
+ {
+ "name": "EN-v48-18026844950/",
+ "href": "/docs/Keycloak/EN-v48-18026844950/",
+ "type": "dir",
+ "lastModified": "2025-09-26T03:22:05Z"
+ },
+ {
+ "name": "EN-v51-18027438927/",
+ "href": "/docs/Keycloak/EN-v51-18027438927/",
+ "type": "dir",
+ "lastModified": "2025-09-26T04:02:17Z"
+ },
+ {
+ "name": "EN-v52-18027443116/",
+ "href": "/docs/Keycloak/EN-v52-18027443116/",
+ "type": "dir",
+ "lastModified": "2025-09-26T04:03:45Z"
+ },
+ {
+ "name": "EN-v53-18027447911/",
+ "href": "/docs/Keycloak/EN-v53-18027447911/",
+ "type": "dir",
+ "lastModified": "2025-09-26T04:03:20Z"
+ },
+ {
+ "name": "EN-v54-18029756788/",
+ "href": "/docs/Keycloak/EN-v54-18029756788/",
+ "type": "dir",
+ "lastModified": "2025-09-26T06:28:15Z"
+ },
+ {
+ "name": "EN-v55-18030101682/",
+ "href": "/docs/Keycloak/EN-v55-18030101682/",
+ "type": "dir",
+ "lastModified": "2025-09-26T06:46:09Z"
+ },
+ {
+ "name": "EN-v56-18031095670/",
+ "href": "/docs/Keycloak/EN-v56-18031095670/",
+ "type": "dir",
+ "lastModified": "2025-09-26T07:34:22Z"
+ },
+ {
+ "name": "EN-v57-18060203518/",
+ "href": "/docs/Keycloak/EN-v57-18060203518/",
+ "type": "dir",
+ "lastModified": "2025-09-27T13:12:04Z"
+ },
+ {
+ "name": "EN-v58-18068296502/",
+ "href": "/docs/Keycloak/EN-v58-18068296502/",
+ "type": "dir",
+ "lastModified": "2025-09-28T02:53:36Z"
+ },
+ {
+ "name": "EN-v59-18075708801/",
+ "href": "/docs/Keycloak/EN-v59-18075708801/",
+ "type": "dir",
+ "lastModified": "2025-09-28T14:38:48Z"
+ },
+ {
+ "name": "EN-v60-18083886120/",
+ "href": "/docs/Keycloak/EN-v60-18083886120/",
+ "type": "dir",
+ "lastModified": "2025-09-29T02:31:39Z"
}
]
},
@@ -24963,7 +25059,7 @@
"href": "/docs/Keycloak/EN-v33-17996525102/Keycloak-SSO-Design-and-Implementation.html",
"type": "file",
"size": 32769,
- "lastModified": "2025-09-25T12:34:01Z"
+ "lastModified": "2025-09-25T04:06:10Z"
}
]
},
@@ -24975,7 +25071,7 @@
"href": "/docs/Keycloak/EN-v34-18001960544/Keycloak-SSO-Design-and-Implementation.html",
"type": "file",
"size": 32769,
- "lastModified": "2025-09-25T12:34:01Z"
+ "lastModified": "2025-09-25T08:45:53Z"
}
]
},
@@ -24987,7 +25083,7 @@
"href": "/docs/Keycloak/EN-v35-18002040798/Keycloak-SSO-Design-and-Implementation.html",
"type": "file",
"size": 32769,
- "lastModified": "2025-09-25T12:34:01Z"
+ "lastModified": "2025-09-25T08:48:51Z"
}
]
},
@@ -24999,7 +25095,7 @@
"href": "/docs/Keycloak/EN-v36-18002294267/Keycloak-SSO-Design-and-Implementation.html",
"type": "file",
"size": 32769,
- "lastModified": "2025-09-25T12:34:01Z"
+ "lastModified": "2025-09-25T08:59:49Z"
}
]
},
@@ -25011,7 +25107,7 @@
"href": "/docs/Keycloak/EN-v39-18004672680/Keycloak-SSO-Design-and-Implementation.html",
"type": "file",
"size": 32769,
- "lastModified": "2025-09-25T12:34:01Z"
+ "lastModified": "2025-09-25T10:35:16Z"
}
]
},
@@ -25023,7 +25119,7 @@
"href": "/docs/Keycloak/EN-v40-18004678416/Keycloak-SSO-Design-and-Implementation.html",
"type": "file",
"size": 32769,
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-25T10:36:57Z"
}
]
},
@@ -25035,7 +25131,7 @@
"href": "/docs/Keycloak/EN-v41-18005142964/Keycloak-SSO-Design-and-Implementation.html",
"type": "file",
"size": 32769,
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-25T10:54:14Z"
}
]
},
@@ -25047,7 +25143,199 @@
"href": "/docs/Keycloak/EN-v42-18006148753/Keycloak-SSO-Design-and-Implementation.html",
"type": "file",
"size": 32769,
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-25T11:36:22Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Keycloak/EN-v43-18011536494/",
+ "entries": [
+ {
+ "name": "Keycloak-SSO-Design-and-Implementation.html",
+ "href": "/docs/Keycloak/EN-v43-18011536494/Keycloak-SSO-Design-and-Implementation.html",
+ "type": "file",
+ "size": 32769,
+ "lastModified": "2025-09-25T14:55:58Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Keycloak/EN-v44-18011825454/",
+ "entries": [
+ {
+ "name": "Keycloak-SSO-Design-and-Implementation.html",
+ "href": "/docs/Keycloak/EN-v44-18011825454/Keycloak-SSO-Design-and-Implementation.html",
+ "type": "file",
+ "size": 32769,
+ "lastModified": "2025-09-25T15:06:22Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Keycloak/EN-v45-18011937887/",
+ "entries": [
+ {
+ "name": "Keycloak-SSO-Design-and-Implementation.html",
+ "href": "/docs/Keycloak/EN-v45-18011937887/Keycloak-SSO-Design-and-Implementation.html",
+ "type": "file",
+ "size": 32769,
+ "lastModified": "2025-09-25T15:10:12Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Keycloak/EN-v46-18011951541/",
+ "entries": [
+ {
+ "name": "Keycloak-SSO-Design-and-Implementation.html",
+ "href": "/docs/Keycloak/EN-v46-18011951541/Keycloak-SSO-Design-and-Implementation.html",
+ "type": "file",
+ "size": 32769,
+ "lastModified": "2025-09-25T15:13:16Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Keycloak/EN-v47-18013619427/",
+ "entries": [
+ {
+ "name": "Keycloak-SSO-Design-and-Implementation.html",
+ "href": "/docs/Keycloak/EN-v47-18013619427/Keycloak-SSO-Design-and-Implementation.html",
+ "type": "file",
+ "size": 32769,
+ "lastModified": "2025-09-25T16:12:52Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Keycloak/EN-v48-18026844950/",
+ "entries": [
+ {
+ "name": "Keycloak-SSO-Design-and-Implementation.html",
+ "href": "/docs/Keycloak/EN-v48-18026844950/Keycloak-SSO-Design-and-Implementation.html",
+ "type": "file",
+ "size": 32769,
+ "lastModified": "2025-09-26T03:21:57Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Keycloak/EN-v51-18027438927/",
+ "entries": [
+ {
+ "name": "Keycloak-SSO-Design-and-Implementation.html",
+ "href": "/docs/Keycloak/EN-v51-18027438927/Keycloak-SSO-Design-and-Implementation.html",
+ "type": "file",
+ "size": 32769,
+ "lastModified": "2025-09-26T04:02:09Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Keycloak/EN-v52-18027443116/",
+ "entries": [
+ {
+ "name": "Keycloak-SSO-Design-and-Implementation.html",
+ "href": "/docs/Keycloak/EN-v52-18027443116/Keycloak-SSO-Design-and-Implementation.html",
+ "type": "file",
+ "size": 32769,
+ "lastModified": "2025-09-26T04:03:37Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Keycloak/EN-v53-18027447911/",
+ "entries": [
+ {
+ "name": "Keycloak-SSO-Design-and-Implementation.html",
+ "href": "/docs/Keycloak/EN-v53-18027447911/Keycloak-SSO-Design-and-Implementation.html",
+ "type": "file",
+ "size": 32769,
+ "lastModified": "2025-09-26T04:03:12Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Keycloak/EN-v54-18029756788/",
+ "entries": [
+ {
+ "name": "Keycloak-SSO-Design-and-Implementation.html",
+ "href": "/docs/Keycloak/EN-v54-18029756788/Keycloak-SSO-Design-and-Implementation.html",
+ "type": "file",
+ "size": 32769,
+ "lastModified": "2025-09-26T06:28:08Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Keycloak/EN-v55-18030101682/",
+ "entries": [
+ {
+ "name": "Keycloak-SSO-Design-and-Implementation.html",
+ "href": "/docs/Keycloak/EN-v55-18030101682/Keycloak-SSO-Design-and-Implementation.html",
+ "type": "file",
+ "size": 32769,
+ "lastModified": "2025-09-26T06:46:01Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Keycloak/EN-v56-18031095670/",
+ "entries": [
+ {
+ "name": "Keycloak-SSO-Design-and-Implementation.html",
+ "href": "/docs/Keycloak/EN-v56-18031095670/Keycloak-SSO-Design-and-Implementation.html",
+ "type": "file",
+ "size": 32769,
+ "lastModified": "2025-09-26T07:34:14Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Keycloak/EN-v57-18060203518/",
+ "entries": [
+ {
+ "name": "Keycloak-SSO-Design-and-Implementation.html",
+ "href": "/docs/Keycloak/EN-v57-18060203518/Keycloak-SSO-Design-and-Implementation.html",
+ "type": "file",
+ "size": 32769,
+ "lastModified": "2025-09-27T13:11:57Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Keycloak/EN-v58-18068296502/",
+ "entries": [
+ {
+ "name": "Keycloak-SSO-Design-and-Implementation.html",
+ "href": "/docs/Keycloak/EN-v58-18068296502/Keycloak-SSO-Design-and-Implementation.html",
+ "type": "file",
+ "size": 32769,
+ "lastModified": "2025-09-28T02:53:28Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Keycloak/EN-v59-18075708801/",
+ "entries": [
+ {
+ "name": "Keycloak-SSO-Design-and-Implementation.html",
+ "href": "/docs/Keycloak/EN-v59-18075708801/Keycloak-SSO-Design-and-Implementation.html",
+ "type": "file",
+ "size": 32769,
+ "lastModified": "2025-09-28T14:38:39Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Keycloak/EN-v60-18083886120/",
+ "entries": [
+ {
+ "name": "Keycloak-SSO-Design-and-Implementation.html",
+ "href": "/docs/Keycloak/EN-v60-18083886120/Keycloak-SSO-Design-and-Implementation.html",
+ "type": "file",
+ "size": 32769,
+ "lastModified": "2025-09-29T02:31:30Z"
}
]
},
@@ -25058,61 +25346,145 @@
"name": "EN-v33-17996525102/",
"href": "/docs/LandingZone/EN-v33-17996525102/",
"type": "dir",
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-25T04:08:17Z"
},
{
"name": "EN-v34-18001960544/",
"href": "/docs/LandingZone/EN-v34-18001960544/",
"type": "dir",
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-25T08:46:42Z"
},
{
"name": "EN-v35-18002040798/",
"href": "/docs/LandingZone/EN-v35-18002040798/",
"type": "dir",
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-25T08:49:13Z"
},
{
"name": "EN-v36-18002294267/",
"href": "/docs/LandingZone/EN-v36-18002294267/",
"type": "dir",
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-25T08:59:08Z"
},
{
"name": "EN-v37-18002553627/",
"href": "/docs/LandingZone/EN-v37-18002553627/",
"type": "dir",
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-25T09:09:31Z"
},
{
"name": "EN-v38-18003957466/",
"href": "/docs/LandingZone/EN-v38-18003957466/",
"type": "dir",
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-25T10:07:15Z"
},
{
"name": "EN-v39-18004672680/",
"href": "/docs/LandingZone/EN-v39-18004672680/",
"type": "dir",
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-25T10:35:36Z"
},
{
"name": "EN-v40-18004678416/",
"href": "/docs/LandingZone/EN-v40-18004678416/",
"type": "dir",
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-25T10:35:46Z"
},
{
"name": "EN-v41-18005142964/",
"href": "/docs/LandingZone/EN-v41-18005142964/",
"type": "dir",
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-25T10:54:08Z"
},
{
"name": "EN-v42-18006148753/",
"href": "/docs/LandingZone/EN-v42-18006148753/",
"type": "dir",
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-25T11:38:09Z"
+ },
+ {
+ "name": "EN-v43-18011536494/",
+ "href": "/docs/LandingZone/EN-v43-18011536494/",
+ "type": "dir",
+ "lastModified": "2025-09-25T14:56:30Z"
+ },
+ {
+ "name": "EN-v44-18011825454/",
+ "href": "/docs/LandingZone/EN-v44-18011825454/",
+ "type": "dir",
+ "lastModified": "2025-09-25T15:06:03Z"
+ },
+ {
+ "name": "EN-v45-18011937887/",
+ "href": "/docs/LandingZone/EN-v45-18011937887/",
+ "type": "dir",
+ "lastModified": "2025-09-25T15:13:27Z"
+ },
+ {
+ "name": "EN-v46-18011951541/",
+ "href": "/docs/LandingZone/EN-v46-18011951541/",
+ "type": "dir",
+ "lastModified": "2025-09-25T15:12:08Z"
+ },
+ {
+ "name": "EN-v47-18013619427/",
+ "href": "/docs/LandingZone/EN-v47-18013619427/",
+ "type": "dir",
+ "lastModified": "2025-09-25T16:13:30Z"
+ },
+ {
+ "name": "EN-v52-18027443116/",
+ "href": "/docs/LandingZone/EN-v52-18027443116/",
+ "type": "dir",
+ "lastModified": "2025-09-26T04:03:43Z"
+ },
+ {
+ "name": "EN-v53-18027447911/",
+ "href": "/docs/LandingZone/EN-v53-18027447911/",
+ "type": "dir",
+ "lastModified": "2025-09-26T04:07:27Z"
+ },
+ {
+ "name": "EN-v54-18029756788/",
+ "href": "/docs/LandingZone/EN-v54-18029756788/",
+ "type": "dir",
+ "lastModified": "2025-09-26T06:28:23Z"
+ },
+ {
+ "name": "EN-v55-18030101682/",
+ "href": "/docs/LandingZone/EN-v55-18030101682/",
+ "type": "dir",
+ "lastModified": "2025-09-26T06:45:32Z"
+ },
+ {
+ "name": "EN-v56-18031095670/",
+ "href": "/docs/LandingZone/EN-v56-18031095670/",
+ "type": "dir",
+ "lastModified": "2025-09-26T07:33:04Z"
+ },
+ {
+ "name": "EN-v57-18060203518/",
+ "href": "/docs/LandingZone/EN-v57-18060203518/",
+ "type": "dir",
+ "lastModified": "2025-09-27T13:10:35Z"
+ },
+ {
+ "name": "EN-v58-18068296502/",
+ "href": "/docs/LandingZone/EN-v58-18068296502/",
+ "type": "dir",
+ "lastModified": "2025-09-28T02:52:23Z"
+ },
+ {
+ "name": "EN-v59-18075708801/",
+ "href": "/docs/LandingZone/EN-v59-18075708801/",
+ "type": "dir",
+ "lastModified": "2025-09-28T14:38:50Z"
+ },
+ {
+ "name": "EN-v60-18083886120/",
+ "href": "/docs/LandingZone/EN-v60-18083886120/",
+ "type": "dir",
+ "lastModified": "2025-09-29T02:31:39Z"
}
]
},
@@ -25124,7 +25496,7 @@
"href": "/docs/LandingZone/EN-v33-17996525102/Landing-Zone-Design-and-Implementation.pdf",
"type": "file",
"size": 77101,
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-25T04:07:59Z"
}
]
},
@@ -25136,7 +25508,7 @@
"href": "/docs/LandingZone/EN-v34-18001960544/Landing-Zone-Design-and-Implementation.pdf",
"type": "file",
"size": 77103,
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-25T08:46:33Z"
}
]
},
@@ -25148,7 +25520,7 @@
"href": "/docs/LandingZone/EN-v35-18002040798/Landing-Zone-Design-and-Implementation.pdf",
"type": "file",
"size": 77103,
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-25T08:49:04Z"
}
]
},
@@ -25160,7 +25532,7 @@
"href": "/docs/LandingZone/EN-v36-18002294267/Landing-Zone-Design-and-Implementation.pdf",
"type": "file",
"size": 77102,
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-25T08:58:59Z"
}
]
},
@@ -25172,7 +25544,7 @@
"href": "/docs/LandingZone/EN-v37-18002553627/Landing-Zone-Design-and-Implementation.pdf",
"type": "file",
"size": 77101,
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-25T09:09:22Z"
}
]
},
@@ -25184,7 +25556,7 @@
"href": "/docs/LandingZone/EN-v38-18003957466/Landing-Zone-Design-and-Implementation.pdf",
"type": "file",
"size": 77102,
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-25T10:07:06Z"
}
]
},
@@ -25196,7 +25568,7 @@
"href": "/docs/LandingZone/EN-v39-18004672680/Landing-Zone-Design-and-Implementation.pdf",
"type": "file",
"size": 77104,
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-25T10:35:27Z"
}
]
},
@@ -25208,7 +25580,7 @@
"href": "/docs/LandingZone/EN-v40-18004678416/Landing-Zone-Design-and-Implementation.pdf",
"type": "file",
"size": 77108,
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-25T10:35:38Z"
}
]
},
@@ -25220,7 +25592,7 @@
"href": "/docs/LandingZone/EN-v41-18005142964/Landing-Zone-Design-and-Implementation.pdf",
"type": "file",
"size": 77098,
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-25T10:54:00Z"
}
]
},
@@ -25232,7 +25604,175 @@
"href": "/docs/LandingZone/EN-v42-18006148753/Landing-Zone-Design-and-Implementation.pdf",
"type": "file",
"size": 77104,
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-25T11:38:01Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/LandingZone/EN-v43-18011536494/",
+ "entries": [
+ {
+ "name": "Landing-Zone-Design-and-Implementation.pdf",
+ "href": "/docs/LandingZone/EN-v43-18011536494/Landing-Zone-Design-and-Implementation.pdf",
+ "type": "file",
+ "size": 77103,
+ "lastModified": "2025-09-25T14:56:21Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/LandingZone/EN-v44-18011825454/",
+ "entries": [
+ {
+ "name": "Landing-Zone-Design-and-Implementation.pdf",
+ "href": "/docs/LandingZone/EN-v44-18011825454/Landing-Zone-Design-and-Implementation.pdf",
+ "type": "file",
+ "size": 77110,
+ "lastModified": "2025-09-25T15:05:53Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/LandingZone/EN-v45-18011937887/",
+ "entries": [
+ {
+ "name": "Landing-Zone-Design-and-Implementation.pdf",
+ "href": "/docs/LandingZone/EN-v45-18011937887/Landing-Zone-Design-and-Implementation.pdf",
+ "type": "file",
+ "size": 77105,
+ "lastModified": "2025-09-25T15:13:18Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/LandingZone/EN-v46-18011951541/",
+ "entries": [
+ {
+ "name": "Landing-Zone-Design-and-Implementation.pdf",
+ "href": "/docs/LandingZone/EN-v46-18011951541/Landing-Zone-Design-and-Implementation.pdf",
+ "type": "file",
+ "size": 77102,
+ "lastModified": "2025-09-25T15:12:00Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/LandingZone/EN-v47-18013619427/",
+ "entries": [
+ {
+ "name": "Landing-Zone-Design-and-Implementation.pdf",
+ "href": "/docs/LandingZone/EN-v47-18013619427/Landing-Zone-Design-and-Implementation.pdf",
+ "type": "file",
+ "size": 77103,
+ "lastModified": "2025-09-25T16:13:22Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/LandingZone/EN-v52-18027443116/",
+ "entries": [
+ {
+ "name": "Landing-Zone-Design-and-Implementation.pdf",
+ "href": "/docs/LandingZone/EN-v52-18027443116/Landing-Zone-Design-and-Implementation.pdf",
+ "type": "file",
+ "size": 257654,
+ "lastModified": "2025-09-26T04:03:34Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/LandingZone/EN-v53-18027447911/",
+ "entries": [
+ {
+ "name": "Landing-Zone-Design-and-Implementation.pdf",
+ "href": "/docs/LandingZone/EN-v53-18027447911/Landing-Zone-Design-and-Implementation.pdf",
+ "type": "file",
+ "size": 257654,
+ "lastModified": "2025-09-26T04:07:18Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/LandingZone/EN-v54-18029756788/",
+ "entries": [
+ {
+ "name": "Landing-Zone-Design-and-Implementation.pdf",
+ "href": "/docs/LandingZone/EN-v54-18029756788/Landing-Zone-Design-and-Implementation.pdf",
+ "type": "file",
+ "size": 257650,
+ "lastModified": "2025-09-26T06:28:14Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/LandingZone/EN-v55-18030101682/",
+ "entries": [
+ {
+ "name": "Landing-Zone-Design-and-Implementation.pdf",
+ "href": "/docs/LandingZone/EN-v55-18030101682/Landing-Zone-Design-and-Implementation.pdf",
+ "type": "file",
+ "size": 257650,
+ "lastModified": "2025-09-26T06:45:23Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/LandingZone/EN-v56-18031095670/",
+ "entries": [
+ {
+ "name": "Landing-Zone-Design-and-Implementation.pdf",
+ "href": "/docs/LandingZone/EN-v56-18031095670/Landing-Zone-Design-and-Implementation.pdf",
+ "type": "file",
+ "size": 257641,
+ "lastModified": "2025-09-26T07:32:55Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/LandingZone/EN-v57-18060203518/",
+ "entries": [
+ {
+ "name": "Landing-Zone-Design-and-Implementation.pdf",
+ "href": "/docs/LandingZone/EN-v57-18060203518/Landing-Zone-Design-and-Implementation.pdf",
+ "type": "file",
+ "size": 257650,
+ "lastModified": "2025-09-27T13:10:25Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/LandingZone/EN-v58-18068296502/",
+ "entries": [
+ {
+ "name": "Landing-Zone-Design-and-Implementation.pdf",
+ "href": "/docs/LandingZone/EN-v58-18068296502/Landing-Zone-Design-and-Implementation.pdf",
+ "type": "file",
+ "size": 257653,
+ "lastModified": "2025-09-28T02:52:14Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/LandingZone/EN-v59-18075708801/",
+ "entries": [
+ {
+ "name": "Landing-Zone-Design-and-Implementation.pdf",
+ "href": "/docs/LandingZone/EN-v59-18075708801/Landing-Zone-Design-and-Implementation.pdf",
+ "type": "file",
+ "size": 257651,
+ "lastModified": "2025-09-28T14:38:41Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/LandingZone/EN-v60-18083886120/",
+ "entries": [
+ {
+ "name": "Landing-Zone-Design-and-Implementation.pdf",
+ "href": "/docs/LandingZone/EN-v60-18083886120/Landing-Zone-Design-and-Implementation.pdf",
+ "type": "file",
+ "size": 257647,
+ "lastModified": "2025-09-29T02:31:29Z"
}
]
},
@@ -25243,31 +25783,127 @@
"name": "CN-v33-17996525102/",
"href": "/docs/Linux-K8S-OPS/CN-v33-17996525102/",
"type": "dir",
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-25T04:06:50Z"
},
{
"name": "CN-v39-18004672680/",
"href": "/docs/Linux-K8S-OPS/CN-v39-18004672680/",
"type": "dir",
- "lastModified": "2025-09-25T12:34:03Z"
+ "lastModified": "2025-09-25T10:35:59Z"
},
{
"name": "CN-v40-18004678416/",
"href": "/docs/Linux-K8S-OPS/CN-v40-18004678416/",
"type": "dir",
- "lastModified": "2025-09-25T12:34:03Z"
+ "lastModified": "2025-09-25T10:35:38Z"
},
{
"name": "CN-v41-18005142964/",
"href": "/docs/Linux-K8S-OPS/CN-v41-18005142964/",
"type": "dir",
- "lastModified": "2025-09-25T12:35:19Z"
+ "lastModified": "2025-09-25T10:55:35Z"
},
{
"name": "CN-v42-18006148753/",
"href": "/docs/Linux-K8S-OPS/CN-v42-18006148753/",
"type": "dir",
- "lastModified": "2025-09-25T12:33:21Z"
+ "lastModified": "2025-09-25T11:38:18Z"
+ },
+ {
+ "name": "CN-v43-18011536494/",
+ "href": "/docs/Linux-K8S-OPS/CN-v43-18011536494/",
+ "type": "dir",
+ "lastModified": "2025-09-25T14:56:21Z"
+ },
+ {
+ "name": "CN-v44-18011825454/",
+ "href": "/docs/Linux-K8S-OPS/CN-v44-18011825454/",
+ "type": "dir",
+ "lastModified": "2025-09-25T15:07:07Z"
+ },
+ {
+ "name": "CN-v45-18011937887/",
+ "href": "/docs/Linux-K8S-OPS/CN-v45-18011937887/",
+ "type": "dir",
+ "lastModified": "2025-09-25T15:12:10Z"
+ },
+ {
+ "name": "CN-v46-18011951541/",
+ "href": "/docs/Linux-K8S-OPS/CN-v46-18011951541/",
+ "type": "dir",
+ "lastModified": "2025-09-25T15:11:29Z"
+ },
+ {
+ "name": "CN-v47-18013619427/",
+ "href": "/docs/Linux-K8S-OPS/CN-v47-18013619427/",
+ "type": "dir",
+ "lastModified": "2025-09-25T16:13:29Z"
+ },
+ {
+ "name": "CN-v48-18026844950/",
+ "href": "/docs/Linux-K8S-OPS/CN-v48-18026844950/",
+ "type": "dir",
+ "lastModified": "2025-09-26T03:20:40Z"
+ },
+ {
+ "name": "CN-v49-18027128243/",
+ "href": "/docs/Linux-K8S-OPS/CN-v49-18027128243/",
+ "type": "dir",
+ "lastModified": "2025-09-26T03:39:13Z"
+ },
+ {
+ "name": "CN-v52-18027443116/",
+ "href": "/docs/Linux-K8S-OPS/CN-v52-18027443116/",
+ "type": "dir",
+ "lastModified": "2025-09-26T04:03:02Z"
+ },
+ {
+ "name": "CN-v53-18027447911/",
+ "href": "/docs/Linux-K8S-OPS/CN-v53-18027447911/",
+ "type": "dir",
+ "lastModified": "2025-09-26T04:06:10Z"
+ },
+ {
+ "name": "CN-v54-18029756788/",
+ "href": "/docs/Linux-K8S-OPS/CN-v54-18029756788/",
+ "type": "dir",
+ "lastModified": "2025-09-26T06:27:50Z"
+ },
+ {
+ "name": "CN-v55-18030101682/",
+ "href": "/docs/Linux-K8S-OPS/CN-v55-18030101682/",
+ "type": "dir",
+ "lastModified": "2025-09-26T06:44:39Z"
+ },
+ {
+ "name": "CN-v56-18031095670/",
+ "href": "/docs/Linux-K8S-OPS/CN-v56-18031095670/",
+ "type": "dir",
+ "lastModified": "2025-09-26T07:34:23Z"
+ },
+ {
+ "name": "CN-v57-18060203518/",
+ "href": "/docs/Linux-K8S-OPS/CN-v57-18060203518/",
+ "type": "dir",
+ "lastModified": "2025-09-27T13:12:33Z"
+ },
+ {
+ "name": "CN-v58-18068296502/",
+ "href": "/docs/Linux-K8S-OPS/CN-v58-18068296502/",
+ "type": "dir",
+ "lastModified": "2025-09-28T02:51:56Z"
+ },
+ {
+ "name": "CN-v59-18075708801/",
+ "href": "/docs/Linux-K8S-OPS/CN-v59-18075708801/",
+ "type": "dir",
+ "lastModified": "2025-09-28T14:39:17Z"
+ },
+ {
+ "name": "CN-v60-18083886120/",
+ "href": "/docs/Linux-K8S-OPS/CN-v60-18083886120/",
+ "type": "dir",
+ "lastModified": "2025-09-29T02:32:18Z"
}
]
},
@@ -25279,14 +25915,14 @@
"href": "/docs/Linux-K8S-OPS/CN-v33-17996525102/Linux-K8S-OPS-Guide.html",
"type": "file",
"size": 20768,
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-25T04:06:37Z"
},
{
"name": "Linux-K8S-OPS-Guide.pdf",
"href": "/docs/Linux-K8S-OPS/CN-v33-17996525102/Linux-K8S-OPS-Guide.pdf",
"type": "file",
"size": 154725,
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-25T04:06:40Z"
}
]
},
@@ -25298,14 +25934,14 @@
"href": "/docs/Linux-K8S-OPS/CN-v39-18004672680/Linux-K8S-OPS-Guide.html",
"type": "file",
"size": 228068,
- "lastModified": "2025-09-25T12:34:02Z"
+ "lastModified": "2025-09-25T10:35:45Z"
},
{
"name": "Linux-K8S-OPS-Guide.pdf",
"href": "/docs/Linux-K8S-OPS/CN-v39-18004672680/Linux-K8S-OPS-Guide.pdf",
"type": "file",
"size": 390075,
- "lastModified": "2025-09-25T12:34:03Z"
+ "lastModified": "2025-09-25T10:35:49Z"
}
]
},
@@ -25317,14 +25953,14 @@
"href": "/docs/Linux-K8S-OPS/CN-v40-18004678416/Linux-K8S-OPS-Guide.html",
"type": "file",
"size": 228068,
- "lastModified": "2025-09-25T12:34:03Z"
+ "lastModified": "2025-09-25T10:35:24Z"
},
{
"name": "Linux-K8S-OPS-Guide.pdf",
"href": "/docs/Linux-K8S-OPS/CN-v40-18004678416/Linux-K8S-OPS-Guide.pdf",
"type": "file",
"size": 390082,
- "lastModified": "2025-09-25T12:34:03Z"
+ "lastModified": "2025-09-25T10:35:28Z"
}
]
},
@@ -25336,20 +25972,339 @@
"href": "/docs/Linux-K8S-OPS/CN-v41-18005142964/Linux-K8S-OPS-Guide.html",
"type": "file",
"size": 228068,
- "lastModified": "2025-09-25T12:34:27Z"
+ "lastModified": "2025-09-25T10:55:21Z"
},
{
"name": "Linux-K8S-OPS-Guide.pdf",
"href": "/docs/Linux-K8S-OPS/CN-v41-18005142964/Linux-K8S-OPS-Guide.pdf",
"type": "file",
"size": 390082,
- "lastModified": "2025-09-25T12:35:19Z"
+ "lastModified": "2025-09-25T10:55:25Z"
}
]
},
{
"path": "docs/Linux-K8S-OPS/CN-v42-18006148753/",
- "entries": []
+ "entries": [
+ {
+ "name": "Linux-K8S-OPS-Guide.html",
+ "href": "/docs/Linux-K8S-OPS/CN-v42-18006148753/Linux-K8S-OPS-Guide.html",
+ "type": "file",
+ "size": 228068,
+ "lastModified": "2025-09-25T11:38:04Z"
+ },
+ {
+ "name": "Linux-K8S-OPS-Guide.pdf",
+ "href": "/docs/Linux-K8S-OPS/CN-v42-18006148753/Linux-K8S-OPS-Guide.pdf",
+ "type": "file",
+ "size": 390085,
+ "lastModified": "2025-09-25T11:38:09Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Linux-K8S-OPS/CN-v43-18011536494/",
+ "entries": [
+ {
+ "name": "Linux-K8S-OPS-Guide.html",
+ "href": "/docs/Linux-K8S-OPS/CN-v43-18011536494/Linux-K8S-OPS-Guide.html",
+ "type": "file",
+ "size": 228068,
+ "lastModified": "2025-09-25T14:56:08Z"
+ },
+ {
+ "name": "Linux-K8S-OPS-Guide.pdf",
+ "href": "/docs/Linux-K8S-OPS/CN-v43-18011536494/Linux-K8S-OPS-Guide.pdf",
+ "type": "file",
+ "size": 390073,
+ "lastModified": "2025-09-25T14:56:12Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Linux-K8S-OPS/CN-v44-18011825454/",
+ "entries": [
+ {
+ "name": "Linux-K8S-OPS-Guide.html",
+ "href": "/docs/Linux-K8S-OPS/CN-v44-18011825454/Linux-K8S-OPS-Guide.html",
+ "type": "file",
+ "size": 228068,
+ "lastModified": "2025-09-25T15:06:53Z"
+ },
+ {
+ "name": "Linux-K8S-OPS-Guide.pdf",
+ "href": "/docs/Linux-K8S-OPS/CN-v44-18011825454/Linux-K8S-OPS-Guide.pdf",
+ "type": "file",
+ "size": 390079,
+ "lastModified": "2025-09-25T15:06:57Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Linux-K8S-OPS/CN-v45-18011937887/",
+ "entries": [
+ {
+ "name": "Linux-K8S-OPS-Guide.html",
+ "href": "/docs/Linux-K8S-OPS/CN-v45-18011937887/Linux-K8S-OPS-Guide.html",
+ "type": "file",
+ "size": 228068,
+ "lastModified": "2025-09-25T15:11:56Z"
+ },
+ {
+ "name": "Linux-K8S-OPS-Guide.pdf",
+ "href": "/docs/Linux-K8S-OPS/CN-v45-18011937887/Linux-K8S-OPS-Guide.pdf",
+ "type": "file",
+ "size": 390076,
+ "lastModified": "2025-09-25T15:12:00Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Linux-K8S-OPS/CN-v46-18011951541/",
+ "entries": [
+ {
+ "name": "Linux-K8S-OPS-Guide.html",
+ "href": "/docs/Linux-K8S-OPS/CN-v46-18011951541/Linux-K8S-OPS-Guide.html",
+ "type": "file",
+ "size": 228068,
+ "lastModified": "2025-09-25T15:11:16Z"
+ },
+ {
+ "name": "Linux-K8S-OPS-Guide.pdf",
+ "href": "/docs/Linux-K8S-OPS/CN-v46-18011951541/Linux-K8S-OPS-Guide.pdf",
+ "type": "file",
+ "size": 390082,
+ "lastModified": "2025-09-25T15:11:19Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Linux-K8S-OPS/CN-v47-18013619427/",
+ "entries": [
+ {
+ "name": "Linux-K8S-OPS-Guide.html",
+ "href": "/docs/Linux-K8S-OPS/CN-v47-18013619427/Linux-K8S-OPS-Guide.html",
+ "type": "file",
+ "size": 228068,
+ "lastModified": "2025-09-25T16:13:14Z"
+ },
+ {
+ "name": "Linux-K8S-OPS-Guide.pdf",
+ "href": "/docs/Linux-K8S-OPS/CN-v47-18013619427/Linux-K8S-OPS-Guide.pdf",
+ "type": "file",
+ "size": 390080,
+ "lastModified": "2025-09-25T16:13:18Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Linux-K8S-OPS/CN-v48-18026844950/",
+ "entries": [
+ {
+ "name": "Linux-K8S-OPS-Guide.html",
+ "href": "/docs/Linux-K8S-OPS/CN-v48-18026844950/Linux-K8S-OPS-Guide.html",
+ "type": "file",
+ "size": 228068,
+ "lastModified": "2025-09-26T03:20:26Z"
+ },
+ {
+ "name": "Linux-K8S-OPS-Guide.pdf",
+ "href": "/docs/Linux-K8S-OPS/CN-v48-18026844950/Linux-K8S-OPS-Guide.pdf",
+ "type": "file",
+ "size": 390079,
+ "lastModified": "2025-09-26T03:20:30Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Linux-K8S-OPS/CN-v49-18027128243/",
+ "entries": [
+ {
+ "name": "Linux-K8S-OPS-Guide.html",
+ "href": "/docs/Linux-K8S-OPS/CN-v49-18027128243/Linux-K8S-OPS-Guide.html",
+ "type": "file",
+ "size": 228068,
+ "lastModified": "2025-09-26T03:39:00Z"
+ },
+ {
+ "name": "Linux-K8S-OPS-Guide.pdf",
+ "href": "/docs/Linux-K8S-OPS/CN-v49-18027128243/Linux-K8S-OPS-Guide.pdf",
+ "type": "file",
+ "size": 390079,
+ "lastModified": "2025-09-26T03:39:04Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Linux-K8S-OPS/CN-v52-18027443116/",
+ "entries": [
+ {
+ "name": "Linux-K8S-OPS-Guide.html",
+ "href": "/docs/Linux-K8S-OPS/CN-v52-18027443116/Linux-K8S-OPS-Guide.html",
+ "type": "file",
+ "size": 244273,
+ "lastModified": "2025-09-26T04:02:49Z"
+ },
+ {
+ "name": "Linux-K8S-OPS-Guide.pdf",
+ "href": "/docs/Linux-K8S-OPS/CN-v52-18027443116/Linux-K8S-OPS-Guide.pdf",
+ "type": "file",
+ "size": 402513,
+ "lastModified": "2025-09-26T04:02:53Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Linux-K8S-OPS/CN-v53-18027447911/",
+ "entries": [
+ {
+ "name": "Linux-K8S-OPS-Guide.html",
+ "href": "/docs/Linux-K8S-OPS/CN-v53-18027447911/Linux-K8S-OPS-Guide.html",
+ "type": "file",
+ "size": 244273,
+ "lastModified": "2025-09-26T04:05:57Z"
+ },
+ {
+ "name": "Linux-K8S-OPS-Guide.pdf",
+ "href": "/docs/Linux-K8S-OPS/CN-v53-18027447911/Linux-K8S-OPS-Guide.pdf",
+ "type": "file",
+ "size": 402524,
+ "lastModified": "2025-09-26T04:06:01Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Linux-K8S-OPS/CN-v54-18029756788/",
+ "entries": [
+ {
+ "name": "Linux-K8S-OPS-Guide.html",
+ "href": "/docs/Linux-K8S-OPS/CN-v54-18029756788/Linux-K8S-OPS-Guide.html",
+ "type": "file",
+ "size": 244273,
+ "lastModified": "2025-09-26T06:27:37Z"
+ },
+ {
+ "name": "Linux-K8S-OPS-Guide.pdf",
+ "href": "/docs/Linux-K8S-OPS/CN-v54-18029756788/Linux-K8S-OPS-Guide.pdf",
+ "type": "file",
+ "size": 402516,
+ "lastModified": "2025-09-26T06:27:41Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Linux-K8S-OPS/CN-v55-18030101682/",
+ "entries": [
+ {
+ "name": "Linux-K8S-OPS-Guide.html",
+ "href": "/docs/Linux-K8S-OPS/CN-v55-18030101682/Linux-K8S-OPS-Guide.html",
+ "type": "file",
+ "size": 244273,
+ "lastModified": "2025-09-26T06:44:26Z"
+ },
+ {
+ "name": "Linux-K8S-OPS-Guide.pdf",
+ "href": "/docs/Linux-K8S-OPS/CN-v55-18030101682/Linux-K8S-OPS-Guide.pdf",
+ "type": "file",
+ "size": 402514,
+ "lastModified": "2025-09-26T06:44:29Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Linux-K8S-OPS/CN-v56-18031095670/",
+ "entries": [
+ {
+ "name": "Linux-K8S-OPS-Guide.html",
+ "href": "/docs/Linux-K8S-OPS/CN-v56-18031095670/Linux-K8S-OPS-Guide.html",
+ "type": "file",
+ "size": 244273,
+ "lastModified": "2025-09-26T07:34:08Z"
+ },
+ {
+ "name": "Linux-K8S-OPS-Guide.pdf",
+ "href": "/docs/Linux-K8S-OPS/CN-v56-18031095670/Linux-K8S-OPS-Guide.pdf",
+ "type": "file",
+ "size": 402519,
+ "lastModified": "2025-09-26T07:34:12Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Linux-K8S-OPS/CN-v57-18060203518/",
+ "entries": [
+ {
+ "name": "Linux-K8S-OPS-Guide.html",
+ "href": "/docs/Linux-K8S-OPS/CN-v57-18060203518/Linux-K8S-OPS-Guide.html",
+ "type": "file",
+ "size": 244273,
+ "lastModified": "2025-09-27T13:12:20Z"
+ },
+ {
+ "name": "Linux-K8S-OPS-Guide.pdf",
+ "href": "/docs/Linux-K8S-OPS/CN-v57-18060203518/Linux-K8S-OPS-Guide.pdf",
+ "type": "file",
+ "size": 402519,
+ "lastModified": "2025-09-27T13:12:23Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Linux-K8S-OPS/CN-v58-18068296502/",
+ "entries": [
+ {
+ "name": "Linux-K8S-OPS-Guide.html",
+ "href": "/docs/Linux-K8S-OPS/CN-v58-18068296502/Linux-K8S-OPS-Guide.html",
+ "type": "file",
+ "size": 244273,
+ "lastModified": "2025-09-28T02:51:42Z"
+ },
+ {
+ "name": "Linux-K8S-OPS-Guide.pdf",
+ "href": "/docs/Linux-K8S-OPS/CN-v58-18068296502/Linux-K8S-OPS-Guide.pdf",
+ "type": "file",
+ "size": 402518,
+ "lastModified": "2025-09-28T02:51:46Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Linux-K8S-OPS/CN-v59-18075708801/",
+ "entries": [
+ {
+ "name": "Linux-K8S-OPS-Guide.html",
+ "href": "/docs/Linux-K8S-OPS/CN-v59-18075708801/Linux-K8S-OPS-Guide.html",
+ "type": "file",
+ "size": 244273,
+ "lastModified": "2025-09-28T14:39:03Z"
+ },
+ {
+ "name": "Linux-K8S-OPS-Guide.pdf",
+ "href": "/docs/Linux-K8S-OPS/CN-v59-18075708801/Linux-K8S-OPS-Guide.pdf",
+ "type": "file",
+ "size": 402504,
+ "lastModified": "2025-09-28T14:39:07Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Linux-K8S-OPS/CN-v60-18083886120/",
+ "entries": [
+ {
+ "name": "Linux-K8S-OPS-Guide.html",
+ "href": "/docs/Linux-K8S-OPS/CN-v60-18083886120/Linux-K8S-OPS-Guide.html",
+ "type": "file",
+ "size": 244273,
+ "lastModified": "2025-09-29T02:32:05Z"
+ },
+ {
+ "name": "Linux-K8S-OPS-Guide.pdf",
+ "href": "/docs/Linux-K8S-OPS/CN-v60-18083886120/Linux-K8S-OPS-Guide.pdf",
+ "type": "file",
+ "size": 402517,
+ "lastModified": "2025-09-29T02:32:09Z"
+ }
+ ]
},
{
"path": "docs/Observability/",
@@ -25358,43 +26313,133 @@
"name": "CN-v33-17996525102/",
"href": "/docs/Observability/CN-v33-17996525102/",
"type": "dir",
- "lastModified": "2025-09-25T10:56:03Z"
+ "lastModified": "2025-09-25T04:07:30Z"
},
{
"name": "CN-v36-18002294267/",
"href": "/docs/Observability/CN-v36-18002294267/",
"type": "dir",
- "lastModified": "2025-09-25T10:58:38Z"
+ "lastModified": "2025-09-25T09:01:08Z"
},
{
"name": "CN-v37-18002553627/",
"href": "/docs/Observability/CN-v37-18002553627/",
"type": "dir",
- "lastModified": "2025-09-25T11:02:40Z"
+ "lastModified": "2025-09-25T09:09:40Z"
},
{
"name": "CN-v39-18004672680/",
"href": "/docs/Observability/CN-v39-18004672680/",
"type": "dir",
- "lastModified": "2025-09-25T11:04:44Z"
+ "lastModified": "2025-09-25T10:35:39Z"
},
{
"name": "CN-v40-18004678416/",
"href": "/docs/Observability/CN-v40-18004678416/",
"type": "dir",
- "lastModified": "2025-09-25T11:07:40Z"
+ "lastModified": "2025-09-25T10:34:19Z"
},
{
"name": "CN-v41-18005142964/",
"href": "/docs/Observability/CN-v41-18005142964/",
"type": "dir",
- "lastModified": "2025-09-25T12:33:21Z"
+ "lastModified": "2025-09-25T10:55:48Z"
},
{
"name": "CN-v42-18006148753/",
"href": "/docs/Observability/CN-v42-18006148753/",
"type": "dir",
- "lastModified": "2025-09-25T12:33:21Z"
+ "lastModified": "2025-09-25T11:38:59Z"
+ },
+ {
+ "name": "CN-v43-18011536494/",
+ "href": "/docs/Observability/CN-v43-18011536494/",
+ "type": "dir",
+ "lastModified": "2025-09-25T14:58:37Z"
+ },
+ {
+ "name": "CN-v44-18011825454/",
+ "href": "/docs/Observability/CN-v44-18011825454/",
+ "type": "dir",
+ "lastModified": "2025-09-25T15:06:46Z"
+ },
+ {
+ "name": "CN-v45-18011937887/",
+ "href": "/docs/Observability/CN-v45-18011937887/",
+ "type": "dir",
+ "lastModified": "2025-09-25T15:13:30Z"
+ },
+ {
+ "name": "CN-v46-18011951541/",
+ "href": "/docs/Observability/CN-v46-18011951541/",
+ "type": "dir",
+ "lastModified": "2025-09-25T15:13:28Z"
+ },
+ {
+ "name": "CN-v47-18013619427/",
+ "href": "/docs/Observability/CN-v47-18013619427/",
+ "type": "dir",
+ "lastModified": "2025-09-25T16:13:27Z"
+ },
+ {
+ "name": "CN-v49-18027128243/",
+ "href": "/docs/Observability/CN-v49-18027128243/",
+ "type": "dir",
+ "lastModified": "2025-09-26T03:39:31Z"
+ },
+ {
+ "name": "CN-v52-18027443116/",
+ "href": "/docs/Observability/CN-v52-18027443116/",
+ "type": "dir",
+ "lastModified": "2025-09-26T04:04:53Z"
+ },
+ {
+ "name": "CN-v53-18027447911/",
+ "href": "/docs/Observability/CN-v53-18027447911/",
+ "type": "dir",
+ "lastModified": "2025-09-26T04:05:53Z"
+ },
+ {
+ "name": "CN-v54-18029756788/",
+ "href": "/docs/Observability/CN-v54-18029756788/",
+ "type": "dir",
+ "lastModified": "2025-09-26T06:27:37Z"
+ },
+ {
+ "name": "CN-v55-18030101682/",
+ "href": "/docs/Observability/CN-v55-18030101682/",
+ "type": "dir",
+ "lastModified": "2025-09-26T06:49:35Z"
+ },
+ {
+ "name": "CN-v56-18031095670/",
+ "href": "/docs/Observability/CN-v56-18031095670/",
+ "type": "dir",
+ "lastModified": "2025-09-26T07:35:03Z"
+ },
+ {
+ "name": "CN-v57-18060203518/",
+ "href": "/docs/Observability/CN-v57-18060203518/",
+ "type": "dir",
+ "lastModified": "2025-09-27T13:12:15Z"
+ },
+ {
+ "name": "CN-v58-18068296502/",
+ "href": "/docs/Observability/CN-v58-18068296502/",
+ "type": "dir",
+ "lastModified": "2025-09-28T02:52:24Z"
+ },
+ {
+ "name": "CN-v59-18075708801/",
+ "href": "/docs/Observability/CN-v59-18075708801/",
+ "type": "dir",
+ "lastModified": "2025-09-28T14:39:10Z"
+ },
+ {
+ "name": "CN-v60-18083886120/",
+ "href": "/docs/Observability/CN-v60-18083886120/",
+ "type": "dir",
+ "lastModified": "2025-09-29T02:32:17Z"
}
]
},
@@ -25406,14 +26451,14 @@
"href": "/docs/Observability/CN-v33-17996525102/Observability-Design-and-Implementation.html",
"type": "file",
"size": 301718,
- "lastModified": "2025-09-25T10:56:00Z"
+ "lastModified": "2025-09-25T04:07:12Z"
},
{
"name": "Observability-Design-and-Implementation.pdf",
"href": "/docs/Observability/CN-v33-17996525102/Observability-Design-and-Implementation.pdf",
"type": "file",
"size": 731774,
- "lastModified": "2025-09-25T10:56:03Z"
+ "lastModified": "2025-09-25T04:07:19Z"
}
]
},
@@ -25425,14 +26470,14 @@
"href": "/docs/Observability/CN-v36-18002294267/Observability-Design-and-Implementation.html",
"type": "file",
"size": 301718,
- "lastModified": "2025-09-25T10:56:49Z"
+ "lastModified": "2025-09-25T09:00:49Z"
},
{
"name": "Observability-Design-and-Implementation.pdf",
"href": "/docs/Observability/CN-v36-18002294267/Observability-Design-and-Implementation.pdf",
"type": "file",
"size": 731781,
- "lastModified": "2025-09-25T10:58:38Z"
+ "lastModified": "2025-09-25T09:00:56Z"
}
]
},
@@ -25444,14 +26489,14 @@
"href": "/docs/Observability/CN-v37-18002553627/Observability-Design-and-Implementation.html",
"type": "file",
"size": 301718,
- "lastModified": "2025-09-25T11:00:00Z"
+ "lastModified": "2025-09-25T09:09:21Z"
},
{
"name": "Observability-Design-and-Implementation.pdf",
"href": "/docs/Observability/CN-v37-18002553627/Observability-Design-and-Implementation.pdf",
"type": "file",
"size": 731773,
- "lastModified": "2025-09-25T11:02:40Z"
+ "lastModified": "2025-09-25T09:09:29Z"
}
]
},
@@ -25463,14 +26508,14 @@
"href": "/docs/Observability/CN-v39-18004672680/Observability-Design-and-Implementation.html",
"type": "file",
"size": 301718,
- "lastModified": "2025-09-25T11:03:19Z"
+ "lastModified": "2025-09-25T10:35:21Z"
},
{
"name": "Observability-Design-and-Implementation.pdf",
"href": "/docs/Observability/CN-v39-18004672680/Observability-Design-and-Implementation.pdf",
"type": "file",
"size": 731779,
- "lastModified": "2025-09-25T11:04:44Z"
+ "lastModified": "2025-09-25T10:35:28Z"
}
]
},
@@ -25482,24 +26527,339 @@
"href": "/docs/Observability/CN-v40-18004678416/Observability-Design-and-Implementation.html",
"type": "file",
"size": 301718,
- "lastModified": "2025-09-25T11:05:42Z"
+ "lastModified": "2025-09-25T10:34:01Z"
},
{
"name": "Observability-Design-and-Implementation.pdf",
"href": "/docs/Observability/CN-v40-18004678416/Observability-Design-and-Implementation.pdf",
"type": "file",
"size": 731777,
- "lastModified": "2025-09-25T11:07:40Z"
+ "lastModified": "2025-09-25T10:34:08Z"
}
]
},
{
"path": "docs/Observability/CN-v41-18005142964/",
- "entries": []
+ "entries": [
+ {
+ "name": "Observability-Design-and-Implementation.html",
+ "href": "/docs/Observability/CN-v41-18005142964/Observability-Design-and-Implementation.html",
+ "type": "file",
+ "size": 301718,
+ "lastModified": "2025-09-25T10:55:30Z"
+ },
+ {
+ "name": "Observability-Design-and-Implementation.pdf",
+ "href": "/docs/Observability/CN-v41-18005142964/Observability-Design-and-Implementation.pdf",
+ "type": "file",
+ "size": 731780,
+ "lastModified": "2025-09-25T10:55:37Z"
+ }
+ ]
},
{
"path": "docs/Observability/CN-v42-18006148753/",
- "entries": []
+ "entries": [
+ {
+ "name": "Observability-Design-and-Implementation.html",
+ "href": "/docs/Observability/CN-v42-18006148753/Observability-Design-and-Implementation.html",
+ "type": "file",
+ "size": 301718,
+ "lastModified": "2025-09-25T11:38:43Z"
+ },
+ {
+ "name": "Observability-Design-and-Implementation.pdf",
+ "href": "/docs/Observability/CN-v42-18006148753/Observability-Design-and-Implementation.pdf",
+ "type": "file",
+ "size": 731772,
+ "lastModified": "2025-09-25T11:38:49Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Observability/CN-v43-18011536494/",
+ "entries": [
+ {
+ "name": "Observability-Design-and-Implementation.html",
+ "href": "/docs/Observability/CN-v43-18011536494/Observability-Design-and-Implementation.html",
+ "type": "file",
+ "size": 301718,
+ "lastModified": "2025-09-25T14:58:19Z"
+ },
+ {
+ "name": "Observability-Design-and-Implementation.pdf",
+ "href": "/docs/Observability/CN-v43-18011536494/Observability-Design-and-Implementation.pdf",
+ "type": "file",
+ "size": 731779,
+ "lastModified": "2025-09-25T14:58:25Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Observability/CN-v44-18011825454/",
+ "entries": [
+ {
+ "name": "Observability-Design-and-Implementation.html",
+ "href": "/docs/Observability/CN-v44-18011825454/Observability-Design-and-Implementation.html",
+ "type": "file",
+ "size": 301718,
+ "lastModified": "2025-09-25T15:06:27Z"
+ },
+ {
+ "name": "Observability-Design-and-Implementation.pdf",
+ "href": "/docs/Observability/CN-v44-18011825454/Observability-Design-and-Implementation.pdf",
+ "type": "file",
+ "size": 731780,
+ "lastModified": "2025-09-25T15:06:34Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Observability/CN-v45-18011937887/",
+ "entries": [
+ {
+ "name": "Observability-Design-and-Implementation.html",
+ "href": "/docs/Observability/CN-v45-18011937887/Observability-Design-and-Implementation.html",
+ "type": "file",
+ "size": 301718,
+ "lastModified": "2025-09-25T15:13:11Z"
+ },
+ {
+ "name": "Observability-Design-and-Implementation.pdf",
+ "href": "/docs/Observability/CN-v45-18011937887/Observability-Design-and-Implementation.pdf",
+ "type": "file",
+ "size": 731779,
+ "lastModified": "2025-09-25T15:13:18Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Observability/CN-v46-18011951541/",
+ "entries": [
+ {
+ "name": "Observability-Design-and-Implementation.html",
+ "href": "/docs/Observability/CN-v46-18011951541/Observability-Design-and-Implementation.html",
+ "type": "file",
+ "size": 301718,
+ "lastModified": "2025-09-25T15:13:06Z"
+ },
+ {
+ "name": "Observability-Design-and-Implementation.pdf",
+ "href": "/docs/Observability/CN-v46-18011951541/Observability-Design-and-Implementation.pdf",
+ "type": "file",
+ "size": 731774,
+ "lastModified": "2025-09-25T15:13:15Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Observability/CN-v47-18013619427/",
+ "entries": [
+ {
+ "name": "Observability-Design-and-Implementation.html",
+ "href": "/docs/Observability/CN-v47-18013619427/Observability-Design-and-Implementation.html",
+ "type": "file",
+ "size": 301718,
+ "lastModified": "2025-09-25T16:13:09Z"
+ },
+ {
+ "name": "Observability-Design-and-Implementation.pdf",
+ "href": "/docs/Observability/CN-v47-18013619427/Observability-Design-and-Implementation.pdf",
+ "type": "file",
+ "size": 731780,
+ "lastModified": "2025-09-25T16:13:16Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Observability/CN-v49-18027128243/",
+ "entries": [
+ {
+ "name": "Observability-Design-and-Implementation.html",
+ "href": "/docs/Observability/CN-v49-18027128243/Observability-Design-and-Implementation.html",
+ "type": "file",
+ "size": 301718,
+ "lastModified": "2025-09-26T03:39:13Z"
+ },
+ {
+ "name": "Observability-Design-and-Implementation.pdf",
+ "href": "/docs/Observability/CN-v49-18027128243/Observability-Design-and-Implementation.pdf",
+ "type": "file",
+ "size": 731772,
+ "lastModified": "2025-09-26T03:39:20Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Observability/CN-v52-18027443116/",
+ "entries": [
+ {
+ "name": "Observability-Design-and-Implementation.html",
+ "href": "/docs/Observability/CN-v52-18027443116/Observability-Design-and-Implementation.html",
+ "type": "file",
+ "size": 301718,
+ "lastModified": "2025-09-26T04:04:36Z"
+ },
+ {
+ "name": "Observability-Design-and-Implementation.pdf",
+ "href": "/docs/Observability/CN-v52-18027443116/Observability-Design-and-Implementation.pdf",
+ "type": "file",
+ "size": 731776,
+ "lastModified": "2025-09-26T04:04:43Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Observability/CN-v53-18027447911/",
+ "entries": [
+ {
+ "name": "Observability-Design-and-Implementation.html",
+ "href": "/docs/Observability/CN-v53-18027447911/Observability-Design-and-Implementation.html",
+ "type": "file",
+ "size": 301718,
+ "lastModified": "2025-09-26T04:05:35Z"
+ },
+ {
+ "name": "Observability-Design-and-Implementation.pdf",
+ "href": "/docs/Observability/CN-v53-18027447911/Observability-Design-and-Implementation.pdf",
+ "type": "file",
+ "size": 731777,
+ "lastModified": "2025-09-26T04:05:43Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Observability/CN-v54-18029756788/",
+ "entries": [
+ {
+ "name": "Observability-Design-and-Implementation.html",
+ "href": "/docs/Observability/CN-v54-18029756788/Observability-Design-and-Implementation.html",
+ "type": "file",
+ "size": 301718,
+ "lastModified": "2025-09-26T06:26:21Z"
+ },
+ {
+ "name": "Observability-Design-and-Implementation.pdf",
+ "href": "/docs/Observability/CN-v54-18029756788/Observability-Design-and-Implementation.pdf",
+ "type": "file",
+ "size": 616729,
+ "lastModified": "2025-09-26T06:26:57Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Observability/CN-v55-18030101682/",
+ "entries": [
+ {
+ "name": "Observability-Design-and-Implementation.html",
+ "href": "/docs/Observability/CN-v55-18030101682/Observability-Design-and-Implementation.html",
+ "type": "file",
+ "size": 301718,
+ "lastModified": "2025-09-26T06:49:17Z"
+ },
+ {
+ "name": "Observability-Design-and-Implementation.pdf",
+ "href": "/docs/Observability/CN-v55-18030101682/Observability-Design-and-Implementation.pdf",
+ "type": "file",
+ "size": 731777,
+ "lastModified": "2025-09-26T06:49:24Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Observability/CN-v56-18031095670/",
+ "entries": [
+ {
+ "name": "Observability-Design-and-Implementation.html",
+ "href": "/docs/Observability/CN-v56-18031095670/Observability-Design-and-Implementation.html",
+ "type": "file",
+ "size": 301718,
+ "lastModified": "2025-09-26T07:34:44Z"
+ },
+ {
+ "name": "Observability-Design-and-Implementation.pdf",
+ "href": "/docs/Observability/CN-v56-18031095670/Observability-Design-and-Implementation.pdf",
+ "type": "file",
+ "size": 731773,
+ "lastModified": "2025-09-26T07:34:52Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Observability/CN-v57-18060203518/",
+ "entries": [
+ {
+ "name": "Observability-Design-and-Implementation.html",
+ "href": "/docs/Observability/CN-v57-18060203518/Observability-Design-and-Implementation.html",
+ "type": "file",
+ "size": 301718,
+ "lastModified": "2025-09-27T13:11:58Z"
+ },
+ {
+ "name": "Observability-Design-and-Implementation.pdf",
+ "href": "/docs/Observability/CN-v57-18060203518/Observability-Design-and-Implementation.pdf",
+ "type": "file",
+ "size": 731777,
+ "lastModified": "2025-09-27T13:12:05Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Observability/CN-v58-18068296502/",
+ "entries": [
+ {
+ "name": "Observability-Design-and-Implementation.html",
+ "href": "/docs/Observability/CN-v58-18068296502/Observability-Design-and-Implementation.html",
+ "type": "file",
+ "size": 301718,
+ "lastModified": "2025-09-28T02:52:08Z"
+ },
+ {
+ "name": "Observability-Design-and-Implementation.pdf",
+ "href": "/docs/Observability/CN-v58-18068296502/Observability-Design-and-Implementation.pdf",
+ "type": "file",
+ "size": 731774,
+ "lastModified": "2025-09-28T02:52:14Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Observability/CN-v59-18075708801/",
+ "entries": [
+ {
+ "name": "Observability-Design-and-Implementation.html",
+ "href": "/docs/Observability/CN-v59-18075708801/Observability-Design-and-Implementation.html",
+ "type": "file",
+ "size": 301718,
+ "lastModified": "2025-09-28T14:38:52Z"
+ },
+ {
+ "name": "Observability-Design-and-Implementation.pdf",
+ "href": "/docs/Observability/CN-v59-18075708801/Observability-Design-and-Implementation.pdf",
+ "type": "file",
+ "size": 731779,
+ "lastModified": "2025-09-28T14:38:59Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Observability/CN-v60-18083886120/",
+ "entries": [
+ {
+ "name": "Observability-Design-and-Implementation.html",
+ "href": "/docs/Observability/CN-v60-18083886120/Observability-Design-and-Implementation.html",
+ "type": "file",
+ "size": 301718,
+ "lastModified": "2025-09-29T02:31:59Z"
+ },
+ {
+ "name": "Observability-Design-and-Implementation.pdf",
+ "href": "/docs/Observability/CN-v60-18083886120/Observability-Design-and-Implementation.pdf",
+ "type": "file",
+ "size": 731779,
+ "lastModified": "2025-09-29T02:32:06Z"
+ }
+ ]
},
{
"path": "docs/Personal/",
@@ -25508,49 +26868,133 @@
"name": "EN-v33-17996525102/",
"href": "/docs/Personal/EN-v33-17996525102/",
"type": "dir",
- "lastModified": "2025-09-25T11:07:42Z"
+ "lastModified": "2025-09-25T04:08:15Z"
},
{
"name": "EN-v34-18001960544/",
"href": "/docs/Personal/EN-v34-18001960544/",
"type": "dir",
- "lastModified": "2025-09-25T11:13:14Z"
+ "lastModified": "2025-09-25T08:46:35Z"
},
{
"name": "EN-v36-18002294267/",
"href": "/docs/Personal/EN-v36-18002294267/",
"type": "dir",
- "lastModified": "2025-09-25T11:21:22Z"
+ "lastModified": "2025-09-25T09:00:05Z"
},
{
"name": "EN-v37-18002553627/",
"href": "/docs/Personal/EN-v37-18002553627/",
"type": "dir",
- "lastModified": "2025-09-25T11:33:42Z"
+ "lastModified": "2025-09-25T09:09:32Z"
},
{
"name": "EN-v39-18004672680/",
"href": "/docs/Personal/EN-v39-18004672680/",
"type": "dir",
- "lastModified": "2025-09-25T11:43:41Z"
+ "lastModified": "2025-09-25T10:36:07Z"
},
{
"name": "EN-v40-18004678416/",
"href": "/docs/Personal/EN-v40-18004678416/",
"type": "dir",
- "lastModified": "2025-09-25T11:55:22Z"
+ "lastModified": "2025-09-25T10:35:22Z"
},
{
"name": "EN-v41-18005142964/",
"href": "/docs/Personal/EN-v41-18005142964/",
"type": "dir",
- "lastModified": "2025-09-25T12:33:22Z"
+ "lastModified": "2025-09-25T10:54:47Z"
},
{
"name": "EN-v42-18006148753/",
"href": "/docs/Personal/EN-v42-18006148753/",
"type": "dir",
- "lastModified": "2025-09-25T12:33:22Z"
+ "lastModified": "2025-09-25T11:38:41Z"
+ },
+ {
+ "name": "EN-v43-18011536494/",
+ "href": "/docs/Personal/EN-v43-18011536494/",
+ "type": "dir",
+ "lastModified": "2025-09-25T14:57:29Z"
+ },
+ {
+ "name": "EN-v44-18011825454/",
+ "href": "/docs/Personal/EN-v44-18011825454/",
+ "type": "dir",
+ "lastModified": "2025-09-25T15:08:55Z"
+ },
+ {
+ "name": "EN-v45-18011937887/",
+ "href": "/docs/Personal/EN-v45-18011937887/",
+ "type": "dir",
+ "lastModified": "2025-09-25T15:20:31Z"
+ },
+ {
+ "name": "EN-v46-18011951541/",
+ "href": "/docs/Personal/EN-v46-18011951541/",
+ "type": "dir",
+ "lastModified": "2025-09-25T15:12:34Z"
+ },
+ {
+ "name": "EN-v47-18013619427/",
+ "href": "/docs/Personal/EN-v47-18013619427/",
+ "type": "dir",
+ "lastModified": "2025-09-25T16:11:41Z"
+ },
+ {
+ "name": "EN-v52-18027443116/",
+ "href": "/docs/Personal/EN-v52-18027443116/",
+ "type": "dir",
+ "lastModified": "2025-09-26T04:04:09Z"
+ },
+ {
+ "name": "EN-v53-18027447911/",
+ "href": "/docs/Personal/EN-v53-18027447911/",
+ "type": "dir",
+ "lastModified": "2025-09-26T04:03:36Z"
+ },
+ {
+ "name": "EN-v54-18029756788/",
+ "href": "/docs/Personal/EN-v54-18029756788/",
+ "type": "dir",
+ "lastModified": "2025-09-26T06:29:06Z"
+ },
+ {
+ "name": "EN-v55-18030101682/",
+ "href": "/docs/Personal/EN-v55-18030101682/",
+ "type": "dir",
+ "lastModified": "2025-09-26T06:47:14Z"
+ },
+ {
+ "name": "EN-v56-18031095670/",
+ "href": "/docs/Personal/EN-v56-18031095670/",
+ "type": "dir",
+ "lastModified": "2025-09-26T07:33:01Z"
+ },
+ {
+ "name": "EN-v57-18060203518/",
+ "href": "/docs/Personal/EN-v57-18060203518/",
+ "type": "dir",
+ "lastModified": "2025-09-27T13:11:48Z"
+ },
+ {
+ "name": "EN-v58-18068296502/",
+ "href": "/docs/Personal/EN-v58-18068296502/",
+ "type": "dir",
+ "lastModified": "2025-09-28T02:52:49Z"
+ },
+ {
+ "name": "EN-v59-18075708801/",
+ "href": "/docs/Personal/EN-v59-18075708801/",
+ "type": "dir",
+ "lastModified": "2025-09-28T14:39:39Z"
+ },
+ {
+ "name": "EN-v60-18083886120/",
+ "href": "/docs/Personal/EN-v60-18083886120/",
+ "type": "dir",
+ "lastModified": "2025-09-29T02:33:50Z"
}
]
},
@@ -25562,168 +27006,168 @@
"href": "/docs/Personal/EN-v33-17996525102/ActiveBalance-Plan.html",
"type": "file",
"size": 5461,
- "lastModified": "2025-09-25T11:07:40Z"
+ "lastModified": "2025-09-25T04:08:05Z"
},
{
"name": "ActiveBalance-Plan.pdf",
"href": "/docs/Personal/EN-v33-17996525102/ActiveBalance-Plan.pdf",
"type": "file",
"size": 76344,
- "lastModified": "2025-09-25T11:07:40Z"
+ "lastModified": "2025-09-25T04:07:35Z"
},
{
"name": "CV-AI-Dev-EN.html",
"href": "/docs/Personal/EN-v33-17996525102/CV-AI-Dev-EN.html",
"type": "file",
"size": 10218,
- "lastModified": "2025-09-25T11:07:40Z"
+ "lastModified": "2025-09-25T04:08:05Z"
},
{
"name": "CV-AI-Dev-EN.pdf",
"href": "/docs/Personal/EN-v33-17996525102/CV-AI-Dev-EN.pdf",
"type": "file",
"size": 51820,
- "lastModified": "2025-09-25T11:07:40Z"
+ "lastModified": "2025-09-25T04:07:37Z"
},
{
"name": "CV-AI-Dev-ZH.html",
"href": "/docs/Personal/EN-v33-17996525102/CV-AI-Dev-ZH.html",
"type": "file",
"size": 20180,
- "lastModified": "2025-09-25T11:07:40Z"
+ "lastModified": "2025-09-25T04:08:05Z"
},
{
"name": "CV-AI-Dev-ZH.pdf",
"href": "/docs/Personal/EN-v33-17996525102/CV-AI-Dev-ZH.pdf",
"type": "file",
"size": 199122,
- "lastModified": "2025-09-25T11:07:41Z"
+ "lastModified": "2025-09-25T04:07:40Z"
},
{
"name": "CV-EN.html",
"href": "/docs/Personal/EN-v33-17996525102/CV-EN.html",
"type": "file",
"size": 23062,
- "lastModified": "2025-09-25T11:07:41Z"
+ "lastModified": "2025-09-25T04:08:05Z"
},
{
"name": "CV-EN.pdf",
"href": "/docs/Personal/EN-v33-17996525102/CV-EN.pdf",
"type": "file",
"size": 63733,
- "lastModified": "2025-09-25T11:07:41Z"
+ "lastModified": "2025-09-25T04:07:42Z"
},
{
"name": "CV-ZH.html",
"href": "/docs/Personal/EN-v33-17996525102/CV-ZH.html",
"type": "file",
"size": 20238,
- "lastModified": "2025-09-25T11:07:41Z"
+ "lastModified": "2025-09-25T04:08:05Z"
},
{
"name": "CV-ZH.pdf",
"href": "/docs/Personal/EN-v33-17996525102/CV-ZH.pdf",
"type": "file",
"size": 170872,
- "lastModified": "2025-09-25T11:07:41Z"
+ "lastModified": "2025-09-25T04:07:44Z"
},
{
"name": "README.html",
"href": "/docs/Personal/EN-v33-17996525102/README.html",
"type": "file",
"size": 3295,
- "lastModified": "2025-09-25T11:07:41Z"
+ "lastModified": "2025-09-25T04:08:06Z"
},
{
"name": "README.pdf",
"href": "/docs/Personal/EN-v33-17996525102/README.pdf",
"type": "file",
"size": 52031,
- "lastModified": "2025-09-25T11:07:41Z"
+ "lastModified": "2025-09-25T04:07:47Z"
},
{
"name": "Resume-DevOPS-ZH.html",
"href": "/docs/Personal/EN-v33-17996525102/Resume-DevOPS-ZH.html",
"type": "file",
"size": 8949,
- "lastModified": "2025-09-25T11:07:41Z"
+ "lastModified": "2025-09-25T04:08:06Z"
},
{
"name": "Resume-DevOPS-ZH.pdf",
"href": "/docs/Personal/EN-v33-17996525102/Resume-DevOPS-ZH.pdf",
"type": "file",
"size": 138280,
- "lastModified": "2025-09-25T11:07:41Z"
+ "lastModified": "2025-09-25T04:07:49Z"
},
{
"name": "Resume-DevOps-EN.html",
"href": "/docs/Personal/EN-v33-17996525102/Resume-DevOps-EN.html",
"type": "file",
"size": 9670,
- "lastModified": "2025-09-25T11:07:41Z"
+ "lastModified": "2025-09-25T04:08:06Z"
},
{
"name": "Resume-DevOps-EN.pdf",
"href": "/docs/Personal/EN-v33-17996525102/Resume-DevOps-EN.pdf",
"type": "file",
"size": 50985,
- "lastModified": "2025-09-25T11:07:41Z"
+ "lastModified": "2025-09-25T04:07:51Z"
},
{
"name": "Resume-EN.html",
"href": "/docs/Personal/EN-v33-17996525102/Resume-EN.html",
"type": "file",
"size": 10706,
- "lastModified": "2025-09-25T11:07:41Z"
+ "lastModified": "2025-09-25T04:08:06Z"
},
{
"name": "Resume-EN.pdf",
"href": "/docs/Personal/EN-v33-17996525102/Resume-EN.pdf",
"type": "file",
"size": 57375,
- "lastModified": "2025-09-25T11:07:41Z"
+ "lastModified": "2025-09-25T04:07:53Z"
},
{
"name": "Resume-ZH.html",
"href": "/docs/Personal/EN-v33-17996525102/Resume-ZH.html",
"type": "file",
"size": 17297,
- "lastModified": "2025-09-25T11:07:41Z"
+ "lastModified": "2025-09-25T04:08:06Z"
},
{
"name": "Resume-ZH.pdf",
"href": "/docs/Personal/EN-v33-17996525102/Resume-ZH.pdf",
"type": "file",
"size": 179975,
- "lastModified": "2025-09-25T11:07:41Z"
+ "lastModified": "2025-09-25T04:07:56Z"
},
{
"name": "cet-6.html",
"href": "/docs/Personal/EN-v33-17996525102/cet-6.html",
"type": "file",
"size": 448346,
- "lastModified": "2025-09-25T11:07:41Z"
+ "lastModified": "2025-09-25T04:08:06Z"
},
{
"name": "cet-6.pdf",
"href": "/docs/Personal/EN-v33-17996525102/cet-6.pdf",
"type": "file",
"size": 1192645,
- "lastModified": "2025-09-25T11:07:42Z"
+ "lastModified": "2025-09-25T04:08:01Z"
},
{
"name": "fullstack-language-core.html",
"href": "/docs/Personal/EN-v33-17996525102/fullstack-language-core.html",
"type": "file",
"size": 11943,
- "lastModified": "2025-09-25T11:07:42Z"
+ "lastModified": "2025-09-25T04:08:06Z"
},
{
"name": "fullstack-language-core.pdf",
"href": "/docs/Personal/EN-v33-17996525102/fullstack-language-core.pdf",
"type": "file",
"size": 70432,
- "lastModified": "2025-09-25T11:07:42Z"
+ "lastModified": "2025-09-25T04:08:04Z"
}
]
},
@@ -25735,168 +27179,168 @@
"href": "/docs/Personal/EN-v34-18001960544/ActiveBalance-Plan.html",
"type": "file",
"size": 5461,
- "lastModified": "2025-09-25T11:07:42Z"
+ "lastModified": "2025-09-25T08:46:24Z"
},
{
"name": "ActiveBalance-Plan.pdf",
"href": "/docs/Personal/EN-v34-18001960544/ActiveBalance-Plan.pdf",
"type": "file",
"size": 76343,
- "lastModified": "2025-09-25T11:07:48Z"
+ "lastModified": "2025-09-25T08:45:55Z"
},
{
"name": "CV-AI-Dev-EN.html",
"href": "/docs/Personal/EN-v34-18001960544/CV-AI-Dev-EN.html",
"type": "file",
"size": 10218,
- "lastModified": "2025-09-25T11:07:48Z"
+ "lastModified": "2025-09-25T08:46:24Z"
},
{
"name": "CV-AI-Dev-EN.pdf",
"href": "/docs/Personal/EN-v34-18001960544/CV-AI-Dev-EN.pdf",
"type": "file",
"size": 51820,
- "lastModified": "2025-09-25T11:07:53Z"
+ "lastModified": "2025-09-25T08:45:57Z"
},
{
"name": "CV-AI-Dev-ZH.html",
"href": "/docs/Personal/EN-v34-18001960544/CV-AI-Dev-ZH.html",
"type": "file",
"size": 20180,
- "lastModified": "2025-09-25T11:07:53Z"
+ "lastModified": "2025-09-25T08:46:24Z"
},
{
"name": "CV-AI-Dev-ZH.pdf",
"href": "/docs/Personal/EN-v34-18001960544/CV-AI-Dev-ZH.pdf",
"type": "file",
"size": 199126,
- "lastModified": "2025-09-25T11:08:07Z"
+ "lastModified": "2025-09-25T08:45:59Z"
},
{
"name": "CV-EN.html",
"href": "/docs/Personal/EN-v34-18001960544/CV-EN.html",
"type": "file",
"size": 23062,
- "lastModified": "2025-09-25T11:08:08Z"
+ "lastModified": "2025-09-25T08:46:25Z"
},
{
"name": "CV-EN.pdf",
"href": "/docs/Personal/EN-v34-18001960544/CV-EN.pdf",
"type": "file",
"size": 63735,
- "lastModified": "2025-09-25T11:08:12Z"
+ "lastModified": "2025-09-25T08:46:02Z"
},
{
"name": "CV-ZH.html",
"href": "/docs/Personal/EN-v34-18001960544/CV-ZH.html",
"type": "file",
"size": 20238,
- "lastModified": "2025-09-25T11:08:14Z"
+ "lastModified": "2025-09-25T08:46:25Z"
},
{
"name": "CV-ZH.pdf",
"href": "/docs/Personal/EN-v34-18001960544/CV-ZH.pdf",
"type": "file",
"size": 170866,
- "lastModified": "2025-09-25T11:08:24Z"
+ "lastModified": "2025-09-25T08:46:04Z"
},
{
"name": "README.html",
"href": "/docs/Personal/EN-v34-18001960544/README.html",
"type": "file",
"size": 3295,
- "lastModified": "2025-09-25T11:08:24Z"
+ "lastModified": "2025-09-25T08:46:25Z"
},
{
"name": "README.pdf",
"href": "/docs/Personal/EN-v34-18001960544/README.pdf",
"type": "file",
"size": 52031,
- "lastModified": "2025-09-25T11:08:26Z"
+ "lastModified": "2025-09-25T08:46:06Z"
},
{
"name": "Resume-DevOPS-ZH.html",
"href": "/docs/Personal/EN-v34-18001960544/Resume-DevOPS-ZH.html",
"type": "file",
"size": 8949,
- "lastModified": "2025-09-25T11:08:29Z"
+ "lastModified": "2025-09-25T08:46:25Z"
},
{
"name": "Resume-DevOPS-ZH.pdf",
"href": "/docs/Personal/EN-v34-18001960544/Resume-DevOPS-ZH.pdf",
"type": "file",
"size": 138283,
- "lastModified": "2025-09-25T11:08:38Z"
+ "lastModified": "2025-09-25T08:46:08Z"
},
{
"name": "Resume-DevOps-EN.html",
"href": "/docs/Personal/EN-v34-18001960544/Resume-DevOps-EN.html",
"type": "file",
"size": 9670,
- "lastModified": "2025-09-25T11:08:38Z"
+ "lastModified": "2025-09-25T08:46:25Z"
},
{
"name": "Resume-DevOps-EN.pdf",
"href": "/docs/Personal/EN-v34-18001960544/Resume-DevOps-EN.pdf",
"type": "file",
"size": 50980,
- "lastModified": "2025-09-25T11:08:42Z"
+ "lastModified": "2025-09-25T08:46:11Z"
},
{
"name": "Resume-EN.html",
"href": "/docs/Personal/EN-v34-18001960544/Resume-EN.html",
"type": "file",
"size": 10706,
- "lastModified": "2025-09-25T11:08:42Z"
+ "lastModified": "2025-09-25T08:46:25Z"
},
{
"name": "Resume-EN.pdf",
"href": "/docs/Personal/EN-v34-18001960544/Resume-EN.pdf",
"type": "file",
"size": 57376,
- "lastModified": "2025-09-25T11:08:50Z"
+ "lastModified": "2025-09-25T08:46:13Z"
},
{
"name": "Resume-ZH.html",
"href": "/docs/Personal/EN-v34-18001960544/Resume-ZH.html",
"type": "file",
"size": 17297,
- "lastModified": "2025-09-25T11:08:50Z"
+ "lastModified": "2025-09-25T08:46:25Z"
},
{
"name": "Resume-ZH.pdf",
"href": "/docs/Personal/EN-v34-18001960544/Resume-ZH.pdf",
"type": "file",
"size": 179974,
- "lastModified": "2025-09-25T11:09:05Z"
+ "lastModified": "2025-09-25T08:46:15Z"
},
{
"name": "cet-6.html",
"href": "/docs/Personal/EN-v34-18001960544/cet-6.html",
"type": "file",
"size": 448346,
- "lastModified": "2025-09-25T11:10:09Z"
+ "lastModified": "2025-09-25T08:46:25Z"
},
{
"name": "cet-6.pdf",
"href": "/docs/Personal/EN-v34-18001960544/cet-6.pdf",
"type": "file",
"size": 1192647,
- "lastModified": "2025-09-25T11:13:01Z"
+ "lastModified": "2025-09-25T08:46:21Z"
},
{
"name": "fullstack-language-core.html",
"href": "/docs/Personal/EN-v34-18001960544/fullstack-language-core.html",
"type": "file",
"size": 11943,
- "lastModified": "2025-09-25T11:13:01Z"
+ "lastModified": "2025-09-25T08:46:25Z"
},
{
"name": "fullstack-language-core.pdf",
"href": "/docs/Personal/EN-v34-18001960544/fullstack-language-core.pdf",
"type": "file",
"size": 70428,
- "lastModified": "2025-09-25T11:13:14Z"
+ "lastModified": "2025-09-25T08:46:23Z"
}
]
},
@@ -25908,168 +27352,168 @@
"href": "/docs/Personal/EN-v36-18002294267/ActiveBalance-Plan.html",
"type": "file",
"size": 5461,
- "lastModified": "2025-09-25T11:13:20Z"
+ "lastModified": "2025-09-25T08:59:53Z"
},
{
"name": "ActiveBalance-Plan.pdf",
"href": "/docs/Personal/EN-v36-18002294267/ActiveBalance-Plan.pdf",
"type": "file",
"size": 76346,
- "lastModified": "2025-09-25T11:13:44Z"
+ "lastModified": "2025-09-25T08:59:23Z"
},
{
"name": "CV-AI-Dev-EN.html",
"href": "/docs/Personal/EN-v36-18002294267/CV-AI-Dev-EN.html",
"type": "file",
"size": 10218,
- "lastModified": "2025-09-25T11:13:44Z"
+ "lastModified": "2025-09-25T08:59:53Z"
},
{
"name": "CV-AI-Dev-EN.pdf",
"href": "/docs/Personal/EN-v36-18002294267/CV-AI-Dev-EN.pdf",
"type": "file",
"size": 51820,
- "lastModified": "2025-09-25T11:14:01Z"
+ "lastModified": "2025-09-25T08:59:26Z"
},
{
"name": "CV-AI-Dev-ZH.html",
"href": "/docs/Personal/EN-v36-18002294267/CV-AI-Dev-ZH.html",
"type": "file",
"size": 20180,
- "lastModified": "2025-09-25T11:14:13Z"
+ "lastModified": "2025-09-25T08:59:54Z"
},
{
"name": "CV-AI-Dev-ZH.pdf",
"href": "/docs/Personal/EN-v36-18002294267/CV-AI-Dev-ZH.pdf",
"type": "file",
"size": 199123,
- "lastModified": "2025-09-25T11:14:44Z"
+ "lastModified": "2025-09-25T08:59:28Z"
},
{
"name": "CV-EN.html",
"href": "/docs/Personal/EN-v36-18002294267/CV-EN.html",
"type": "file",
"size": 23062,
- "lastModified": "2025-09-25T11:14:44Z"
+ "lastModified": "2025-09-25T08:59:54Z"
},
{
"name": "CV-EN.pdf",
"href": "/docs/Personal/EN-v36-18002294267/CV-EN.pdf",
"type": "file",
"size": 63735,
- "lastModified": "2025-09-25T11:14:52Z"
+ "lastModified": "2025-09-25T08:59:30Z"
},
{
"name": "CV-ZH.html",
"href": "/docs/Personal/EN-v36-18002294267/CV-ZH.html",
"type": "file",
"size": 20238,
- "lastModified": "2025-09-25T11:14:56Z"
+ "lastModified": "2025-09-25T08:59:54Z"
},
{
"name": "CV-ZH.pdf",
"href": "/docs/Personal/EN-v36-18002294267/CV-ZH.pdf",
"type": "file",
"size": 170870,
- "lastModified": "2025-09-25T11:15:19Z"
+ "lastModified": "2025-09-25T08:59:33Z"
},
{
"name": "README.html",
"href": "/docs/Personal/EN-v36-18002294267/README.html",
"type": "file",
"size": 3295,
- "lastModified": "2025-09-25T11:15:19Z"
+ "lastModified": "2025-09-25T08:59:54Z"
},
{
"name": "README.pdf",
"href": "/docs/Personal/EN-v36-18002294267/README.pdf",
"type": "file",
"size": 52033,
- "lastModified": "2025-09-25T11:15:26Z"
+ "lastModified": "2025-09-25T08:59:35Z"
},
{
"name": "Resume-DevOPS-ZH.html",
"href": "/docs/Personal/EN-v36-18002294267/Resume-DevOPS-ZH.html",
"type": "file",
"size": 8949,
- "lastModified": "2025-09-25T11:15:26Z"
+ "lastModified": "2025-09-25T08:59:54Z"
},
{
"name": "Resume-DevOPS-ZH.pdf",
"href": "/docs/Personal/EN-v36-18002294267/Resume-DevOPS-ZH.pdf",
"type": "file",
"size": 138289,
- "lastModified": "2025-09-25T11:15:40Z"
+ "lastModified": "2025-09-25T08:59:37Z"
},
{
"name": "Resume-DevOps-EN.html",
"href": "/docs/Personal/EN-v36-18002294267/Resume-DevOps-EN.html",
"type": "file",
"size": 9670,
- "lastModified": "2025-09-25T11:15:45Z"
+ "lastModified": "2025-09-25T08:59:54Z"
},
{
"name": "Resume-DevOps-EN.pdf",
"href": "/docs/Personal/EN-v36-18002294267/Resume-DevOps-EN.pdf",
"type": "file",
"size": 50988,
- "lastModified": "2025-09-25T11:15:50Z"
+ "lastModified": "2025-09-25T08:59:39Z"
},
{
"name": "Resume-EN.html",
"href": "/docs/Personal/EN-v36-18002294267/Resume-EN.html",
"type": "file",
"size": 10706,
- "lastModified": "2025-09-25T11:15:50Z"
+ "lastModified": "2025-09-25T08:59:54Z"
},
{
"name": "Resume-EN.pdf",
"href": "/docs/Personal/EN-v36-18002294267/Resume-EN.pdf",
"type": "file",
"size": 57376,
- "lastModified": "2025-09-25T11:16:00Z"
+ "lastModified": "2025-09-25T08:59:42Z"
},
{
"name": "Resume-ZH.html",
"href": "/docs/Personal/EN-v36-18002294267/Resume-ZH.html",
"type": "file",
"size": 17297,
- "lastModified": "2025-09-25T11:16:07Z"
+ "lastModified": "2025-09-25T08:59:54Z"
},
{
"name": "Resume-ZH.pdf",
"href": "/docs/Personal/EN-v36-18002294267/Resume-ZH.pdf",
"type": "file",
"size": 179975,
- "lastModified": "2025-09-25T11:16:29Z"
+ "lastModified": "2025-09-25T08:59:44Z"
},
{
"name": "cet-6.html",
"href": "/docs/Personal/EN-v36-18002294267/cet-6.html",
"type": "file",
"size": 448346,
- "lastModified": "2025-09-25T11:17:29Z"
+ "lastModified": "2025-09-25T08:59:54Z"
},
{
"name": "cet-6.pdf",
"href": "/docs/Personal/EN-v36-18002294267/cet-6.pdf",
"type": "file",
"size": 1192642,
- "lastModified": "2025-09-25T11:20:56Z"
+ "lastModified": "2025-09-25T08:59:50Z"
},
{
"name": "fullstack-language-core.html",
"href": "/docs/Personal/EN-v36-18002294267/fullstack-language-core.html",
"type": "file",
"size": 11943,
- "lastModified": "2025-09-25T11:21:05Z"
+ "lastModified": "2025-09-25T08:59:54Z"
},
{
"name": "fullstack-language-core.pdf",
"href": "/docs/Personal/EN-v36-18002294267/fullstack-language-core.pdf",
"type": "file",
"size": 70429,
- "lastModified": "2025-09-25T11:21:22Z"
+ "lastModified": "2025-09-25T08:59:52Z"
}
]
},
@@ -26081,168 +27525,168 @@
"href": "/docs/Personal/EN-v37-18002553627/ActiveBalance-Plan.html",
"type": "file",
"size": 5461,
- "lastModified": "2025-09-25T11:21:22Z"
+ "lastModified": "2025-09-25T09:09:22Z"
},
{
"name": "ActiveBalance-Plan.pdf",
"href": "/docs/Personal/EN-v37-18002553627/ActiveBalance-Plan.pdf",
"type": "file",
"size": 76341,
- "lastModified": "2025-09-25T11:21:35Z"
+ "lastModified": "2025-09-25T09:08:51Z"
},
{
"name": "CV-AI-Dev-EN.html",
"href": "/docs/Personal/EN-v37-18002553627/CV-AI-Dev-EN.html",
"type": "file",
"size": 10218,
- "lastModified": "2025-09-25T11:21:51Z"
+ "lastModified": "2025-09-25T09:09:22Z"
},
{
"name": "CV-AI-Dev-EN.pdf",
"href": "/docs/Personal/EN-v37-18002553627/CV-AI-Dev-EN.pdf",
"type": "file",
"size": 51821,
- "lastModified": "2025-09-25T11:22:01Z"
+ "lastModified": "2025-09-25T09:08:53Z"
},
{
"name": "CV-AI-Dev-ZH.html",
"href": "/docs/Personal/EN-v37-18002553627/CV-AI-Dev-ZH.html",
"type": "file",
"size": 20180,
- "lastModified": "2025-09-25T11:22:10Z"
+ "lastModified": "2025-09-25T09:09:22Z"
},
{
"name": "CV-AI-Dev-ZH.pdf",
"href": "/docs/Personal/EN-v37-18002553627/CV-AI-Dev-ZH.pdf",
"type": "file",
"size": 199119,
- "lastModified": "2025-09-25T11:22:49Z"
+ "lastModified": "2025-09-25T09:08:56Z"
},
{
"name": "CV-EN.html",
"href": "/docs/Personal/EN-v37-18002553627/CV-EN.html",
"type": "file",
"size": 23062,
- "lastModified": "2025-09-25T11:22:55Z"
+ "lastModified": "2025-09-25T09:09:22Z"
},
{
"name": "CV-EN.pdf",
"href": "/docs/Personal/EN-v37-18002553627/CV-EN.pdf",
"type": "file",
"size": 63734,
- "lastModified": "2025-09-25T11:23:07Z"
+ "lastModified": "2025-09-25T09:08:58Z"
},
{
"name": "CV-ZH.html",
"href": "/docs/Personal/EN-v37-18002553627/CV-ZH.html",
"type": "file",
"size": 20238,
- "lastModified": "2025-09-25T11:23:07Z"
+ "lastModified": "2025-09-25T09:09:22Z"
},
{
"name": "CV-ZH.pdf",
"href": "/docs/Personal/EN-v37-18002553627/CV-ZH.pdf",
"type": "file",
"size": 170875,
- "lastModified": "2025-09-25T11:23:46Z"
+ "lastModified": "2025-09-25T09:09:01Z"
},
{
"name": "README.html",
"href": "/docs/Personal/EN-v37-18002553627/README.html",
"type": "file",
"size": 3295,
- "lastModified": "2025-09-25T11:23:55Z"
+ "lastModified": "2025-09-25T09:09:22Z"
},
{
"name": "README.pdf",
"href": "/docs/Personal/EN-v37-18002553627/README.pdf",
"type": "file",
"size": 52027,
- "lastModified": "2025-09-25T11:24:01Z"
+ "lastModified": "2025-09-25T09:09:03Z"
},
{
"name": "Resume-DevOPS-ZH.html",
"href": "/docs/Personal/EN-v37-18002553627/Resume-DevOPS-ZH.html",
"type": "file",
"size": 8949,
- "lastModified": "2025-09-25T11:24:01Z"
+ "lastModified": "2025-09-25T09:09:22Z"
},
{
"name": "Resume-DevOPS-ZH.pdf",
"href": "/docs/Personal/EN-v37-18002553627/Resume-DevOPS-ZH.pdf",
"type": "file",
"size": 138282,
- "lastModified": "2025-09-25T11:24:31Z"
+ "lastModified": "2025-09-25T09:09:05Z"
},
{
"name": "Resume-DevOps-EN.html",
"href": "/docs/Personal/EN-v37-18002553627/Resume-DevOps-EN.html",
"type": "file",
"size": 9670,
- "lastModified": "2025-09-25T11:24:31Z"
+ "lastModified": "2025-09-25T09:09:22Z"
},
{
"name": "Resume-DevOps-EN.pdf",
"href": "/docs/Personal/EN-v37-18002553627/Resume-DevOps-EN.pdf",
"type": "file",
"size": 50982,
- "lastModified": "2025-09-25T11:24:37Z"
+ "lastModified": "2025-09-25T09:09:07Z"
},
{
"name": "Resume-EN.html",
"href": "/docs/Personal/EN-v37-18002553627/Resume-EN.html",
"type": "file",
"size": 10706,
- "lastModified": "2025-09-25T11:24:44Z"
+ "lastModified": "2025-09-25T09:09:22Z"
},
{
"name": "Resume-EN.pdf",
"href": "/docs/Personal/EN-v37-18002553627/Resume-EN.pdf",
"type": "file",
"size": 57379,
- "lastModified": "2025-09-25T11:25:02Z"
+ "lastModified": "2025-09-25T09:09:10Z"
},
{
"name": "Resume-ZH.html",
"href": "/docs/Personal/EN-v37-18002553627/Resume-ZH.html",
"type": "file",
"size": 17297,
- "lastModified": "2025-09-25T11:25:02Z"
+ "lastModified": "2025-09-25T09:09:22Z"
},
{
"name": "Resume-ZH.pdf",
"href": "/docs/Personal/EN-v37-18002553627/Resume-ZH.pdf",
"type": "file",
"size": 179971,
- "lastModified": "2025-09-25T11:25:58Z"
+ "lastModified": "2025-09-25T09:09:12Z"
},
{
"name": "cet-6.html",
"href": "/docs/Personal/EN-v37-18002553627/cet-6.html",
"type": "file",
"size": 448346,
- "lastModified": "2025-09-25T11:28:26Z"
+ "lastModified": "2025-09-25T09:09:23Z"
},
{
"name": "cet-6.pdf",
"href": "/docs/Personal/EN-v37-18002553627/cet-6.pdf",
"type": "file",
"size": 1192643,
- "lastModified": "2025-09-25T11:33:34Z"
+ "lastModified": "2025-09-25T09:09:18Z"
},
{
"name": "fullstack-language-core.html",
"href": "/docs/Personal/EN-v37-18002553627/fullstack-language-core.html",
"type": "file",
"size": 11943,
- "lastModified": "2025-09-25T11:33:34Z"
+ "lastModified": "2025-09-25T09:09:23Z"
},
{
"name": "fullstack-language-core.pdf",
"href": "/docs/Personal/EN-v37-18002553627/fullstack-language-core.pdf",
"type": "file",
"size": 70426,
- "lastModified": "2025-09-25T11:33:42Z"
+ "lastModified": "2025-09-25T09:09:20Z"
}
]
},
@@ -26254,168 +27698,168 @@
"href": "/docs/Personal/EN-v39-18004672680/ActiveBalance-Plan.html",
"type": "file",
"size": 5461,
- "lastModified": "2025-09-25T11:33:42Z"
+ "lastModified": "2025-09-25T10:35:57Z"
},
{
"name": "ActiveBalance-Plan.pdf",
"href": "/docs/Personal/EN-v39-18004672680/ActiveBalance-Plan.pdf",
"type": "file",
"size": 76346,
- "lastModified": "2025-09-25T11:34:00Z"
+ "lastModified": "2025-09-25T10:35:27Z"
},
{
"name": "CV-AI-Dev-EN.html",
"href": "/docs/Personal/EN-v39-18004672680/CV-AI-Dev-EN.html",
"type": "file",
"size": 10218,
- "lastModified": "2025-09-25T11:34:00Z"
+ "lastModified": "2025-09-25T10:35:57Z"
},
{
"name": "CV-AI-Dev-EN.pdf",
"href": "/docs/Personal/EN-v39-18004672680/CV-AI-Dev-EN.pdf",
"type": "file",
"size": 51824,
- "lastModified": "2025-09-25T11:34:15Z"
+ "lastModified": "2025-09-25T10:35:29Z"
},
{
"name": "CV-AI-Dev-ZH.html",
"href": "/docs/Personal/EN-v39-18004672680/CV-AI-Dev-ZH.html",
"type": "file",
"size": 20180,
- "lastModified": "2025-09-25T11:34:15Z"
+ "lastModified": "2025-09-25T10:35:57Z"
},
{
"name": "CV-AI-Dev-ZH.pdf",
"href": "/docs/Personal/EN-v39-18004672680/CV-AI-Dev-ZH.pdf",
"type": "file",
"size": 199123,
- "lastModified": "2025-09-25T11:35:24Z"
+ "lastModified": "2025-09-25T10:35:32Z"
},
{
"name": "CV-EN.html",
"href": "/docs/Personal/EN-v39-18004672680/CV-EN.html",
"type": "file",
"size": 23062,
- "lastModified": "2025-09-25T11:35:36Z"
+ "lastModified": "2025-09-25T10:35:57Z"
},
{
"name": "CV-EN.pdf",
"href": "/docs/Personal/EN-v39-18004672680/CV-EN.pdf",
"type": "file",
"size": 63734,
- "lastModified": "2025-09-25T11:36:08Z"
+ "lastModified": "2025-09-25T10:35:34Z"
},
{
"name": "CV-ZH.html",
"href": "/docs/Personal/EN-v39-18004672680/CV-ZH.html",
"type": "file",
"size": 20238,
- "lastModified": "2025-09-25T11:36:25Z"
+ "lastModified": "2025-09-25T10:35:57Z"
},
{
"name": "CV-ZH.pdf",
"href": "/docs/Personal/EN-v39-18004672680/CV-ZH.pdf",
"type": "file",
"size": 170870,
- "lastModified": "2025-09-25T11:37:12Z"
+ "lastModified": "2025-09-25T10:35:36Z"
},
{
"name": "README.html",
"href": "/docs/Personal/EN-v39-18004672680/README.html",
"type": "file",
"size": 3295,
- "lastModified": "2025-09-25T11:37:12Z"
+ "lastModified": "2025-09-25T10:35:57Z"
},
{
"name": "README.pdf",
"href": "/docs/Personal/EN-v39-18004672680/README.pdf",
"type": "file",
"size": 52031,
- "lastModified": "2025-09-25T11:37:18Z"
+ "lastModified": "2025-09-25T10:35:39Z"
},
{
"name": "Resume-DevOPS-ZH.html",
"href": "/docs/Personal/EN-v39-18004672680/Resume-DevOPS-ZH.html",
"type": "file",
"size": 8949,
- "lastModified": "2025-09-25T11:37:26Z"
+ "lastModified": "2025-09-25T10:35:57Z"
},
{
"name": "Resume-DevOPS-ZH.pdf",
"href": "/docs/Personal/EN-v39-18004672680/Resume-DevOPS-ZH.pdf",
"type": "file",
"size": 138286,
- "lastModified": "2025-09-25T11:37:50Z"
+ "lastModified": "2025-09-25T10:35:41Z"
},
{
"name": "Resume-DevOps-EN.html",
"href": "/docs/Personal/EN-v39-18004672680/Resume-DevOps-EN.html",
"type": "file",
"size": 9670,
- "lastModified": "2025-09-25T11:37:50Z"
+ "lastModified": "2025-09-25T10:35:57Z"
},
{
"name": "Resume-DevOps-EN.pdf",
"href": "/docs/Personal/EN-v39-18004672680/Resume-DevOps-EN.pdf",
"type": "file",
"size": 50984,
- "lastModified": "2025-09-25T11:38:03Z"
+ "lastModified": "2025-09-25T10:35:43Z"
},
{
"name": "Resume-EN.html",
"href": "/docs/Personal/EN-v39-18004672680/Resume-EN.html",
"type": "file",
"size": 10706,
- "lastModified": "2025-09-25T11:38:03Z"
+ "lastModified": "2025-09-25T10:35:57Z"
},
{
"name": "Resume-EN.pdf",
"href": "/docs/Personal/EN-v39-18004672680/Resume-EN.pdf",
"type": "file",
"size": 57384,
- "lastModified": "2025-09-25T11:38:19Z"
+ "lastModified": "2025-09-25T10:35:45Z"
},
{
"name": "Resume-ZH.html",
"href": "/docs/Personal/EN-v39-18004672680/Resume-ZH.html",
"type": "file",
"size": 17297,
- "lastModified": "2025-09-25T11:38:19Z"
+ "lastModified": "2025-09-25T10:35:57Z"
},
{
"name": "Resume-ZH.pdf",
"href": "/docs/Personal/EN-v39-18004672680/Resume-ZH.pdf",
"type": "file",
"size": 179971,
- "lastModified": "2025-09-25T11:38:38Z"
+ "lastModified": "2025-09-25T10:35:48Z"
},
{
"name": "cet-6.html",
"href": "/docs/Personal/EN-v39-18004672680/cet-6.html",
"type": "file",
"size": 448346,
- "lastModified": "2025-09-25T11:40:00Z"
+ "lastModified": "2025-09-25T10:35:58Z"
},
{
"name": "cet-6.pdf",
"href": "/docs/Personal/EN-v39-18004672680/cet-6.pdf",
"type": "file",
"size": 1192646,
- "lastModified": "2025-09-25T11:43:13Z"
+ "lastModified": "2025-09-25T10:35:53Z"
},
{
"name": "fullstack-language-core.html",
"href": "/docs/Personal/EN-v39-18004672680/fullstack-language-core.html",
"type": "file",
"size": 11943,
- "lastModified": "2025-09-25T11:43:13Z"
+ "lastModified": "2025-09-25T10:35:58Z"
},
{
"name": "fullstack-language-core.pdf",
"href": "/docs/Personal/EN-v39-18004672680/fullstack-language-core.pdf",
"type": "file",
"size": 70432,
- "lastModified": "2025-09-25T11:43:41Z"
+ "lastModified": "2025-09-25T10:35:55Z"
}
]
},
@@ -26427,178 +27871,2938 @@
"href": "/docs/Personal/EN-v40-18004678416/ActiveBalance-Plan.html",
"type": "file",
"size": 5461,
- "lastModified": "2025-09-25T11:43:41Z"
+ "lastModified": "2025-09-25T10:35:12Z"
},
{
"name": "ActiveBalance-Plan.pdf",
"href": "/docs/Personal/EN-v40-18004678416/ActiveBalance-Plan.pdf",
"type": "file",
"size": 76347,
- "lastModified": "2025-09-25T11:44:02Z"
+ "lastModified": "2025-09-25T10:34:43Z"
},
{
"name": "CV-AI-Dev-EN.html",
"href": "/docs/Personal/EN-v40-18004678416/CV-AI-Dev-EN.html",
"type": "file",
"size": 10218,
- "lastModified": "2025-09-25T11:44:02Z"
+ "lastModified": "2025-09-25T10:35:13Z"
},
{
"name": "CV-AI-Dev-EN.pdf",
"href": "/docs/Personal/EN-v40-18004678416/CV-AI-Dev-EN.pdf",
"type": "file",
"size": 51819,
- "lastModified": "2025-09-25T11:44:21Z"
+ "lastModified": "2025-09-25T10:34:45Z"
},
{
"name": "CV-AI-Dev-ZH.html",
"href": "/docs/Personal/EN-v40-18004678416/CV-AI-Dev-ZH.html",
"type": "file",
"size": 20180,
- "lastModified": "2025-09-25T11:44:31Z"
+ "lastModified": "2025-09-25T10:35:13Z"
},
{
"name": "CV-AI-Dev-ZH.pdf",
"href": "/docs/Personal/EN-v40-18004678416/CV-AI-Dev-ZH.pdf",
"type": "file",
"size": 199120,
- "lastModified": "2025-09-25T11:45:09Z"
+ "lastModified": "2025-09-25T10:34:47Z"
},
{
"name": "CV-EN.html",
"href": "/docs/Personal/EN-v40-18004678416/CV-EN.html",
"type": "file",
"size": 23062,
- "lastModified": "2025-09-25T11:45:09Z"
+ "lastModified": "2025-09-25T10:35:13Z"
},
{
"name": "CV-EN.pdf",
"href": "/docs/Personal/EN-v40-18004678416/CV-EN.pdf",
"type": "file",
"size": 63735,
- "lastModified": "2025-09-25T11:45:23Z"
+ "lastModified": "2025-09-25T10:34:50Z"
},
{
"name": "CV-ZH.html",
"href": "/docs/Personal/EN-v40-18004678416/CV-ZH.html",
"type": "file",
"size": 20238,
- "lastModified": "2025-09-25T11:45:28Z"
+ "lastModified": "2025-09-25T10:35:13Z"
},
{
"name": "CV-ZH.pdf",
"href": "/docs/Personal/EN-v40-18004678416/CV-ZH.pdf",
"type": "file",
"size": 170869,
- "lastModified": "2025-09-25T11:46:12Z"
+ "lastModified": "2025-09-25T10:34:52Z"
},
{
"name": "README.html",
"href": "/docs/Personal/EN-v40-18004678416/README.html",
"type": "file",
"size": 3295,
- "lastModified": "2025-09-25T11:46:12Z"
+ "lastModified": "2025-09-25T10:35:13Z"
},
{
"name": "README.pdf",
"href": "/docs/Personal/EN-v40-18004678416/README.pdf",
"type": "file",
"size": 52031,
- "lastModified": "2025-09-25T11:46:35Z"
+ "lastModified": "2025-09-25T10:34:54Z"
},
{
"name": "Resume-DevOPS-ZH.html",
"href": "/docs/Personal/EN-v40-18004678416/Resume-DevOPS-ZH.html",
"type": "file",
"size": 8949,
- "lastModified": "2025-09-25T11:46:35Z"
+ "lastModified": "2025-09-25T10:35:13Z"
},
{
"name": "Resume-DevOPS-ZH.pdf",
"href": "/docs/Personal/EN-v40-18004678416/Resume-DevOPS-ZH.pdf",
"type": "file",
"size": 138284,
- "lastModified": "2025-09-25T11:46:55Z"
+ "lastModified": "2025-09-25T10:34:56Z"
},
{
"name": "Resume-DevOps-EN.html",
"href": "/docs/Personal/EN-v40-18004678416/Resume-DevOps-EN.html",
"type": "file",
"size": 9670,
- "lastModified": "2025-09-25T11:47:01Z"
+ "lastModified": "2025-09-25T10:35:13Z"
},
{
"name": "Resume-DevOps-EN.pdf",
"href": "/docs/Personal/EN-v40-18004678416/Resume-DevOps-EN.pdf",
"type": "file",
"size": 50989,
- "lastModified": "2025-09-25T11:47:06Z"
+ "lastModified": "2025-09-25T10:34:59Z"
},
{
"name": "Resume-EN.html",
"href": "/docs/Personal/EN-v40-18004678416/Resume-EN.html",
"type": "file",
"size": 10706,
- "lastModified": "2025-09-25T11:47:06Z"
+ "lastModified": "2025-09-25T10:35:13Z"
},
{
"name": "Resume-EN.pdf",
"href": "/docs/Personal/EN-v40-18004678416/Resume-EN.pdf",
"type": "file",
"size": 57384,
- "lastModified": "2025-09-25T11:47:19Z"
+ "lastModified": "2025-09-25T10:35:01Z"
},
{
"name": "Resume-ZH.html",
"href": "/docs/Personal/EN-v40-18004678416/Resume-ZH.html",
"type": "file",
"size": 17297,
- "lastModified": "2025-09-25T11:47:29Z"
+ "lastModified": "2025-09-25T10:35:13Z"
},
{
"name": "Resume-ZH.pdf",
"href": "/docs/Personal/EN-v40-18004678416/Resume-ZH.pdf",
"type": "file",
"size": 179976,
- "lastModified": "2025-09-25T11:48:16Z"
+ "lastModified": "2025-09-25T10:35:03Z"
},
{
"name": "cet-6.html",
"href": "/docs/Personal/EN-v40-18004678416/cet-6.html",
"type": "file",
"size": 448346,
- "lastModified": "2025-09-25T11:50:40Z"
+ "lastModified": "2025-09-25T10:35:13Z"
},
{
"name": "cet-6.pdf",
"href": "/docs/Personal/EN-v40-18004678416/cet-6.pdf",
"type": "file",
"size": 1192645,
- "lastModified": "2025-09-25T11:55:04Z"
+ "lastModified": "2025-09-25T10:35:09Z"
},
{
"name": "fullstack-language-core.html",
"href": "/docs/Personal/EN-v40-18004678416/fullstack-language-core.html",
"type": "file",
"size": 11943,
- "lastModified": "2025-09-25T11:55:10Z"
+ "lastModified": "2025-09-25T10:35:13Z"
},
{
"name": "fullstack-language-core.pdf",
"href": "/docs/Personal/EN-v40-18004678416/fullstack-language-core.pdf",
"type": "file",
"size": 70429,
- "lastModified": "2025-09-25T11:55:22Z"
+ "lastModified": "2025-09-25T10:35:11Z"
}
]
},
{
"path": "docs/Personal/EN-v41-18005142964/",
- "entries": []
+ "entries": [
+ {
+ "name": "ActiveBalance-Plan.html",
+ "href": "/docs/Personal/EN-v41-18005142964/ActiveBalance-Plan.html",
+ "type": "file",
+ "size": 5461,
+ "lastModified": "2025-09-25T10:54:37Z"
+ },
+ {
+ "name": "ActiveBalance-Plan.pdf",
+ "href": "/docs/Personal/EN-v41-18005142964/ActiveBalance-Plan.pdf",
+ "type": "file",
+ "size": 76346,
+ "lastModified": "2025-09-25T10:54:07Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.html",
+ "href": "/docs/Personal/EN-v41-18005142964/CV-AI-Dev-EN.html",
+ "type": "file",
+ "size": 10218,
+ "lastModified": "2025-09-25T10:54:37Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.pdf",
+ "href": "/docs/Personal/EN-v41-18005142964/CV-AI-Dev-EN.pdf",
+ "type": "file",
+ "size": 51821,
+ "lastModified": "2025-09-25T10:54:10Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.html",
+ "href": "/docs/Personal/EN-v41-18005142964/CV-AI-Dev-ZH.html",
+ "type": "file",
+ "size": 20180,
+ "lastModified": "2025-09-25T10:54:37Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.pdf",
+ "href": "/docs/Personal/EN-v41-18005142964/CV-AI-Dev-ZH.pdf",
+ "type": "file",
+ "size": 199109,
+ "lastModified": "2025-09-25T10:54:12Z"
+ },
+ {
+ "name": "CV-EN.html",
+ "href": "/docs/Personal/EN-v41-18005142964/CV-EN.html",
+ "type": "file",
+ "size": 23062,
+ "lastModified": "2025-09-25T10:54:37Z"
+ },
+ {
+ "name": "CV-EN.pdf",
+ "href": "/docs/Personal/EN-v41-18005142964/CV-EN.pdf",
+ "type": "file",
+ "size": 63734,
+ "lastModified": "2025-09-25T10:54:14Z"
+ },
+ {
+ "name": "CV-ZH.html",
+ "href": "/docs/Personal/EN-v41-18005142964/CV-ZH.html",
+ "type": "file",
+ "size": 20238,
+ "lastModified": "2025-09-25T10:54:37Z"
+ },
+ {
+ "name": "CV-ZH.pdf",
+ "href": "/docs/Personal/EN-v41-18005142964/CV-ZH.pdf",
+ "type": "file",
+ "size": 170874,
+ "lastModified": "2025-09-25T10:54:17Z"
+ },
+ {
+ "name": "README.html",
+ "href": "/docs/Personal/EN-v41-18005142964/README.html",
+ "type": "file",
+ "size": 3295,
+ "lastModified": "2025-09-25T10:54:37Z"
+ },
+ {
+ "name": "README.pdf",
+ "href": "/docs/Personal/EN-v41-18005142964/README.pdf",
+ "type": "file",
+ "size": 52034,
+ "lastModified": "2025-09-25T10:54:19Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.html",
+ "href": "/docs/Personal/EN-v41-18005142964/Resume-DevOPS-ZH.html",
+ "type": "file",
+ "size": 8949,
+ "lastModified": "2025-09-25T10:54:37Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.pdf",
+ "href": "/docs/Personal/EN-v41-18005142964/Resume-DevOPS-ZH.pdf",
+ "type": "file",
+ "size": 138284,
+ "lastModified": "2025-09-25T10:54:21Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.html",
+ "href": "/docs/Personal/EN-v41-18005142964/Resume-DevOps-EN.html",
+ "type": "file",
+ "size": 9670,
+ "lastModified": "2025-09-25T10:54:37Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.pdf",
+ "href": "/docs/Personal/EN-v41-18005142964/Resume-DevOps-EN.pdf",
+ "type": "file",
+ "size": 50979,
+ "lastModified": "2025-09-25T10:54:23Z"
+ },
+ {
+ "name": "Resume-EN.html",
+ "href": "/docs/Personal/EN-v41-18005142964/Resume-EN.html",
+ "type": "file",
+ "size": 10706,
+ "lastModified": "2025-09-25T10:54:37Z"
+ },
+ {
+ "name": "Resume-EN.pdf",
+ "href": "/docs/Personal/EN-v41-18005142964/Resume-EN.pdf",
+ "type": "file",
+ "size": 57375,
+ "lastModified": "2025-09-25T10:54:25Z"
+ },
+ {
+ "name": "Resume-ZH.html",
+ "href": "/docs/Personal/EN-v41-18005142964/Resume-ZH.html",
+ "type": "file",
+ "size": 17297,
+ "lastModified": "2025-09-25T10:54:38Z"
+ },
+ {
+ "name": "Resume-ZH.pdf",
+ "href": "/docs/Personal/EN-v41-18005142964/Resume-ZH.pdf",
+ "type": "file",
+ "size": 179976,
+ "lastModified": "2025-09-25T10:54:28Z"
+ },
+ {
+ "name": "cet-6.html",
+ "href": "/docs/Personal/EN-v41-18005142964/cet-6.html",
+ "type": "file",
+ "size": 448346,
+ "lastModified": "2025-09-25T10:54:38Z"
+ },
+ {
+ "name": "cet-6.pdf",
+ "href": "/docs/Personal/EN-v41-18005142964/cet-6.pdf",
+ "type": "file",
+ "size": 1192645,
+ "lastModified": "2025-09-25T10:54:33Z"
+ },
+ {
+ "name": "fullstack-language-core.html",
+ "href": "/docs/Personal/EN-v41-18005142964/fullstack-language-core.html",
+ "type": "file",
+ "size": 11943,
+ "lastModified": "2025-09-25T10:54:38Z"
+ },
+ {
+ "name": "fullstack-language-core.pdf",
+ "href": "/docs/Personal/EN-v41-18005142964/fullstack-language-core.pdf",
+ "type": "file",
+ "size": 70428,
+ "lastModified": "2025-09-25T10:54:36Z"
+ }
+ ]
},
{
"path": "docs/Personal/EN-v42-18006148753/",
- "entries": []
+ "entries": [
+ {
+ "name": "ActiveBalance-Plan.html",
+ "href": "/docs/Personal/EN-v42-18006148753/ActiveBalance-Plan.html",
+ "type": "file",
+ "size": 5461,
+ "lastModified": "2025-09-25T11:38:30Z"
+ },
+ {
+ "name": "ActiveBalance-Plan.pdf",
+ "href": "/docs/Personal/EN-v42-18006148753/ActiveBalance-Plan.pdf",
+ "type": "file",
+ "size": 76346,
+ "lastModified": "2025-09-25T11:38:00Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.html",
+ "href": "/docs/Personal/EN-v42-18006148753/CV-AI-Dev-EN.html",
+ "type": "file",
+ "size": 10218,
+ "lastModified": "2025-09-25T11:38:31Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.pdf",
+ "href": "/docs/Personal/EN-v42-18006148753/CV-AI-Dev-EN.pdf",
+ "type": "file",
+ "size": 51826,
+ "lastModified": "2025-09-25T11:38:02Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.html",
+ "href": "/docs/Personal/EN-v42-18006148753/CV-AI-Dev-ZH.html",
+ "type": "file",
+ "size": 20180,
+ "lastModified": "2025-09-25T11:38:31Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.pdf",
+ "href": "/docs/Personal/EN-v42-18006148753/CV-AI-Dev-ZH.pdf",
+ "type": "file",
+ "size": 199124,
+ "lastModified": "2025-09-25T11:38:05Z"
+ },
+ {
+ "name": "CV-EN.html",
+ "href": "/docs/Personal/EN-v42-18006148753/CV-EN.html",
+ "type": "file",
+ "size": 23062,
+ "lastModified": "2025-09-25T11:38:31Z"
+ },
+ {
+ "name": "CV-EN.pdf",
+ "href": "/docs/Personal/EN-v42-18006148753/CV-EN.pdf",
+ "type": "file",
+ "size": 63734,
+ "lastModified": "2025-09-25T11:38:07Z"
+ },
+ {
+ "name": "CV-ZH.html",
+ "href": "/docs/Personal/EN-v42-18006148753/CV-ZH.html",
+ "type": "file",
+ "size": 20238,
+ "lastModified": "2025-09-25T11:38:31Z"
+ },
+ {
+ "name": "CV-ZH.pdf",
+ "href": "/docs/Personal/EN-v42-18006148753/CV-ZH.pdf",
+ "type": "file",
+ "size": 170867,
+ "lastModified": "2025-09-25T11:38:10Z"
+ },
+ {
+ "name": "README.html",
+ "href": "/docs/Personal/EN-v42-18006148753/README.html",
+ "type": "file",
+ "size": 3295,
+ "lastModified": "2025-09-25T11:38:31Z"
+ },
+ {
+ "name": "README.pdf",
+ "href": "/docs/Personal/EN-v42-18006148753/README.pdf",
+ "type": "file",
+ "size": 52030,
+ "lastModified": "2025-09-25T11:38:12Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.html",
+ "href": "/docs/Personal/EN-v42-18006148753/Resume-DevOPS-ZH.html",
+ "type": "file",
+ "size": 8949,
+ "lastModified": "2025-09-25T11:38:31Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.pdf",
+ "href": "/docs/Personal/EN-v42-18006148753/Resume-DevOPS-ZH.pdf",
+ "type": "file",
+ "size": 138283,
+ "lastModified": "2025-09-25T11:38:14Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.html",
+ "href": "/docs/Personal/EN-v42-18006148753/Resume-DevOps-EN.html",
+ "type": "file",
+ "size": 9670,
+ "lastModified": "2025-09-25T11:38:31Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.pdf",
+ "href": "/docs/Personal/EN-v42-18006148753/Resume-DevOps-EN.pdf",
+ "type": "file",
+ "size": 50986,
+ "lastModified": "2025-09-25T11:38:16Z"
+ },
+ {
+ "name": "Resume-EN.html",
+ "href": "/docs/Personal/EN-v42-18006148753/Resume-EN.html",
+ "type": "file",
+ "size": 10706,
+ "lastModified": "2025-09-25T11:38:31Z"
+ },
+ {
+ "name": "Resume-EN.pdf",
+ "href": "/docs/Personal/EN-v42-18006148753/Resume-EN.pdf",
+ "type": "file",
+ "size": 57381,
+ "lastModified": "2025-09-25T11:38:18Z"
+ },
+ {
+ "name": "Resume-ZH.html",
+ "href": "/docs/Personal/EN-v42-18006148753/Resume-ZH.html",
+ "type": "file",
+ "size": 17297,
+ "lastModified": "2025-09-25T11:38:31Z"
+ },
+ {
+ "name": "Resume-ZH.pdf",
+ "href": "/docs/Personal/EN-v42-18006148753/Resume-ZH.pdf",
+ "type": "file",
+ "size": 179978,
+ "lastModified": "2025-09-25T11:38:21Z"
+ },
+ {
+ "name": "cet-6.html",
+ "href": "/docs/Personal/EN-v42-18006148753/cet-6.html",
+ "type": "file",
+ "size": 448346,
+ "lastModified": "2025-09-25T11:38:31Z"
+ },
+ {
+ "name": "cet-6.pdf",
+ "href": "/docs/Personal/EN-v42-18006148753/cet-6.pdf",
+ "type": "file",
+ "size": 1192646,
+ "lastModified": "2025-09-25T11:38:27Z"
+ },
+ {
+ "name": "fullstack-language-core.html",
+ "href": "/docs/Personal/EN-v42-18006148753/fullstack-language-core.html",
+ "type": "file",
+ "size": 11943,
+ "lastModified": "2025-09-25T11:38:31Z"
+ },
+ {
+ "name": "fullstack-language-core.pdf",
+ "href": "/docs/Personal/EN-v42-18006148753/fullstack-language-core.pdf",
+ "type": "file",
+ "size": 70430,
+ "lastModified": "2025-09-25T11:38:29Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Personal/EN-v43-18011536494/",
+ "entries": [
+ {
+ "name": "ActiveBalance-Plan.html",
+ "href": "/docs/Personal/EN-v43-18011536494/ActiveBalance-Plan.html",
+ "type": "file",
+ "size": 5461,
+ "lastModified": "2025-09-25T14:57:18Z"
+ },
+ {
+ "name": "ActiveBalance-Plan.pdf",
+ "href": "/docs/Personal/EN-v43-18011536494/ActiveBalance-Plan.pdf",
+ "type": "file",
+ "size": 76346,
+ "lastModified": "2025-09-25T14:56:48Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.html",
+ "href": "/docs/Personal/EN-v43-18011536494/CV-AI-Dev-EN.html",
+ "type": "file",
+ "size": 10218,
+ "lastModified": "2025-09-25T14:57:18Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.pdf",
+ "href": "/docs/Personal/EN-v43-18011536494/CV-AI-Dev-EN.pdf",
+ "type": "file",
+ "size": 51822,
+ "lastModified": "2025-09-25T14:56:50Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.html",
+ "href": "/docs/Personal/EN-v43-18011536494/CV-AI-Dev-ZH.html",
+ "type": "file",
+ "size": 20180,
+ "lastModified": "2025-09-25T14:57:18Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.pdf",
+ "href": "/docs/Personal/EN-v43-18011536494/CV-AI-Dev-ZH.pdf",
+ "type": "file",
+ "size": 199118,
+ "lastModified": "2025-09-25T14:56:53Z"
+ },
+ {
+ "name": "CV-EN.html",
+ "href": "/docs/Personal/EN-v43-18011536494/CV-EN.html",
+ "type": "file",
+ "size": 23062,
+ "lastModified": "2025-09-25T14:57:18Z"
+ },
+ {
+ "name": "CV-EN.pdf",
+ "href": "/docs/Personal/EN-v43-18011536494/CV-EN.pdf",
+ "type": "file",
+ "size": 63737,
+ "lastModified": "2025-09-25T14:56:55Z"
+ },
+ {
+ "name": "CV-ZH.html",
+ "href": "/docs/Personal/EN-v43-18011536494/CV-ZH.html",
+ "type": "file",
+ "size": 20238,
+ "lastModified": "2025-09-25T14:57:18Z"
+ },
+ {
+ "name": "CV-ZH.pdf",
+ "href": "/docs/Personal/EN-v43-18011536494/CV-ZH.pdf",
+ "type": "file",
+ "size": 170872,
+ "lastModified": "2025-09-25T14:56:57Z"
+ },
+ {
+ "name": "README.html",
+ "href": "/docs/Personal/EN-v43-18011536494/README.html",
+ "type": "file",
+ "size": 3295,
+ "lastModified": "2025-09-25T14:57:18Z"
+ },
+ {
+ "name": "README.pdf",
+ "href": "/docs/Personal/EN-v43-18011536494/README.pdf",
+ "type": "file",
+ "size": 52033,
+ "lastModified": "2025-09-25T14:56:59Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.html",
+ "href": "/docs/Personal/EN-v43-18011536494/Resume-DevOPS-ZH.html",
+ "type": "file",
+ "size": 8949,
+ "lastModified": "2025-09-25T14:57:18Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.pdf",
+ "href": "/docs/Personal/EN-v43-18011536494/Resume-DevOPS-ZH.pdf",
+ "type": "file",
+ "size": 138281,
+ "lastModified": "2025-09-25T14:57:02Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.html",
+ "href": "/docs/Personal/EN-v43-18011536494/Resume-DevOps-EN.html",
+ "type": "file",
+ "size": 9670,
+ "lastModified": "2025-09-25T14:57:18Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.pdf",
+ "href": "/docs/Personal/EN-v43-18011536494/Resume-DevOps-EN.pdf",
+ "type": "file",
+ "size": 50979,
+ "lastModified": "2025-09-25T14:57:04Z"
+ },
+ {
+ "name": "Resume-EN.html",
+ "href": "/docs/Personal/EN-v43-18011536494/Resume-EN.html",
+ "type": "file",
+ "size": 10706,
+ "lastModified": "2025-09-25T14:57:18Z"
+ },
+ {
+ "name": "Resume-EN.pdf",
+ "href": "/docs/Personal/EN-v43-18011536494/Resume-EN.pdf",
+ "type": "file",
+ "size": 57380,
+ "lastModified": "2025-09-25T14:57:06Z"
+ },
+ {
+ "name": "Resume-ZH.html",
+ "href": "/docs/Personal/EN-v43-18011536494/Resume-ZH.html",
+ "type": "file",
+ "size": 17297,
+ "lastModified": "2025-09-25T14:57:18Z"
+ },
+ {
+ "name": "Resume-ZH.pdf",
+ "href": "/docs/Personal/EN-v43-18011536494/Resume-ZH.pdf",
+ "type": "file",
+ "size": 179975,
+ "lastModified": "2025-09-25T14:57:08Z"
+ },
+ {
+ "name": "cet-6.html",
+ "href": "/docs/Personal/EN-v43-18011536494/cet-6.html",
+ "type": "file",
+ "size": 448346,
+ "lastModified": "2025-09-25T14:57:19Z"
+ },
+ {
+ "name": "cet-6.pdf",
+ "href": "/docs/Personal/EN-v43-18011536494/cet-6.pdf",
+ "type": "file",
+ "size": 1192647,
+ "lastModified": "2025-09-25T14:57:14Z"
+ },
+ {
+ "name": "fullstack-language-core.html",
+ "href": "/docs/Personal/EN-v43-18011536494/fullstack-language-core.html",
+ "type": "file",
+ "size": 11943,
+ "lastModified": "2025-09-25T14:57:19Z"
+ },
+ {
+ "name": "fullstack-language-core.pdf",
+ "href": "/docs/Personal/EN-v43-18011536494/fullstack-language-core.pdf",
+ "type": "file",
+ "size": 70431,
+ "lastModified": "2025-09-25T14:57:16Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Personal/EN-v44-18011825454/",
+ "entries": [
+ {
+ "name": "ActiveBalance-Plan.html",
+ "href": "/docs/Personal/EN-v44-18011825454/ActiveBalance-Plan.html",
+ "type": "file",
+ "size": 5461,
+ "lastModified": "2025-09-25T15:08:44Z"
+ },
+ {
+ "name": "ActiveBalance-Plan.pdf",
+ "href": "/docs/Personal/EN-v44-18011825454/ActiveBalance-Plan.pdf",
+ "type": "file",
+ "size": 76345,
+ "lastModified": "2025-09-25T15:08:15Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.html",
+ "href": "/docs/Personal/EN-v44-18011825454/CV-AI-Dev-EN.html",
+ "type": "file",
+ "size": 10218,
+ "lastModified": "2025-09-25T15:08:44Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.pdf",
+ "href": "/docs/Personal/EN-v44-18011825454/CV-AI-Dev-EN.pdf",
+ "type": "file",
+ "size": 51825,
+ "lastModified": "2025-09-25T15:08:17Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.html",
+ "href": "/docs/Personal/EN-v44-18011825454/CV-AI-Dev-ZH.html",
+ "type": "file",
+ "size": 20180,
+ "lastModified": "2025-09-25T15:08:44Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.pdf",
+ "href": "/docs/Personal/EN-v44-18011825454/CV-AI-Dev-ZH.pdf",
+ "type": "file",
+ "size": 199124,
+ "lastModified": "2025-09-25T15:08:19Z"
+ },
+ {
+ "name": "CV-EN.html",
+ "href": "/docs/Personal/EN-v44-18011825454/CV-EN.html",
+ "type": "file",
+ "size": 23062,
+ "lastModified": "2025-09-25T15:08:45Z"
+ },
+ {
+ "name": "CV-EN.pdf",
+ "href": "/docs/Personal/EN-v44-18011825454/CV-EN.pdf",
+ "type": "file",
+ "size": 63737,
+ "lastModified": "2025-09-25T15:08:22Z"
+ },
+ {
+ "name": "CV-ZH.html",
+ "href": "/docs/Personal/EN-v44-18011825454/CV-ZH.html",
+ "type": "file",
+ "size": 20238,
+ "lastModified": "2025-09-25T15:08:45Z"
+ },
+ {
+ "name": "CV-ZH.pdf",
+ "href": "/docs/Personal/EN-v44-18011825454/CV-ZH.pdf",
+ "type": "file",
+ "size": 170871,
+ "lastModified": "2025-09-25T15:08:24Z"
+ },
+ {
+ "name": "README.html",
+ "href": "/docs/Personal/EN-v44-18011825454/README.html",
+ "type": "file",
+ "size": 3295,
+ "lastModified": "2025-09-25T15:08:45Z"
+ },
+ {
+ "name": "README.pdf",
+ "href": "/docs/Personal/EN-v44-18011825454/README.pdf",
+ "type": "file",
+ "size": 52033,
+ "lastModified": "2025-09-25T15:08:26Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.html",
+ "href": "/docs/Personal/EN-v44-18011825454/Resume-DevOPS-ZH.html",
+ "type": "file",
+ "size": 8949,
+ "lastModified": "2025-09-25T15:08:45Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.pdf",
+ "href": "/docs/Personal/EN-v44-18011825454/Resume-DevOPS-ZH.pdf",
+ "type": "file",
+ "size": 138288,
+ "lastModified": "2025-09-25T15:08:28Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.html",
+ "href": "/docs/Personal/EN-v44-18011825454/Resume-DevOps-EN.html",
+ "type": "file",
+ "size": 9670,
+ "lastModified": "2025-09-25T15:08:45Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.pdf",
+ "href": "/docs/Personal/EN-v44-18011825454/Resume-DevOps-EN.pdf",
+ "type": "file",
+ "size": 50986,
+ "lastModified": "2025-09-25T15:08:31Z"
+ },
+ {
+ "name": "Resume-EN.html",
+ "href": "/docs/Personal/EN-v44-18011825454/Resume-EN.html",
+ "type": "file",
+ "size": 10706,
+ "lastModified": "2025-09-25T15:08:45Z"
+ },
+ {
+ "name": "Resume-EN.pdf",
+ "href": "/docs/Personal/EN-v44-18011825454/Resume-EN.pdf",
+ "type": "file",
+ "size": 57381,
+ "lastModified": "2025-09-25T15:08:33Z"
+ },
+ {
+ "name": "Resume-ZH.html",
+ "href": "/docs/Personal/EN-v44-18011825454/Resume-ZH.html",
+ "type": "file",
+ "size": 17297,
+ "lastModified": "2025-09-25T15:08:45Z"
+ },
+ {
+ "name": "Resume-ZH.pdf",
+ "href": "/docs/Personal/EN-v44-18011825454/Resume-ZH.pdf",
+ "type": "file",
+ "size": 179978,
+ "lastModified": "2025-09-25T15:08:35Z"
+ },
+ {
+ "name": "cet-6.html",
+ "href": "/docs/Personal/EN-v44-18011825454/cet-6.html",
+ "type": "file",
+ "size": 448346,
+ "lastModified": "2025-09-25T15:08:45Z"
+ },
+ {
+ "name": "cet-6.pdf",
+ "href": "/docs/Personal/EN-v44-18011825454/cet-6.pdf",
+ "type": "file",
+ "size": 1192646,
+ "lastModified": "2025-09-25T15:08:41Z"
+ },
+ {
+ "name": "fullstack-language-core.html",
+ "href": "/docs/Personal/EN-v44-18011825454/fullstack-language-core.html",
+ "type": "file",
+ "size": 11943,
+ "lastModified": "2025-09-25T15:08:45Z"
+ },
+ {
+ "name": "fullstack-language-core.pdf",
+ "href": "/docs/Personal/EN-v44-18011825454/fullstack-language-core.pdf",
+ "type": "file",
+ "size": 70435,
+ "lastModified": "2025-09-25T15:08:43Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Personal/EN-v45-18011937887/",
+ "entries": [
+ {
+ "name": "ActiveBalance-Plan.html",
+ "href": "/docs/Personal/EN-v45-18011937887/ActiveBalance-Plan.html",
+ "type": "file",
+ "size": 5461,
+ "lastModified": "2025-09-25T15:20:20Z"
+ },
+ {
+ "name": "ActiveBalance-Plan.pdf",
+ "href": "/docs/Personal/EN-v45-18011937887/ActiveBalance-Plan.pdf",
+ "type": "file",
+ "size": 76342,
+ "lastModified": "2025-09-25T15:19:50Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.html",
+ "href": "/docs/Personal/EN-v45-18011937887/CV-AI-Dev-EN.html",
+ "type": "file",
+ "size": 10218,
+ "lastModified": "2025-09-25T15:20:20Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.pdf",
+ "href": "/docs/Personal/EN-v45-18011937887/CV-AI-Dev-EN.pdf",
+ "type": "file",
+ "size": 51825,
+ "lastModified": "2025-09-25T15:19:52Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.html",
+ "href": "/docs/Personal/EN-v45-18011937887/CV-AI-Dev-ZH.html",
+ "type": "file",
+ "size": 20180,
+ "lastModified": "2025-09-25T15:20:20Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.pdf",
+ "href": "/docs/Personal/EN-v45-18011937887/CV-AI-Dev-ZH.pdf",
+ "type": "file",
+ "size": 199122,
+ "lastModified": "2025-09-25T15:19:55Z"
+ },
+ {
+ "name": "CV-EN.html",
+ "href": "/docs/Personal/EN-v45-18011937887/CV-EN.html",
+ "type": "file",
+ "size": 23062,
+ "lastModified": "2025-09-25T15:20:20Z"
+ },
+ {
+ "name": "CV-EN.pdf",
+ "href": "/docs/Personal/EN-v45-18011937887/CV-EN.pdf",
+ "type": "file",
+ "size": 63734,
+ "lastModified": "2025-09-25T15:19:57Z"
+ },
+ {
+ "name": "CV-ZH.html",
+ "href": "/docs/Personal/EN-v45-18011937887/CV-ZH.html",
+ "type": "file",
+ "size": 20238,
+ "lastModified": "2025-09-25T15:20:20Z"
+ },
+ {
+ "name": "CV-ZH.pdf",
+ "href": "/docs/Personal/EN-v45-18011937887/CV-ZH.pdf",
+ "type": "file",
+ "size": 170858,
+ "lastModified": "2025-09-25T15:19:59Z"
+ },
+ {
+ "name": "README.html",
+ "href": "/docs/Personal/EN-v45-18011937887/README.html",
+ "type": "file",
+ "size": 3295,
+ "lastModified": "2025-09-25T15:20:20Z"
+ },
+ {
+ "name": "README.pdf",
+ "href": "/docs/Personal/EN-v45-18011937887/README.pdf",
+ "type": "file",
+ "size": 52037,
+ "lastModified": "2025-09-25T15:20:01Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.html",
+ "href": "/docs/Personal/EN-v45-18011937887/Resume-DevOPS-ZH.html",
+ "type": "file",
+ "size": 8949,
+ "lastModified": "2025-09-25T15:20:20Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.pdf",
+ "href": "/docs/Personal/EN-v45-18011937887/Resume-DevOPS-ZH.pdf",
+ "type": "file",
+ "size": 138283,
+ "lastModified": "2025-09-25T15:20:04Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.html",
+ "href": "/docs/Personal/EN-v45-18011937887/Resume-DevOps-EN.html",
+ "type": "file",
+ "size": 9670,
+ "lastModified": "2025-09-25T15:20:20Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.pdf",
+ "href": "/docs/Personal/EN-v45-18011937887/Resume-DevOps-EN.pdf",
+ "type": "file",
+ "size": 50983,
+ "lastModified": "2025-09-25T15:20:06Z"
+ },
+ {
+ "name": "Resume-EN.html",
+ "href": "/docs/Personal/EN-v45-18011937887/Resume-EN.html",
+ "type": "file",
+ "size": 10706,
+ "lastModified": "2025-09-25T15:20:20Z"
+ },
+ {
+ "name": "Resume-EN.pdf",
+ "href": "/docs/Personal/EN-v45-18011937887/Resume-EN.pdf",
+ "type": "file",
+ "size": 57383,
+ "lastModified": "2025-09-25T15:20:08Z"
+ },
+ {
+ "name": "Resume-ZH.html",
+ "href": "/docs/Personal/EN-v45-18011937887/Resume-ZH.html",
+ "type": "file",
+ "size": 17297,
+ "lastModified": "2025-09-25T15:20:20Z"
+ },
+ {
+ "name": "Resume-ZH.pdf",
+ "href": "/docs/Personal/EN-v45-18011937887/Resume-ZH.pdf",
+ "type": "file",
+ "size": 179975,
+ "lastModified": "2025-09-25T15:20:11Z"
+ },
+ {
+ "name": "cet-6.html",
+ "href": "/docs/Personal/EN-v45-18011937887/cet-6.html",
+ "type": "file",
+ "size": 448346,
+ "lastModified": "2025-09-25T15:20:21Z"
+ },
+ {
+ "name": "cet-6.pdf",
+ "href": "/docs/Personal/EN-v45-18011937887/cet-6.pdf",
+ "type": "file",
+ "size": 1192646,
+ "lastModified": "2025-09-25T15:20:16Z"
+ },
+ {
+ "name": "fullstack-language-core.html",
+ "href": "/docs/Personal/EN-v45-18011937887/fullstack-language-core.html",
+ "type": "file",
+ "size": 11943,
+ "lastModified": "2025-09-25T15:20:21Z"
+ },
+ {
+ "name": "fullstack-language-core.pdf",
+ "href": "/docs/Personal/EN-v45-18011937887/fullstack-language-core.pdf",
+ "type": "file",
+ "size": 70430,
+ "lastModified": "2025-09-25T15:20:19Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Personal/EN-v46-18011951541/",
+ "entries": [
+ {
+ "name": "ActiveBalance-Plan.html",
+ "href": "/docs/Personal/EN-v46-18011951541/ActiveBalance-Plan.html",
+ "type": "file",
+ "size": 5461,
+ "lastModified": "2025-09-25T15:12:23Z"
+ },
+ {
+ "name": "ActiveBalance-Plan.pdf",
+ "href": "/docs/Personal/EN-v46-18011951541/ActiveBalance-Plan.pdf",
+ "type": "file",
+ "size": 76342,
+ "lastModified": "2025-09-25T15:11:53Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.html",
+ "href": "/docs/Personal/EN-v46-18011951541/CV-AI-Dev-EN.html",
+ "type": "file",
+ "size": 10218,
+ "lastModified": "2025-09-25T15:12:23Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.pdf",
+ "href": "/docs/Personal/EN-v46-18011951541/CV-AI-Dev-EN.pdf",
+ "type": "file",
+ "size": 51824,
+ "lastModified": "2025-09-25T15:11:55Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.html",
+ "href": "/docs/Personal/EN-v46-18011951541/CV-AI-Dev-ZH.html",
+ "type": "file",
+ "size": 20180,
+ "lastModified": "2025-09-25T15:12:23Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.pdf",
+ "href": "/docs/Personal/EN-v46-18011951541/CV-AI-Dev-ZH.pdf",
+ "type": "file",
+ "size": 199122,
+ "lastModified": "2025-09-25T15:11:57Z"
+ },
+ {
+ "name": "CV-EN.html",
+ "href": "/docs/Personal/EN-v46-18011951541/CV-EN.html",
+ "type": "file",
+ "size": 23062,
+ "lastModified": "2025-09-25T15:12:23Z"
+ },
+ {
+ "name": "CV-EN.pdf",
+ "href": "/docs/Personal/EN-v46-18011951541/CV-EN.pdf",
+ "type": "file",
+ "size": 63733,
+ "lastModified": "2025-09-25T15:12:00Z"
+ },
+ {
+ "name": "CV-ZH.html",
+ "href": "/docs/Personal/EN-v46-18011951541/CV-ZH.html",
+ "type": "file",
+ "size": 20238,
+ "lastModified": "2025-09-25T15:12:23Z"
+ },
+ {
+ "name": "CV-ZH.pdf",
+ "href": "/docs/Personal/EN-v46-18011951541/CV-ZH.pdf",
+ "type": "file",
+ "size": 170870,
+ "lastModified": "2025-09-25T15:12:02Z"
+ },
+ {
+ "name": "README.html",
+ "href": "/docs/Personal/EN-v46-18011951541/README.html",
+ "type": "file",
+ "size": 3295,
+ "lastModified": "2025-09-25T15:12:23Z"
+ },
+ {
+ "name": "README.pdf",
+ "href": "/docs/Personal/EN-v46-18011951541/README.pdf",
+ "type": "file",
+ "size": 52036,
+ "lastModified": "2025-09-25T15:12:04Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.html",
+ "href": "/docs/Personal/EN-v46-18011951541/Resume-DevOPS-ZH.html",
+ "type": "file",
+ "size": 8949,
+ "lastModified": "2025-09-25T15:12:23Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.pdf",
+ "href": "/docs/Personal/EN-v46-18011951541/Resume-DevOPS-ZH.pdf",
+ "type": "file",
+ "size": 138284,
+ "lastModified": "2025-09-25T15:12:06Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.html",
+ "href": "/docs/Personal/EN-v46-18011951541/Resume-DevOps-EN.html",
+ "type": "file",
+ "size": 9670,
+ "lastModified": "2025-09-25T15:12:23Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.pdf",
+ "href": "/docs/Personal/EN-v46-18011951541/Resume-DevOps-EN.pdf",
+ "type": "file",
+ "size": 50980,
+ "lastModified": "2025-09-25T15:12:09Z"
+ },
+ {
+ "name": "Resume-EN.html",
+ "href": "/docs/Personal/EN-v46-18011951541/Resume-EN.html",
+ "type": "file",
+ "size": 10706,
+ "lastModified": "2025-09-25T15:12:23Z"
+ },
+ {
+ "name": "Resume-EN.pdf",
+ "href": "/docs/Personal/EN-v46-18011951541/Resume-EN.pdf",
+ "type": "file",
+ "size": 57383,
+ "lastModified": "2025-09-25T15:12:11Z"
+ },
+ {
+ "name": "Resume-ZH.html",
+ "href": "/docs/Personal/EN-v46-18011951541/Resume-ZH.html",
+ "type": "file",
+ "size": 17297,
+ "lastModified": "2025-09-25T15:12:23Z"
+ },
+ {
+ "name": "Resume-ZH.pdf",
+ "href": "/docs/Personal/EN-v46-18011951541/Resume-ZH.pdf",
+ "type": "file",
+ "size": 179978,
+ "lastModified": "2025-09-25T15:12:13Z"
+ },
+ {
+ "name": "cet-6.html",
+ "href": "/docs/Personal/EN-v46-18011951541/cet-6.html",
+ "type": "file",
+ "size": 448346,
+ "lastModified": "2025-09-25T15:12:23Z"
+ },
+ {
+ "name": "cet-6.pdf",
+ "href": "/docs/Personal/EN-v46-18011951541/cet-6.pdf",
+ "type": "file",
+ "size": 1192646,
+ "lastModified": "2025-09-25T15:12:19Z"
+ },
+ {
+ "name": "fullstack-language-core.html",
+ "href": "/docs/Personal/EN-v46-18011951541/fullstack-language-core.html",
+ "type": "file",
+ "size": 11943,
+ "lastModified": "2025-09-25T15:12:24Z"
+ },
+ {
+ "name": "fullstack-language-core.pdf",
+ "href": "/docs/Personal/EN-v46-18011951541/fullstack-language-core.pdf",
+ "type": "file",
+ "size": 70435,
+ "lastModified": "2025-09-25T15:12:21Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Personal/EN-v47-18013619427/",
+ "entries": [
+ {
+ "name": "ActiveBalance-Plan.html",
+ "href": "/docs/Personal/EN-v47-18013619427/ActiveBalance-Plan.html",
+ "type": "file",
+ "size": 5461,
+ "lastModified": "2025-09-25T16:11:31Z"
+ },
+ {
+ "name": "ActiveBalance-Plan.pdf",
+ "href": "/docs/Personal/EN-v47-18013619427/ActiveBalance-Plan.pdf",
+ "type": "file",
+ "size": 76342,
+ "lastModified": "2025-09-25T16:11:01Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.html",
+ "href": "/docs/Personal/EN-v47-18013619427/CV-AI-Dev-EN.html",
+ "type": "file",
+ "size": 10218,
+ "lastModified": "2025-09-25T16:11:31Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.pdf",
+ "href": "/docs/Personal/EN-v47-18013619427/CV-AI-Dev-EN.pdf",
+ "type": "file",
+ "size": 51826,
+ "lastModified": "2025-09-25T16:11:03Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.html",
+ "href": "/docs/Personal/EN-v47-18013619427/CV-AI-Dev-ZH.html",
+ "type": "file",
+ "size": 20180,
+ "lastModified": "2025-09-25T16:11:31Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.pdf",
+ "href": "/docs/Personal/EN-v47-18013619427/CV-AI-Dev-ZH.pdf",
+ "type": "file",
+ "size": 199126,
+ "lastModified": "2025-09-25T16:11:06Z"
+ },
+ {
+ "name": "CV-EN.html",
+ "href": "/docs/Personal/EN-v47-18013619427/CV-EN.html",
+ "type": "file",
+ "size": 23062,
+ "lastModified": "2025-09-25T16:11:31Z"
+ },
+ {
+ "name": "CV-EN.pdf",
+ "href": "/docs/Personal/EN-v47-18013619427/CV-EN.pdf",
+ "type": "file",
+ "size": 63733,
+ "lastModified": "2025-09-25T16:11:08Z"
+ },
+ {
+ "name": "CV-ZH.html",
+ "href": "/docs/Personal/EN-v47-18013619427/CV-ZH.html",
+ "type": "file",
+ "size": 20238,
+ "lastModified": "2025-09-25T16:11:31Z"
+ },
+ {
+ "name": "CV-ZH.pdf",
+ "href": "/docs/Personal/EN-v47-18013619427/CV-ZH.pdf",
+ "type": "file",
+ "size": 170870,
+ "lastModified": "2025-09-25T16:11:10Z"
+ },
+ {
+ "name": "README.html",
+ "href": "/docs/Personal/EN-v47-18013619427/README.html",
+ "type": "file",
+ "size": 3295,
+ "lastModified": "2025-09-25T16:11:31Z"
+ },
+ {
+ "name": "README.pdf",
+ "href": "/docs/Personal/EN-v47-18013619427/README.pdf",
+ "type": "file",
+ "size": 52037,
+ "lastModified": "2025-09-25T16:11:13Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.html",
+ "href": "/docs/Personal/EN-v47-18013619427/Resume-DevOPS-ZH.html",
+ "type": "file",
+ "size": 8949,
+ "lastModified": "2025-09-25T16:11:31Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.pdf",
+ "href": "/docs/Personal/EN-v47-18013619427/Resume-DevOPS-ZH.pdf",
+ "type": "file",
+ "size": 138283,
+ "lastModified": "2025-09-25T16:11:15Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.html",
+ "href": "/docs/Personal/EN-v47-18013619427/Resume-DevOps-EN.html",
+ "type": "file",
+ "size": 9670,
+ "lastModified": "2025-09-25T16:11:31Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.pdf",
+ "href": "/docs/Personal/EN-v47-18013619427/Resume-DevOps-EN.pdf",
+ "type": "file",
+ "size": 50987,
+ "lastModified": "2025-09-25T16:11:17Z"
+ },
+ {
+ "name": "Resume-EN.html",
+ "href": "/docs/Personal/EN-v47-18013619427/Resume-EN.html",
+ "type": "file",
+ "size": 10706,
+ "lastModified": "2025-09-25T16:11:32Z"
+ },
+ {
+ "name": "Resume-EN.pdf",
+ "href": "/docs/Personal/EN-v47-18013619427/Resume-EN.pdf",
+ "type": "file",
+ "size": 57387,
+ "lastModified": "2025-09-25T16:11:19Z"
+ },
+ {
+ "name": "Resume-ZH.html",
+ "href": "/docs/Personal/EN-v47-18013619427/Resume-ZH.html",
+ "type": "file",
+ "size": 17297,
+ "lastModified": "2025-09-25T16:11:32Z"
+ },
+ {
+ "name": "Resume-ZH.pdf",
+ "href": "/docs/Personal/EN-v47-18013619427/Resume-ZH.pdf",
+ "type": "file",
+ "size": 179969,
+ "lastModified": "2025-09-25T16:11:22Z"
+ },
+ {
+ "name": "cet-6.html",
+ "href": "/docs/Personal/EN-v47-18013619427/cet-6.html",
+ "type": "file",
+ "size": 448346,
+ "lastModified": "2025-09-25T16:11:32Z"
+ },
+ {
+ "name": "cet-6.pdf",
+ "href": "/docs/Personal/EN-v47-18013619427/cet-6.pdf",
+ "type": "file",
+ "size": 1192642,
+ "lastModified": "2025-09-25T16:11:27Z"
+ },
+ {
+ "name": "fullstack-language-core.html",
+ "href": "/docs/Personal/EN-v47-18013619427/fullstack-language-core.html",
+ "type": "file",
+ "size": 11943,
+ "lastModified": "2025-09-25T16:11:32Z"
+ },
+ {
+ "name": "fullstack-language-core.pdf",
+ "href": "/docs/Personal/EN-v47-18013619427/fullstack-language-core.pdf",
+ "type": "file",
+ "size": 70432,
+ "lastModified": "2025-09-25T16:11:30Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Personal/EN-v52-18027443116/",
+ "entries": [
+ {
+ "name": "ActiveBalance-Plan.html",
+ "href": "/docs/Personal/EN-v52-18027443116/ActiveBalance-Plan.html",
+ "type": "file",
+ "size": 5461,
+ "lastModified": "2025-09-26T04:03:59Z"
+ },
+ {
+ "name": "ActiveBalance-Plan.pdf",
+ "href": "/docs/Personal/EN-v52-18027443116/ActiveBalance-Plan.pdf",
+ "type": "file",
+ "size": 76346,
+ "lastModified": "2025-09-26T04:03:29Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.html",
+ "href": "/docs/Personal/EN-v52-18027443116/CV-AI-Dev-EN.html",
+ "type": "file",
+ "size": 10218,
+ "lastModified": "2025-09-26T04:03:59Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.pdf",
+ "href": "/docs/Personal/EN-v52-18027443116/CV-AI-Dev-EN.pdf",
+ "type": "file",
+ "size": 51819,
+ "lastModified": "2025-09-26T04:03:32Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.html",
+ "href": "/docs/Personal/EN-v52-18027443116/CV-AI-Dev-ZH.html",
+ "type": "file",
+ "size": 20180,
+ "lastModified": "2025-09-26T04:03:59Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.pdf",
+ "href": "/docs/Personal/EN-v52-18027443116/CV-AI-Dev-ZH.pdf",
+ "type": "file",
+ "size": 199120,
+ "lastModified": "2025-09-26T04:03:34Z"
+ },
+ {
+ "name": "CV-EN.html",
+ "href": "/docs/Personal/EN-v52-18027443116/CV-EN.html",
+ "type": "file",
+ "size": 23062,
+ "lastModified": "2025-09-26T04:03:59Z"
+ },
+ {
+ "name": "CV-EN.pdf",
+ "href": "/docs/Personal/EN-v52-18027443116/CV-EN.pdf",
+ "type": "file",
+ "size": 63734,
+ "lastModified": "2025-09-26T04:03:36Z"
+ },
+ {
+ "name": "CV-ZH.html",
+ "href": "/docs/Personal/EN-v52-18027443116/CV-ZH.html",
+ "type": "file",
+ "size": 20238,
+ "lastModified": "2025-09-26T04:03:59Z"
+ },
+ {
+ "name": "CV-ZH.pdf",
+ "href": "/docs/Personal/EN-v52-18027443116/CV-ZH.pdf",
+ "type": "file",
+ "size": 170878,
+ "lastModified": "2025-09-26T04:03:39Z"
+ },
+ {
+ "name": "README.html",
+ "href": "/docs/Personal/EN-v52-18027443116/README.html",
+ "type": "file",
+ "size": 3295,
+ "lastModified": "2025-09-26T04:03:59Z"
+ },
+ {
+ "name": "README.pdf",
+ "href": "/docs/Personal/EN-v52-18027443116/README.pdf",
+ "type": "file",
+ "size": 52032,
+ "lastModified": "2025-09-26T04:03:41Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.html",
+ "href": "/docs/Personal/EN-v52-18027443116/Resume-DevOPS-ZH.html",
+ "type": "file",
+ "size": 8949,
+ "lastModified": "2025-09-26T04:03:59Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.pdf",
+ "href": "/docs/Personal/EN-v52-18027443116/Resume-DevOPS-ZH.pdf",
+ "type": "file",
+ "size": 138287,
+ "lastModified": "2025-09-26T04:03:43Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.html",
+ "href": "/docs/Personal/EN-v52-18027443116/Resume-DevOps-EN.html",
+ "type": "file",
+ "size": 9670,
+ "lastModified": "2025-09-26T04:03:59Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.pdf",
+ "href": "/docs/Personal/EN-v52-18027443116/Resume-DevOps-EN.pdf",
+ "type": "file",
+ "size": 50980,
+ "lastModified": "2025-09-26T04:03:45Z"
+ },
+ {
+ "name": "Resume-EN.html",
+ "href": "/docs/Personal/EN-v52-18027443116/Resume-EN.html",
+ "type": "file",
+ "size": 10706,
+ "lastModified": "2025-09-26T04:04:00Z"
+ },
+ {
+ "name": "Resume-EN.pdf",
+ "href": "/docs/Personal/EN-v52-18027443116/Resume-EN.pdf",
+ "type": "file",
+ "size": 57382,
+ "lastModified": "2025-09-26T04:03:47Z"
+ },
+ {
+ "name": "Resume-ZH.html",
+ "href": "/docs/Personal/EN-v52-18027443116/Resume-ZH.html",
+ "type": "file",
+ "size": 17297,
+ "lastModified": "2025-09-26T04:04:00Z"
+ },
+ {
+ "name": "Resume-ZH.pdf",
+ "href": "/docs/Personal/EN-v52-18027443116/Resume-ZH.pdf",
+ "type": "file",
+ "size": 179975,
+ "lastModified": "2025-09-26T04:03:50Z"
+ },
+ {
+ "name": "cet-6.html",
+ "href": "/docs/Personal/EN-v52-18027443116/cet-6.html",
+ "type": "file",
+ "size": 448346,
+ "lastModified": "2025-09-26T04:04:00Z"
+ },
+ {
+ "name": "cet-6.pdf",
+ "href": "/docs/Personal/EN-v52-18027443116/cet-6.pdf",
+ "type": "file",
+ "size": 1192646,
+ "lastModified": "2025-09-26T04:03:55Z"
+ },
+ {
+ "name": "fullstack-language-core.html",
+ "href": "/docs/Personal/EN-v52-18027443116/fullstack-language-core.html",
+ "type": "file",
+ "size": 11943,
+ "lastModified": "2025-09-26T04:04:00Z"
+ },
+ {
+ "name": "fullstack-language-core.pdf",
+ "href": "/docs/Personal/EN-v52-18027443116/fullstack-language-core.pdf",
+ "type": "file",
+ "size": 70429,
+ "lastModified": "2025-09-26T04:03:58Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Personal/EN-v53-18027447911/",
+ "entries": [
+ {
+ "name": "ActiveBalance-Plan.html",
+ "href": "/docs/Personal/EN-v53-18027447911/ActiveBalance-Plan.html",
+ "type": "file",
+ "size": 5461,
+ "lastModified": "2025-09-26T04:03:26Z"
+ },
+ {
+ "name": "ActiveBalance-Plan.pdf",
+ "href": "/docs/Personal/EN-v53-18027447911/ActiveBalance-Plan.pdf",
+ "type": "file",
+ "size": 76345,
+ "lastModified": "2025-09-26T04:02:56Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.html",
+ "href": "/docs/Personal/EN-v53-18027447911/CV-AI-Dev-EN.html",
+ "type": "file",
+ "size": 10218,
+ "lastModified": "2025-09-26T04:03:26Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.pdf",
+ "href": "/docs/Personal/EN-v53-18027447911/CV-AI-Dev-EN.pdf",
+ "type": "file",
+ "size": 51821,
+ "lastModified": "2025-09-26T04:02:58Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.html",
+ "href": "/docs/Personal/EN-v53-18027447911/CV-AI-Dev-ZH.html",
+ "type": "file",
+ "size": 20180,
+ "lastModified": "2025-09-26T04:03:26Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.pdf",
+ "href": "/docs/Personal/EN-v53-18027447911/CV-AI-Dev-ZH.pdf",
+ "type": "file",
+ "size": 199122,
+ "lastModified": "2025-09-26T04:03:01Z"
+ },
+ {
+ "name": "CV-EN.html",
+ "href": "/docs/Personal/EN-v53-18027447911/CV-EN.html",
+ "type": "file",
+ "size": 23062,
+ "lastModified": "2025-09-26T04:03:26Z"
+ },
+ {
+ "name": "CV-EN.pdf",
+ "href": "/docs/Personal/EN-v53-18027447911/CV-EN.pdf",
+ "type": "file",
+ "size": 63733,
+ "lastModified": "2025-09-26T04:03:03Z"
+ },
+ {
+ "name": "CV-ZH.html",
+ "href": "/docs/Personal/EN-v53-18027447911/CV-ZH.html",
+ "type": "file",
+ "size": 20238,
+ "lastModified": "2025-09-26T04:03:26Z"
+ },
+ {
+ "name": "CV-ZH.pdf",
+ "href": "/docs/Personal/EN-v53-18027447911/CV-ZH.pdf",
+ "type": "file",
+ "size": 170873,
+ "lastModified": "2025-09-26T04:03:06Z"
+ },
+ {
+ "name": "README.html",
+ "href": "/docs/Personal/EN-v53-18027447911/README.html",
+ "type": "file",
+ "size": 3295,
+ "lastModified": "2025-09-26T04:03:26Z"
+ },
+ {
+ "name": "README.pdf",
+ "href": "/docs/Personal/EN-v53-18027447911/README.pdf",
+ "type": "file",
+ "size": 52031,
+ "lastModified": "2025-09-26T04:03:08Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.html",
+ "href": "/docs/Personal/EN-v53-18027447911/Resume-DevOPS-ZH.html",
+ "type": "file",
+ "size": 8949,
+ "lastModified": "2025-09-26T04:03:26Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.pdf",
+ "href": "/docs/Personal/EN-v53-18027447911/Resume-DevOPS-ZH.pdf",
+ "type": "file",
+ "size": 138286,
+ "lastModified": "2025-09-26T04:03:10Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.html",
+ "href": "/docs/Personal/EN-v53-18027447911/Resume-DevOps-EN.html",
+ "type": "file",
+ "size": 9670,
+ "lastModified": "2025-09-26T04:03:26Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.pdf",
+ "href": "/docs/Personal/EN-v53-18027447911/Resume-DevOps-EN.pdf",
+ "type": "file",
+ "size": 50984,
+ "lastModified": "2025-09-26T04:03:12Z"
+ },
+ {
+ "name": "Resume-EN.html",
+ "href": "/docs/Personal/EN-v53-18027447911/Resume-EN.html",
+ "type": "file",
+ "size": 10706,
+ "lastModified": "2025-09-26T04:03:27Z"
+ },
+ {
+ "name": "Resume-EN.pdf",
+ "href": "/docs/Personal/EN-v53-18027447911/Resume-EN.pdf",
+ "type": "file",
+ "size": 57376,
+ "lastModified": "2025-09-26T04:03:14Z"
+ },
+ {
+ "name": "Resume-ZH.html",
+ "href": "/docs/Personal/EN-v53-18027447911/Resume-ZH.html",
+ "type": "file",
+ "size": 17297,
+ "lastModified": "2025-09-26T04:03:27Z"
+ },
+ {
+ "name": "Resume-ZH.pdf",
+ "href": "/docs/Personal/EN-v53-18027447911/Resume-ZH.pdf",
+ "type": "file",
+ "size": 179975,
+ "lastModified": "2025-09-26T04:03:17Z"
+ },
+ {
+ "name": "cet-6.html",
+ "href": "/docs/Personal/EN-v53-18027447911/cet-6.html",
+ "type": "file",
+ "size": 448346,
+ "lastModified": "2025-09-26T04:03:27Z"
+ },
+ {
+ "name": "cet-6.pdf",
+ "href": "/docs/Personal/EN-v53-18027447911/cet-6.pdf",
+ "type": "file",
+ "size": 1192646,
+ "lastModified": "2025-09-26T04:03:22Z"
+ },
+ {
+ "name": "fullstack-language-core.html",
+ "href": "/docs/Personal/EN-v53-18027447911/fullstack-language-core.html",
+ "type": "file",
+ "size": 11943,
+ "lastModified": "2025-09-26T04:03:27Z"
+ },
+ {
+ "name": "fullstack-language-core.pdf",
+ "href": "/docs/Personal/EN-v53-18027447911/fullstack-language-core.pdf",
+ "type": "file",
+ "size": 70432,
+ "lastModified": "2025-09-26T04:03:25Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Personal/EN-v54-18029756788/",
+ "entries": [
+ {
+ "name": "ActiveBalance-Plan.html",
+ "href": "/docs/Personal/EN-v54-18029756788/ActiveBalance-Plan.html",
+ "type": "file",
+ "size": 5461,
+ "lastModified": "2025-09-26T06:28:56Z"
+ },
+ {
+ "name": "ActiveBalance-Plan.pdf",
+ "href": "/docs/Personal/EN-v54-18029756788/ActiveBalance-Plan.pdf",
+ "type": "file",
+ "size": 76348,
+ "lastModified": "2025-09-26T06:28:26Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.html",
+ "href": "/docs/Personal/EN-v54-18029756788/CV-AI-Dev-EN.html",
+ "type": "file",
+ "size": 10218,
+ "lastModified": "2025-09-26T06:28:56Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.pdf",
+ "href": "/docs/Personal/EN-v54-18029756788/CV-AI-Dev-EN.pdf",
+ "type": "file",
+ "size": 51822,
+ "lastModified": "2025-09-26T06:28:28Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.html",
+ "href": "/docs/Personal/EN-v54-18029756788/CV-AI-Dev-ZH.html",
+ "type": "file",
+ "size": 20180,
+ "lastModified": "2025-09-26T06:28:56Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.pdf",
+ "href": "/docs/Personal/EN-v54-18029756788/CV-AI-Dev-ZH.pdf",
+ "type": "file",
+ "size": 199121,
+ "lastModified": "2025-09-26T06:28:30Z"
+ },
+ {
+ "name": "CV-EN.html",
+ "href": "/docs/Personal/EN-v54-18029756788/CV-EN.html",
+ "type": "file",
+ "size": 23062,
+ "lastModified": "2025-09-26T06:28:56Z"
+ },
+ {
+ "name": "CV-EN.pdf",
+ "href": "/docs/Personal/EN-v54-18029756788/CV-EN.pdf",
+ "type": "file",
+ "size": 63733,
+ "lastModified": "2025-09-26T06:28:33Z"
+ },
+ {
+ "name": "CV-ZH.html",
+ "href": "/docs/Personal/EN-v54-18029756788/CV-ZH.html",
+ "type": "file",
+ "size": 20238,
+ "lastModified": "2025-09-26T06:28:56Z"
+ },
+ {
+ "name": "CV-ZH.pdf",
+ "href": "/docs/Personal/EN-v54-18029756788/CV-ZH.pdf",
+ "type": "file",
+ "size": 170868,
+ "lastModified": "2025-09-26T06:28:35Z"
+ },
+ {
+ "name": "README.html",
+ "href": "/docs/Personal/EN-v54-18029756788/README.html",
+ "type": "file",
+ "size": 3295,
+ "lastModified": "2025-09-26T06:28:56Z"
+ },
+ {
+ "name": "README.pdf",
+ "href": "/docs/Personal/EN-v54-18029756788/README.pdf",
+ "type": "file",
+ "size": 52028,
+ "lastModified": "2025-09-26T06:28:37Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.html",
+ "href": "/docs/Personal/EN-v54-18029756788/Resume-DevOPS-ZH.html",
+ "type": "file",
+ "size": 8949,
+ "lastModified": "2025-09-26T06:28:56Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.pdf",
+ "href": "/docs/Personal/EN-v54-18029756788/Resume-DevOPS-ZH.pdf",
+ "type": "file",
+ "size": 138284,
+ "lastModified": "2025-09-26T06:28:40Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.html",
+ "href": "/docs/Personal/EN-v54-18029756788/Resume-DevOps-EN.html",
+ "type": "file",
+ "size": 9670,
+ "lastModified": "2025-09-26T06:28:56Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.pdf",
+ "href": "/docs/Personal/EN-v54-18029756788/Resume-DevOps-EN.pdf",
+ "type": "file",
+ "size": 50984,
+ "lastModified": "2025-09-26T06:28:42Z"
+ },
+ {
+ "name": "Resume-EN.html",
+ "href": "/docs/Personal/EN-v54-18029756788/Resume-EN.html",
+ "type": "file",
+ "size": 10706,
+ "lastModified": "2025-09-26T06:28:56Z"
+ },
+ {
+ "name": "Resume-EN.pdf",
+ "href": "/docs/Personal/EN-v54-18029756788/Resume-EN.pdf",
+ "type": "file",
+ "size": 57378,
+ "lastModified": "2025-09-26T06:28:44Z"
+ },
+ {
+ "name": "Resume-ZH.html",
+ "href": "/docs/Personal/EN-v54-18029756788/Resume-ZH.html",
+ "type": "file",
+ "size": 17297,
+ "lastModified": "2025-09-26T06:28:56Z"
+ },
+ {
+ "name": "Resume-ZH.pdf",
+ "href": "/docs/Personal/EN-v54-18029756788/Resume-ZH.pdf",
+ "type": "file",
+ "size": 179975,
+ "lastModified": "2025-09-26T06:28:46Z"
+ },
+ {
+ "name": "cet-6.html",
+ "href": "/docs/Personal/EN-v54-18029756788/cet-6.html",
+ "type": "file",
+ "size": 448346,
+ "lastModified": "2025-09-26T06:28:57Z"
+ },
+ {
+ "name": "cet-6.pdf",
+ "href": "/docs/Personal/EN-v54-18029756788/cet-6.pdf",
+ "type": "file",
+ "size": 1192647,
+ "lastModified": "2025-09-26T06:28:52Z"
+ },
+ {
+ "name": "fullstack-language-core.html",
+ "href": "/docs/Personal/EN-v54-18029756788/fullstack-language-core.html",
+ "type": "file",
+ "size": 11943,
+ "lastModified": "2025-09-26T06:28:57Z"
+ },
+ {
+ "name": "fullstack-language-core.pdf",
+ "href": "/docs/Personal/EN-v54-18029756788/fullstack-language-core.pdf",
+ "type": "file",
+ "size": 70430,
+ "lastModified": "2025-09-26T06:28:54Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Personal/EN-v55-18030101682/",
+ "entries": [
+ {
+ "name": "ActiveBalance-Plan.html",
+ "href": "/docs/Personal/EN-v55-18030101682/ActiveBalance-Plan.html",
+ "type": "file",
+ "size": 5461,
+ "lastModified": "2025-09-26T06:47:03Z"
+ },
+ {
+ "name": "ActiveBalance-Plan.pdf",
+ "href": "/docs/Personal/EN-v55-18030101682/ActiveBalance-Plan.pdf",
+ "type": "file",
+ "size": 76343,
+ "lastModified": "2025-09-26T06:46:33Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.html",
+ "href": "/docs/Personal/EN-v55-18030101682/CV-AI-Dev-EN.html",
+ "type": "file",
+ "size": 10218,
+ "lastModified": "2025-09-26T06:47:03Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.pdf",
+ "href": "/docs/Personal/EN-v55-18030101682/CV-AI-Dev-EN.pdf",
+ "type": "file",
+ "size": 51821,
+ "lastModified": "2025-09-26T06:46:35Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.html",
+ "href": "/docs/Personal/EN-v55-18030101682/CV-AI-Dev-ZH.html",
+ "type": "file",
+ "size": 20180,
+ "lastModified": "2025-09-26T06:47:03Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.pdf",
+ "href": "/docs/Personal/EN-v55-18030101682/CV-AI-Dev-ZH.pdf",
+ "type": "file",
+ "size": 199123,
+ "lastModified": "2025-09-26T06:46:38Z"
+ },
+ {
+ "name": "CV-EN.html",
+ "href": "/docs/Personal/EN-v55-18030101682/CV-EN.html",
+ "type": "file",
+ "size": 23062,
+ "lastModified": "2025-09-26T06:47:03Z"
+ },
+ {
+ "name": "CV-EN.pdf",
+ "href": "/docs/Personal/EN-v55-18030101682/CV-EN.pdf",
+ "type": "file",
+ "size": 63731,
+ "lastModified": "2025-09-26T06:46:40Z"
+ },
+ {
+ "name": "CV-ZH.html",
+ "href": "/docs/Personal/EN-v55-18030101682/CV-ZH.html",
+ "type": "file",
+ "size": 20238,
+ "lastModified": "2025-09-26T06:47:03Z"
+ },
+ {
+ "name": "CV-ZH.pdf",
+ "href": "/docs/Personal/EN-v55-18030101682/CV-ZH.pdf",
+ "type": "file",
+ "size": 170880,
+ "lastModified": "2025-09-26T06:46:42Z"
+ },
+ {
+ "name": "README.html",
+ "href": "/docs/Personal/EN-v55-18030101682/README.html",
+ "type": "file",
+ "size": 3295,
+ "lastModified": "2025-09-26T06:47:03Z"
+ },
+ {
+ "name": "README.pdf",
+ "href": "/docs/Personal/EN-v55-18030101682/README.pdf",
+ "type": "file",
+ "size": 52031,
+ "lastModified": "2025-09-26T06:46:45Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.html",
+ "href": "/docs/Personal/EN-v55-18030101682/Resume-DevOPS-ZH.html",
+ "type": "file",
+ "size": 8949,
+ "lastModified": "2025-09-26T06:47:03Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.pdf",
+ "href": "/docs/Personal/EN-v55-18030101682/Resume-DevOPS-ZH.pdf",
+ "type": "file",
+ "size": 138283,
+ "lastModified": "2025-09-26T06:46:47Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.html",
+ "href": "/docs/Personal/EN-v55-18030101682/Resume-DevOps-EN.html",
+ "type": "file",
+ "size": 9670,
+ "lastModified": "2025-09-26T06:47:04Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.pdf",
+ "href": "/docs/Personal/EN-v55-18030101682/Resume-DevOps-EN.pdf",
+ "type": "file",
+ "size": 50982,
+ "lastModified": "2025-09-26T06:46:49Z"
+ },
+ {
+ "name": "Resume-EN.html",
+ "href": "/docs/Personal/EN-v55-18030101682/Resume-EN.html",
+ "type": "file",
+ "size": 10706,
+ "lastModified": "2025-09-26T06:47:04Z"
+ },
+ {
+ "name": "Resume-EN.pdf",
+ "href": "/docs/Personal/EN-v55-18030101682/Resume-EN.pdf",
+ "type": "file",
+ "size": 57384,
+ "lastModified": "2025-09-26T06:46:51Z"
+ },
+ {
+ "name": "Resume-ZH.html",
+ "href": "/docs/Personal/EN-v55-18030101682/Resume-ZH.html",
+ "type": "file",
+ "size": 17297,
+ "lastModified": "2025-09-26T06:47:04Z"
+ },
+ {
+ "name": "Resume-ZH.pdf",
+ "href": "/docs/Personal/EN-v55-18030101682/Resume-ZH.pdf",
+ "type": "file",
+ "size": 179975,
+ "lastModified": "2025-09-26T06:46:54Z"
+ },
+ {
+ "name": "cet-6.html",
+ "href": "/docs/Personal/EN-v55-18030101682/cet-6.html",
+ "type": "file",
+ "size": 448346,
+ "lastModified": "2025-09-26T06:47:04Z"
+ },
+ {
+ "name": "cet-6.pdf",
+ "href": "/docs/Personal/EN-v55-18030101682/cet-6.pdf",
+ "type": "file",
+ "size": 1192646,
+ "lastModified": "2025-09-26T06:46:59Z"
+ },
+ {
+ "name": "fullstack-language-core.html",
+ "href": "/docs/Personal/EN-v55-18030101682/fullstack-language-core.html",
+ "type": "file",
+ "size": 11943,
+ "lastModified": "2025-09-26T06:47:04Z"
+ },
+ {
+ "name": "fullstack-language-core.pdf",
+ "href": "/docs/Personal/EN-v55-18030101682/fullstack-language-core.pdf",
+ "type": "file",
+ "size": 70429,
+ "lastModified": "2025-09-26T06:47:02Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Personal/EN-v56-18031095670/",
+ "entries": [
+ {
+ "name": "ActiveBalance-Plan.html",
+ "href": "/docs/Personal/EN-v56-18031095670/ActiveBalance-Plan.html",
+ "type": "file",
+ "size": 5461,
+ "lastModified": "2025-09-26T07:32:51Z"
+ },
+ {
+ "name": "ActiveBalance-Plan.pdf",
+ "href": "/docs/Personal/EN-v56-18031095670/ActiveBalance-Plan.pdf",
+ "type": "file",
+ "size": 76346,
+ "lastModified": "2025-09-26T07:32:20Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.html",
+ "href": "/docs/Personal/EN-v56-18031095670/CV-AI-Dev-EN.html",
+ "type": "file",
+ "size": 10218,
+ "lastModified": "2025-09-26T07:32:51Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.pdf",
+ "href": "/docs/Personal/EN-v56-18031095670/CV-AI-Dev-EN.pdf",
+ "type": "file",
+ "size": 51822,
+ "lastModified": "2025-09-26T07:32:22Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.html",
+ "href": "/docs/Personal/EN-v56-18031095670/CV-AI-Dev-ZH.html",
+ "type": "file",
+ "size": 20180,
+ "lastModified": "2025-09-26T07:32:51Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.pdf",
+ "href": "/docs/Personal/EN-v56-18031095670/CV-AI-Dev-ZH.pdf",
+ "type": "file",
+ "size": 199123,
+ "lastModified": "2025-09-26T07:32:25Z"
+ },
+ {
+ "name": "CV-EN.html",
+ "href": "/docs/Personal/EN-v56-18031095670/CV-EN.html",
+ "type": "file",
+ "size": 23062,
+ "lastModified": "2025-09-26T07:32:51Z"
+ },
+ {
+ "name": "CV-EN.pdf",
+ "href": "/docs/Personal/EN-v56-18031095670/CV-EN.pdf",
+ "type": "file",
+ "size": 63735,
+ "lastModified": "2025-09-26T07:32:27Z"
+ },
+ {
+ "name": "CV-ZH.html",
+ "href": "/docs/Personal/EN-v56-18031095670/CV-ZH.html",
+ "type": "file",
+ "size": 20238,
+ "lastModified": "2025-09-26T07:32:51Z"
+ },
+ {
+ "name": "CV-ZH.pdf",
+ "href": "/docs/Personal/EN-v56-18031095670/CV-ZH.pdf",
+ "type": "file",
+ "size": 170871,
+ "lastModified": "2025-09-26T07:32:30Z"
+ },
+ {
+ "name": "README.html",
+ "href": "/docs/Personal/EN-v56-18031095670/README.html",
+ "type": "file",
+ "size": 3295,
+ "lastModified": "2025-09-26T07:32:51Z"
+ },
+ {
+ "name": "README.pdf",
+ "href": "/docs/Personal/EN-v56-18031095670/README.pdf",
+ "type": "file",
+ "size": 52028,
+ "lastModified": "2025-09-26T07:32:32Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.html",
+ "href": "/docs/Personal/EN-v56-18031095670/Resume-DevOPS-ZH.html",
+ "type": "file",
+ "size": 8949,
+ "lastModified": "2025-09-26T07:32:51Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.pdf",
+ "href": "/docs/Personal/EN-v56-18031095670/Resume-DevOPS-ZH.pdf",
+ "type": "file",
+ "size": 138290,
+ "lastModified": "2025-09-26T07:32:34Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.html",
+ "href": "/docs/Personal/EN-v56-18031095670/Resume-DevOps-EN.html",
+ "type": "file",
+ "size": 9670,
+ "lastModified": "2025-09-26T07:32:51Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.pdf",
+ "href": "/docs/Personal/EN-v56-18031095670/Resume-DevOps-EN.pdf",
+ "type": "file",
+ "size": 50986,
+ "lastModified": "2025-09-26T07:32:37Z"
+ },
+ {
+ "name": "Resume-EN.html",
+ "href": "/docs/Personal/EN-v56-18031095670/Resume-EN.html",
+ "type": "file",
+ "size": 10706,
+ "lastModified": "2025-09-26T07:32:51Z"
+ },
+ {
+ "name": "Resume-EN.pdf",
+ "href": "/docs/Personal/EN-v56-18031095670/Resume-EN.pdf",
+ "type": "file",
+ "size": 57383,
+ "lastModified": "2025-09-26T07:32:39Z"
+ },
+ {
+ "name": "Resume-ZH.html",
+ "href": "/docs/Personal/EN-v56-18031095670/Resume-ZH.html",
+ "type": "file",
+ "size": 17297,
+ "lastModified": "2025-09-26T07:32:51Z"
+ },
+ {
+ "name": "Resume-ZH.pdf",
+ "href": "/docs/Personal/EN-v56-18031095670/Resume-ZH.pdf",
+ "type": "file",
+ "size": 179976,
+ "lastModified": "2025-09-26T07:32:41Z"
+ },
+ {
+ "name": "cet-6.html",
+ "href": "/docs/Personal/EN-v56-18031095670/cet-6.html",
+ "type": "file",
+ "size": 448346,
+ "lastModified": "2025-09-26T07:32:52Z"
+ },
+ {
+ "name": "cet-6.pdf",
+ "href": "/docs/Personal/EN-v56-18031095670/cet-6.pdf",
+ "type": "file",
+ "size": 1192645,
+ "lastModified": "2025-09-26T07:32:47Z"
+ },
+ {
+ "name": "fullstack-language-core.html",
+ "href": "/docs/Personal/EN-v56-18031095670/fullstack-language-core.html",
+ "type": "file",
+ "size": 11943,
+ "lastModified": "2025-09-26T07:32:52Z"
+ },
+ {
+ "name": "fullstack-language-core.pdf",
+ "href": "/docs/Personal/EN-v56-18031095670/fullstack-language-core.pdf",
+ "type": "file",
+ "size": 70429,
+ "lastModified": "2025-09-26T07:32:49Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Personal/EN-v57-18060203518/",
+ "entries": [
+ {
+ "name": "ActiveBalance-Plan.html",
+ "href": "/docs/Personal/EN-v57-18060203518/ActiveBalance-Plan.html",
+ "type": "file",
+ "size": 5461,
+ "lastModified": "2025-09-27T13:11:37Z"
+ },
+ {
+ "name": "ActiveBalance-Plan.pdf",
+ "href": "/docs/Personal/EN-v57-18060203518/ActiveBalance-Plan.pdf",
+ "type": "file",
+ "size": 76343,
+ "lastModified": "2025-09-27T13:11:08Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.html",
+ "href": "/docs/Personal/EN-v57-18060203518/CV-AI-Dev-EN.html",
+ "type": "file",
+ "size": 10218,
+ "lastModified": "2025-09-27T13:11:38Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.pdf",
+ "href": "/docs/Personal/EN-v57-18060203518/CV-AI-Dev-EN.pdf",
+ "type": "file",
+ "size": 51823,
+ "lastModified": "2025-09-27T13:11:10Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.html",
+ "href": "/docs/Personal/EN-v57-18060203518/CV-AI-Dev-ZH.html",
+ "type": "file",
+ "size": 20180,
+ "lastModified": "2025-09-27T13:11:38Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.pdf",
+ "href": "/docs/Personal/EN-v57-18060203518/CV-AI-Dev-ZH.pdf",
+ "type": "file",
+ "size": 199121,
+ "lastModified": "2025-09-27T13:11:12Z"
+ },
+ {
+ "name": "CV-EN.html",
+ "href": "/docs/Personal/EN-v57-18060203518/CV-EN.html",
+ "type": "file",
+ "size": 23062,
+ "lastModified": "2025-09-27T13:11:38Z"
+ },
+ {
+ "name": "CV-EN.pdf",
+ "href": "/docs/Personal/EN-v57-18060203518/CV-EN.pdf",
+ "type": "file",
+ "size": 63735,
+ "lastModified": "2025-09-27T13:11:15Z"
+ },
+ {
+ "name": "CV-ZH.html",
+ "href": "/docs/Personal/EN-v57-18060203518/CV-ZH.html",
+ "type": "file",
+ "size": 20238,
+ "lastModified": "2025-09-27T13:11:38Z"
+ },
+ {
+ "name": "CV-ZH.pdf",
+ "href": "/docs/Personal/EN-v57-18060203518/CV-ZH.pdf",
+ "type": "file",
+ "size": 170872,
+ "lastModified": "2025-09-27T13:11:17Z"
+ },
+ {
+ "name": "README.html",
+ "href": "/docs/Personal/EN-v57-18060203518/README.html",
+ "type": "file",
+ "size": 3295,
+ "lastModified": "2025-09-27T13:11:38Z"
+ },
+ {
+ "name": "README.pdf",
+ "href": "/docs/Personal/EN-v57-18060203518/README.pdf",
+ "type": "file",
+ "size": 52032,
+ "lastModified": "2025-09-27T13:11:19Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.html",
+ "href": "/docs/Personal/EN-v57-18060203518/Resume-DevOPS-ZH.html",
+ "type": "file",
+ "size": 8949,
+ "lastModified": "2025-09-27T13:11:38Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.pdf",
+ "href": "/docs/Personal/EN-v57-18060203518/Resume-DevOPS-ZH.pdf",
+ "type": "file",
+ "size": 138285,
+ "lastModified": "2025-09-27T13:11:21Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.html",
+ "href": "/docs/Personal/EN-v57-18060203518/Resume-DevOps-EN.html",
+ "type": "file",
+ "size": 9670,
+ "lastModified": "2025-09-27T13:11:38Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.pdf",
+ "href": "/docs/Personal/EN-v57-18060203518/Resume-DevOps-EN.pdf",
+ "type": "file",
+ "size": 50980,
+ "lastModified": "2025-09-27T13:11:24Z"
+ },
+ {
+ "name": "Resume-EN.html",
+ "href": "/docs/Personal/EN-v57-18060203518/Resume-EN.html",
+ "type": "file",
+ "size": 10706,
+ "lastModified": "2025-09-27T13:11:38Z"
+ },
+ {
+ "name": "Resume-EN.pdf",
+ "href": "/docs/Personal/EN-v57-18060203518/Resume-EN.pdf",
+ "type": "file",
+ "size": 57380,
+ "lastModified": "2025-09-27T13:11:26Z"
+ },
+ {
+ "name": "Resume-ZH.html",
+ "href": "/docs/Personal/EN-v57-18060203518/Resume-ZH.html",
+ "type": "file",
+ "size": 17297,
+ "lastModified": "2025-09-27T13:11:38Z"
+ },
+ {
+ "name": "Resume-ZH.pdf",
+ "href": "/docs/Personal/EN-v57-18060203518/Resume-ZH.pdf",
+ "type": "file",
+ "size": 179981,
+ "lastModified": "2025-09-27T13:11:28Z"
+ },
+ {
+ "name": "cet-6.html",
+ "href": "/docs/Personal/EN-v57-18060203518/cet-6.html",
+ "type": "file",
+ "size": 448346,
+ "lastModified": "2025-09-27T13:11:38Z"
+ },
+ {
+ "name": "cet-6.pdf",
+ "href": "/docs/Personal/EN-v57-18060203518/cet-6.pdf",
+ "type": "file",
+ "size": 1192645,
+ "lastModified": "2025-09-27T13:11:34Z"
+ },
+ {
+ "name": "fullstack-language-core.html",
+ "href": "/docs/Personal/EN-v57-18060203518/fullstack-language-core.html",
+ "type": "file",
+ "size": 11943,
+ "lastModified": "2025-09-27T13:11:38Z"
+ },
+ {
+ "name": "fullstack-language-core.pdf",
+ "href": "/docs/Personal/EN-v57-18060203518/fullstack-language-core.pdf",
+ "type": "file",
+ "size": 70437,
+ "lastModified": "2025-09-27T13:11:36Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Personal/EN-v58-18068296502/",
+ "entries": [
+ {
+ "name": "ActiveBalance-Plan.html",
+ "href": "/docs/Personal/EN-v58-18068296502/ActiveBalance-Plan.html",
+ "type": "file",
+ "size": 5461,
+ "lastModified": "2025-09-28T02:52:39Z"
+ },
+ {
+ "name": "ActiveBalance-Plan.pdf",
+ "href": "/docs/Personal/EN-v58-18068296502/ActiveBalance-Plan.pdf",
+ "type": "file",
+ "size": 76345,
+ "lastModified": "2025-09-28T02:52:09Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.html",
+ "href": "/docs/Personal/EN-v58-18068296502/CV-AI-Dev-EN.html",
+ "type": "file",
+ "size": 10218,
+ "lastModified": "2025-09-28T02:52:39Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.pdf",
+ "href": "/docs/Personal/EN-v58-18068296502/CV-AI-Dev-EN.pdf",
+ "type": "file",
+ "size": 51819,
+ "lastModified": "2025-09-28T02:52:11Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.html",
+ "href": "/docs/Personal/EN-v58-18068296502/CV-AI-Dev-ZH.html",
+ "type": "file",
+ "size": 20180,
+ "lastModified": "2025-09-28T02:52:39Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.pdf",
+ "href": "/docs/Personal/EN-v58-18068296502/CV-AI-Dev-ZH.pdf",
+ "type": "file",
+ "size": 199116,
+ "lastModified": "2025-09-28T02:52:14Z"
+ },
+ {
+ "name": "CV-EN.html",
+ "href": "/docs/Personal/EN-v58-18068296502/CV-EN.html",
+ "type": "file",
+ "size": 23062,
+ "lastModified": "2025-09-28T02:52:39Z"
+ },
+ {
+ "name": "CV-EN.pdf",
+ "href": "/docs/Personal/EN-v58-18068296502/CV-EN.pdf",
+ "type": "file",
+ "size": 63735,
+ "lastModified": "2025-09-28T02:52:16Z"
+ },
+ {
+ "name": "CV-ZH.html",
+ "href": "/docs/Personal/EN-v58-18068296502/CV-ZH.html",
+ "type": "file",
+ "size": 20238,
+ "lastModified": "2025-09-28T02:52:39Z"
+ },
+ {
+ "name": "CV-ZH.pdf",
+ "href": "/docs/Personal/EN-v58-18068296502/CV-ZH.pdf",
+ "type": "file",
+ "size": 170865,
+ "lastModified": "2025-09-28T02:52:18Z"
+ },
+ {
+ "name": "README.html",
+ "href": "/docs/Personal/EN-v58-18068296502/README.html",
+ "type": "file",
+ "size": 3295,
+ "lastModified": "2025-09-28T02:52:39Z"
+ },
+ {
+ "name": "README.pdf",
+ "href": "/docs/Personal/EN-v58-18068296502/README.pdf",
+ "type": "file",
+ "size": 52032,
+ "lastModified": "2025-09-28T02:52:21Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.html",
+ "href": "/docs/Personal/EN-v58-18068296502/Resume-DevOPS-ZH.html",
+ "type": "file",
+ "size": 8949,
+ "lastModified": "2025-09-28T02:52:39Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.pdf",
+ "href": "/docs/Personal/EN-v58-18068296502/Resume-DevOPS-ZH.pdf",
+ "type": "file",
+ "size": 138286,
+ "lastModified": "2025-09-28T02:52:23Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.html",
+ "href": "/docs/Personal/EN-v58-18068296502/Resume-DevOps-EN.html",
+ "type": "file",
+ "size": 9670,
+ "lastModified": "2025-09-28T02:52:39Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.pdf",
+ "href": "/docs/Personal/EN-v58-18068296502/Resume-DevOps-EN.pdf",
+ "type": "file",
+ "size": 50986,
+ "lastModified": "2025-09-28T02:52:25Z"
+ },
+ {
+ "name": "Resume-EN.html",
+ "href": "/docs/Personal/EN-v58-18068296502/Resume-EN.html",
+ "type": "file",
+ "size": 10706,
+ "lastModified": "2025-09-28T02:52:40Z"
+ },
+ {
+ "name": "Resume-EN.pdf",
+ "href": "/docs/Personal/EN-v58-18068296502/Resume-EN.pdf",
+ "type": "file",
+ "size": 57384,
+ "lastModified": "2025-09-28T02:52:27Z"
+ },
+ {
+ "name": "Resume-ZH.html",
+ "href": "/docs/Personal/EN-v58-18068296502/Resume-ZH.html",
+ "type": "file",
+ "size": 17297,
+ "lastModified": "2025-09-28T02:52:40Z"
+ },
+ {
+ "name": "Resume-ZH.pdf",
+ "href": "/docs/Personal/EN-v58-18068296502/Resume-ZH.pdf",
+ "type": "file",
+ "size": 179976,
+ "lastModified": "2025-09-28T02:52:30Z"
+ },
+ {
+ "name": "cet-6.html",
+ "href": "/docs/Personal/EN-v58-18068296502/cet-6.html",
+ "type": "file",
+ "size": 448346,
+ "lastModified": "2025-09-28T02:52:40Z"
+ },
+ {
+ "name": "cet-6.pdf",
+ "href": "/docs/Personal/EN-v58-18068296502/cet-6.pdf",
+ "type": "file",
+ "size": 1192646,
+ "lastModified": "2025-09-28T02:52:35Z"
+ },
+ {
+ "name": "fullstack-language-core.html",
+ "href": "/docs/Personal/EN-v58-18068296502/fullstack-language-core.html",
+ "type": "file",
+ "size": 11943,
+ "lastModified": "2025-09-28T02:52:40Z"
+ },
+ {
+ "name": "fullstack-language-core.pdf",
+ "href": "/docs/Personal/EN-v58-18068296502/fullstack-language-core.pdf",
+ "type": "file",
+ "size": 70425,
+ "lastModified": "2025-09-28T02:52:38Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Personal/EN-v59-18075708801/",
+ "entries": [
+ {
+ "name": "ActiveBalance-Plan.html",
+ "href": "/docs/Personal/EN-v59-18075708801/ActiveBalance-Plan.html",
+ "type": "file",
+ "size": 5461,
+ "lastModified": "2025-09-28T14:39:29Z"
+ },
+ {
+ "name": "ActiveBalance-Plan.pdf",
+ "href": "/docs/Personal/EN-v59-18075708801/ActiveBalance-Plan.pdf",
+ "type": "file",
+ "size": 76343,
+ "lastModified": "2025-09-28T14:39:00Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.html",
+ "href": "/docs/Personal/EN-v59-18075708801/CV-AI-Dev-EN.html",
+ "type": "file",
+ "size": 10218,
+ "lastModified": "2025-09-28T14:39:29Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.pdf",
+ "href": "/docs/Personal/EN-v59-18075708801/CV-AI-Dev-EN.pdf",
+ "type": "file",
+ "size": 51822,
+ "lastModified": "2025-09-28T14:39:02Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.html",
+ "href": "/docs/Personal/EN-v59-18075708801/CV-AI-Dev-ZH.html",
+ "type": "file",
+ "size": 20180,
+ "lastModified": "2025-09-28T14:39:29Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.pdf",
+ "href": "/docs/Personal/EN-v59-18075708801/CV-AI-Dev-ZH.pdf",
+ "type": "file",
+ "size": 199120,
+ "lastModified": "2025-09-28T14:39:04Z"
+ },
+ {
+ "name": "CV-EN.html",
+ "href": "/docs/Personal/EN-v59-18075708801/CV-EN.html",
+ "type": "file",
+ "size": 23062,
+ "lastModified": "2025-09-28T14:39:30Z"
+ },
+ {
+ "name": "CV-EN.pdf",
+ "href": "/docs/Personal/EN-v59-18075708801/CV-EN.pdf",
+ "type": "file",
+ "size": 63726,
+ "lastModified": "2025-09-28T14:39:07Z"
+ },
+ {
+ "name": "CV-ZH.html",
+ "href": "/docs/Personal/EN-v59-18075708801/CV-ZH.html",
+ "type": "file",
+ "size": 20238,
+ "lastModified": "2025-09-28T14:39:30Z"
+ },
+ {
+ "name": "CV-ZH.pdf",
+ "href": "/docs/Personal/EN-v59-18075708801/CV-ZH.pdf",
+ "type": "file",
+ "size": 170869,
+ "lastModified": "2025-09-28T14:39:09Z"
+ },
+ {
+ "name": "README.html",
+ "href": "/docs/Personal/EN-v59-18075708801/README.html",
+ "type": "file",
+ "size": 3295,
+ "lastModified": "2025-09-28T14:39:30Z"
+ },
+ {
+ "name": "README.pdf",
+ "href": "/docs/Personal/EN-v59-18075708801/README.pdf",
+ "type": "file",
+ "size": 52028,
+ "lastModified": "2025-09-28T14:39:11Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.html",
+ "href": "/docs/Personal/EN-v59-18075708801/Resume-DevOPS-ZH.html",
+ "type": "file",
+ "size": 8949,
+ "lastModified": "2025-09-28T14:39:30Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.pdf",
+ "href": "/docs/Personal/EN-v59-18075708801/Resume-DevOPS-ZH.pdf",
+ "type": "file",
+ "size": 138283,
+ "lastModified": "2025-09-28T14:39:13Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.html",
+ "href": "/docs/Personal/EN-v59-18075708801/Resume-DevOps-EN.html",
+ "type": "file",
+ "size": 9670,
+ "lastModified": "2025-09-28T14:39:30Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.pdf",
+ "href": "/docs/Personal/EN-v59-18075708801/Resume-DevOps-EN.pdf",
+ "type": "file",
+ "size": 50983,
+ "lastModified": "2025-09-28T14:39:16Z"
+ },
+ {
+ "name": "Resume-EN.html",
+ "href": "/docs/Personal/EN-v59-18075708801/Resume-EN.html",
+ "type": "file",
+ "size": 10706,
+ "lastModified": "2025-09-28T14:39:30Z"
+ },
+ {
+ "name": "Resume-EN.pdf",
+ "href": "/docs/Personal/EN-v59-18075708801/Resume-EN.pdf",
+ "type": "file",
+ "size": 57383,
+ "lastModified": "2025-09-28T14:39:18Z"
+ },
+ {
+ "name": "Resume-ZH.html",
+ "href": "/docs/Personal/EN-v59-18075708801/Resume-ZH.html",
+ "type": "file",
+ "size": 17297,
+ "lastModified": "2025-09-28T14:39:30Z"
+ },
+ {
+ "name": "Resume-ZH.pdf",
+ "href": "/docs/Personal/EN-v59-18075708801/Resume-ZH.pdf",
+ "type": "file",
+ "size": 179977,
+ "lastModified": "2025-09-28T14:39:20Z"
+ },
+ {
+ "name": "cet-6.html",
+ "href": "/docs/Personal/EN-v59-18075708801/cet-6.html",
+ "type": "file",
+ "size": 448346,
+ "lastModified": "2025-09-28T14:39:30Z"
+ },
+ {
+ "name": "cet-6.pdf",
+ "href": "/docs/Personal/EN-v59-18075708801/cet-6.pdf",
+ "type": "file",
+ "size": 1192646,
+ "lastModified": "2025-09-28T14:39:26Z"
+ },
+ {
+ "name": "fullstack-language-core.html",
+ "href": "/docs/Personal/EN-v59-18075708801/fullstack-language-core.html",
+ "type": "file",
+ "size": 11943,
+ "lastModified": "2025-09-28T14:39:30Z"
+ },
+ {
+ "name": "fullstack-language-core.pdf",
+ "href": "/docs/Personal/EN-v59-18075708801/fullstack-language-core.pdf",
+ "type": "file",
+ "size": 70429,
+ "lastModified": "2025-09-28T14:39:28Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/Personal/EN-v60-18083886120/",
+ "entries": [
+ {
+ "name": "ActiveBalance-Plan.html",
+ "href": "/docs/Personal/EN-v60-18083886120/ActiveBalance-Plan.html",
+ "type": "file",
+ "size": 5461,
+ "lastModified": "2025-09-29T02:33:40Z"
+ },
+ {
+ "name": "ActiveBalance-Plan.pdf",
+ "href": "/docs/Personal/EN-v60-18083886120/ActiveBalance-Plan.pdf",
+ "type": "file",
+ "size": 76349,
+ "lastModified": "2025-09-29T02:33:10Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.html",
+ "href": "/docs/Personal/EN-v60-18083886120/CV-AI-Dev-EN.html",
+ "type": "file",
+ "size": 10218,
+ "lastModified": "2025-09-29T02:33:40Z"
+ },
+ {
+ "name": "CV-AI-Dev-EN.pdf",
+ "href": "/docs/Personal/EN-v60-18083886120/CV-AI-Dev-EN.pdf",
+ "type": "file",
+ "size": 51820,
+ "lastModified": "2025-09-29T02:33:12Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.html",
+ "href": "/docs/Personal/EN-v60-18083886120/CV-AI-Dev-ZH.html",
+ "type": "file",
+ "size": 20180,
+ "lastModified": "2025-09-29T02:33:40Z"
+ },
+ {
+ "name": "CV-AI-Dev-ZH.pdf",
+ "href": "/docs/Personal/EN-v60-18083886120/CV-AI-Dev-ZH.pdf",
+ "type": "file",
+ "size": 199125,
+ "lastModified": "2025-09-29T02:33:15Z"
+ },
+ {
+ "name": "CV-EN.html",
+ "href": "/docs/Personal/EN-v60-18083886120/CV-EN.html",
+ "type": "file",
+ "size": 23062,
+ "lastModified": "2025-09-29T02:33:40Z"
+ },
+ {
+ "name": "CV-EN.pdf",
+ "href": "/docs/Personal/EN-v60-18083886120/CV-EN.pdf",
+ "type": "file",
+ "size": 63734,
+ "lastModified": "2025-09-29T02:33:17Z"
+ },
+ {
+ "name": "CV-ZH.html",
+ "href": "/docs/Personal/EN-v60-18083886120/CV-ZH.html",
+ "type": "file",
+ "size": 20238,
+ "lastModified": "2025-09-29T02:33:40Z"
+ },
+ {
+ "name": "CV-ZH.pdf",
+ "href": "/docs/Personal/EN-v60-18083886120/CV-ZH.pdf",
+ "type": "file",
+ "size": 170862,
+ "lastModified": "2025-09-29T02:33:19Z"
+ },
+ {
+ "name": "README.html",
+ "href": "/docs/Personal/EN-v60-18083886120/README.html",
+ "type": "file",
+ "size": 3295,
+ "lastModified": "2025-09-29T02:33:40Z"
+ },
+ {
+ "name": "README.pdf",
+ "href": "/docs/Personal/EN-v60-18083886120/README.pdf",
+ "type": "file",
+ "size": 52032,
+ "lastModified": "2025-09-29T02:33:22Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.html",
+ "href": "/docs/Personal/EN-v60-18083886120/Resume-DevOPS-ZH.html",
+ "type": "file",
+ "size": 8949,
+ "lastModified": "2025-09-29T02:33:40Z"
+ },
+ {
+ "name": "Resume-DevOPS-ZH.pdf",
+ "href": "/docs/Personal/EN-v60-18083886120/Resume-DevOPS-ZH.pdf",
+ "type": "file",
+ "size": 138285,
+ "lastModified": "2025-09-29T02:33:24Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.html",
+ "href": "/docs/Personal/EN-v60-18083886120/Resume-DevOps-EN.html",
+ "type": "file",
+ "size": 9670,
+ "lastModified": "2025-09-29T02:33:40Z"
+ },
+ {
+ "name": "Resume-DevOps-EN.pdf",
+ "href": "/docs/Personal/EN-v60-18083886120/Resume-DevOps-EN.pdf",
+ "type": "file",
+ "size": 50982,
+ "lastModified": "2025-09-29T02:33:26Z"
+ },
+ {
+ "name": "Resume-EN.html",
+ "href": "/docs/Personal/EN-v60-18083886120/Resume-EN.html",
+ "type": "file",
+ "size": 10706,
+ "lastModified": "2025-09-29T02:33:40Z"
+ },
+ {
+ "name": "Resume-EN.pdf",
+ "href": "/docs/Personal/EN-v60-18083886120/Resume-EN.pdf",
+ "type": "file",
+ "size": 57381,
+ "lastModified": "2025-09-29T02:33:28Z"
+ },
+ {
+ "name": "Resume-ZH.html",
+ "href": "/docs/Personal/EN-v60-18083886120/Resume-ZH.html",
+ "type": "file",
+ "size": 17297,
+ "lastModified": "2025-09-29T02:33:40Z"
+ },
+ {
+ "name": "Resume-ZH.pdf",
+ "href": "/docs/Personal/EN-v60-18083886120/Resume-ZH.pdf",
+ "type": "file",
+ "size": 179974,
+ "lastModified": "2025-09-29T02:33:31Z"
+ },
+ {
+ "name": "cet-6.html",
+ "href": "/docs/Personal/EN-v60-18083886120/cet-6.html",
+ "type": "file",
+ "size": 448346,
+ "lastModified": "2025-09-29T02:33:41Z"
+ },
+ {
+ "name": "cet-6.pdf",
+ "href": "/docs/Personal/EN-v60-18083886120/cet-6.pdf",
+ "type": "file",
+ "size": 1192646,
+ "lastModified": "2025-09-29T02:33:36Z"
+ },
+ {
+ "name": "fullstack-language-core.html",
+ "href": "/docs/Personal/EN-v60-18083886120/fullstack-language-core.html",
+ "type": "file",
+ "size": 11943,
+ "lastModified": "2025-09-29T02:33:41Z"
+ },
+ {
+ "name": "fullstack-language-core.pdf",
+ "href": "/docs/Personal/EN-v60-18083886120/fullstack-language-core.pdf",
+ "type": "file",
+ "size": 70426,
+ "lastModified": "2025-09-29T02:33:38Z"
+ }
+ ]
},
{
"path": "docs/TechExploration/",
@@ -26607,49 +30811,133 @@
"name": "EN-v33-17996525102/",
"href": "/docs/TechExploration/EN-v33-17996525102/",
"type": "dir",
- "lastModified": "2025-09-25T11:55:22Z"
+ "lastModified": "2025-09-25T04:07:51Z"
},
{
"name": "EN-v34-18001960544/",
"href": "/docs/TechExploration/EN-v34-18001960544/",
"type": "dir",
- "lastModified": "2025-09-25T11:59:06Z"
+ "lastModified": "2025-09-25T08:45:41Z"
},
{
"name": "EN-v36-18002294267/",
"href": "/docs/TechExploration/EN-v36-18002294267/",
"type": "dir",
- "lastModified": "2025-09-25T12:04:23Z"
+ "lastModified": "2025-09-25T08:59:21Z"
},
{
"name": "EN-v37-18002553627/",
"href": "/docs/TechExploration/EN-v37-18002553627/",
"type": "dir",
- "lastModified": "2025-09-25T12:11:38Z"
+ "lastModified": "2025-09-25T09:09:29Z"
},
{
"name": "EN-v39-18004672680/",
"href": "/docs/TechExploration/EN-v39-18004672680/",
"type": "dir",
- "lastModified": "2025-09-25T12:17:16Z"
+ "lastModified": "2025-09-25T10:33:43Z"
},
{
"name": "EN-v40-18004678416/",
"href": "/docs/TechExploration/EN-v40-18004678416/",
"type": "dir",
- "lastModified": "2025-09-25T12:23:45Z"
+ "lastModified": "2025-09-25T10:34:51Z"
},
{
"name": "EN-v41-18005142964/",
"href": "/docs/TechExploration/EN-v41-18005142964/",
"type": "dir",
- "lastModified": "2025-09-25T12:33:25Z"
+ "lastModified": "2025-09-25T10:54:25Z"
},
{
"name": "EN-v42-18006148753/",
"href": "/docs/TechExploration/EN-v42-18006148753/",
"type": "dir",
- "lastModified": "2025-09-25T12:33:25Z"
+ "lastModified": "2025-09-25T11:36:16Z"
+ },
+ {
+ "name": "EN-v43-18011536494/",
+ "href": "/docs/TechExploration/EN-v43-18011536494/",
+ "type": "dir",
+ "lastModified": "2025-09-25T14:57:34Z"
+ },
+ {
+ "name": "EN-v44-18011825454/",
+ "href": "/docs/TechExploration/EN-v44-18011825454/",
+ "type": "dir",
+ "lastModified": "2025-09-25T15:06:47Z"
+ },
+ {
+ "name": "EN-v45-18011937887/",
+ "href": "/docs/TechExploration/EN-v45-18011937887/",
+ "type": "dir",
+ "lastModified": "2025-09-25T15:12:47Z"
+ },
+ {
+ "name": "EN-v46-18011951541/",
+ "href": "/docs/TechExploration/EN-v46-18011951541/",
+ "type": "dir",
+ "lastModified": "2025-09-25T15:10:37Z"
+ },
+ {
+ "name": "EN-v47-18013619427/",
+ "href": "/docs/TechExploration/EN-v47-18013619427/",
+ "type": "dir",
+ "lastModified": "2025-09-25T16:13:55Z"
+ },
+ {
+ "name": "EN-v52-18027443116/",
+ "href": "/docs/TechExploration/EN-v52-18027443116/",
+ "type": "dir",
+ "lastModified": "2025-09-26T04:03:21Z"
+ },
+ {
+ "name": "EN-v53-18027447911/",
+ "href": "/docs/TechExploration/EN-v53-18027447911/",
+ "type": "dir",
+ "lastModified": "2025-09-26T04:03:26Z"
+ },
+ {
+ "name": "EN-v54-18029756788/",
+ "href": "/docs/TechExploration/EN-v54-18029756788/",
+ "type": "dir",
+ "lastModified": "2025-09-26T06:30:40Z"
+ },
+ {
+ "name": "EN-v55-18030101682/",
+ "href": "/docs/TechExploration/EN-v55-18030101682/",
+ "type": "dir",
+ "lastModified": "2025-09-26T06:47:24Z"
+ },
+ {
+ "name": "EN-v56-18031095670/",
+ "href": "/docs/TechExploration/EN-v56-18031095670/",
+ "type": "dir",
+ "lastModified": "2025-09-26T07:32:51Z"
+ },
+ {
+ "name": "EN-v57-18060203518/",
+ "href": "/docs/TechExploration/EN-v57-18060203518/",
+ "type": "dir",
+ "lastModified": "2025-09-27T13:12:46Z"
+ },
+ {
+ "name": "EN-v58-18068296502/",
+ "href": "/docs/TechExploration/EN-v58-18068296502/",
+ "type": "dir",
+ "lastModified": "2025-09-28T02:52:29Z"
+ },
+ {
+ "name": "EN-v59-18075708801/",
+ "href": "/docs/TechExploration/EN-v59-18075708801/",
+ "type": "dir",
+ "lastModified": "2025-09-28T14:38:48Z"
+ },
+ {
+ "name": "EN-v60-18083886120/",
+ "href": "/docs/TechExploration/EN-v60-18083886120/",
+ "type": "dir",
+ "lastModified": "2025-09-29T02:33:12Z"
}
]
},
@@ -26661,14 +30949,14 @@
"href": "/docs/TechExploration/EN-v33-17996525102/Tech-Exploration.html",
"type": "file",
"size": 555161,
- "lastModified": "2025-09-25T11:55:22Z"
+ "lastModified": "2025-09-25T04:07:43Z"
},
{
"name": "Tech-Exploration.pdf",
"href": "/docs/TechExploration/EN-v33-17996525102/Tech-Exploration.pdf",
"type": "file",
"size": 899470,
- "lastModified": "2025-09-25T11:55:22Z"
+ "lastModified": "2025-09-25T04:07:41Z"
}
]
},
@@ -26680,14 +30968,14 @@
"href": "/docs/TechExploration/EN-v34-18001960544/Tech-Exploration.html",
"type": "file",
"size": 555161,
- "lastModified": "2025-09-25T11:57:06Z"
+ "lastModified": "2025-09-25T08:45:31Z"
},
{
"name": "Tech-Exploration.pdf",
"href": "/docs/TechExploration/EN-v34-18001960544/Tech-Exploration.pdf",
"type": "file",
"size": 899473,
- "lastModified": "2025-09-25T11:59:06Z"
+ "lastModified": "2025-09-25T08:45:29Z"
}
]
},
@@ -26699,14 +30987,14 @@
"href": "/docs/TechExploration/EN-v36-18002294267/Tech-Exploration.html",
"type": "file",
"size": 555161,
- "lastModified": "2025-09-25T12:01:22Z"
+ "lastModified": "2025-09-25T08:59:12Z"
},
{
"name": "Tech-Exploration.pdf",
"href": "/docs/TechExploration/EN-v36-18002294267/Tech-Exploration.pdf",
"type": "file",
"size": 899478,
- "lastModified": "2025-09-25T12:04:23Z"
+ "lastModified": "2025-09-25T08:59:10Z"
}
]
},
@@ -26718,14 +31006,14 @@
"href": "/docs/TechExploration/EN-v37-18002553627/Tech-Exploration.html",
"type": "file",
"size": 555161,
- "lastModified": "2025-09-25T12:06:52Z"
+ "lastModified": "2025-09-25T09:09:20Z"
},
{
"name": "Tech-Exploration.pdf",
"href": "/docs/TechExploration/EN-v37-18002553627/Tech-Exploration.pdf",
"type": "file",
"size": 899481,
- "lastModified": "2025-09-25T12:11:38Z"
+ "lastModified": "2025-09-25T09:09:18Z"
}
]
},
@@ -26737,14 +31025,14 @@
"href": "/docs/TechExploration/EN-v39-18004672680/Tech-Exploration.html",
"type": "file",
"size": 555161,
- "lastModified": "2025-09-25T12:14:26Z"
+ "lastModified": "2025-09-25T10:33:34Z"
},
{
"name": "Tech-Exploration.pdf",
"href": "/docs/TechExploration/EN-v39-18004672680/Tech-Exploration.pdf",
"type": "file",
"size": 899478,
- "lastModified": "2025-09-25T12:17:16Z"
+ "lastModified": "2025-09-25T10:33:32Z"
}
]
},
@@ -26756,24 +31044,320 @@
"href": "/docs/TechExploration/EN-v40-18004678416/Tech-Exploration.html",
"type": "file",
"size": 555161,
- "lastModified": "2025-09-25T12:19:13Z"
+ "lastModified": "2025-09-25T10:34:42Z"
},
{
"name": "Tech-Exploration.pdf",
"href": "/docs/TechExploration/EN-v40-18004678416/Tech-Exploration.pdf",
"type": "file",
"size": 899475,
- "lastModified": "2025-09-25T12:23:45Z"
+ "lastModified": "2025-09-25T10:34:40Z"
}
]
},
{
"path": "docs/TechExploration/EN-v41-18005142964/",
- "entries": []
+ "entries": [
+ {
+ "name": "Tech-Exploration.html",
+ "href": "/docs/TechExploration/EN-v41-18005142964/Tech-Exploration.html",
+ "type": "file",
+ "size": 555161,
+ "lastModified": "2025-09-25T10:54:16Z"
+ },
+ {
+ "name": "Tech-Exploration.pdf",
+ "href": "/docs/TechExploration/EN-v41-18005142964/Tech-Exploration.pdf",
+ "type": "file",
+ "size": 899481,
+ "lastModified": "2025-09-25T10:54:15Z"
+ }
+ ]
},
{
"path": "docs/TechExploration/EN-v42-18006148753/",
- "entries": []
+ "entries": [
+ {
+ "name": "Tech-Exploration.html",
+ "href": "/docs/TechExploration/EN-v42-18006148753/Tech-Exploration.html",
+ "type": "file",
+ "size": 555161,
+ "lastModified": "2025-09-25T11:36:08Z"
+ },
+ {
+ "name": "Tech-Exploration.pdf",
+ "href": "/docs/TechExploration/EN-v42-18006148753/Tech-Exploration.pdf",
+ "type": "file",
+ "size": 899479,
+ "lastModified": "2025-09-25T11:36:06Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/TechExploration/EN-v43-18011536494/",
+ "entries": [
+ {
+ "name": "Tech-Exploration.html",
+ "href": "/docs/TechExploration/EN-v43-18011536494/Tech-Exploration.html",
+ "type": "file",
+ "size": 555161,
+ "lastModified": "2025-09-25T14:57:25Z"
+ },
+ {
+ "name": "Tech-Exploration.pdf",
+ "href": "/docs/TechExploration/EN-v43-18011536494/Tech-Exploration.pdf",
+ "type": "file",
+ "size": 899478,
+ "lastModified": "2025-09-25T14:57:23Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/TechExploration/EN-v44-18011825454/",
+ "entries": [
+ {
+ "name": "Tech-Exploration.html",
+ "href": "/docs/TechExploration/EN-v44-18011825454/Tech-Exploration.html",
+ "type": "file",
+ "size": 555161,
+ "lastModified": "2025-09-25T15:06:38Z"
+ },
+ {
+ "name": "Tech-Exploration.pdf",
+ "href": "/docs/TechExploration/EN-v44-18011825454/Tech-Exploration.pdf",
+ "type": "file",
+ "size": 899480,
+ "lastModified": "2025-09-25T15:06:36Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/TechExploration/EN-v45-18011937887/",
+ "entries": [
+ {
+ "name": "Tech-Exploration.html",
+ "href": "/docs/TechExploration/EN-v45-18011937887/Tech-Exploration.html",
+ "type": "file",
+ "size": 555161,
+ "lastModified": "2025-09-25T15:12:37Z"
+ },
+ {
+ "name": "Tech-Exploration.pdf",
+ "href": "/docs/TechExploration/EN-v45-18011937887/Tech-Exploration.pdf",
+ "type": "file",
+ "size": 899477,
+ "lastModified": "2025-09-25T15:12:36Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/TechExploration/EN-v46-18011951541/",
+ "entries": [
+ {
+ "name": "Tech-Exploration.html",
+ "href": "/docs/TechExploration/EN-v46-18011951541/Tech-Exploration.html",
+ "type": "file",
+ "size": 555161,
+ "lastModified": "2025-09-25T15:10:28Z"
+ },
+ {
+ "name": "Tech-Exploration.pdf",
+ "href": "/docs/TechExploration/EN-v46-18011951541/Tech-Exploration.pdf",
+ "type": "file",
+ "size": 899473,
+ "lastModified": "2025-09-25T15:10:26Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/TechExploration/EN-v47-18013619427/",
+ "entries": [
+ {
+ "name": "Tech-Exploration.html",
+ "href": "/docs/TechExploration/EN-v47-18013619427/Tech-Exploration.html",
+ "type": "file",
+ "size": 555161,
+ "lastModified": "2025-09-25T16:13:46Z"
+ },
+ {
+ "name": "Tech-Exploration.pdf",
+ "href": "/docs/TechExploration/EN-v47-18013619427/Tech-Exploration.pdf",
+ "type": "file",
+ "size": 899477,
+ "lastModified": "2025-09-25T16:13:45Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/TechExploration/EN-v52-18027443116/",
+ "entries": [
+ {
+ "name": "Tech-Exploration.html",
+ "href": "/docs/TechExploration/EN-v52-18027443116/Tech-Exploration.html",
+ "type": "file",
+ "size": 555161,
+ "lastModified": "2025-09-26T04:03:12Z"
+ },
+ {
+ "name": "Tech-Exploration.pdf",
+ "href": "/docs/TechExploration/EN-v52-18027443116/Tech-Exploration.pdf",
+ "type": "file",
+ "size": 899474,
+ "lastModified": "2025-09-26T04:03:10Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/TechExploration/EN-v53-18027447911/",
+ "entries": [
+ {
+ "name": "Tech-Exploration.html",
+ "href": "/docs/TechExploration/EN-v53-18027447911/Tech-Exploration.html",
+ "type": "file",
+ "size": 555161,
+ "lastModified": "2025-09-26T04:03:17Z"
+ },
+ {
+ "name": "Tech-Exploration.pdf",
+ "href": "/docs/TechExploration/EN-v53-18027447911/Tech-Exploration.pdf",
+ "type": "file",
+ "size": 899471,
+ "lastModified": "2025-09-26T04:03:15Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/TechExploration/EN-v54-18029756788/",
+ "entries": [
+ {
+ "name": "Tech-Exploration.html",
+ "href": "/docs/TechExploration/EN-v54-18029756788/Tech-Exploration.html",
+ "type": "file",
+ "size": 555161,
+ "lastModified": "2025-09-26T06:30:31Z"
+ },
+ {
+ "name": "Tech-Exploration.pdf",
+ "href": "/docs/TechExploration/EN-v54-18029756788/Tech-Exploration.pdf",
+ "type": "file",
+ "size": 899474,
+ "lastModified": "2025-09-26T06:30:29Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/TechExploration/EN-v55-18030101682/",
+ "entries": [
+ {
+ "name": "Tech-Exploration.html",
+ "href": "/docs/TechExploration/EN-v55-18030101682/Tech-Exploration.html",
+ "type": "file",
+ "size": 555161,
+ "lastModified": "2025-09-26T06:47:15Z"
+ },
+ {
+ "name": "Tech-Exploration.pdf",
+ "href": "/docs/TechExploration/EN-v55-18030101682/Tech-Exploration.pdf",
+ "type": "file",
+ "size": 899475,
+ "lastModified": "2025-09-26T06:47:13Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/TechExploration/EN-v56-18031095670/",
+ "entries": [
+ {
+ "name": "Tech-Exploration.html",
+ "href": "/docs/TechExploration/EN-v56-18031095670/Tech-Exploration.html",
+ "type": "file",
+ "size": 555161,
+ "lastModified": "2025-09-26T07:32:41Z"
+ },
+ {
+ "name": "Tech-Exploration.pdf",
+ "href": "/docs/TechExploration/EN-v56-18031095670/Tech-Exploration.pdf",
+ "type": "file",
+ "size": 899480,
+ "lastModified": "2025-09-26T07:32:39Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/TechExploration/EN-v57-18060203518/",
+ "entries": [
+ {
+ "name": "Tech-Exploration.html",
+ "href": "/docs/TechExploration/EN-v57-18060203518/Tech-Exploration.html",
+ "type": "file",
+ "size": 555161,
+ "lastModified": "2025-09-27T13:12:37Z"
+ },
+ {
+ "name": "Tech-Exploration.pdf",
+ "href": "/docs/TechExploration/EN-v57-18060203518/Tech-Exploration.pdf",
+ "type": "file",
+ "size": 899477,
+ "lastModified": "2025-09-27T13:12:36Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/TechExploration/EN-v58-18068296502/",
+ "entries": [
+ {
+ "name": "Tech-Exploration.html",
+ "href": "/docs/TechExploration/EN-v58-18068296502/Tech-Exploration.html",
+ "type": "file",
+ "size": 555161,
+ "lastModified": "2025-09-28T02:52:20Z"
+ },
+ {
+ "name": "Tech-Exploration.pdf",
+ "href": "/docs/TechExploration/EN-v58-18068296502/Tech-Exploration.pdf",
+ "type": "file",
+ "size": 899471,
+ "lastModified": "2025-09-28T02:52:18Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/TechExploration/EN-v59-18075708801/",
+ "entries": [
+ {
+ "name": "Tech-Exploration.html",
+ "href": "/docs/TechExploration/EN-v59-18075708801/Tech-Exploration.html",
+ "type": "file",
+ "size": 555161,
+ "lastModified": "2025-09-28T14:38:40Z"
+ },
+ {
+ "name": "Tech-Exploration.pdf",
+ "href": "/docs/TechExploration/EN-v59-18075708801/Tech-Exploration.pdf",
+ "type": "file",
+ "size": 899480,
+ "lastModified": "2025-09-28T14:38:38Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/TechExploration/EN-v60-18083886120/",
+ "entries": [
+ {
+ "name": "Tech-Exploration.html",
+ "href": "/docs/TechExploration/EN-v60-18083886120/Tech-Exploration.html",
+ "type": "file",
+ "size": 555161,
+ "lastModified": "2025-09-29T02:33:03Z"
+ },
+ {
+ "name": "Tech-Exploration.pdf",
+ "href": "/docs/TechExploration/EN-v60-18083886120/Tech-Exploration.pdf",
+ "type": "file",
+ "size": 899478,
+ "lastModified": "2025-09-29T02:33:01Z"
+ }
+ ]
},
{
"path": "docs/The-IndieDeveloper-Fullstack-Roadmap/",
@@ -26782,97 +31366,193 @@
"name": "CN-v33-17996525102/",
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v33-17996525102/",
"type": "dir",
- "lastModified": "2025-09-25T12:23:45Z"
+ "lastModified": "2025-09-25T04:06:28Z"
},
{
"name": "CN-v34-18001960544/",
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v34-18001960544/",
"type": "dir",
- "lastModified": "2025-09-25T12:24:55Z"
+ "lastModified": "2025-09-25T08:45:41Z"
},
{
"name": "CN-v36-18002294267/",
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v36-18002294267/",
"type": "dir",
- "lastModified": "2025-09-25T12:25:51Z"
+ "lastModified": "2025-09-25T08:59:18Z"
},
{
"name": "CN-v38-18003957466/",
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v38-18003957466/",
"type": "dir",
- "lastModified": "2025-09-25T12:27:11Z"
+ "lastModified": "2025-09-25T10:06:48Z"
},
{
"name": "CN-v39-18004672680/",
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v39-18004672680/",
"type": "dir",
- "lastModified": "2025-09-25T12:27:51Z"
+ "lastModified": "2025-09-25T10:35:41Z"
},
{
"name": "CN-v40-18004678416/",
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v40-18004678416/",
"type": "dir",
- "lastModified": "2025-09-25T12:28:49Z"
+ "lastModified": "2025-09-25T10:33:56Z"
},
{
"name": "CN-v41-18005142964/",
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v41-18005142964/",
"type": "dir",
- "lastModified": "2025-09-25T12:33:26Z"
+ "lastModified": "2025-09-25T10:54:07Z"
},
{
"name": "EN-v33-17996525102/",
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v33-17996525102/",
"type": "dir",
- "lastModified": "2025-09-25T12:28:49Z"
+ "lastModified": "2025-09-25T04:06:37Z"
},
{
"name": "EN-v34-18001960544/",
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v34-18001960544/",
"type": "dir",
- "lastModified": "2025-09-25T12:28:54Z"
+ "lastModified": "2025-09-25T08:45:41Z"
},
{
"name": "EN-v36-18002294267/",
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v36-18002294267/",
"type": "dir",
- "lastModified": "2025-09-25T12:29:01Z"
+ "lastModified": "2025-09-25T09:00:48Z"
},
{
"name": "EN-v37-18002553627/",
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v37-18002553627/",
"type": "dir",
- "lastModified": "2025-09-25T12:29:03Z"
+ "lastModified": "2025-09-25T09:09:20Z"
},
{
"name": "EN-v38-18003957466/",
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v38-18003957466/",
"type": "dir",
- "lastModified": "2025-09-25T12:29:06Z"
+ "lastModified": "2025-09-25T10:06:29Z"
},
{
"name": "EN-v39-18004672680/",
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v39-18004672680/",
"type": "dir",
- "lastModified": "2025-09-25T12:29:09Z"
+ "lastModified": "2025-09-25T10:35:37Z"
},
{
"name": "EN-v40-18004678416/",
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v40-18004678416/",
"type": "dir",
- "lastModified": "2025-09-25T12:29:13Z"
+ "lastModified": "2025-09-25T10:34:11Z"
},
{
"name": "EN-v41-18005142964/",
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v41-18005142964/",
"type": "dir",
- "lastModified": "2025-09-25T12:33:26Z"
+ "lastModified": "2025-09-25T10:55:05Z"
},
{
"name": "EN-v42-18006148753/",
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v42-18006148753/",
"type": "dir",
- "lastModified": "2025-09-25T12:33:26Z"
+ "lastModified": "2025-09-25T11:37:24Z"
+ },
+ {
+ "name": "EN-v43-18011536494/",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v43-18011536494/",
+ "type": "dir",
+ "lastModified": "2025-09-25T14:56:30Z"
+ },
+ {
+ "name": "EN-v44-18011825454/",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v44-18011825454/",
+ "type": "dir",
+ "lastModified": "2025-09-25T15:08:06Z"
+ },
+ {
+ "name": "EN-v45-18011937887/",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v45-18011937887/",
+ "type": "dir",
+ "lastModified": "2025-09-25T15:10:38Z"
+ },
+ {
+ "name": "EN-v46-18011951541/",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v46-18011951541/",
+ "type": "dir",
+ "lastModified": "2025-09-25T15:10:38Z"
+ },
+ {
+ "name": "EN-v47-18013619427/",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v47-18013619427/",
+ "type": "dir",
+ "lastModified": "2025-09-25T16:11:13Z"
+ },
+ {
+ "name": "EN-v48-18026844950/",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v48-18026844950/",
+ "type": "dir",
+ "lastModified": "2025-09-26T03:21:07Z"
+ },
+ {
+ "name": "EN-v49-18027128243/",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v49-18027128243/",
+ "type": "dir",
+ "lastModified": "2025-09-26T03:39:57Z"
+ },
+ {
+ "name": "EN-v52-18027443116/",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v52-18027443116/",
+ "type": "dir",
+ "lastModified": "2025-09-26T04:04:36Z"
+ },
+ {
+ "name": "EN-v53-18027447911/",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v53-18027447911/",
+ "type": "dir",
+ "lastModified": "2025-09-26T04:03:06Z"
+ },
+ {
+ "name": "EN-v54-18029756788/",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v54-18029756788/",
+ "type": "dir",
+ "lastModified": "2025-09-26T06:28:32Z"
+ },
+ {
+ "name": "EN-v55-18030101682/",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v55-18030101682/",
+ "type": "dir",
+ "lastModified": "2025-09-26T06:44:59Z"
+ },
+ {
+ "name": "EN-v56-18031095670/",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v56-18031095670/",
+ "type": "dir",
+ "lastModified": "2025-09-26T07:34:09Z"
+ },
+ {
+ "name": "EN-v57-18060203518/",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v57-18060203518/",
+ "type": "dir",
+ "lastModified": "2025-09-27T13:12:14Z"
+ },
+ {
+ "name": "EN-v58-18068296502/",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v58-18068296502/",
+ "type": "dir",
+ "lastModified": "2025-09-28T02:53:44Z"
+ },
+ {
+ "name": "EN-v59-18075708801/",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v59-18075708801/",
+ "type": "dir",
+ "lastModified": "2025-09-28T14:39:03Z"
+ },
+ {
+ "name": "EN-v60-18083886120/",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v60-18083886120/",
+ "type": "dir",
+ "lastModified": "2025-09-29T02:33:29Z"
}
]
},
@@ -26884,14 +31564,14 @@
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v33-17996525102/fullstack-roadmap-cn.html",
"type": "file",
"size": 34789,
- "lastModified": "2025-09-25T12:23:45Z"
+ "lastModified": "2025-09-25T04:06:15Z"
},
{
"name": "fullstack-roadmap-cn.pdf",
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v33-17996525102/fullstack-roadmap-cn.pdf",
"type": "file",
"size": 255526,
- "lastModified": "2025-09-25T12:23:45Z"
+ "lastModified": "2025-09-25T04:06:19Z"
}
]
},
@@ -26903,14 +31583,14 @@
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v34-18001960544/fullstack-roadmap-cn.html",
"type": "file",
"size": 36128,
- "lastModified": "2025-09-25T12:23:54Z"
+ "lastModified": "2025-09-25T08:45:28Z"
},
{
"name": "fullstack-roadmap-cn.pdf",
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v34-18001960544/fullstack-roadmap-cn.pdf",
"type": "file",
"size": 259524,
- "lastModified": "2025-09-25T12:24:55Z"
+ "lastModified": "2025-09-25T08:45:32Z"
}
]
},
@@ -26922,14 +31602,14 @@
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v36-18002294267/fullstack-roadmap-cn.html",
"type": "file",
"size": 36128,
- "lastModified": "2025-09-25T12:25:02Z"
+ "lastModified": "2025-09-25T08:59:05Z"
},
{
"name": "fullstack-roadmap-cn.pdf",
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v36-18002294267/fullstack-roadmap-cn.pdf",
"type": "file",
"size": 259532,
- "lastModified": "2025-09-25T12:25:51Z"
+ "lastModified": "2025-09-25T08:59:09Z"
}
]
},
@@ -26941,14 +31621,14 @@
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v38-18003957466/fullstack-roadmap-cn.html",
"type": "file",
"size": 36128,
- "lastModified": "2025-09-25T12:25:59Z"
+ "lastModified": "2025-09-25T10:06:34Z"
},
{
"name": "fullstack-roadmap-cn.pdf",
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v38-18003957466/fullstack-roadmap-cn.pdf",
"type": "file",
"size": 259539,
- "lastModified": "2025-09-25T12:27:11Z"
+ "lastModified": "2025-09-25T10:06:38Z"
}
]
},
@@ -26960,14 +31640,14 @@
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v39-18004672680/fullstack-roadmap-cn.html",
"type": "file",
"size": 36128,
- "lastModified": "2025-09-25T12:27:14Z"
+ "lastModified": "2025-09-25T10:35:28Z"
},
{
"name": "fullstack-roadmap-cn.pdf",
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v39-18004672680/fullstack-roadmap-cn.pdf",
"type": "file",
"size": 259538,
- "lastModified": "2025-09-25T12:27:51Z"
+ "lastModified": "2025-09-25T10:35:32Z"
}
]
},
@@ -26979,20 +31659,35 @@
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v40-18004678416/fullstack-roadmap-cn.html",
"type": "file",
"size": 36128,
- "lastModified": "2025-09-25T12:27:55Z"
+ "lastModified": "2025-09-25T10:33:43Z"
},
{
"name": "fullstack-roadmap-cn.pdf",
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v40-18004678416/fullstack-roadmap-cn.pdf",
"type": "file",
"size": 259534,
- "lastModified": "2025-09-25T12:28:49Z"
+ "lastModified": "2025-09-25T10:33:47Z"
}
]
},
{
"path": "docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v41-18005142964/",
- "entries": []
+ "entries": [
+ {
+ "name": "fullstack-roadmap-cn.html",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v41-18005142964/fullstack-roadmap-cn.html",
+ "type": "file",
+ "size": 36128,
+ "lastModified": "2025-09-25T10:53:54Z"
+ },
+ {
+ "name": "fullstack-roadmap-cn.pdf",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v41-18005142964/fullstack-roadmap-cn.pdf",
+ "type": "file",
+ "size": 259528,
+ "lastModified": "2025-09-25T10:53:58Z"
+ }
+ ]
},
{
"path": "docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v33-17996525102/",
@@ -27002,14 +31697,14 @@
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v33-17996525102/fullstack-roadmap-en.html",
"type": "file",
"size": 2257,
- "lastModified": "2025-09-25T12:28:49Z"
+ "lastModified": "2025-09-25T04:06:27Z"
},
{
"name": "fullstack-roadmap-en.pdf",
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v33-17996525102/fullstack-roadmap-en.pdf",
"type": "file",
"size": 33858,
- "lastModified": "2025-09-25T12:28:49Z"
+ "lastModified": "2025-09-25T04:06:29Z"
}
]
},
@@ -27021,14 +31716,14 @@
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v34-18001960544/fullstack-roadmap-en.html",
"type": "file",
"size": 2257,
- "lastModified": "2025-09-25T12:28:49Z"
+ "lastModified": "2025-09-25T08:45:30Z"
},
{
"name": "fullstack-roadmap-en.pdf",
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v34-18001960544/fullstack-roadmap-en.pdf",
"type": "file",
"size": 33857,
- "lastModified": "2025-09-25T12:28:54Z"
+ "lastModified": "2025-09-25T08:45:32Z"
}
]
},
@@ -27040,14 +31735,14 @@
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v36-18002294267/fullstack-roadmap-en.html",
"type": "file",
"size": 2257,
- "lastModified": "2025-09-25T12:28:54Z"
+ "lastModified": "2025-09-25T09:00:37Z"
},
{
"name": "fullstack-roadmap-en.pdf",
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v36-18002294267/fullstack-roadmap-en.pdf",
"type": "file",
"size": 33857,
- "lastModified": "2025-09-25T12:29:01Z"
+ "lastModified": "2025-09-25T09:00:39Z"
}
]
},
@@ -27059,14 +31754,14 @@
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v37-18002553627/fullstack-roadmap-en.html",
"type": "file",
"size": 2257,
- "lastModified": "2025-09-25T12:29:01Z"
+ "lastModified": "2025-09-25T09:09:08Z"
},
{
"name": "fullstack-roadmap-en.pdf",
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v37-18002553627/fullstack-roadmap-en.pdf",
"type": "file",
"size": 33857,
- "lastModified": "2025-09-25T12:29:03Z"
+ "lastModified": "2025-09-25T09:09:10Z"
}
]
},
@@ -27078,14 +31773,14 @@
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v38-18003957466/fullstack-roadmap-en.html",
"type": "file",
"size": 2257,
- "lastModified": "2025-09-25T12:29:03Z"
+ "lastModified": "2025-09-25T10:06:18Z"
},
{
"name": "fullstack-roadmap-en.pdf",
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v38-18003957466/fullstack-roadmap-en.pdf",
"type": "file",
"size": 33856,
- "lastModified": "2025-09-25T12:29:06Z"
+ "lastModified": "2025-09-25T10:06:20Z"
}
]
},
@@ -27097,14 +31792,14 @@
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v39-18004672680/fullstack-roadmap-en.html",
"type": "file",
"size": 2257,
- "lastModified": "2025-09-25T12:29:06Z"
+ "lastModified": "2025-09-25T10:35:26Z"
},
{
"name": "fullstack-roadmap-en.pdf",
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v39-18004672680/fullstack-roadmap-en.pdf",
"type": "file",
"size": 33857,
- "lastModified": "2025-09-25T12:29:09Z"
+ "lastModified": "2025-09-25T10:35:27Z"
}
]
},
@@ -27116,24 +31811,358 @@
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v40-18004678416/fullstack-roadmap-en.html",
"type": "file",
"size": 2257,
- "lastModified": "2025-09-25T12:29:09Z"
+ "lastModified": "2025-09-25T10:34:01Z"
},
{
"name": "fullstack-roadmap-en.pdf",
"href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v40-18004678416/fullstack-roadmap-en.pdf",
"type": "file",
"size": 33857,
- "lastModified": "2025-09-25T12:29:13Z"
+ "lastModified": "2025-09-25T10:34:03Z"
}
]
},
{
"path": "docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v41-18005142964/",
- "entries": []
+ "entries": [
+ {
+ "name": "fullstack-roadmap-en.html",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v41-18005142964/fullstack-roadmap-en.html",
+ "type": "file",
+ "size": 2257,
+ "lastModified": "2025-09-25T10:54:54Z"
+ },
+ {
+ "name": "fullstack-roadmap-en.pdf",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v41-18005142964/fullstack-roadmap-en.pdf",
+ "type": "file",
+ "size": 33857,
+ "lastModified": "2025-09-25T10:54:56Z"
+ }
+ ]
},
{
"path": "docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v42-18006148753/",
- "entries": []
+ "entries": [
+ {
+ "name": "fullstack-roadmap-en.html",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v42-18006148753/fullstack-roadmap-en.html",
+ "type": "file",
+ "size": 2257,
+ "lastModified": "2025-09-25T11:37:13Z"
+ },
+ {
+ "name": "fullstack-roadmap-en.pdf",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v42-18006148753/fullstack-roadmap-en.pdf",
+ "type": "file",
+ "size": 33858,
+ "lastModified": "2025-09-25T11:37:15Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v43-18011536494/",
+ "entries": [
+ {
+ "name": "fullstack-roadmap-en.html",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v43-18011536494/fullstack-roadmap-en.html",
+ "type": "file",
+ "size": 2257,
+ "lastModified": "2025-09-25T14:56:20Z"
+ },
+ {
+ "name": "fullstack-roadmap-en.pdf",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v43-18011536494/fullstack-roadmap-en.pdf",
+ "type": "file",
+ "size": 33857,
+ "lastModified": "2025-09-25T14:56:22Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v44-18011825454/",
+ "entries": [
+ {
+ "name": "fullstack-roadmap-en.html",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v44-18011825454/fullstack-roadmap-en.html",
+ "type": "file",
+ "size": 2257,
+ "lastModified": "2025-09-25T15:07:55Z"
+ },
+ {
+ "name": "fullstack-roadmap-en.pdf",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v44-18011825454/fullstack-roadmap-en.pdf",
+ "type": "file",
+ "size": 33859,
+ "lastModified": "2025-09-25T15:07:57Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v45-18011937887/",
+ "entries": [
+ {
+ "name": "fullstack-roadmap-en.html",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v45-18011937887/fullstack-roadmap-en.html",
+ "type": "file",
+ "size": 2257,
+ "lastModified": "2025-09-25T15:10:27Z"
+ },
+ {
+ "name": "fullstack-roadmap-en.pdf",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v45-18011937887/fullstack-roadmap-en.pdf",
+ "type": "file",
+ "size": 33858,
+ "lastModified": "2025-09-25T15:10:29Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v46-18011951541/",
+ "entries": [
+ {
+ "name": "fullstack-roadmap-en.html",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v46-18011951541/fullstack-roadmap-en.html",
+ "type": "file",
+ "size": 2257,
+ "lastModified": "2025-09-25T15:10:28Z"
+ },
+ {
+ "name": "fullstack-roadmap-en.pdf",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v46-18011951541/fullstack-roadmap-en.pdf",
+ "type": "file",
+ "size": 33856,
+ "lastModified": "2025-09-25T15:10:30Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v47-18013619427/",
+ "entries": [
+ {
+ "name": "fullstack-roadmap-en.html",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v47-18013619427/fullstack-roadmap-en.html",
+ "type": "file",
+ "size": 2257,
+ "lastModified": "2025-09-25T16:11:01Z"
+ },
+ {
+ "name": "fullstack-roadmap-en.pdf",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v47-18013619427/fullstack-roadmap-en.pdf",
+ "type": "file",
+ "size": 33859,
+ "lastModified": "2025-09-25T16:11:04Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v48-18026844950/",
+ "entries": [
+ {
+ "name": "fullstack-roadmap-en.html",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v48-18026844950/fullstack-roadmap-en.html",
+ "type": "file",
+ "size": 2257,
+ "lastModified": "2025-09-26T03:20:56Z"
+ },
+ {
+ "name": "fullstack-roadmap-en.pdf",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v48-18026844950/fullstack-roadmap-en.pdf",
+ "type": "file",
+ "size": 33857,
+ "lastModified": "2025-09-26T03:20:58Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v49-18027128243/",
+ "entries": [
+ {
+ "name": "fullstack-roadmap-en.html",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v49-18027128243/fullstack-roadmap-en.html",
+ "type": "file",
+ "size": 2257,
+ "lastModified": "2025-09-26T03:39:46Z"
+ },
+ {
+ "name": "fullstack-roadmap-en.pdf",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v49-18027128243/fullstack-roadmap-en.pdf",
+ "type": "file",
+ "size": 33859,
+ "lastModified": "2025-09-26T03:39:48Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v52-18027443116/",
+ "entries": [
+ {
+ "name": "fullstack-roadmap-en.html",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v52-18027443116/fullstack-roadmap-en.html",
+ "type": "file",
+ "size": 2257,
+ "lastModified": "2025-09-26T04:04:25Z"
+ },
+ {
+ "name": "fullstack-roadmap-en.pdf",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v52-18027443116/fullstack-roadmap-en.pdf",
+ "type": "file",
+ "size": 33858,
+ "lastModified": "2025-09-26T04:04:27Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v53-18027447911/",
+ "entries": [
+ {
+ "name": "fullstack-roadmap-en.html",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v53-18027447911/fullstack-roadmap-en.html",
+ "type": "file",
+ "size": 2257,
+ "lastModified": "2025-09-26T04:02:55Z"
+ },
+ {
+ "name": "fullstack-roadmap-en.pdf",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v53-18027447911/fullstack-roadmap-en.pdf",
+ "type": "file",
+ "size": 33857,
+ "lastModified": "2025-09-26T04:02:57Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v54-18029756788/",
+ "entries": [
+ {
+ "name": "fullstack-roadmap-en.html",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v54-18029756788/fullstack-roadmap-en.html",
+ "type": "file",
+ "size": 2257,
+ "lastModified": "2025-09-26T06:28:20Z"
+ },
+ {
+ "name": "fullstack-roadmap-en.pdf",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v54-18029756788/fullstack-roadmap-en.pdf",
+ "type": "file",
+ "size": 33858,
+ "lastModified": "2025-09-26T06:28:22Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v55-18030101682/",
+ "entries": [
+ {
+ "name": "fullstack-roadmap-en.html",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v55-18030101682/fullstack-roadmap-en.html",
+ "type": "file",
+ "size": 2257,
+ "lastModified": "2025-09-26T06:44:48Z"
+ },
+ {
+ "name": "fullstack-roadmap-en.pdf",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v55-18030101682/fullstack-roadmap-en.pdf",
+ "type": "file",
+ "size": 33857,
+ "lastModified": "2025-09-26T06:44:50Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v56-18031095670/",
+ "entries": [
+ {
+ "name": "fullstack-roadmap-en.html",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v56-18031095670/fullstack-roadmap-en.html",
+ "type": "file",
+ "size": 2257,
+ "lastModified": "2025-09-26T07:33:57Z"
+ },
+ {
+ "name": "fullstack-roadmap-en.pdf",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v56-18031095670/fullstack-roadmap-en.pdf",
+ "type": "file",
+ "size": 33859,
+ "lastModified": "2025-09-26T07:33:59Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v57-18060203518/",
+ "entries": [
+ {
+ "name": "fullstack-roadmap-en.html",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v57-18060203518/fullstack-roadmap-en.html",
+ "type": "file",
+ "size": 2257,
+ "lastModified": "2025-09-27T13:12:03Z"
+ },
+ {
+ "name": "fullstack-roadmap-en.pdf",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v57-18060203518/fullstack-roadmap-en.pdf",
+ "type": "file",
+ "size": 33860,
+ "lastModified": "2025-09-27T13:12:05Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v58-18068296502/",
+ "entries": [
+ {
+ "name": "fullstack-roadmap-en.html",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v58-18068296502/fullstack-roadmap-en.html",
+ "type": "file",
+ "size": 2257,
+ "lastModified": "2025-09-28T02:53:34Z"
+ },
+ {
+ "name": "fullstack-roadmap-en.pdf",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v58-18068296502/fullstack-roadmap-en.pdf",
+ "type": "file",
+ "size": 33862,
+ "lastModified": "2025-09-28T02:53:36Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v59-18075708801/",
+ "entries": [
+ {
+ "name": "fullstack-roadmap-en.html",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v59-18075708801/fullstack-roadmap-en.html",
+ "type": "file",
+ "size": 2257,
+ "lastModified": "2025-09-28T14:38:53Z"
+ },
+ {
+ "name": "fullstack-roadmap-en.pdf",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v59-18075708801/fullstack-roadmap-en.pdf",
+ "type": "file",
+ "size": 33859,
+ "lastModified": "2025-09-28T14:38:55Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v60-18083886120/",
+ "entries": [
+ {
+ "name": "fullstack-roadmap-en.html",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v60-18083886120/fullstack-roadmap-en.html",
+ "type": "file",
+ "size": 2257,
+ "lastModified": "2025-09-29T02:33:18Z"
+ },
+ {
+ "name": "fullstack-roadmap-en.pdf",
+ "href": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v60-18083886120/fullstack-roadmap-en.pdf",
+ "type": "file",
+ "size": 33859,
+ "lastModified": "2025-09-29T02:33:20Z"
+ }
+ ]
},
{
"path": "docs/interview-qa/",
@@ -27142,13 +32171,378 @@
"name": "EN-v42-18006148753/",
"href": "/docs/interview-qa/EN-v42-18006148753/",
"type": "dir",
- "lastModified": "2025-09-25T12:33:26Z"
+ "lastModified": "2025-09-25T11:36:11Z"
+ },
+ {
+ "name": "EN-v43-18011536494/",
+ "href": "/docs/interview-qa/EN-v43-18011536494/",
+ "type": "dir",
+ "lastModified": "2025-09-25T14:56:20Z"
+ },
+ {
+ "name": "EN-v44-18011825454/",
+ "href": "/docs/interview-qa/EN-v44-18011825454/",
+ "type": "dir",
+ "lastModified": "2025-09-25T15:06:29Z"
+ },
+ {
+ "name": "EN-v45-18011937887/",
+ "href": "/docs/interview-qa/EN-v45-18011937887/",
+ "type": "dir",
+ "lastModified": "2025-09-25T15:11:50Z"
+ },
+ {
+ "name": "EN-v46-18011951541/",
+ "href": "/docs/interview-qa/EN-v46-18011951541/",
+ "type": "dir",
+ "lastModified": "2025-09-25T15:12:05Z"
+ },
+ {
+ "name": "EN-v47-18013619427/",
+ "href": "/docs/interview-qa/EN-v47-18013619427/",
+ "type": "dir",
+ "lastModified": "2025-09-25T16:12:07Z"
+ },
+ {
+ "name": "EN-v49-18027128243/",
+ "href": "/docs/interview-qa/EN-v49-18027128243/",
+ "type": "dir",
+ "lastModified": "2025-09-26T03:38:47Z"
+ },
+ {
+ "name": "EN-v52-18027443116/",
+ "href": "/docs/interview-qa/EN-v52-18027443116/",
+ "type": "dir",
+ "lastModified": "2025-09-26T04:04:54Z"
+ },
+ {
+ "name": "EN-v53-18027447911/",
+ "href": "/docs/interview-qa/EN-v53-18027447911/",
+ "type": "dir",
+ "lastModified": "2025-09-26T04:05:55Z"
+ },
+ {
+ "name": "EN-v55-18030101682/",
+ "href": "/docs/interview-qa/EN-v55-18030101682/",
+ "type": "dir",
+ "lastModified": "2025-09-26T06:46:20Z"
+ },
+ {
+ "name": "EN-v56-18031095670/",
+ "href": "/docs/interview-qa/EN-v56-18031095670/",
+ "type": "dir",
+ "lastModified": "2025-09-26T07:34:10Z"
+ },
+ {
+ "name": "EN-v57-18060203518/",
+ "href": "/docs/interview-qa/EN-v57-18060203518/",
+ "type": "dir",
+ "lastModified": "2025-09-27T13:11:05Z"
+ },
+ {
+ "name": "EN-v58-18068296502/",
+ "href": "/docs/interview-qa/EN-v58-18068296502/",
+ "type": "dir",
+ "lastModified": "2025-09-28T02:53:50Z"
+ },
+ {
+ "name": "EN-v59-18075708801/",
+ "href": "/docs/interview-qa/EN-v59-18075708801/",
+ "type": "dir",
+ "lastModified": "2025-09-28T14:36:54Z"
+ },
+ {
+ "name": "EN-v60-18083886120/",
+ "href": "/docs/interview-qa/EN-v60-18083886120/",
+ "type": "dir",
+ "lastModified": "2025-09-29T02:31:43Z"
}
]
},
{
"path": "docs/interview-qa/EN-v42-18006148753/",
- "entries": []
+ "entries": [
+ {
+ "name": "Interview-QA-Guide.html",
+ "href": "/docs/interview-qa/EN-v42-18006148753/Interview-QA-Guide.html",
+ "type": "file",
+ "size": 187127,
+ "lastModified": "2025-09-25T11:35:56Z"
+ },
+ {
+ "name": "Interview-QA-Guide.pdf",
+ "href": "/docs/interview-qa/EN-v42-18006148753/Interview-QA-Guide.pdf",
+ "type": "file",
+ "size": 353641,
+ "lastModified": "2025-09-25T11:36:00Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/interview-qa/EN-v43-18011536494/",
+ "entries": [
+ {
+ "name": "Interview-QA-Guide.html",
+ "href": "/docs/interview-qa/EN-v43-18011536494/Interview-QA-Guide.html",
+ "type": "file",
+ "size": 187672,
+ "lastModified": "2025-09-25T14:56:06Z"
+ },
+ {
+ "name": "Interview-QA-Guide.pdf",
+ "href": "/docs/interview-qa/EN-v43-18011536494/Interview-QA-Guide.pdf",
+ "type": "file",
+ "size": 334800,
+ "lastModified": "2025-09-25T14:56:11Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/interview-qa/EN-v44-18011825454/",
+ "entries": [
+ {
+ "name": "Interview-QA-Guide.html",
+ "href": "/docs/interview-qa/EN-v44-18011825454/Interview-QA-Guide.html",
+ "type": "file",
+ "size": 187672,
+ "lastModified": "2025-09-25T15:06:14Z"
+ },
+ {
+ "name": "Interview-QA-Guide.pdf",
+ "href": "/docs/interview-qa/EN-v44-18011825454/Interview-QA-Guide.pdf",
+ "type": "file",
+ "size": 334801,
+ "lastModified": "2025-09-25T15:06:19Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/interview-qa/EN-v45-18011937887/",
+ "entries": [
+ {
+ "name": "Interview-QA-Guide.html",
+ "href": "/docs/interview-qa/EN-v45-18011937887/Interview-QA-Guide.html",
+ "type": "file",
+ "size": 87793,
+ "lastModified": "2025-09-25T15:11:37Z"
+ },
+ {
+ "name": "Interview-QA-Guide.pdf",
+ "href": "/docs/interview-qa/EN-v45-18011937887/Interview-QA-Guide.pdf",
+ "type": "file",
+ "size": 216730,
+ "lastModified": "2025-09-25T15:11:41Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/interview-qa/EN-v46-18011951541/",
+ "entries": [
+ {
+ "name": "Interview-QA-Guide.html",
+ "href": "/docs/interview-qa/EN-v46-18011951541/Interview-QA-Guide.html",
+ "type": "file",
+ "size": 87793,
+ "lastModified": "2025-09-25T15:11:52Z"
+ },
+ {
+ "name": "Interview-QA-Guide.pdf",
+ "href": "/docs/interview-qa/EN-v46-18011951541/Interview-QA-Guide.pdf",
+ "type": "file",
+ "size": 216731,
+ "lastModified": "2025-09-25T15:11:55Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/interview-qa/EN-v47-18013619427/",
+ "entries": [
+ {
+ "name": "Interview-QA-Guide.html",
+ "href": "/docs/interview-qa/EN-v47-18013619427/Interview-QA-Guide.html",
+ "type": "file",
+ "size": 100688,
+ "lastModified": "2025-09-25T16:11:54Z"
+ },
+ {
+ "name": "Interview-QA-Guide.pdf",
+ "href": "/docs/interview-qa/EN-v47-18013619427/Interview-QA-Guide.pdf",
+ "type": "file",
+ "size": 230498,
+ "lastModified": "2025-09-25T16:11:57Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/interview-qa/EN-v49-18027128243/",
+ "entries": [
+ {
+ "name": "Interview-QA-Guide.html",
+ "href": "/docs/interview-qa/EN-v49-18027128243/Interview-QA-Guide.html",
+ "type": "file",
+ "size": 99801,
+ "lastModified": "2025-09-26T03:38:35Z"
+ },
+ {
+ "name": "Interview-QA-Guide.pdf",
+ "href": "/docs/interview-qa/EN-v49-18027128243/Interview-QA-Guide.pdf",
+ "type": "file",
+ "size": 229263,
+ "lastModified": "2025-09-26T03:38:38Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/interview-qa/EN-v52-18027443116/",
+ "entries": [
+ {
+ "name": "Interview-QA-Guide.html",
+ "href": "/docs/interview-qa/EN-v52-18027443116/Interview-QA-Guide.html",
+ "type": "file",
+ "size": 101566,
+ "lastModified": "2025-09-26T04:04:41Z"
+ },
+ {
+ "name": "Interview-QA-Guide.pdf",
+ "href": "/docs/interview-qa/EN-v52-18027443116/Interview-QA-Guide.pdf",
+ "type": "file",
+ "size": 232188,
+ "lastModified": "2025-09-26T04:04:44Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/interview-qa/EN-v53-18027447911/",
+ "entries": [
+ {
+ "name": "Interview-QA-Guide.html",
+ "href": "/docs/interview-qa/EN-v53-18027447911/Interview-QA-Guide.html",
+ "type": "file",
+ "size": 101566,
+ "lastModified": "2025-09-26T04:05:42Z"
+ },
+ {
+ "name": "Interview-QA-Guide.pdf",
+ "href": "/docs/interview-qa/EN-v53-18027447911/Interview-QA-Guide.pdf",
+ "type": "file",
+ "size": 232198,
+ "lastModified": "2025-09-26T04:05:46Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/interview-qa/EN-v55-18030101682/",
+ "entries": [
+ {
+ "name": "Interview-QA-Guide.html",
+ "href": "/docs/interview-qa/EN-v55-18030101682/Interview-QA-Guide.html",
+ "type": "file",
+ "size": 109608,
+ "lastModified": "2025-09-26T06:46:08Z"
+ },
+ {
+ "name": "Interview-QA-Guide.pdf",
+ "href": "/docs/interview-qa/EN-v55-18030101682/Interview-QA-Guide.pdf",
+ "type": "file",
+ "size": 240997,
+ "lastModified": "2025-09-26T06:46:12Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/interview-qa/EN-v56-18031095670/",
+ "entries": [
+ {
+ "name": "Interview-QA-Guide.html",
+ "href": "/docs/interview-qa/EN-v56-18031095670/Interview-QA-Guide.html",
+ "type": "file",
+ "size": 109725,
+ "lastModified": "2025-09-26T07:33:58Z"
+ },
+ {
+ "name": "Interview-QA-Guide.pdf",
+ "href": "/docs/interview-qa/EN-v56-18031095670/Interview-QA-Guide.pdf",
+ "type": "file",
+ "size": 241095,
+ "lastModified": "2025-09-26T07:34:01Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/interview-qa/EN-v57-18060203518/",
+ "entries": [
+ {
+ "name": "Interview-QA-Guide.html",
+ "href": "/docs/interview-qa/EN-v57-18060203518/Interview-QA-Guide.html",
+ "type": "file",
+ "size": 112385,
+ "lastModified": "2025-09-27T13:10:53Z"
+ },
+ {
+ "name": "Interview-QA-Guide.pdf",
+ "href": "/docs/interview-qa/EN-v57-18060203518/Interview-QA-Guide.pdf",
+ "type": "file",
+ "size": 254633,
+ "lastModified": "2025-09-27T13:10:56Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/interview-qa/EN-v58-18068296502/",
+ "entries": [
+ {
+ "name": "Interview-QA-Guide.html",
+ "href": "/docs/interview-qa/EN-v58-18068296502/Interview-QA-Guide.html",
+ "type": "file",
+ "size": 123659,
+ "lastModified": "2025-09-28T02:53:38Z"
+ },
+ {
+ "name": "Interview-QA-Guide.pdf",
+ "href": "/docs/interview-qa/EN-v58-18068296502/Interview-QA-Guide.pdf",
+ "type": "file",
+ "size": 277543,
+ "lastModified": "2025-09-28T02:53:42Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/interview-qa/EN-v59-18075708801/",
+ "entries": [
+ {
+ "name": "Interview-QA-Guide.html",
+ "href": "/docs/interview-qa/EN-v59-18075708801/Interview-QA-Guide.html",
+ "type": "file",
+ "size": 128918,
+ "lastModified": "2025-09-28T14:36:41Z"
+ },
+ {
+ "name": "Interview-QA-Guide.pdf",
+ "href": "/docs/interview-qa/EN-v59-18075708801/Interview-QA-Guide.pdf",
+ "type": "file",
+ "size": 289200,
+ "lastModified": "2025-09-28T14:36:45Z"
+ }
+ ]
+ },
+ {
+ "path": "docs/interview-qa/EN-v60-18083886120/",
+ "entries": [
+ {
+ "name": "Interview-QA-Guide.html",
+ "href": "/docs/interview-qa/EN-v60-18083886120/Interview-QA-Guide.html",
+ "type": "file",
+ "size": 128918,
+ "lastModified": "2025-09-29T02:31:31Z"
+ },
+ {
+ "name": "Interview-QA-Guide.pdf",
+ "href": "/docs/interview-qa/EN-v60-18083886120/Interview-QA-Guide.pdf",
+ "type": "file",
+ "size": 289210,
+ "lastModified": "2025-09-29T02:31:35Z"
+ }
+ ]
},
{
"path": "offline-package/",
@@ -27157,31 +32551,31 @@
"name": "apisix-gateway/",
"href": "/offline-package/apisix-gateway/",
"type": "dir",
- "lastModified": "2025-09-25T12:30:41Z"
+ "lastModified": "2025-09-19T02:01:24Z"
},
{
"name": "k3s/",
"href": "/offline-package/k3s/",
"type": "dir",
- "lastModified": "2025-09-25T05:28:31Z"
+ "lastModified": "2025-09-19T02:01:24Z"
},
{
"name": "kong-gateway/",
"href": "/offline-package/kong-gateway/",
"type": "dir",
- "lastModified": "2025-09-25T05:29:11Z"
+ "lastModified": "2025-09-19T02:01:24Z"
},
{
"name": "nginx-ingress/",
"href": "/offline-package/nginx-ingress/",
"type": "dir",
- "lastModified": "2025-09-25T05:29:45Z"
+ "lastModified": "2025-09-19T02:01:24Z"
},
{
"name": "sealos/",
"href": "/offline-package/sealos/",
"type": "dir",
- "lastModified": "2025-09-25T05:30:56Z"
+ "lastModified": "2025-09-19T02:01:24Z"
}
]
},
@@ -27193,7 +32587,7 @@
"href": "/offline-package/apisix-gateway/SHA256SUMS",
"type": "file",
"size": 216,
- "lastModified": "2025-09-25T12:30:32Z",
+ "lastModified": "2025-09-14T12:49:17Z",
"sha256": "/offline-package/apisix-gateway/SHA256SUMS"
},
{
@@ -27201,7 +32595,7 @@
"href": "/offline-package/apisix-gateway/offline-setup-apisix-gateway-amd64.tar.gz",
"type": "file",
"size": 194146012,
- "lastModified": "2025-09-25T12:30:41Z",
+ "lastModified": "2025-09-14T12:43:32Z",
"sha256": "/offline-package/apisix-gateway/SHA256SUMS"
},
{
@@ -27209,7 +32603,7 @@
"href": "/offline-package/apisix-gateway/offline-setup-apisix-gateway-arm64.tar.gz",
"type": "file",
"size": 194144032,
- "lastModified": "2025-09-25T05:28:06Z",
+ "lastModified": "2025-09-14T12:43:33Z",
"sha256": "/offline-package/apisix-gateway/SHA256SUMS"
}
]
@@ -27222,7 +32616,7 @@
"href": "/offline-package/k3s/offline-package-k3s-installer-amd64.tar.gz",
"type": "file",
"size": 223183297,
- "lastModified": "2025-09-25T05:28:18Z",
+ "lastModified": "2025-09-14T09:51:55Z",
"sha256": "/offline-package/k3s/offline-package-k3s-installer-amd64.tar.gz.sha256sum"
},
{
@@ -27230,14 +32624,14 @@
"href": "/offline-package/k3s/offline-package-k3s-installer-amd64.tar.gz.sha256sum",
"type": "file",
"size": 109,
- "lastModified": "2025-09-25T05:28:18Z"
+ "lastModified": "2025-09-14T10:13:38Z"
},
{
"name": "offline-package-k3s-installer-arm64.tar.gz",
"href": "/offline-package/k3s/offline-package-k3s-installer-arm64.tar.gz",
"type": "file",
"size": 204874562,
- "lastModified": "2025-09-25T05:28:30Z",
+ "lastModified": "2025-09-14T09:51:54Z",
"sha256": "/offline-package/k3s/offline-package-k3s-installer-arm64.tar.gz.sha256sum"
},
{
@@ -27245,7 +32639,7 @@
"href": "/offline-package/k3s/offline-package-k3s-installer-arm64.tar.gz.sha256sum",
"type": "file",
"size": 109,
- "lastModified": "2025-09-25T05:28:31Z"
+ "lastModified": "2025-09-14T10:12:39Z"
}
]
},
@@ -27257,7 +32651,7 @@
"href": "/offline-package/kong-gateway/SHA256SUMS",
"type": "file",
"size": 212,
- "lastModified": "2025-09-25T05:28:31Z",
+ "lastModified": "2025-09-14T12:17:41Z",
"sha256": "/offline-package/kong-gateway/SHA256SUMS"
},
{
@@ -27265,7 +32659,7 @@
"href": "/offline-package/kong-gateway/offline-setup-kong-gateway-amd64.tar.gz",
"type": "file",
"size": 260781308,
- "lastModified": "2025-09-25T05:28:53Z",
+ "lastModified": "2025-09-14T12:10:37Z",
"sha256": "/offline-package/kong-gateway/SHA256SUMS"
},
{
@@ -27273,7 +32667,7 @@
"href": "/offline-package/kong-gateway/offline-setup-kong-gateway-arm64.tar.gz",
"type": "file",
"size": 259941381,
- "lastModified": "2025-09-25T05:29:11Z",
+ "lastModified": "2025-09-14T12:10:38Z",
"sha256": "/offline-package/kong-gateway/SHA256SUMS"
}
]
@@ -27286,7 +32680,7 @@
"href": "/offline-package/nginx-ingress/SHA256SUMS",
"type": "file",
"size": 214,
- "lastModified": "2025-09-25T05:29:11Z",
+ "lastModified": "2025-09-14T11:18:37Z",
"sha256": "/offline-package/nginx-ingress/SHA256SUMS"
},
{
@@ -27294,7 +32688,7 @@
"href": "/offline-package/nginx-ingress/offline-setup-nginx-ingress-amd64.tar.gz",
"type": "file",
"size": 156094656,
- "lastModified": "2025-09-25T05:29:17Z",
+ "lastModified": "2025-09-14T11:05:40Z",
"sha256": "/offline-package/nginx-ingress/SHA256SUMS"
},
{
@@ -27302,7 +32696,7 @@
"href": "/offline-package/nginx-ingress/offline-setup-nginx-ingress-arm64.tar.gz",
"type": "file",
"size": 155252914,
- "lastModified": "2025-09-25T05:29:45Z",
+ "lastModified": "2025-09-14T11:05:40Z",
"sha256": "/offline-package/nginx-ingress/SHA256SUMS"
}
]
@@ -27315,7 +32709,7 @@
"href": "/offline-package/sealos/SHA256SUMS",
"type": "file",
"size": 204,
- "lastModified": "2025-09-25T05:29:45Z",
+ "lastModified": "2025-09-14T11:03:05Z",
"sha256": "/offline-package/sealos/SHA256SUMS"
},
{
@@ -27323,7 +32717,7 @@
"href": "/offline-package/sealos/sealos-offline-package-amd64.tar.gz",
"type": "file",
"size": 890301186,
- "lastModified": "2025-09-25T05:30:21Z",
+ "lastModified": "2025-09-14T10:37:31Z",
"sha256": "/offline-package/sealos/SHA256SUMS"
},
{
@@ -27331,7 +32725,7 @@
"href": "/offline-package/sealos/sealos-offline-package-arm64.tar.gz",
"type": "file",
"size": 834350941,
- "lastModified": "2025-09-25T05:30:56Z",
+ "lastModified": "2025-09-14T10:45:39Z",
"sha256": "/offline-package/sealos/SHA256SUMS"
}
]
@@ -27343,7 +32737,7 @@
"name": "OpenTelemetry/",
"href": "/otel/OpenTelemetry/",
"type": "dir",
- "lastModified": "2025-09-25T05:31:14Z"
+ "lastModified": "2025-09-19T02:01:40Z"
}
]
},
@@ -27354,7 +32748,7 @@
"name": "v0.133.0/",
"href": "/otel/OpenTelemetry/v0.133.0/",
"type": "dir",
- "lastModified": "2025-09-25T05:31:14Z"
+ "lastModified": "2025-09-19T02:01:40Z"
}
]
},
@@ -27366,28 +32760,28 @@
"href": "/otel/OpenTelemetry/v0.133.0/opampsupervisor_0.133.0_linux_amd64",
"type": "file",
"size": 22896824,
- "lastModified": "2025-09-25T05:31:02Z"
+ "lastModified": "2025-09-03T08:18:29Z"
},
{
"name": "opampsupervisor_0.133.0_linux_arm64",
"href": "/otel/OpenTelemetry/v0.133.0/opampsupervisor_0.133.0_linux_arm64",
"type": "file",
"size": 21758136,
- "lastModified": "2025-09-25T05:31:03Z"
+ "lastModified": "2025-09-03T08:18:35Z"
},
{
"name": "otelcol-contrib_0.133.0_linux_amd64.tar.gz",
"href": "/otel/OpenTelemetry/v0.133.0/otelcol-contrib_0.133.0_linux_amd64.tar.gz",
"type": "file",
"size": 90264630,
- "lastModified": "2025-09-25T05:31:09Z"
+ "lastModified": "2025-09-03T08:18:36Z"
},
{
"name": "otelcol-contrib_0.133.0_linux_arm64.tar.gz",
"href": "/otel/OpenTelemetry/v0.133.0/otelcol-contrib_0.133.0_linux_arm64.tar.gz",
"type": "file",
"size": 82333025,
- "lastModified": "2025-09-25T05:31:14Z"
+ "lastModified": "2025-09-03T08:18:35Z"
}
]
},
@@ -27398,7 +32792,7 @@
"name": "blackbox_exporter/",
"href": "/prometheus/blackbox_exporter/",
"type": "dir",
- "lastModified": "2025-09-29T04:26:43Z"
+ "lastModified": "2025-09-29T04:25:56Z"
}
]
},
@@ -27409,7 +32803,7 @@
"name": "0.27.0/",
"href": "/prometheus/blackbox_exporter/0.27.0/",
"type": "dir",
- "lastModified": "2025-09-29T04:26:43Z"
+ "lastModified": "2025-09-29T04:25:56Z"
}
]
},
@@ -27421,28 +32815,28 @@
"href": "/prometheus/blackbox_exporter/0.27.0/blackbox_exporter-0.27.0.darwin-amd64.tar.gz",
"type": "file",
"size": 15190658,
- "lastModified": "2025-09-29T04:26:05Z"
+ "lastModified": "2025-09-29T04:25:55Z"
},
{
"name": "blackbox_exporter-0.27.0.darwin-arm64.tar.gz",
"href": "/prometheus/blackbox_exporter/0.27.0/blackbox_exporter-0.27.0.darwin-arm64.tar.gz",
"type": "file",
"size": 14442730,
- "lastModified": "2025-09-29T04:26:05Z"
+ "lastModified": "2025-09-29T04:25:50Z"
},
{
"name": "blackbox_exporter-0.27.0.linux-amd64.tar.gz",
"href": "/prometheus/blackbox_exporter/0.27.0/blackbox_exporter-0.27.0.linux-amd64.tar.gz",
"type": "file",
"size": 15353351,
- "lastModified": "2025-09-29T04:26:43Z"
+ "lastModified": "2025-09-29T04:25:54Z"
},
{
"name": "blackbox_exporter-0.27.0.linux-arm64.tar.gz",
"href": "/prometheus/blackbox_exporter/0.27.0/blackbox_exporter-0.27.0.linux-arm64.tar.gz",
"type": "file",
"size": 14338005,
- "lastModified": "2025-09-29T04:26:15Z"
+ "lastModified": "2025-09-29T04:25:52Z"
}
]
},
@@ -27457,19 +32851,19 @@
"name": "offline-sealos-5/",
"href": "/sealos/offline-sealos-5/",
"type": "dir",
- "lastModified": "2025-09-19T05:21:20Z"
+ "lastModified": "2025-09-19T03:19:15Z"
},
{
"name": "offline-sealos-6/",
"href": "/sealos/offline-sealos-6/",
"type": "dir",
- "lastModified": "2025-09-19T05:21:20Z"
+ "lastModified": "2025-09-19T03:19:15Z"
},
{
"name": "offline-sealos-8/",
"href": "/sealos/offline-sealos-8/",
"type": "dir",
- "lastModified": "2025-09-19T05:21:20Z"
+ "lastModified": "2025-09-19T03:19:15Z"
}
]
},
@@ -27492,19 +32886,19 @@
"name": "v25.8.29/",
"href": "/xray-core/v25.8.29/",
"type": "dir",
- "lastModified": "2025-09-25T05:31:24Z"
+ "lastModified": "2025-09-19T02:01:43Z"
},
{
"name": "v25.8.3/",
"href": "/xray-core/v25.8.3/",
"type": "dir",
- "lastModified": "2025-09-25T05:31:40Z"
+ "lastModified": "2025-09-19T02:01:43Z"
},
{
"name": "v25.8.31/",
"href": "/xray-core/v25.8.31/",
"type": "dir",
- "lastModified": "2025-09-25T05:31:48Z"
+ "lastModified": "2025-09-19T02:01:43Z"
},
{
"name": "v25.9.10/",
@@ -27534,21 +32928,21 @@
"href": "/xray-core/v25.8.29/Xray-linux-64.zip",
"type": "file",
"size": 20188542,
- "lastModified": "2025-09-25T05:31:20Z"
+ "lastModified": "2025-08-30T02:27:13Z"
},
{
"name": "Xray-macos-64.zip",
"href": "/xray-core/v25.8.29/Xray-macos-64.zip",
"type": "file",
"size": 19866304,
- "lastModified": "2025-09-25T05:31:20Z"
+ "lastModified": "2025-08-30T02:27:14Z"
},
{
"name": "Xray-windows-64.zip",
"href": "/xray-core/v25.8.29/Xray-windows-64.zip",
"type": "file",
"size": 19762272,
- "lastModified": "2025-09-25T05:31:24Z"
+ "lastModified": "2025-08-30T02:27:18Z"
}
]
},
@@ -27560,21 +32954,21 @@
"href": "/xray-core/v25.8.3/Xray-linux-64.zip",
"type": "file",
"size": 18431780,
- "lastModified": "2025-09-25T05:31:33Z"
+ "lastModified": "2025-08-15T05:26:49Z"
},
{
"name": "Xray-macos-64.zip",
"href": "/xray-core/v25.8.3/Xray-macos-64.zip",
"type": "file",
"size": 18191431,
- "lastModified": "2025-09-25T05:31:33Z"
+ "lastModified": "2025-08-15T05:26:49Z"
},
{
"name": "Xray-windows-64.zip",
"href": "/xray-core/v25.8.3/Xray-windows-64.zip",
"type": "file",
"size": 18071359,
- "lastModified": "2025-09-25T05:31:40Z"
+ "lastModified": "2025-08-15T05:26:51Z"
}
]
},
@@ -27586,21 +32980,21 @@
"href": "/xray-core/v25.8.31/Xray-linux-64.zip",
"type": "file",
"size": 20200865,
- "lastModified": "2025-09-25T05:31:41Z"
+ "lastModified": "2025-09-01T02:36:57Z"
},
{
"name": "Xray-macos-64.zip",
"href": "/xray-core/v25.8.31/Xray-macos-64.zip",
"type": "file",
"size": 19875652,
- "lastModified": "2025-09-25T05:31:47Z"
+ "lastModified": "2025-09-01T02:36:53Z"
},
{
"name": "Xray-windows-64.zip",
"href": "/xray-core/v25.8.31/Xray-windows-64.zip",
"type": "file",
"size": 19776769,
- "lastModified": "2025-09-25T05:31:48Z"
+ "lastModified": "2025-09-01T02:36:56Z"
}
]
},
@@ -27623,31 +33017,31 @@
"name": "android/",
"href": "/xstream/android/",
"type": "dir",
- "lastModified": "2025-09-20T07:06:45Z"
+ "lastModified": "2025-09-19T02:01:47Z"
},
{
"name": "ios/",
"href": "/xstream/ios/",
"type": "dir",
- "lastModified": "2025-09-20T07:06:46Z"
+ "lastModified": "2025-09-19T02:01:47Z"
},
{
"name": "linux/",
"href": "/xstream/linux/",
"type": "dir",
- "lastModified": "2025-09-20T07:06:47Z"
+ "lastModified": "2025-09-19T02:01:47Z"
},
{
"name": "macos/",
"href": "/xstream/macos/",
"type": "dir",
- "lastModified": "2025-09-20T07:06:46Z"
+ "lastModified": "2025-09-19T02:01:47Z"
},
{
"name": "windows/",
"href": "/xstream/windows/",
"type": "dir",
- "lastModified": "2025-09-20T07:04:54Z"
+ "lastModified": "2025-09-19T02:01:47Z"
}
]
},
@@ -27658,7 +33052,7 @@
"name": "latest/",
"href": "/xstream/android/latest/",
"type": "dir",
- "lastModified": "2025-09-20T07:06:45Z"
+ "lastModified": "2025-09-19T02:01:47Z"
}
]
},
@@ -27669,8 +33063,8 @@
"name": "xstream-android-latest.apk",
"href": "/xstream/android/latest/xstream-android-latest.apk",
"type": "file",
- "size": 23386143,
- "lastModified": "2025-09-20T07:06:45Z"
+ "size": 23383658,
+ "lastModified": "2025-08-04T06:26:15Z"
}
]
},
@@ -27681,7 +33075,7 @@
"name": "latest/",
"href": "/xstream/ios/latest/",
"type": "dir",
- "lastModified": "2025-09-20T07:06:46Z"
+ "lastModified": "2025-09-19T02:01:47Z"
}
]
},
@@ -27692,8 +33086,8 @@
"name": "xstream-ios-latest.ipa",
"href": "/xstream/ios/latest/xstream-ios-latest.ipa",
"type": "file",
- "size": 10965049,
- "lastModified": "2025-09-20T07:06:46Z"
+ "size": 26579614,
+ "lastModified": "2025-08-04T06:26:20Z"
}
]
},
@@ -27704,13 +33098,13 @@
"name": "latest/",
"href": "/xstream/linux/latest/",
"type": "dir",
- "lastModified": "2025-09-20T07:06:47Z"
+ "lastModified": "2025-09-19T02:01:48Z"
},
{
"name": "stable/",
"href": "/xstream/linux/stable/",
"type": "dir",
- "lastModified": "2025-09-19T05:27:47Z"
+ "lastModified": "2025-09-19T02:01:48Z"
}
]
},
@@ -27721,8 +33115,8 @@
"name": "xstream-linux-latest.zip",
"href": "/xstream/linux/latest/xstream-linux-latest.zip",
"type": "file",
- "size": 14249450,
- "lastModified": "2025-09-20T07:06:47Z"
+ "size": 14247578,
+ "lastModified": "2025-08-04T06:26:14Z"
}
]
},
@@ -27734,7 +33128,7 @@
"href": "/xstream/linux/stable/xstream-linux-latest.zip",
"type": "file",
"size": 14058826,
- "lastModified": "2025-09-19T05:27:47Z"
+ "lastModified": "2025-08-15T06:26:54Z"
}
]
},
@@ -27751,13 +33145,13 @@
"name": "latest/",
"href": "/xstream/macos/latest/",
"type": "dir",
- "lastModified": "2025-09-20T07:06:46Z"
+ "lastModified": "2025-09-19T02:01:49Z"
},
{
"name": "stable/",
"href": "/xstream/macos/stable/",
"type": "dir",
- "lastModified": "2025-09-19T05:27:48Z"
+ "lastModified": "2025-09-19T02:01:49Z"
}
]
},
@@ -27772,8 +33166,8 @@
"name": "xstream-macos-latest.dmg",
"href": "/xstream/macos/latest/xstream-macos-latest.dmg",
"type": "file",
- "size": 39555743,
- "lastModified": "2025-09-20T07:06:46Z"
+ "size": 39446900,
+ "lastModified": "2025-08-04T06:26:18Z"
}
]
},
@@ -27785,14 +33179,14 @@
"href": "/xstream/macos/stable/xstream-macos-latest.dmg",
"type": "file",
"size": 42458674,
- "lastModified": "2025-09-19T05:27:48Z"
+ "lastModified": "2025-08-15T06:26:57Z"
},
{
"name": "xstream-release-v0.2.0.dmg",
"href": "/xstream/macos/stable/xstream-release-v0.2.0.dmg",
"type": "file",
"size": 43614833,
- "lastModified": "2025-09-19T05:27:48Z"
+ "lastModified": "2025-07-30T01:12:42Z"
}
]
},
@@ -27803,13 +33197,13 @@
"name": "latest/",
"href": "/xstream/windows/latest/",
"type": "dir",
- "lastModified": "2025-09-20T07:04:54Z"
+ "lastModified": "2025-09-19T02:01:51Z"
},
{
"name": "stable/",
"href": "/xstream/windows/stable/",
"type": "dir",
- "lastModified": "2025-09-19T05:27:49Z"
+ "lastModified": "2025-09-19T02:01:51Z"
},
{
"name": "win10/",
@@ -27832,8 +33226,8 @@
"name": "xstream-windows-latest.zip",
"href": "/xstream/windows/latest/xstream-windows-latest.zip",
"type": "file",
- "size": 18511874,
- "lastModified": "2025-09-20T07:04:54Z"
+ "size": 18510460,
+ "lastModified": "2025-08-04T06:26:19Z"
}
]
},
@@ -27845,7 +33239,7 @@
"href": "/xstream/windows/stable/xstream-windows-latest.zip",
"type": "file",
"size": 18312976,
- "lastModified": "2025-09-19T05:27:49Z"
+ "lastModified": "2025-08-15T06:26:59Z"
}
]
},
diff --git a/dashboard/public/dl-index/docs-manifest.json b/dashboard/public/dl-index/docs-manifest.json
index dd62ea7..91bf321 100644
--- a/dashboard/public/dl-index/docs-manifest.json
+++ b/dashboard/public/dl-index/docs-manifest.json
@@ -1,11 +1,7304 @@
[
+ {
+ "slug": "personal-en-v60-18083886120-fullstack-language-core",
+ "title": "fullstack language core",
+ "description": "fullstack language core — Personal (edition EN v60, release EN-v60-18083886120, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v60",
+ "updatedAt": "2025-09-29T02:33:41Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v60-18083886120/fullstack-language-core.pdf",
+ "htmlUrl": "/docs/Personal/EN-v60-18083886120/fullstack-language-core.html",
+ "language": "EN",
+ "variant": "EN-v60-18083886120",
+ "versionSlug": "en-v60-18083886120",
+ "tags": [
+ "EN",
+ "EN v60",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v60-18083886120"
+ ]
+ },
+ {
+ "slug": "personal-en-v60-18083886120-cet-6",
+ "title": "cet 6",
+ "description": "cet 6 — Personal (edition EN v60, release EN-v60-18083886120, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v60",
+ "updatedAt": "2025-09-29T02:33:41Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v60-18083886120/cet-6.pdf",
+ "htmlUrl": "/docs/Personal/EN-v60-18083886120/cet-6.html",
+ "language": "EN",
+ "variant": "EN-v60-18083886120",
+ "versionSlug": "en-v60-18083886120",
+ "tags": [
+ "EN",
+ "EN v60",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v60-18083886120"
+ ]
+ },
+ {
+ "slug": "personal-en-v60-18083886120-resume-zh",
+ "title": "Resume ZH",
+ "description": "Resume ZH — Personal (edition EN v60, release EN-v60-18083886120, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v60",
+ "updatedAt": "2025-09-29T02:33:40Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v60-18083886120/Resume-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v60-18083886120/Resume-ZH.html",
+ "language": "EN",
+ "variant": "EN-v60-18083886120",
+ "versionSlug": "en-v60-18083886120",
+ "tags": [
+ "EN",
+ "EN v60",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v60-18083886120"
+ ]
+ },
+ {
+ "slug": "personal-en-v60-18083886120-resume-en",
+ "title": "Resume EN",
+ "description": "Resume EN — Personal (edition EN v60, release EN-v60-18083886120, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v60",
+ "updatedAt": "2025-09-29T02:33:40Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v60-18083886120/Resume-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v60-18083886120/Resume-EN.html",
+ "language": "EN",
+ "variant": "EN-v60-18083886120",
+ "versionSlug": "en-v60-18083886120",
+ "tags": [
+ "EN",
+ "EN v60",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v60-18083886120"
+ ]
+ },
+ {
+ "slug": "personal-en-v60-18083886120-resume-devops-en",
+ "title": "Resume Dev Ops EN",
+ "description": "Resume Dev Ops EN — Personal (edition EN v60, release EN-v60-18083886120, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v60",
+ "updatedAt": "2025-09-29T02:33:40Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v60-18083886120/Resume-DevOps-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v60-18083886120/Resume-DevOps-EN.html",
+ "language": "EN",
+ "variant": "EN-v60-18083886120",
+ "versionSlug": "en-v60-18083886120",
+ "tags": [
+ "EN",
+ "EN v60",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v60-18083886120"
+ ]
+ },
+ {
+ "slug": "personal-en-v60-18083886120-resume-devops-zh",
+ "title": "Resume Dev OPS ZH",
+ "description": "Resume Dev OPS ZH — Personal (edition EN v60, release EN-v60-18083886120, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v60",
+ "updatedAt": "2025-09-29T02:33:40Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v60-18083886120/Resume-DevOPS-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v60-18083886120/Resume-DevOPS-ZH.html",
+ "language": "EN",
+ "variant": "EN-v60-18083886120",
+ "versionSlug": "en-v60-18083886120",
+ "tags": [
+ "EN",
+ "EN v60",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v60-18083886120"
+ ]
+ },
+ {
+ "slug": "personal-en-v60-18083886120-readme",
+ "title": "README",
+ "description": "README — Personal (edition EN v60, release EN-v60-18083886120, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v60",
+ "updatedAt": "2025-09-29T02:33:40Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v60-18083886120/README.pdf",
+ "htmlUrl": "/docs/Personal/EN-v60-18083886120/README.html",
+ "language": "EN",
+ "variant": "EN-v60-18083886120",
+ "versionSlug": "en-v60-18083886120",
+ "tags": [
+ "EN",
+ "EN v60",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v60-18083886120"
+ ]
+ },
+ {
+ "slug": "personal-en-v60-18083886120-cv-zh",
+ "title": "CV ZH",
+ "description": "CV ZH — Personal (edition EN v60, release EN-v60-18083886120, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v60",
+ "updatedAt": "2025-09-29T02:33:40Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v60-18083886120/CV-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v60-18083886120/CV-ZH.html",
+ "language": "EN",
+ "variant": "EN-v60-18083886120",
+ "versionSlug": "en-v60-18083886120",
+ "tags": [
+ "EN",
+ "EN v60",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v60-18083886120"
+ ]
+ },
+ {
+ "slug": "personal-en-v60-18083886120-cv-en",
+ "title": "CV EN",
+ "description": "CV EN — Personal (edition EN v60, release EN-v60-18083886120, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v60",
+ "updatedAt": "2025-09-29T02:33:40Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v60-18083886120/CV-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v60-18083886120/CV-EN.html",
+ "language": "EN",
+ "variant": "EN-v60-18083886120",
+ "versionSlug": "en-v60-18083886120",
+ "tags": [
+ "EN",
+ "EN v60",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v60-18083886120"
+ ]
+ },
+ {
+ "slug": "personal-en-v60-18083886120-cv-ai-dev-zh",
+ "title": "CV AI Dev ZH",
+ "description": "CV AI Dev ZH — Personal (edition EN v60, release EN-v60-18083886120, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v60",
+ "updatedAt": "2025-09-29T02:33:40Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v60-18083886120/CV-AI-Dev-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v60-18083886120/CV-AI-Dev-ZH.html",
+ "language": "EN",
+ "variant": "EN-v60-18083886120",
+ "versionSlug": "en-v60-18083886120",
+ "tags": [
+ "EN",
+ "EN v60",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v60-18083886120"
+ ]
+ },
+ {
+ "slug": "personal-en-v60-18083886120-cv-ai-dev-en",
+ "title": "CV AI Dev EN",
+ "description": "CV AI Dev EN — Personal (edition EN v60, release EN-v60-18083886120, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v60",
+ "updatedAt": "2025-09-29T02:33:40Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v60-18083886120/CV-AI-Dev-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v60-18083886120/CV-AI-Dev-EN.html",
+ "language": "EN",
+ "variant": "EN-v60-18083886120",
+ "versionSlug": "en-v60-18083886120",
+ "tags": [
+ "EN",
+ "EN v60",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v60-18083886120"
+ ]
+ },
+ {
+ "slug": "personal-en-v60-18083886120-activebalance-plan",
+ "title": "Active Balance Plan",
+ "description": "Active Balance Plan — Personal (edition EN v60, release EN-v60-18083886120, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v60",
+ "updatedAt": "2025-09-29T02:33:40Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v60-18083886120/ActiveBalance-Plan.pdf",
+ "htmlUrl": "/docs/Personal/EN-v60-18083886120/ActiveBalance-Plan.html",
+ "language": "EN",
+ "variant": "EN-v60-18083886120",
+ "versionSlug": "en-v60-18083886120",
+ "tags": [
+ "EN",
+ "EN v60",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v60-18083886120"
+ ]
+ },
+ {
+ "slug": "the-indiedeveloper-fullstack-roadmap-en-v60-18083886120-fullstack-roadmap-en",
+ "title": "fullstack roadmap en",
+ "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v60, release EN-v60-18083886120, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "EN v60",
+ "updatedAt": "2025-09-29T02:33:20Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v60-18083886120/fullstack-roadmap-en.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v60-18083886120/fullstack-roadmap-en.html",
+ "language": "EN",
+ "variant": "EN-v60-18083886120",
+ "versionSlug": "en-v60-18083886120",
+ "tags": [
+ "EN",
+ "EN v60",
+ "The Indie Developer Fullstack Roadmap"
+ ],
+ "pathSegments": [
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "EN-v60-18083886120"
+ ]
+ },
+ {
+ "slug": "techexploration-en-v60-18083886120-tech-exploration",
+ "title": "Tech Exploration",
+ "description": "Tech Exploration — Tech Exploration (edition EN v60, release EN-v60-18083886120, available as PDF and HTML).",
+ "category": "Tech Exploration",
+ "version": "EN v60",
+ "updatedAt": "2025-09-29T02:33:03Z",
+ "collection": "TechExploration",
+ "collectionSlug": "techexploration",
+ "collectionLabel": "Tech Exploration",
+ "pdfUrl": "/docs/TechExploration/EN-v60-18083886120/Tech-Exploration.pdf",
+ "htmlUrl": "/docs/TechExploration/EN-v60-18083886120/Tech-Exploration.html",
+ "language": "EN",
+ "variant": "EN-v60-18083886120",
+ "versionSlug": "en-v60-18083886120",
+ "tags": [
+ "EN",
+ "EN v60",
+ "Tech Exploration"
+ ],
+ "pathSegments": [
+ "TechExploration",
+ "EN-v60-18083886120"
+ ]
+ },
+ {
+ "slug": "linux-k8s-ops-cn-v60-18083886120-linux-k8s-ops-guide",
+ "title": "Linux K8 S OPS Guide",
+ "description": "Linux K8 S OPS Guide — Linux K8 S OPS (edition CN v60, release CN-v60-18083886120, available as PDF and HTML).",
+ "category": "Linux K8 S OPS",
+ "version": "CN v60",
+ "updatedAt": "2025-09-29T02:32:09Z",
+ "collection": "Linux-K8S-OPS",
+ "collectionSlug": "linux-k8s-ops",
+ "collectionLabel": "Linux K8 S OPS",
+ "pdfUrl": "/docs/Linux-K8S-OPS/CN-v60-18083886120/Linux-K8S-OPS-Guide.pdf",
+ "htmlUrl": "/docs/Linux-K8S-OPS/CN-v60-18083886120/Linux-K8S-OPS-Guide.html",
+ "language": "CN",
+ "variant": "CN-v60-18083886120",
+ "versionSlug": "cn-v60-18083886120",
+ "tags": [
+ "CN",
+ "CN v60",
+ "Linux K8 S OPS"
+ ],
+ "pathSegments": [
+ "Linux-K8S-OPS",
+ "CN-v60-18083886120"
+ ]
+ },
+ {
+ "slug": "observability-cn-v60-18083886120-observability-design-and-implementation",
+ "title": "Observability Design and Implementation",
+ "description": "Observability Design and Implementation — Observability (edition CN v60, release CN-v60-18083886120, available as PDF and HTML).",
+ "category": "Observability",
+ "version": "CN v60",
+ "updatedAt": "2025-09-29T02:32:06Z",
+ "collection": "Observability",
+ "collectionSlug": "observability",
+ "collectionLabel": "Observability",
+ "pdfUrl": "/docs/Observability/CN-v60-18083886120/Observability-Design-and-Implementation.pdf",
+ "htmlUrl": "/docs/Observability/CN-v60-18083886120/Observability-Design-and-Implementation.html",
+ "language": "CN",
+ "variant": "CN-v60-18083886120",
+ "versionSlug": "cn-v60-18083886120",
+ "tags": [
+ "CN",
+ "CN v60",
+ "Observability"
+ ],
+ "pathSegments": [
+ "Observability",
+ "CN-v60-18083886120"
+ ]
+ },
+ {
+ "slug": "interview-qa-en-v60-18083886120-interview-qa-guide",
+ "title": "Interview QA Guide",
+ "description": "Interview QA Guide — interview qa (edition EN v60, release EN-v60-18083886120, available as PDF and HTML).",
+ "category": "interview qa",
+ "version": "EN v60",
+ "updatedAt": "2025-09-29T02:31:35Z",
+ "collection": "interview-qa",
+ "collectionSlug": "interview-qa",
+ "collectionLabel": "interview qa",
+ "pdfUrl": "/docs/interview-qa/EN-v60-18083886120/Interview-QA-Guide.pdf",
+ "htmlUrl": "/docs/interview-qa/EN-v60-18083886120/Interview-QA-Guide.html",
+ "language": "EN",
+ "variant": "EN-v60-18083886120",
+ "versionSlug": "en-v60-18083886120",
+ "tags": [
+ "EN",
+ "EN v60",
+ "interview qa"
+ ],
+ "pathSegments": [
+ "interview-qa",
+ "EN-v60-18083886120"
+ ]
+ },
+ {
+ "slug": "keycloak-en-v60-18083886120-keycloak-sso-design-and-implementation",
+ "title": "Keycloak SSO Design and Implementation",
+ "description": "Keycloak SSO Design and Implementation — Keycloak (edition EN v60, release EN-v60-18083886120, available as HTML).",
+ "category": "Keycloak",
+ "version": "EN v60",
+ "updatedAt": "2025-09-29T02:31:30Z",
+ "collection": "Keycloak",
+ "collectionSlug": "keycloak",
+ "collectionLabel": "Keycloak",
+ "htmlUrl": "/docs/Keycloak/EN-v60-18083886120/Keycloak-SSO-Design-and-Implementation.html",
+ "language": "EN",
+ "variant": "EN-v60-18083886120",
+ "versionSlug": "en-v60-18083886120",
+ "tags": [
+ "EN",
+ "EN v60",
+ "Keycloak"
+ ],
+ "pathSegments": [
+ "Keycloak",
+ "EN-v60-18083886120"
+ ]
+ },
+ {
+ "slug": "landingzone-en-v60-18083886120-landing-zone-design-and-implementation",
+ "title": "Landing Zone Design and Implementation",
+ "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v60, release EN-v60-18083886120, available as PDF).",
+ "category": "Landing Zone",
+ "version": "EN v60",
+ "updatedAt": "2025-09-29T02:31:29Z",
+ "collection": "LandingZone",
+ "collectionSlug": "landingzone",
+ "collectionLabel": "Landing Zone",
+ "pdfUrl": "/docs/LandingZone/EN-v60-18083886120/Landing-Zone-Design-and-Implementation.pdf",
+ "language": "EN",
+ "variant": "EN-v60-18083886120",
+ "versionSlug": "en-v60-18083886120",
+ "tags": [
+ "EN",
+ "EN v60",
+ "Landing Zone"
+ ],
+ "pathSegments": [
+ "LandingZone",
+ "EN-v60-18083886120"
+ ]
+ },
+ {
+ "slug": "personal-en-v59-18075708801-fullstack-language-core",
+ "title": "fullstack language core",
+ "description": "fullstack language core — Personal (edition EN v59, release EN-v59-18075708801, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v59",
+ "updatedAt": "2025-09-28T14:39:30Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v59-18075708801/fullstack-language-core.pdf",
+ "htmlUrl": "/docs/Personal/EN-v59-18075708801/fullstack-language-core.html",
+ "language": "EN",
+ "variant": "EN-v59-18075708801",
+ "versionSlug": "en-v59-18075708801",
+ "tags": [
+ "EN",
+ "EN v59",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v59-18075708801"
+ ]
+ },
+ {
+ "slug": "personal-en-v59-18075708801-cet-6",
+ "title": "cet 6",
+ "description": "cet 6 — Personal (edition EN v59, release EN-v59-18075708801, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v59",
+ "updatedAt": "2025-09-28T14:39:30Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v59-18075708801/cet-6.pdf",
+ "htmlUrl": "/docs/Personal/EN-v59-18075708801/cet-6.html",
+ "language": "EN",
+ "variant": "EN-v59-18075708801",
+ "versionSlug": "en-v59-18075708801",
+ "tags": [
+ "EN",
+ "EN v59",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v59-18075708801"
+ ]
+ },
+ {
+ "slug": "personal-en-v59-18075708801-resume-zh",
+ "title": "Resume ZH",
+ "description": "Resume ZH — Personal (edition EN v59, release EN-v59-18075708801, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v59",
+ "updatedAt": "2025-09-28T14:39:30Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v59-18075708801/Resume-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v59-18075708801/Resume-ZH.html",
+ "language": "EN",
+ "variant": "EN-v59-18075708801",
+ "versionSlug": "en-v59-18075708801",
+ "tags": [
+ "EN",
+ "EN v59",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v59-18075708801"
+ ]
+ },
+ {
+ "slug": "personal-en-v59-18075708801-resume-en",
+ "title": "Resume EN",
+ "description": "Resume EN — Personal (edition EN v59, release EN-v59-18075708801, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v59",
+ "updatedAt": "2025-09-28T14:39:30Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v59-18075708801/Resume-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v59-18075708801/Resume-EN.html",
+ "language": "EN",
+ "variant": "EN-v59-18075708801",
+ "versionSlug": "en-v59-18075708801",
+ "tags": [
+ "EN",
+ "EN v59",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v59-18075708801"
+ ]
+ },
+ {
+ "slug": "personal-en-v59-18075708801-resume-devops-en",
+ "title": "Resume Dev Ops EN",
+ "description": "Resume Dev Ops EN — Personal (edition EN v59, release EN-v59-18075708801, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v59",
+ "updatedAt": "2025-09-28T14:39:30Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v59-18075708801/Resume-DevOps-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v59-18075708801/Resume-DevOps-EN.html",
+ "language": "EN",
+ "variant": "EN-v59-18075708801",
+ "versionSlug": "en-v59-18075708801",
+ "tags": [
+ "EN",
+ "EN v59",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v59-18075708801"
+ ]
+ },
+ {
+ "slug": "personal-en-v59-18075708801-resume-devops-zh",
+ "title": "Resume Dev OPS ZH",
+ "description": "Resume Dev OPS ZH — Personal (edition EN v59, release EN-v59-18075708801, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v59",
+ "updatedAt": "2025-09-28T14:39:30Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v59-18075708801/Resume-DevOPS-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v59-18075708801/Resume-DevOPS-ZH.html",
+ "language": "EN",
+ "variant": "EN-v59-18075708801",
+ "versionSlug": "en-v59-18075708801",
+ "tags": [
+ "EN",
+ "EN v59",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v59-18075708801"
+ ]
+ },
+ {
+ "slug": "personal-en-v59-18075708801-readme",
+ "title": "README",
+ "description": "README — Personal (edition EN v59, release EN-v59-18075708801, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v59",
+ "updatedAt": "2025-09-28T14:39:30Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v59-18075708801/README.pdf",
+ "htmlUrl": "/docs/Personal/EN-v59-18075708801/README.html",
+ "language": "EN",
+ "variant": "EN-v59-18075708801",
+ "versionSlug": "en-v59-18075708801",
+ "tags": [
+ "EN",
+ "EN v59",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v59-18075708801"
+ ]
+ },
+ {
+ "slug": "personal-en-v59-18075708801-cv-zh",
+ "title": "CV ZH",
+ "description": "CV ZH — Personal (edition EN v59, release EN-v59-18075708801, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v59",
+ "updatedAt": "2025-09-28T14:39:30Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v59-18075708801/CV-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v59-18075708801/CV-ZH.html",
+ "language": "EN",
+ "variant": "EN-v59-18075708801",
+ "versionSlug": "en-v59-18075708801",
+ "tags": [
+ "EN",
+ "EN v59",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v59-18075708801"
+ ]
+ },
+ {
+ "slug": "personal-en-v59-18075708801-cv-en",
+ "title": "CV EN",
+ "description": "CV EN — Personal (edition EN v59, release EN-v59-18075708801, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v59",
+ "updatedAt": "2025-09-28T14:39:30Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v59-18075708801/CV-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v59-18075708801/CV-EN.html",
+ "language": "EN",
+ "variant": "EN-v59-18075708801",
+ "versionSlug": "en-v59-18075708801",
+ "tags": [
+ "EN",
+ "EN v59",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v59-18075708801"
+ ]
+ },
+ {
+ "slug": "personal-en-v59-18075708801-cv-ai-dev-zh",
+ "title": "CV AI Dev ZH",
+ "description": "CV AI Dev ZH — Personal (edition EN v59, release EN-v59-18075708801, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v59",
+ "updatedAt": "2025-09-28T14:39:29Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v59-18075708801/CV-AI-Dev-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v59-18075708801/CV-AI-Dev-ZH.html",
+ "language": "EN",
+ "variant": "EN-v59-18075708801",
+ "versionSlug": "en-v59-18075708801",
+ "tags": [
+ "EN",
+ "EN v59",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v59-18075708801"
+ ]
+ },
+ {
+ "slug": "personal-en-v59-18075708801-cv-ai-dev-en",
+ "title": "CV AI Dev EN",
+ "description": "CV AI Dev EN — Personal (edition EN v59, release EN-v59-18075708801, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v59",
+ "updatedAt": "2025-09-28T14:39:29Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v59-18075708801/CV-AI-Dev-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v59-18075708801/CV-AI-Dev-EN.html",
+ "language": "EN",
+ "variant": "EN-v59-18075708801",
+ "versionSlug": "en-v59-18075708801",
+ "tags": [
+ "EN",
+ "EN v59",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v59-18075708801"
+ ]
+ },
+ {
+ "slug": "personal-en-v59-18075708801-activebalance-plan",
+ "title": "Active Balance Plan",
+ "description": "Active Balance Plan — Personal (edition EN v59, release EN-v59-18075708801, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v59",
+ "updatedAt": "2025-09-28T14:39:29Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v59-18075708801/ActiveBalance-Plan.pdf",
+ "htmlUrl": "/docs/Personal/EN-v59-18075708801/ActiveBalance-Plan.html",
+ "language": "EN",
+ "variant": "EN-v59-18075708801",
+ "versionSlug": "en-v59-18075708801",
+ "tags": [
+ "EN",
+ "EN v59",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v59-18075708801"
+ ]
+ },
+ {
+ "slug": "linux-k8s-ops-cn-v59-18075708801-linux-k8s-ops-guide",
+ "title": "Linux K8 S OPS Guide",
+ "description": "Linux K8 S OPS Guide — Linux K8 S OPS (edition CN v59, release CN-v59-18075708801, available as PDF and HTML).",
+ "category": "Linux K8 S OPS",
+ "version": "CN v59",
+ "updatedAt": "2025-09-28T14:39:07Z",
+ "collection": "Linux-K8S-OPS",
+ "collectionSlug": "linux-k8s-ops",
+ "collectionLabel": "Linux K8 S OPS",
+ "pdfUrl": "/docs/Linux-K8S-OPS/CN-v59-18075708801/Linux-K8S-OPS-Guide.pdf",
+ "htmlUrl": "/docs/Linux-K8S-OPS/CN-v59-18075708801/Linux-K8S-OPS-Guide.html",
+ "language": "CN",
+ "variant": "CN-v59-18075708801",
+ "versionSlug": "cn-v59-18075708801",
+ "tags": [
+ "CN",
+ "CN v59",
+ "Linux K8 S OPS"
+ ],
+ "pathSegments": [
+ "Linux-K8S-OPS",
+ "CN-v59-18075708801"
+ ]
+ },
+ {
+ "slug": "observability-cn-v59-18075708801-observability-design-and-implementation",
+ "title": "Observability Design and Implementation",
+ "description": "Observability Design and Implementation — Observability (edition CN v59, release CN-v59-18075708801, available as PDF and HTML).",
+ "category": "Observability",
+ "version": "CN v59",
+ "updatedAt": "2025-09-28T14:38:59Z",
+ "collection": "Observability",
+ "collectionSlug": "observability",
+ "collectionLabel": "Observability",
+ "pdfUrl": "/docs/Observability/CN-v59-18075708801/Observability-Design-and-Implementation.pdf",
+ "htmlUrl": "/docs/Observability/CN-v59-18075708801/Observability-Design-and-Implementation.html",
+ "language": "CN",
+ "variant": "CN-v59-18075708801",
+ "versionSlug": "cn-v59-18075708801",
+ "tags": [
+ "CN",
+ "CN v59",
+ "Observability"
+ ],
+ "pathSegments": [
+ "Observability",
+ "CN-v59-18075708801"
+ ]
+ },
+ {
+ "slug": "the-indiedeveloper-fullstack-roadmap-en-v59-18075708801-fullstack-roadmap-en",
+ "title": "fullstack roadmap en",
+ "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v59, release EN-v59-18075708801, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "EN v59",
+ "updatedAt": "2025-09-28T14:38:55Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v59-18075708801/fullstack-roadmap-en.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v59-18075708801/fullstack-roadmap-en.html",
+ "language": "EN",
+ "variant": "EN-v59-18075708801",
+ "versionSlug": "en-v59-18075708801",
+ "tags": [
+ "EN",
+ "EN v59",
+ "The Indie Developer Fullstack Roadmap"
+ ],
+ "pathSegments": [
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "EN-v59-18075708801"
+ ]
+ },
+ {
+ "slug": "landingzone-en-v59-18075708801-landing-zone-design-and-implementation",
+ "title": "Landing Zone Design and Implementation",
+ "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v59, release EN-v59-18075708801, available as PDF).",
+ "category": "Landing Zone",
+ "version": "EN v59",
+ "updatedAt": "2025-09-28T14:38:41Z",
+ "collection": "LandingZone",
+ "collectionSlug": "landingzone",
+ "collectionLabel": "Landing Zone",
+ "pdfUrl": "/docs/LandingZone/EN-v59-18075708801/Landing-Zone-Design-and-Implementation.pdf",
+ "language": "EN",
+ "variant": "EN-v59-18075708801",
+ "versionSlug": "en-v59-18075708801",
+ "tags": [
+ "EN",
+ "EN v59",
+ "Landing Zone"
+ ],
+ "pathSegments": [
+ "LandingZone",
+ "EN-v59-18075708801"
+ ]
+ },
+ {
+ "slug": "techexploration-en-v59-18075708801-tech-exploration",
+ "title": "Tech Exploration",
+ "description": "Tech Exploration — Tech Exploration (edition EN v59, release EN-v59-18075708801, available as PDF and HTML).",
+ "category": "Tech Exploration",
+ "version": "EN v59",
+ "updatedAt": "2025-09-28T14:38:40Z",
+ "collection": "TechExploration",
+ "collectionSlug": "techexploration",
+ "collectionLabel": "Tech Exploration",
+ "pdfUrl": "/docs/TechExploration/EN-v59-18075708801/Tech-Exploration.pdf",
+ "htmlUrl": "/docs/TechExploration/EN-v59-18075708801/Tech-Exploration.html",
+ "language": "EN",
+ "variant": "EN-v59-18075708801",
+ "versionSlug": "en-v59-18075708801",
+ "tags": [
+ "EN",
+ "EN v59",
+ "Tech Exploration"
+ ],
+ "pathSegments": [
+ "TechExploration",
+ "EN-v59-18075708801"
+ ]
+ },
+ {
+ "slug": "keycloak-en-v59-18075708801-keycloak-sso-design-and-implementation",
+ "title": "Keycloak SSO Design and Implementation",
+ "description": "Keycloak SSO Design and Implementation — Keycloak (edition EN v59, release EN-v59-18075708801, available as HTML).",
+ "category": "Keycloak",
+ "version": "EN v59",
+ "updatedAt": "2025-09-28T14:38:39Z",
+ "collection": "Keycloak",
+ "collectionSlug": "keycloak",
+ "collectionLabel": "Keycloak",
+ "htmlUrl": "/docs/Keycloak/EN-v59-18075708801/Keycloak-SSO-Design-and-Implementation.html",
+ "language": "EN",
+ "variant": "EN-v59-18075708801",
+ "versionSlug": "en-v59-18075708801",
+ "tags": [
+ "EN",
+ "EN v59",
+ "Keycloak"
+ ],
+ "pathSegments": [
+ "Keycloak",
+ "EN-v59-18075708801"
+ ]
+ },
+ {
+ "slug": "interview-qa-en-v59-18075708801-interview-qa-guide",
+ "title": "Interview QA Guide",
+ "description": "Interview QA Guide — interview qa (edition EN v59, release EN-v59-18075708801, available as PDF and HTML).",
+ "category": "interview qa",
+ "version": "EN v59",
+ "updatedAt": "2025-09-28T14:36:45Z",
+ "collection": "interview-qa",
+ "collectionSlug": "interview-qa",
+ "collectionLabel": "interview qa",
+ "pdfUrl": "/docs/interview-qa/EN-v59-18075708801/Interview-QA-Guide.pdf",
+ "htmlUrl": "/docs/interview-qa/EN-v59-18075708801/Interview-QA-Guide.html",
+ "language": "EN",
+ "variant": "EN-v59-18075708801",
+ "versionSlug": "en-v59-18075708801",
+ "tags": [
+ "EN",
+ "EN v59",
+ "interview qa"
+ ],
+ "pathSegments": [
+ "interview-qa",
+ "EN-v59-18075708801"
+ ]
+ },
+ {
+ "slug": "interview-qa-en-v58-18068296502-interview-qa-guide",
+ "title": "Interview QA Guide",
+ "description": "Interview QA Guide — interview qa (edition EN v58, release EN-v58-18068296502, available as PDF and HTML).",
+ "category": "interview qa",
+ "version": "EN v58",
+ "updatedAt": "2025-09-28T02:53:42Z",
+ "collection": "interview-qa",
+ "collectionSlug": "interview-qa",
+ "collectionLabel": "interview qa",
+ "pdfUrl": "/docs/interview-qa/EN-v58-18068296502/Interview-QA-Guide.pdf",
+ "htmlUrl": "/docs/interview-qa/EN-v58-18068296502/Interview-QA-Guide.html",
+ "language": "EN",
+ "variant": "EN-v58-18068296502",
+ "versionSlug": "en-v58-18068296502",
+ "tags": [
+ "EN",
+ "EN v58",
+ "interview qa"
+ ],
+ "pathSegments": [
+ "interview-qa",
+ "EN-v58-18068296502"
+ ]
+ },
+ {
+ "slug": "the-indiedeveloper-fullstack-roadmap-en-v58-18068296502-fullstack-roadmap-en",
+ "title": "fullstack roadmap en",
+ "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v58, release EN-v58-18068296502, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "EN v58",
+ "updatedAt": "2025-09-28T02:53:36Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v58-18068296502/fullstack-roadmap-en.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v58-18068296502/fullstack-roadmap-en.html",
+ "language": "EN",
+ "variant": "EN-v58-18068296502",
+ "versionSlug": "en-v58-18068296502",
+ "tags": [
+ "EN",
+ "EN v58",
+ "The Indie Developer Fullstack Roadmap"
+ ],
+ "pathSegments": [
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "EN-v58-18068296502"
+ ]
+ },
+ {
+ "slug": "keycloak-en-v58-18068296502-keycloak-sso-design-and-implementation",
+ "title": "Keycloak SSO Design and Implementation",
+ "description": "Keycloak SSO Design and Implementation — Keycloak (edition EN v58, release EN-v58-18068296502, available as HTML).",
+ "category": "Keycloak",
+ "version": "EN v58",
+ "updatedAt": "2025-09-28T02:53:28Z",
+ "collection": "Keycloak",
+ "collectionSlug": "keycloak",
+ "collectionLabel": "Keycloak",
+ "htmlUrl": "/docs/Keycloak/EN-v58-18068296502/Keycloak-SSO-Design-and-Implementation.html",
+ "language": "EN",
+ "variant": "EN-v58-18068296502",
+ "versionSlug": "en-v58-18068296502",
+ "tags": [
+ "EN",
+ "EN v58",
+ "Keycloak"
+ ],
+ "pathSegments": [
+ "Keycloak",
+ "EN-v58-18068296502"
+ ]
+ },
+ {
+ "slug": "personal-en-v58-18068296502-fullstack-language-core",
+ "title": "fullstack language core",
+ "description": "fullstack language core — Personal (edition EN v58, release EN-v58-18068296502, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v58",
+ "updatedAt": "2025-09-28T02:52:40Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v58-18068296502/fullstack-language-core.pdf",
+ "htmlUrl": "/docs/Personal/EN-v58-18068296502/fullstack-language-core.html",
+ "language": "EN",
+ "variant": "EN-v58-18068296502",
+ "versionSlug": "en-v58-18068296502",
+ "tags": [
+ "EN",
+ "EN v58",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v58-18068296502"
+ ]
+ },
+ {
+ "slug": "personal-en-v58-18068296502-cet-6",
+ "title": "cet 6",
+ "description": "cet 6 — Personal (edition EN v58, release EN-v58-18068296502, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v58",
+ "updatedAt": "2025-09-28T02:52:40Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v58-18068296502/cet-6.pdf",
+ "htmlUrl": "/docs/Personal/EN-v58-18068296502/cet-6.html",
+ "language": "EN",
+ "variant": "EN-v58-18068296502",
+ "versionSlug": "en-v58-18068296502",
+ "tags": [
+ "EN",
+ "EN v58",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v58-18068296502"
+ ]
+ },
+ {
+ "slug": "personal-en-v58-18068296502-resume-zh",
+ "title": "Resume ZH",
+ "description": "Resume ZH — Personal (edition EN v58, release EN-v58-18068296502, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v58",
+ "updatedAt": "2025-09-28T02:52:40Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v58-18068296502/Resume-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v58-18068296502/Resume-ZH.html",
+ "language": "EN",
+ "variant": "EN-v58-18068296502",
+ "versionSlug": "en-v58-18068296502",
+ "tags": [
+ "EN",
+ "EN v58",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v58-18068296502"
+ ]
+ },
+ {
+ "slug": "personal-en-v58-18068296502-resume-en",
+ "title": "Resume EN",
+ "description": "Resume EN — Personal (edition EN v58, release EN-v58-18068296502, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v58",
+ "updatedAt": "2025-09-28T02:52:40Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v58-18068296502/Resume-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v58-18068296502/Resume-EN.html",
+ "language": "EN",
+ "variant": "EN-v58-18068296502",
+ "versionSlug": "en-v58-18068296502",
+ "tags": [
+ "EN",
+ "EN v58",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v58-18068296502"
+ ]
+ },
+ {
+ "slug": "personal-en-v58-18068296502-resume-devops-en",
+ "title": "Resume Dev Ops EN",
+ "description": "Resume Dev Ops EN — Personal (edition EN v58, release EN-v58-18068296502, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v58",
+ "updatedAt": "2025-09-28T02:52:39Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v58-18068296502/Resume-DevOps-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v58-18068296502/Resume-DevOps-EN.html",
+ "language": "EN",
+ "variant": "EN-v58-18068296502",
+ "versionSlug": "en-v58-18068296502",
+ "tags": [
+ "EN",
+ "EN v58",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v58-18068296502"
+ ]
+ },
+ {
+ "slug": "personal-en-v58-18068296502-resume-devops-zh",
+ "title": "Resume Dev OPS ZH",
+ "description": "Resume Dev OPS ZH — Personal (edition EN v58, release EN-v58-18068296502, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v58",
+ "updatedAt": "2025-09-28T02:52:39Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v58-18068296502/Resume-DevOPS-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v58-18068296502/Resume-DevOPS-ZH.html",
+ "language": "EN",
+ "variant": "EN-v58-18068296502",
+ "versionSlug": "en-v58-18068296502",
+ "tags": [
+ "EN",
+ "EN v58",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v58-18068296502"
+ ]
+ },
+ {
+ "slug": "personal-en-v58-18068296502-readme",
+ "title": "README",
+ "description": "README — Personal (edition EN v58, release EN-v58-18068296502, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v58",
+ "updatedAt": "2025-09-28T02:52:39Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v58-18068296502/README.pdf",
+ "htmlUrl": "/docs/Personal/EN-v58-18068296502/README.html",
+ "language": "EN",
+ "variant": "EN-v58-18068296502",
+ "versionSlug": "en-v58-18068296502",
+ "tags": [
+ "EN",
+ "EN v58",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v58-18068296502"
+ ]
+ },
+ {
+ "slug": "personal-en-v58-18068296502-cv-zh",
+ "title": "CV ZH",
+ "description": "CV ZH — Personal (edition EN v58, release EN-v58-18068296502, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v58",
+ "updatedAt": "2025-09-28T02:52:39Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v58-18068296502/CV-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v58-18068296502/CV-ZH.html",
+ "language": "EN",
+ "variant": "EN-v58-18068296502",
+ "versionSlug": "en-v58-18068296502",
+ "tags": [
+ "EN",
+ "EN v58",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v58-18068296502"
+ ]
+ },
+ {
+ "slug": "personal-en-v58-18068296502-cv-en",
+ "title": "CV EN",
+ "description": "CV EN — Personal (edition EN v58, release EN-v58-18068296502, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v58",
+ "updatedAt": "2025-09-28T02:52:39Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v58-18068296502/CV-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v58-18068296502/CV-EN.html",
+ "language": "EN",
+ "variant": "EN-v58-18068296502",
+ "versionSlug": "en-v58-18068296502",
+ "tags": [
+ "EN",
+ "EN v58",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v58-18068296502"
+ ]
+ },
+ {
+ "slug": "personal-en-v58-18068296502-cv-ai-dev-zh",
+ "title": "CV AI Dev ZH",
+ "description": "CV AI Dev ZH — Personal (edition EN v58, release EN-v58-18068296502, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v58",
+ "updatedAt": "2025-09-28T02:52:39Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v58-18068296502/CV-AI-Dev-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v58-18068296502/CV-AI-Dev-ZH.html",
+ "language": "EN",
+ "variant": "EN-v58-18068296502",
+ "versionSlug": "en-v58-18068296502",
+ "tags": [
+ "EN",
+ "EN v58",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v58-18068296502"
+ ]
+ },
+ {
+ "slug": "personal-en-v58-18068296502-cv-ai-dev-en",
+ "title": "CV AI Dev EN",
+ "description": "CV AI Dev EN — Personal (edition EN v58, release EN-v58-18068296502, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v58",
+ "updatedAt": "2025-09-28T02:52:39Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v58-18068296502/CV-AI-Dev-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v58-18068296502/CV-AI-Dev-EN.html",
+ "language": "EN",
+ "variant": "EN-v58-18068296502",
+ "versionSlug": "en-v58-18068296502",
+ "tags": [
+ "EN",
+ "EN v58",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v58-18068296502"
+ ]
+ },
+ {
+ "slug": "personal-en-v58-18068296502-activebalance-plan",
+ "title": "Active Balance Plan",
+ "description": "Active Balance Plan — Personal (edition EN v58, release EN-v58-18068296502, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v58",
+ "updatedAt": "2025-09-28T02:52:39Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v58-18068296502/ActiveBalance-Plan.pdf",
+ "htmlUrl": "/docs/Personal/EN-v58-18068296502/ActiveBalance-Plan.html",
+ "language": "EN",
+ "variant": "EN-v58-18068296502",
+ "versionSlug": "en-v58-18068296502",
+ "tags": [
+ "EN",
+ "EN v58",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v58-18068296502"
+ ]
+ },
+ {
+ "slug": "techexploration-en-v58-18068296502-tech-exploration",
+ "title": "Tech Exploration",
+ "description": "Tech Exploration — Tech Exploration (edition EN v58, release EN-v58-18068296502, available as PDF and HTML).",
+ "category": "Tech Exploration",
+ "version": "EN v58",
+ "updatedAt": "2025-09-28T02:52:20Z",
+ "collection": "TechExploration",
+ "collectionSlug": "techexploration",
+ "collectionLabel": "Tech Exploration",
+ "pdfUrl": "/docs/TechExploration/EN-v58-18068296502/Tech-Exploration.pdf",
+ "htmlUrl": "/docs/TechExploration/EN-v58-18068296502/Tech-Exploration.html",
+ "language": "EN",
+ "variant": "EN-v58-18068296502",
+ "versionSlug": "en-v58-18068296502",
+ "tags": [
+ "EN",
+ "EN v58",
+ "Tech Exploration"
+ ],
+ "pathSegments": [
+ "TechExploration",
+ "EN-v58-18068296502"
+ ]
+ },
+ {
+ "slug": "observability-cn-v58-18068296502-observability-design-and-implementation",
+ "title": "Observability Design and Implementation",
+ "description": "Observability Design and Implementation — Observability (edition CN v58, release CN-v58-18068296502, available as PDF and HTML).",
+ "category": "Observability",
+ "version": "CN v58",
+ "updatedAt": "2025-09-28T02:52:14Z",
+ "collection": "Observability",
+ "collectionSlug": "observability",
+ "collectionLabel": "Observability",
+ "pdfUrl": "/docs/Observability/CN-v58-18068296502/Observability-Design-and-Implementation.pdf",
+ "htmlUrl": "/docs/Observability/CN-v58-18068296502/Observability-Design-and-Implementation.html",
+ "language": "CN",
+ "variant": "CN-v58-18068296502",
+ "versionSlug": "cn-v58-18068296502",
+ "tags": [
+ "CN",
+ "CN v58",
+ "Observability"
+ ],
+ "pathSegments": [
+ "Observability",
+ "CN-v58-18068296502"
+ ]
+ },
+ {
+ "slug": "landingzone-en-v58-18068296502-landing-zone-design-and-implementation",
+ "title": "Landing Zone Design and Implementation",
+ "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v58, release EN-v58-18068296502, available as PDF).",
+ "category": "Landing Zone",
+ "version": "EN v58",
+ "updatedAt": "2025-09-28T02:52:14Z",
+ "collection": "LandingZone",
+ "collectionSlug": "landingzone",
+ "collectionLabel": "Landing Zone",
+ "pdfUrl": "/docs/LandingZone/EN-v58-18068296502/Landing-Zone-Design-and-Implementation.pdf",
+ "language": "EN",
+ "variant": "EN-v58-18068296502",
+ "versionSlug": "en-v58-18068296502",
+ "tags": [
+ "EN",
+ "EN v58",
+ "Landing Zone"
+ ],
+ "pathSegments": [
+ "LandingZone",
+ "EN-v58-18068296502"
+ ]
+ },
+ {
+ "slug": "linux-k8s-ops-cn-v58-18068296502-linux-k8s-ops-guide",
+ "title": "Linux K8 S OPS Guide",
+ "description": "Linux K8 S OPS Guide — Linux K8 S OPS (edition CN v58, release CN-v58-18068296502, available as PDF and HTML).",
+ "category": "Linux K8 S OPS",
+ "version": "CN v58",
+ "updatedAt": "2025-09-28T02:51:46Z",
+ "collection": "Linux-K8S-OPS",
+ "collectionSlug": "linux-k8s-ops",
+ "collectionLabel": "Linux K8 S OPS",
+ "pdfUrl": "/docs/Linux-K8S-OPS/CN-v58-18068296502/Linux-K8S-OPS-Guide.pdf",
+ "htmlUrl": "/docs/Linux-K8S-OPS/CN-v58-18068296502/Linux-K8S-OPS-Guide.html",
+ "language": "CN",
+ "variant": "CN-v58-18068296502",
+ "versionSlug": "cn-v58-18068296502",
+ "tags": [
+ "CN",
+ "CN v58",
+ "Linux K8 S OPS"
+ ],
+ "pathSegments": [
+ "Linux-K8S-OPS",
+ "CN-v58-18068296502"
+ ]
+ },
+ {
+ "slug": "techexploration-en-v57-18060203518-tech-exploration",
+ "title": "Tech Exploration",
+ "description": "Tech Exploration — Tech Exploration (edition EN v57, release EN-v57-18060203518, available as PDF and HTML).",
+ "category": "Tech Exploration",
+ "version": "EN v57",
+ "updatedAt": "2025-09-27T13:12:37Z",
+ "collection": "TechExploration",
+ "collectionSlug": "techexploration",
+ "collectionLabel": "Tech Exploration",
+ "pdfUrl": "/docs/TechExploration/EN-v57-18060203518/Tech-Exploration.pdf",
+ "htmlUrl": "/docs/TechExploration/EN-v57-18060203518/Tech-Exploration.html",
+ "language": "EN",
+ "variant": "EN-v57-18060203518",
+ "versionSlug": "en-v57-18060203518",
+ "tags": [
+ "EN",
+ "EN v57",
+ "Tech Exploration"
+ ],
+ "pathSegments": [
+ "TechExploration",
+ "EN-v57-18060203518"
+ ]
+ },
+ {
+ "slug": "linux-k8s-ops-cn-v57-18060203518-linux-k8s-ops-guide",
+ "title": "Linux K8 S OPS Guide",
+ "description": "Linux K8 S OPS Guide — Linux K8 S OPS (edition CN v57, release CN-v57-18060203518, available as PDF and HTML).",
+ "category": "Linux K8 S OPS",
+ "version": "CN v57",
+ "updatedAt": "2025-09-27T13:12:23Z",
+ "collection": "Linux-K8S-OPS",
+ "collectionSlug": "linux-k8s-ops",
+ "collectionLabel": "Linux K8 S OPS",
+ "pdfUrl": "/docs/Linux-K8S-OPS/CN-v57-18060203518/Linux-K8S-OPS-Guide.pdf",
+ "htmlUrl": "/docs/Linux-K8S-OPS/CN-v57-18060203518/Linux-K8S-OPS-Guide.html",
+ "language": "CN",
+ "variant": "CN-v57-18060203518",
+ "versionSlug": "cn-v57-18060203518",
+ "tags": [
+ "CN",
+ "CN v57",
+ "Linux K8 S OPS"
+ ],
+ "pathSegments": [
+ "Linux-K8S-OPS",
+ "CN-v57-18060203518"
+ ]
+ },
+ {
+ "slug": "the-indiedeveloper-fullstack-roadmap-en-v57-18060203518-fullstack-roadmap-en",
+ "title": "fullstack roadmap en",
+ "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v57, release EN-v57-18060203518, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "EN v57",
+ "updatedAt": "2025-09-27T13:12:05Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v57-18060203518/fullstack-roadmap-en.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v57-18060203518/fullstack-roadmap-en.html",
+ "language": "EN",
+ "variant": "EN-v57-18060203518",
+ "versionSlug": "en-v57-18060203518",
+ "tags": [
+ "EN",
+ "EN v57",
+ "The Indie Developer Fullstack Roadmap"
+ ],
+ "pathSegments": [
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "EN-v57-18060203518"
+ ]
+ },
+ {
+ "slug": "observability-cn-v57-18060203518-observability-design-and-implementation",
+ "title": "Observability Design and Implementation",
+ "description": "Observability Design and Implementation — Observability (edition CN v57, release CN-v57-18060203518, available as PDF and HTML).",
+ "category": "Observability",
+ "version": "CN v57",
+ "updatedAt": "2025-09-27T13:12:05Z",
+ "collection": "Observability",
+ "collectionSlug": "observability",
+ "collectionLabel": "Observability",
+ "pdfUrl": "/docs/Observability/CN-v57-18060203518/Observability-Design-and-Implementation.pdf",
+ "htmlUrl": "/docs/Observability/CN-v57-18060203518/Observability-Design-and-Implementation.html",
+ "language": "CN",
+ "variant": "CN-v57-18060203518",
+ "versionSlug": "cn-v57-18060203518",
+ "tags": [
+ "CN",
+ "CN v57",
+ "Observability"
+ ],
+ "pathSegments": [
+ "Observability",
+ "CN-v57-18060203518"
+ ]
+ },
+ {
+ "slug": "keycloak-en-v57-18060203518-keycloak-sso-design-and-implementation",
+ "title": "Keycloak SSO Design and Implementation",
+ "description": "Keycloak SSO Design and Implementation — Keycloak (edition EN v57, release EN-v57-18060203518, available as HTML).",
+ "category": "Keycloak",
+ "version": "EN v57",
+ "updatedAt": "2025-09-27T13:11:57Z",
+ "collection": "Keycloak",
+ "collectionSlug": "keycloak",
+ "collectionLabel": "Keycloak",
+ "htmlUrl": "/docs/Keycloak/EN-v57-18060203518/Keycloak-SSO-Design-and-Implementation.html",
+ "language": "EN",
+ "variant": "EN-v57-18060203518",
+ "versionSlug": "en-v57-18060203518",
+ "tags": [
+ "EN",
+ "EN v57",
+ "Keycloak"
+ ],
+ "pathSegments": [
+ "Keycloak",
+ "EN-v57-18060203518"
+ ]
+ },
+ {
+ "slug": "personal-en-v57-18060203518-fullstack-language-core",
+ "title": "fullstack language core",
+ "description": "fullstack language core — Personal (edition EN v57, release EN-v57-18060203518, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v57",
+ "updatedAt": "2025-09-27T13:11:38Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v57-18060203518/fullstack-language-core.pdf",
+ "htmlUrl": "/docs/Personal/EN-v57-18060203518/fullstack-language-core.html",
+ "language": "EN",
+ "variant": "EN-v57-18060203518",
+ "versionSlug": "en-v57-18060203518",
+ "tags": [
+ "EN",
+ "EN v57",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v57-18060203518"
+ ]
+ },
+ {
+ "slug": "personal-en-v57-18060203518-cet-6",
+ "title": "cet 6",
+ "description": "cet 6 — Personal (edition EN v57, release EN-v57-18060203518, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v57",
+ "updatedAt": "2025-09-27T13:11:38Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v57-18060203518/cet-6.pdf",
+ "htmlUrl": "/docs/Personal/EN-v57-18060203518/cet-6.html",
+ "language": "EN",
+ "variant": "EN-v57-18060203518",
+ "versionSlug": "en-v57-18060203518",
+ "tags": [
+ "EN",
+ "EN v57",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v57-18060203518"
+ ]
+ },
+ {
+ "slug": "personal-en-v57-18060203518-resume-zh",
+ "title": "Resume ZH",
+ "description": "Resume ZH — Personal (edition EN v57, release EN-v57-18060203518, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v57",
+ "updatedAt": "2025-09-27T13:11:38Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v57-18060203518/Resume-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v57-18060203518/Resume-ZH.html",
+ "language": "EN",
+ "variant": "EN-v57-18060203518",
+ "versionSlug": "en-v57-18060203518",
+ "tags": [
+ "EN",
+ "EN v57",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v57-18060203518"
+ ]
+ },
+ {
+ "slug": "personal-en-v57-18060203518-resume-en",
+ "title": "Resume EN",
+ "description": "Resume EN — Personal (edition EN v57, release EN-v57-18060203518, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v57",
+ "updatedAt": "2025-09-27T13:11:38Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v57-18060203518/Resume-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v57-18060203518/Resume-EN.html",
+ "language": "EN",
+ "variant": "EN-v57-18060203518",
+ "versionSlug": "en-v57-18060203518",
+ "tags": [
+ "EN",
+ "EN v57",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v57-18060203518"
+ ]
+ },
+ {
+ "slug": "personal-en-v57-18060203518-resume-devops-en",
+ "title": "Resume Dev Ops EN",
+ "description": "Resume Dev Ops EN — Personal (edition EN v57, release EN-v57-18060203518, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v57",
+ "updatedAt": "2025-09-27T13:11:38Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v57-18060203518/Resume-DevOps-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v57-18060203518/Resume-DevOps-EN.html",
+ "language": "EN",
+ "variant": "EN-v57-18060203518",
+ "versionSlug": "en-v57-18060203518",
+ "tags": [
+ "EN",
+ "EN v57",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v57-18060203518"
+ ]
+ },
+ {
+ "slug": "personal-en-v57-18060203518-resume-devops-zh",
+ "title": "Resume Dev OPS ZH",
+ "description": "Resume Dev OPS ZH — Personal (edition EN v57, release EN-v57-18060203518, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v57",
+ "updatedAt": "2025-09-27T13:11:38Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v57-18060203518/Resume-DevOPS-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v57-18060203518/Resume-DevOPS-ZH.html",
+ "language": "EN",
+ "variant": "EN-v57-18060203518",
+ "versionSlug": "en-v57-18060203518",
+ "tags": [
+ "EN",
+ "EN v57",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v57-18060203518"
+ ]
+ },
+ {
+ "slug": "personal-en-v57-18060203518-readme",
+ "title": "README",
+ "description": "README — Personal (edition EN v57, release EN-v57-18060203518, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v57",
+ "updatedAt": "2025-09-27T13:11:38Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v57-18060203518/README.pdf",
+ "htmlUrl": "/docs/Personal/EN-v57-18060203518/README.html",
+ "language": "EN",
+ "variant": "EN-v57-18060203518",
+ "versionSlug": "en-v57-18060203518",
+ "tags": [
+ "EN",
+ "EN v57",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v57-18060203518"
+ ]
+ },
+ {
+ "slug": "personal-en-v57-18060203518-cv-zh",
+ "title": "CV ZH",
+ "description": "CV ZH — Personal (edition EN v57, release EN-v57-18060203518, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v57",
+ "updatedAt": "2025-09-27T13:11:38Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v57-18060203518/CV-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v57-18060203518/CV-ZH.html",
+ "language": "EN",
+ "variant": "EN-v57-18060203518",
+ "versionSlug": "en-v57-18060203518",
+ "tags": [
+ "EN",
+ "EN v57",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v57-18060203518"
+ ]
+ },
+ {
+ "slug": "personal-en-v57-18060203518-cv-en",
+ "title": "CV EN",
+ "description": "CV EN — Personal (edition EN v57, release EN-v57-18060203518, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v57",
+ "updatedAt": "2025-09-27T13:11:38Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v57-18060203518/CV-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v57-18060203518/CV-EN.html",
+ "language": "EN",
+ "variant": "EN-v57-18060203518",
+ "versionSlug": "en-v57-18060203518",
+ "tags": [
+ "EN",
+ "EN v57",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v57-18060203518"
+ ]
+ },
+ {
+ "slug": "personal-en-v57-18060203518-cv-ai-dev-zh",
+ "title": "CV AI Dev ZH",
+ "description": "CV AI Dev ZH — Personal (edition EN v57, release EN-v57-18060203518, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v57",
+ "updatedAt": "2025-09-27T13:11:38Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v57-18060203518/CV-AI-Dev-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v57-18060203518/CV-AI-Dev-ZH.html",
+ "language": "EN",
+ "variant": "EN-v57-18060203518",
+ "versionSlug": "en-v57-18060203518",
+ "tags": [
+ "EN",
+ "EN v57",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v57-18060203518"
+ ]
+ },
+ {
+ "slug": "personal-en-v57-18060203518-cv-ai-dev-en",
+ "title": "CV AI Dev EN",
+ "description": "CV AI Dev EN — Personal (edition EN v57, release EN-v57-18060203518, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v57",
+ "updatedAt": "2025-09-27T13:11:38Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v57-18060203518/CV-AI-Dev-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v57-18060203518/CV-AI-Dev-EN.html",
+ "language": "EN",
+ "variant": "EN-v57-18060203518",
+ "versionSlug": "en-v57-18060203518",
+ "tags": [
+ "EN",
+ "EN v57",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v57-18060203518"
+ ]
+ },
+ {
+ "slug": "personal-en-v57-18060203518-activebalance-plan",
+ "title": "Active Balance Plan",
+ "description": "Active Balance Plan — Personal (edition EN v57, release EN-v57-18060203518, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v57",
+ "updatedAt": "2025-09-27T13:11:37Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v57-18060203518/ActiveBalance-Plan.pdf",
+ "htmlUrl": "/docs/Personal/EN-v57-18060203518/ActiveBalance-Plan.html",
+ "language": "EN",
+ "variant": "EN-v57-18060203518",
+ "versionSlug": "en-v57-18060203518",
+ "tags": [
+ "EN",
+ "EN v57",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v57-18060203518"
+ ]
+ },
+ {
+ "slug": "interview-qa-en-v57-18060203518-interview-qa-guide",
+ "title": "Interview QA Guide",
+ "description": "Interview QA Guide — interview qa (edition EN v57, release EN-v57-18060203518, available as PDF and HTML).",
+ "category": "interview qa",
+ "version": "EN v57",
+ "updatedAt": "2025-09-27T13:10:56Z",
+ "collection": "interview-qa",
+ "collectionSlug": "interview-qa",
+ "collectionLabel": "interview qa",
+ "pdfUrl": "/docs/interview-qa/EN-v57-18060203518/Interview-QA-Guide.pdf",
+ "htmlUrl": "/docs/interview-qa/EN-v57-18060203518/Interview-QA-Guide.html",
+ "language": "EN",
+ "variant": "EN-v57-18060203518",
+ "versionSlug": "en-v57-18060203518",
+ "tags": [
+ "EN",
+ "EN v57",
+ "interview qa"
+ ],
+ "pathSegments": [
+ "interview-qa",
+ "EN-v57-18060203518"
+ ]
+ },
+ {
+ "slug": "landingzone-en-v57-18060203518-landing-zone-design-and-implementation",
+ "title": "Landing Zone Design and Implementation",
+ "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v57, release EN-v57-18060203518, available as PDF).",
+ "category": "Landing Zone",
+ "version": "EN v57",
+ "updatedAt": "2025-09-27T13:10:25Z",
+ "collection": "LandingZone",
+ "collectionSlug": "landingzone",
+ "collectionLabel": "Landing Zone",
+ "pdfUrl": "/docs/LandingZone/EN-v57-18060203518/Landing-Zone-Design-and-Implementation.pdf",
+ "language": "EN",
+ "variant": "EN-v57-18060203518",
+ "versionSlug": "en-v57-18060203518",
+ "tags": [
+ "EN",
+ "EN v57",
+ "Landing Zone"
+ ],
+ "pathSegments": [
+ "LandingZone",
+ "EN-v57-18060203518"
+ ]
+ },
+ {
+ "slug": "observability-cn-v56-18031095670-observability-design-and-implementation",
+ "title": "Observability Design and Implementation",
+ "description": "Observability Design and Implementation — Observability (edition CN v56, release CN-v56-18031095670, available as PDF and HTML).",
+ "category": "Observability",
+ "version": "CN v56",
+ "updatedAt": "2025-09-26T07:34:52Z",
+ "collection": "Observability",
+ "collectionSlug": "observability",
+ "collectionLabel": "Observability",
+ "pdfUrl": "/docs/Observability/CN-v56-18031095670/Observability-Design-and-Implementation.pdf",
+ "htmlUrl": "/docs/Observability/CN-v56-18031095670/Observability-Design-and-Implementation.html",
+ "language": "CN",
+ "variant": "CN-v56-18031095670",
+ "versionSlug": "cn-v56-18031095670",
+ "tags": [
+ "CN",
+ "CN v56",
+ "Observability"
+ ],
+ "pathSegments": [
+ "Observability",
+ "CN-v56-18031095670"
+ ]
+ },
+ {
+ "slug": "keycloak-en-v56-18031095670-keycloak-sso-design-and-implementation",
+ "title": "Keycloak SSO Design and Implementation",
+ "description": "Keycloak SSO Design and Implementation — Keycloak (edition EN v56, release EN-v56-18031095670, available as HTML).",
+ "category": "Keycloak",
+ "version": "EN v56",
+ "updatedAt": "2025-09-26T07:34:14Z",
+ "collection": "Keycloak",
+ "collectionSlug": "keycloak",
+ "collectionLabel": "Keycloak",
+ "htmlUrl": "/docs/Keycloak/EN-v56-18031095670/Keycloak-SSO-Design-and-Implementation.html",
+ "language": "EN",
+ "variant": "EN-v56-18031095670",
+ "versionSlug": "en-v56-18031095670",
+ "tags": [
+ "EN",
+ "EN v56",
+ "Keycloak"
+ ],
+ "pathSegments": [
+ "Keycloak",
+ "EN-v56-18031095670"
+ ]
+ },
+ {
+ "slug": "linux-k8s-ops-cn-v56-18031095670-linux-k8s-ops-guide",
+ "title": "Linux K8 S OPS Guide",
+ "description": "Linux K8 S OPS Guide — Linux K8 S OPS (edition CN v56, release CN-v56-18031095670, available as PDF and HTML).",
+ "category": "Linux K8 S OPS",
+ "version": "CN v56",
+ "updatedAt": "2025-09-26T07:34:12Z",
+ "collection": "Linux-K8S-OPS",
+ "collectionSlug": "linux-k8s-ops",
+ "collectionLabel": "Linux K8 S OPS",
+ "pdfUrl": "/docs/Linux-K8S-OPS/CN-v56-18031095670/Linux-K8S-OPS-Guide.pdf",
+ "htmlUrl": "/docs/Linux-K8S-OPS/CN-v56-18031095670/Linux-K8S-OPS-Guide.html",
+ "language": "CN",
+ "variant": "CN-v56-18031095670",
+ "versionSlug": "cn-v56-18031095670",
+ "tags": [
+ "CN",
+ "CN v56",
+ "Linux K8 S OPS"
+ ],
+ "pathSegments": [
+ "Linux-K8S-OPS",
+ "CN-v56-18031095670"
+ ]
+ },
+ {
+ "slug": "interview-qa-en-v56-18031095670-interview-qa-guide",
+ "title": "Interview QA Guide",
+ "description": "Interview QA Guide — interview qa (edition EN v56, release EN-v56-18031095670, available as PDF and HTML).",
+ "category": "interview qa",
+ "version": "EN v56",
+ "updatedAt": "2025-09-26T07:34:01Z",
+ "collection": "interview-qa",
+ "collectionSlug": "interview-qa",
+ "collectionLabel": "interview qa",
+ "pdfUrl": "/docs/interview-qa/EN-v56-18031095670/Interview-QA-Guide.pdf",
+ "htmlUrl": "/docs/interview-qa/EN-v56-18031095670/Interview-QA-Guide.html",
+ "language": "EN",
+ "variant": "EN-v56-18031095670",
+ "versionSlug": "en-v56-18031095670",
+ "tags": [
+ "EN",
+ "EN v56",
+ "interview qa"
+ ],
+ "pathSegments": [
+ "interview-qa",
+ "EN-v56-18031095670"
+ ]
+ },
+ {
+ "slug": "the-indiedeveloper-fullstack-roadmap-en-v56-18031095670-fullstack-roadmap-en",
+ "title": "fullstack roadmap en",
+ "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v56, release EN-v56-18031095670, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "EN v56",
+ "updatedAt": "2025-09-26T07:33:59Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v56-18031095670/fullstack-roadmap-en.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v56-18031095670/fullstack-roadmap-en.html",
+ "language": "EN",
+ "variant": "EN-v56-18031095670",
+ "versionSlug": "en-v56-18031095670",
+ "tags": [
+ "EN",
+ "EN v56",
+ "The Indie Developer Fullstack Roadmap"
+ ],
+ "pathSegments": [
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "EN-v56-18031095670"
+ ]
+ },
+ {
+ "slug": "landingzone-en-v56-18031095670-landing-zone-design-and-implementation",
+ "title": "Landing Zone Design and Implementation",
+ "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v56, release EN-v56-18031095670, available as PDF).",
+ "category": "Landing Zone",
+ "version": "EN v56",
+ "updatedAt": "2025-09-26T07:32:55Z",
+ "collection": "LandingZone",
+ "collectionSlug": "landingzone",
+ "collectionLabel": "Landing Zone",
+ "pdfUrl": "/docs/LandingZone/EN-v56-18031095670/Landing-Zone-Design-and-Implementation.pdf",
+ "language": "EN",
+ "variant": "EN-v56-18031095670",
+ "versionSlug": "en-v56-18031095670",
+ "tags": [
+ "EN",
+ "EN v56",
+ "Landing Zone"
+ ],
+ "pathSegments": [
+ "LandingZone",
+ "EN-v56-18031095670"
+ ]
+ },
+ {
+ "slug": "personal-en-v56-18031095670-fullstack-language-core",
+ "title": "fullstack language core",
+ "description": "fullstack language core — Personal (edition EN v56, release EN-v56-18031095670, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v56",
+ "updatedAt": "2025-09-26T07:32:52Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v56-18031095670/fullstack-language-core.pdf",
+ "htmlUrl": "/docs/Personal/EN-v56-18031095670/fullstack-language-core.html",
+ "language": "EN",
+ "variant": "EN-v56-18031095670",
+ "versionSlug": "en-v56-18031095670",
+ "tags": [
+ "EN",
+ "EN v56",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v56-18031095670"
+ ]
+ },
+ {
+ "slug": "personal-en-v56-18031095670-cet-6",
+ "title": "cet 6",
+ "description": "cet 6 — Personal (edition EN v56, release EN-v56-18031095670, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v56",
+ "updatedAt": "2025-09-26T07:32:52Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v56-18031095670/cet-6.pdf",
+ "htmlUrl": "/docs/Personal/EN-v56-18031095670/cet-6.html",
+ "language": "EN",
+ "variant": "EN-v56-18031095670",
+ "versionSlug": "en-v56-18031095670",
+ "tags": [
+ "EN",
+ "EN v56",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v56-18031095670"
+ ]
+ },
+ {
+ "slug": "personal-en-v56-18031095670-resume-zh",
+ "title": "Resume ZH",
+ "description": "Resume ZH — Personal (edition EN v56, release EN-v56-18031095670, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v56",
+ "updatedAt": "2025-09-26T07:32:51Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v56-18031095670/Resume-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v56-18031095670/Resume-ZH.html",
+ "language": "EN",
+ "variant": "EN-v56-18031095670",
+ "versionSlug": "en-v56-18031095670",
+ "tags": [
+ "EN",
+ "EN v56",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v56-18031095670"
+ ]
+ },
+ {
+ "slug": "personal-en-v56-18031095670-resume-en",
+ "title": "Resume EN",
+ "description": "Resume EN — Personal (edition EN v56, release EN-v56-18031095670, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v56",
+ "updatedAt": "2025-09-26T07:32:51Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v56-18031095670/Resume-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v56-18031095670/Resume-EN.html",
+ "language": "EN",
+ "variant": "EN-v56-18031095670",
+ "versionSlug": "en-v56-18031095670",
+ "tags": [
+ "EN",
+ "EN v56",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v56-18031095670"
+ ]
+ },
+ {
+ "slug": "personal-en-v56-18031095670-resume-devops-en",
+ "title": "Resume Dev Ops EN",
+ "description": "Resume Dev Ops EN — Personal (edition EN v56, release EN-v56-18031095670, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v56",
+ "updatedAt": "2025-09-26T07:32:51Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v56-18031095670/Resume-DevOps-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v56-18031095670/Resume-DevOps-EN.html",
+ "language": "EN",
+ "variant": "EN-v56-18031095670",
+ "versionSlug": "en-v56-18031095670",
+ "tags": [
+ "EN",
+ "EN v56",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v56-18031095670"
+ ]
+ },
+ {
+ "slug": "personal-en-v56-18031095670-resume-devops-zh",
+ "title": "Resume Dev OPS ZH",
+ "description": "Resume Dev OPS ZH — Personal (edition EN v56, release EN-v56-18031095670, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v56",
+ "updatedAt": "2025-09-26T07:32:51Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v56-18031095670/Resume-DevOPS-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v56-18031095670/Resume-DevOPS-ZH.html",
+ "language": "EN",
+ "variant": "EN-v56-18031095670",
+ "versionSlug": "en-v56-18031095670",
+ "tags": [
+ "EN",
+ "EN v56",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v56-18031095670"
+ ]
+ },
+ {
+ "slug": "personal-en-v56-18031095670-readme",
+ "title": "README",
+ "description": "README — Personal (edition EN v56, release EN-v56-18031095670, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v56",
+ "updatedAt": "2025-09-26T07:32:51Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v56-18031095670/README.pdf",
+ "htmlUrl": "/docs/Personal/EN-v56-18031095670/README.html",
+ "language": "EN",
+ "variant": "EN-v56-18031095670",
+ "versionSlug": "en-v56-18031095670",
+ "tags": [
+ "EN",
+ "EN v56",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v56-18031095670"
+ ]
+ },
+ {
+ "slug": "personal-en-v56-18031095670-cv-zh",
+ "title": "CV ZH",
+ "description": "CV ZH — Personal (edition EN v56, release EN-v56-18031095670, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v56",
+ "updatedAt": "2025-09-26T07:32:51Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v56-18031095670/CV-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v56-18031095670/CV-ZH.html",
+ "language": "EN",
+ "variant": "EN-v56-18031095670",
+ "versionSlug": "en-v56-18031095670",
+ "tags": [
+ "EN",
+ "EN v56",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v56-18031095670"
+ ]
+ },
+ {
+ "slug": "personal-en-v56-18031095670-cv-en",
+ "title": "CV EN",
+ "description": "CV EN — Personal (edition EN v56, release EN-v56-18031095670, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v56",
+ "updatedAt": "2025-09-26T07:32:51Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v56-18031095670/CV-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v56-18031095670/CV-EN.html",
+ "language": "EN",
+ "variant": "EN-v56-18031095670",
+ "versionSlug": "en-v56-18031095670",
+ "tags": [
+ "EN",
+ "EN v56",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v56-18031095670"
+ ]
+ },
+ {
+ "slug": "personal-en-v56-18031095670-cv-ai-dev-zh",
+ "title": "CV AI Dev ZH",
+ "description": "CV AI Dev ZH — Personal (edition EN v56, release EN-v56-18031095670, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v56",
+ "updatedAt": "2025-09-26T07:32:51Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v56-18031095670/CV-AI-Dev-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v56-18031095670/CV-AI-Dev-ZH.html",
+ "language": "EN",
+ "variant": "EN-v56-18031095670",
+ "versionSlug": "en-v56-18031095670",
+ "tags": [
+ "EN",
+ "EN v56",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v56-18031095670"
+ ]
+ },
+ {
+ "slug": "personal-en-v56-18031095670-cv-ai-dev-en",
+ "title": "CV AI Dev EN",
+ "description": "CV AI Dev EN — Personal (edition EN v56, release EN-v56-18031095670, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v56",
+ "updatedAt": "2025-09-26T07:32:51Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v56-18031095670/CV-AI-Dev-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v56-18031095670/CV-AI-Dev-EN.html",
+ "language": "EN",
+ "variant": "EN-v56-18031095670",
+ "versionSlug": "en-v56-18031095670",
+ "tags": [
+ "EN",
+ "EN v56",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v56-18031095670"
+ ]
+ },
+ {
+ "slug": "personal-en-v56-18031095670-activebalance-plan",
+ "title": "Active Balance Plan",
+ "description": "Active Balance Plan — Personal (edition EN v56, release EN-v56-18031095670, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v56",
+ "updatedAt": "2025-09-26T07:32:51Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v56-18031095670/ActiveBalance-Plan.pdf",
+ "htmlUrl": "/docs/Personal/EN-v56-18031095670/ActiveBalance-Plan.html",
+ "language": "EN",
+ "variant": "EN-v56-18031095670",
+ "versionSlug": "en-v56-18031095670",
+ "tags": [
+ "EN",
+ "EN v56",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v56-18031095670"
+ ]
+ },
+ {
+ "slug": "techexploration-en-v56-18031095670-tech-exploration",
+ "title": "Tech Exploration",
+ "description": "Tech Exploration — Tech Exploration (edition EN v56, release EN-v56-18031095670, available as PDF and HTML).",
+ "category": "Tech Exploration",
+ "version": "EN v56",
+ "updatedAt": "2025-09-26T07:32:41Z",
+ "collection": "TechExploration",
+ "collectionSlug": "techexploration",
+ "collectionLabel": "Tech Exploration",
+ "pdfUrl": "/docs/TechExploration/EN-v56-18031095670/Tech-Exploration.pdf",
+ "htmlUrl": "/docs/TechExploration/EN-v56-18031095670/Tech-Exploration.html",
+ "language": "EN",
+ "variant": "EN-v56-18031095670",
+ "versionSlug": "en-v56-18031095670",
+ "tags": [
+ "EN",
+ "EN v56",
+ "Tech Exploration"
+ ],
+ "pathSegments": [
+ "TechExploration",
+ "EN-v56-18031095670"
+ ]
+ },
+ {
+ "slug": "observability-cn-v55-18030101682-observability-design-and-implementation",
+ "title": "Observability Design and Implementation",
+ "description": "Observability Design and Implementation — Observability (edition CN v55, release CN-v55-18030101682, available as PDF and HTML).",
+ "category": "Observability",
+ "version": "CN v55",
+ "updatedAt": "2025-09-26T06:49:24Z",
+ "collection": "Observability",
+ "collectionSlug": "observability",
+ "collectionLabel": "Observability",
+ "pdfUrl": "/docs/Observability/CN-v55-18030101682/Observability-Design-and-Implementation.pdf",
+ "htmlUrl": "/docs/Observability/CN-v55-18030101682/Observability-Design-and-Implementation.html",
+ "language": "CN",
+ "variant": "CN-v55-18030101682",
+ "versionSlug": "cn-v55-18030101682",
+ "tags": [
+ "CN",
+ "CN v55",
+ "Observability"
+ ],
+ "pathSegments": [
+ "Observability",
+ "CN-v55-18030101682"
+ ]
+ },
+ {
+ "slug": "techexploration-en-v55-18030101682-tech-exploration",
+ "title": "Tech Exploration",
+ "description": "Tech Exploration — Tech Exploration (edition EN v55, release EN-v55-18030101682, available as PDF and HTML).",
+ "category": "Tech Exploration",
+ "version": "EN v55",
+ "updatedAt": "2025-09-26T06:47:15Z",
+ "collection": "TechExploration",
+ "collectionSlug": "techexploration",
+ "collectionLabel": "Tech Exploration",
+ "pdfUrl": "/docs/TechExploration/EN-v55-18030101682/Tech-Exploration.pdf",
+ "htmlUrl": "/docs/TechExploration/EN-v55-18030101682/Tech-Exploration.html",
+ "language": "EN",
+ "variant": "EN-v55-18030101682",
+ "versionSlug": "en-v55-18030101682",
+ "tags": [
+ "EN",
+ "EN v55",
+ "Tech Exploration"
+ ],
+ "pathSegments": [
+ "TechExploration",
+ "EN-v55-18030101682"
+ ]
+ },
+ {
+ "slug": "personal-en-v55-18030101682-fullstack-language-core",
+ "title": "fullstack language core",
+ "description": "fullstack language core — Personal (edition EN v55, release EN-v55-18030101682, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v55",
+ "updatedAt": "2025-09-26T06:47:04Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v55-18030101682/fullstack-language-core.pdf",
+ "htmlUrl": "/docs/Personal/EN-v55-18030101682/fullstack-language-core.html",
+ "language": "EN",
+ "variant": "EN-v55-18030101682",
+ "versionSlug": "en-v55-18030101682",
+ "tags": [
+ "EN",
+ "EN v55",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v55-18030101682"
+ ]
+ },
+ {
+ "slug": "personal-en-v55-18030101682-cet-6",
+ "title": "cet 6",
+ "description": "cet 6 — Personal (edition EN v55, release EN-v55-18030101682, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v55",
+ "updatedAt": "2025-09-26T06:47:04Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v55-18030101682/cet-6.pdf",
+ "htmlUrl": "/docs/Personal/EN-v55-18030101682/cet-6.html",
+ "language": "EN",
+ "variant": "EN-v55-18030101682",
+ "versionSlug": "en-v55-18030101682",
+ "tags": [
+ "EN",
+ "EN v55",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v55-18030101682"
+ ]
+ },
+ {
+ "slug": "personal-en-v55-18030101682-resume-zh",
+ "title": "Resume ZH",
+ "description": "Resume ZH — Personal (edition EN v55, release EN-v55-18030101682, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v55",
+ "updatedAt": "2025-09-26T06:47:04Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v55-18030101682/Resume-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v55-18030101682/Resume-ZH.html",
+ "language": "EN",
+ "variant": "EN-v55-18030101682",
+ "versionSlug": "en-v55-18030101682",
+ "tags": [
+ "EN",
+ "EN v55",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v55-18030101682"
+ ]
+ },
+ {
+ "slug": "personal-en-v55-18030101682-resume-en",
+ "title": "Resume EN",
+ "description": "Resume EN — Personal (edition EN v55, release EN-v55-18030101682, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v55",
+ "updatedAt": "2025-09-26T06:47:04Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v55-18030101682/Resume-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v55-18030101682/Resume-EN.html",
+ "language": "EN",
+ "variant": "EN-v55-18030101682",
+ "versionSlug": "en-v55-18030101682",
+ "tags": [
+ "EN",
+ "EN v55",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v55-18030101682"
+ ]
+ },
+ {
+ "slug": "personal-en-v55-18030101682-resume-devops-en",
+ "title": "Resume Dev Ops EN",
+ "description": "Resume Dev Ops EN — Personal (edition EN v55, release EN-v55-18030101682, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v55",
+ "updatedAt": "2025-09-26T06:47:04Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v55-18030101682/Resume-DevOps-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v55-18030101682/Resume-DevOps-EN.html",
+ "language": "EN",
+ "variant": "EN-v55-18030101682",
+ "versionSlug": "en-v55-18030101682",
+ "tags": [
+ "EN",
+ "EN v55",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v55-18030101682"
+ ]
+ },
+ {
+ "slug": "personal-en-v55-18030101682-resume-devops-zh",
+ "title": "Resume Dev OPS ZH",
+ "description": "Resume Dev OPS ZH — Personal (edition EN v55, release EN-v55-18030101682, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v55",
+ "updatedAt": "2025-09-26T06:47:03Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v55-18030101682/Resume-DevOPS-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v55-18030101682/Resume-DevOPS-ZH.html",
+ "language": "EN",
+ "variant": "EN-v55-18030101682",
+ "versionSlug": "en-v55-18030101682",
+ "tags": [
+ "EN",
+ "EN v55",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v55-18030101682"
+ ]
+ },
+ {
+ "slug": "personal-en-v55-18030101682-readme",
+ "title": "README",
+ "description": "README — Personal (edition EN v55, release EN-v55-18030101682, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v55",
+ "updatedAt": "2025-09-26T06:47:03Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v55-18030101682/README.pdf",
+ "htmlUrl": "/docs/Personal/EN-v55-18030101682/README.html",
+ "language": "EN",
+ "variant": "EN-v55-18030101682",
+ "versionSlug": "en-v55-18030101682",
+ "tags": [
+ "EN",
+ "EN v55",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v55-18030101682"
+ ]
+ },
+ {
+ "slug": "personal-en-v55-18030101682-cv-zh",
+ "title": "CV ZH",
+ "description": "CV ZH — Personal (edition EN v55, release EN-v55-18030101682, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v55",
+ "updatedAt": "2025-09-26T06:47:03Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v55-18030101682/CV-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v55-18030101682/CV-ZH.html",
+ "language": "EN",
+ "variant": "EN-v55-18030101682",
+ "versionSlug": "en-v55-18030101682",
+ "tags": [
+ "EN",
+ "EN v55",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v55-18030101682"
+ ]
+ },
+ {
+ "slug": "personal-en-v55-18030101682-cv-en",
+ "title": "CV EN",
+ "description": "CV EN — Personal (edition EN v55, release EN-v55-18030101682, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v55",
+ "updatedAt": "2025-09-26T06:47:03Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v55-18030101682/CV-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v55-18030101682/CV-EN.html",
+ "language": "EN",
+ "variant": "EN-v55-18030101682",
+ "versionSlug": "en-v55-18030101682",
+ "tags": [
+ "EN",
+ "EN v55",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v55-18030101682"
+ ]
+ },
+ {
+ "slug": "personal-en-v55-18030101682-cv-ai-dev-zh",
+ "title": "CV AI Dev ZH",
+ "description": "CV AI Dev ZH — Personal (edition EN v55, release EN-v55-18030101682, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v55",
+ "updatedAt": "2025-09-26T06:47:03Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v55-18030101682/CV-AI-Dev-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v55-18030101682/CV-AI-Dev-ZH.html",
+ "language": "EN",
+ "variant": "EN-v55-18030101682",
+ "versionSlug": "en-v55-18030101682",
+ "tags": [
+ "EN",
+ "EN v55",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v55-18030101682"
+ ]
+ },
+ {
+ "slug": "personal-en-v55-18030101682-cv-ai-dev-en",
+ "title": "CV AI Dev EN",
+ "description": "CV AI Dev EN — Personal (edition EN v55, release EN-v55-18030101682, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v55",
+ "updatedAt": "2025-09-26T06:47:03Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v55-18030101682/CV-AI-Dev-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v55-18030101682/CV-AI-Dev-EN.html",
+ "language": "EN",
+ "variant": "EN-v55-18030101682",
+ "versionSlug": "en-v55-18030101682",
+ "tags": [
+ "EN",
+ "EN v55",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v55-18030101682"
+ ]
+ },
+ {
+ "slug": "personal-en-v55-18030101682-activebalance-plan",
+ "title": "Active Balance Plan",
+ "description": "Active Balance Plan — Personal (edition EN v55, release EN-v55-18030101682, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v55",
+ "updatedAt": "2025-09-26T06:47:03Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v55-18030101682/ActiveBalance-Plan.pdf",
+ "htmlUrl": "/docs/Personal/EN-v55-18030101682/ActiveBalance-Plan.html",
+ "language": "EN",
+ "variant": "EN-v55-18030101682",
+ "versionSlug": "en-v55-18030101682",
+ "tags": [
+ "EN",
+ "EN v55",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v55-18030101682"
+ ]
+ },
+ {
+ "slug": "interview-qa-en-v55-18030101682-interview-qa-guide",
+ "title": "Interview QA Guide",
+ "description": "Interview QA Guide — interview qa (edition EN v55, release EN-v55-18030101682, available as PDF and HTML).",
+ "category": "interview qa",
+ "version": "EN v55",
+ "updatedAt": "2025-09-26T06:46:12Z",
+ "collection": "interview-qa",
+ "collectionSlug": "interview-qa",
+ "collectionLabel": "interview qa",
+ "pdfUrl": "/docs/interview-qa/EN-v55-18030101682/Interview-QA-Guide.pdf",
+ "htmlUrl": "/docs/interview-qa/EN-v55-18030101682/Interview-QA-Guide.html",
+ "language": "EN",
+ "variant": "EN-v55-18030101682",
+ "versionSlug": "en-v55-18030101682",
+ "tags": [
+ "EN",
+ "EN v55",
+ "interview qa"
+ ],
+ "pathSegments": [
+ "interview-qa",
+ "EN-v55-18030101682"
+ ]
+ },
+ {
+ "slug": "keycloak-en-v55-18030101682-keycloak-sso-design-and-implementation",
+ "title": "Keycloak SSO Design and Implementation",
+ "description": "Keycloak SSO Design and Implementation — Keycloak (edition EN v55, release EN-v55-18030101682, available as HTML).",
+ "category": "Keycloak",
+ "version": "EN v55",
+ "updatedAt": "2025-09-26T06:46:01Z",
+ "collection": "Keycloak",
+ "collectionSlug": "keycloak",
+ "collectionLabel": "Keycloak",
+ "htmlUrl": "/docs/Keycloak/EN-v55-18030101682/Keycloak-SSO-Design-and-Implementation.html",
+ "language": "EN",
+ "variant": "EN-v55-18030101682",
+ "versionSlug": "en-v55-18030101682",
+ "tags": [
+ "EN",
+ "EN v55",
+ "Keycloak"
+ ],
+ "pathSegments": [
+ "Keycloak",
+ "EN-v55-18030101682"
+ ]
+ },
+ {
+ "slug": "landingzone-en-v55-18030101682-landing-zone-design-and-implementation",
+ "title": "Landing Zone Design and Implementation",
+ "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v55, release EN-v55-18030101682, available as PDF).",
+ "category": "Landing Zone",
+ "version": "EN v55",
+ "updatedAt": "2025-09-26T06:45:23Z",
+ "collection": "LandingZone",
+ "collectionSlug": "landingzone",
+ "collectionLabel": "Landing Zone",
+ "pdfUrl": "/docs/LandingZone/EN-v55-18030101682/Landing-Zone-Design-and-Implementation.pdf",
+ "language": "EN",
+ "variant": "EN-v55-18030101682",
+ "versionSlug": "en-v55-18030101682",
+ "tags": [
+ "EN",
+ "EN v55",
+ "Landing Zone"
+ ],
+ "pathSegments": [
+ "LandingZone",
+ "EN-v55-18030101682"
+ ]
+ },
+ {
+ "slug": "the-indiedeveloper-fullstack-roadmap-en-v55-18030101682-fullstack-roadmap-en",
+ "title": "fullstack roadmap en",
+ "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v55, release EN-v55-18030101682, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "EN v55",
+ "updatedAt": "2025-09-26T06:44:50Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v55-18030101682/fullstack-roadmap-en.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v55-18030101682/fullstack-roadmap-en.html",
+ "language": "EN",
+ "variant": "EN-v55-18030101682",
+ "versionSlug": "en-v55-18030101682",
+ "tags": [
+ "EN",
+ "EN v55",
+ "The Indie Developer Fullstack Roadmap"
+ ],
+ "pathSegments": [
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "EN-v55-18030101682"
+ ]
+ },
+ {
+ "slug": "linux-k8s-ops-cn-v55-18030101682-linux-k8s-ops-guide",
+ "title": "Linux K8 S OPS Guide",
+ "description": "Linux K8 S OPS Guide — Linux K8 S OPS (edition CN v55, release CN-v55-18030101682, available as PDF and HTML).",
+ "category": "Linux K8 S OPS",
+ "version": "CN v55",
+ "updatedAt": "2025-09-26T06:44:29Z",
+ "collection": "Linux-K8S-OPS",
+ "collectionSlug": "linux-k8s-ops",
+ "collectionLabel": "Linux K8 S OPS",
+ "pdfUrl": "/docs/Linux-K8S-OPS/CN-v55-18030101682/Linux-K8S-OPS-Guide.pdf",
+ "htmlUrl": "/docs/Linux-K8S-OPS/CN-v55-18030101682/Linux-K8S-OPS-Guide.html",
+ "language": "CN",
+ "variant": "CN-v55-18030101682",
+ "versionSlug": "cn-v55-18030101682",
+ "tags": [
+ "CN",
+ "CN v55",
+ "Linux K8 S OPS"
+ ],
+ "pathSegments": [
+ "Linux-K8S-OPS",
+ "CN-v55-18030101682"
+ ]
+ },
+ {
+ "slug": "techexploration-en-v54-18029756788-tech-exploration",
+ "title": "Tech Exploration",
+ "description": "Tech Exploration — Tech Exploration (edition EN v54, release EN-v54-18029756788, available as PDF and HTML).",
+ "category": "Tech Exploration",
+ "version": "EN v54",
+ "updatedAt": "2025-09-26T06:30:31Z",
+ "collection": "TechExploration",
+ "collectionSlug": "techexploration",
+ "collectionLabel": "Tech Exploration",
+ "pdfUrl": "/docs/TechExploration/EN-v54-18029756788/Tech-Exploration.pdf",
+ "htmlUrl": "/docs/TechExploration/EN-v54-18029756788/Tech-Exploration.html",
+ "language": "EN",
+ "variant": "EN-v54-18029756788",
+ "versionSlug": "en-v54-18029756788",
+ "tags": [
+ "EN",
+ "EN v54",
+ "Tech Exploration"
+ ],
+ "pathSegments": [
+ "TechExploration",
+ "EN-v54-18029756788"
+ ]
+ },
+ {
+ "slug": "personal-en-v54-18029756788-fullstack-language-core",
+ "title": "fullstack language core",
+ "description": "fullstack language core — Personal (edition EN v54, release EN-v54-18029756788, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v54",
+ "updatedAt": "2025-09-26T06:28:57Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v54-18029756788/fullstack-language-core.pdf",
+ "htmlUrl": "/docs/Personal/EN-v54-18029756788/fullstack-language-core.html",
+ "language": "EN",
+ "variant": "EN-v54-18029756788",
+ "versionSlug": "en-v54-18029756788",
+ "tags": [
+ "EN",
+ "EN v54",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v54-18029756788"
+ ]
+ },
+ {
+ "slug": "personal-en-v54-18029756788-cet-6",
+ "title": "cet 6",
+ "description": "cet 6 — Personal (edition EN v54, release EN-v54-18029756788, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v54",
+ "updatedAt": "2025-09-26T06:28:57Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v54-18029756788/cet-6.pdf",
+ "htmlUrl": "/docs/Personal/EN-v54-18029756788/cet-6.html",
+ "language": "EN",
+ "variant": "EN-v54-18029756788",
+ "versionSlug": "en-v54-18029756788",
+ "tags": [
+ "EN",
+ "EN v54",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v54-18029756788"
+ ]
+ },
+ {
+ "slug": "personal-en-v54-18029756788-resume-zh",
+ "title": "Resume ZH",
+ "description": "Resume ZH — Personal (edition EN v54, release EN-v54-18029756788, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v54",
+ "updatedAt": "2025-09-26T06:28:56Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v54-18029756788/Resume-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v54-18029756788/Resume-ZH.html",
+ "language": "EN",
+ "variant": "EN-v54-18029756788",
+ "versionSlug": "en-v54-18029756788",
+ "tags": [
+ "EN",
+ "EN v54",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v54-18029756788"
+ ]
+ },
+ {
+ "slug": "personal-en-v54-18029756788-resume-en",
+ "title": "Resume EN",
+ "description": "Resume EN — Personal (edition EN v54, release EN-v54-18029756788, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v54",
+ "updatedAt": "2025-09-26T06:28:56Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v54-18029756788/Resume-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v54-18029756788/Resume-EN.html",
+ "language": "EN",
+ "variant": "EN-v54-18029756788",
+ "versionSlug": "en-v54-18029756788",
+ "tags": [
+ "EN",
+ "EN v54",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v54-18029756788"
+ ]
+ },
+ {
+ "slug": "personal-en-v54-18029756788-resume-devops-en",
+ "title": "Resume Dev Ops EN",
+ "description": "Resume Dev Ops EN — Personal (edition EN v54, release EN-v54-18029756788, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v54",
+ "updatedAt": "2025-09-26T06:28:56Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v54-18029756788/Resume-DevOps-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v54-18029756788/Resume-DevOps-EN.html",
+ "language": "EN",
+ "variant": "EN-v54-18029756788",
+ "versionSlug": "en-v54-18029756788",
+ "tags": [
+ "EN",
+ "EN v54",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v54-18029756788"
+ ]
+ },
+ {
+ "slug": "personal-en-v54-18029756788-resume-devops-zh",
+ "title": "Resume Dev OPS ZH",
+ "description": "Resume Dev OPS ZH — Personal (edition EN v54, release EN-v54-18029756788, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v54",
+ "updatedAt": "2025-09-26T06:28:56Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v54-18029756788/Resume-DevOPS-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v54-18029756788/Resume-DevOPS-ZH.html",
+ "language": "EN",
+ "variant": "EN-v54-18029756788",
+ "versionSlug": "en-v54-18029756788",
+ "tags": [
+ "EN",
+ "EN v54",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v54-18029756788"
+ ]
+ },
+ {
+ "slug": "personal-en-v54-18029756788-readme",
+ "title": "README",
+ "description": "README — Personal (edition EN v54, release EN-v54-18029756788, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v54",
+ "updatedAt": "2025-09-26T06:28:56Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v54-18029756788/README.pdf",
+ "htmlUrl": "/docs/Personal/EN-v54-18029756788/README.html",
+ "language": "EN",
+ "variant": "EN-v54-18029756788",
+ "versionSlug": "en-v54-18029756788",
+ "tags": [
+ "EN",
+ "EN v54",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v54-18029756788"
+ ]
+ },
+ {
+ "slug": "personal-en-v54-18029756788-cv-zh",
+ "title": "CV ZH",
+ "description": "CV ZH — Personal (edition EN v54, release EN-v54-18029756788, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v54",
+ "updatedAt": "2025-09-26T06:28:56Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v54-18029756788/CV-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v54-18029756788/CV-ZH.html",
+ "language": "EN",
+ "variant": "EN-v54-18029756788",
+ "versionSlug": "en-v54-18029756788",
+ "tags": [
+ "EN",
+ "EN v54",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v54-18029756788"
+ ]
+ },
+ {
+ "slug": "personal-en-v54-18029756788-cv-en",
+ "title": "CV EN",
+ "description": "CV EN — Personal (edition EN v54, release EN-v54-18029756788, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v54",
+ "updatedAt": "2025-09-26T06:28:56Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v54-18029756788/CV-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v54-18029756788/CV-EN.html",
+ "language": "EN",
+ "variant": "EN-v54-18029756788",
+ "versionSlug": "en-v54-18029756788",
+ "tags": [
+ "EN",
+ "EN v54",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v54-18029756788"
+ ]
+ },
+ {
+ "slug": "personal-en-v54-18029756788-cv-ai-dev-zh",
+ "title": "CV AI Dev ZH",
+ "description": "CV AI Dev ZH — Personal (edition EN v54, release EN-v54-18029756788, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v54",
+ "updatedAt": "2025-09-26T06:28:56Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v54-18029756788/CV-AI-Dev-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v54-18029756788/CV-AI-Dev-ZH.html",
+ "language": "EN",
+ "variant": "EN-v54-18029756788",
+ "versionSlug": "en-v54-18029756788",
+ "tags": [
+ "EN",
+ "EN v54",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v54-18029756788"
+ ]
+ },
+ {
+ "slug": "personal-en-v54-18029756788-cv-ai-dev-en",
+ "title": "CV AI Dev EN",
+ "description": "CV AI Dev EN — Personal (edition EN v54, release EN-v54-18029756788, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v54",
+ "updatedAt": "2025-09-26T06:28:56Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v54-18029756788/CV-AI-Dev-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v54-18029756788/CV-AI-Dev-EN.html",
+ "language": "EN",
+ "variant": "EN-v54-18029756788",
+ "versionSlug": "en-v54-18029756788",
+ "tags": [
+ "EN",
+ "EN v54",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v54-18029756788"
+ ]
+ },
+ {
+ "slug": "personal-en-v54-18029756788-activebalance-plan",
+ "title": "Active Balance Plan",
+ "description": "Active Balance Plan — Personal (edition EN v54, release EN-v54-18029756788, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v54",
+ "updatedAt": "2025-09-26T06:28:56Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v54-18029756788/ActiveBalance-Plan.pdf",
+ "htmlUrl": "/docs/Personal/EN-v54-18029756788/ActiveBalance-Plan.html",
+ "language": "EN",
+ "variant": "EN-v54-18029756788",
+ "versionSlug": "en-v54-18029756788",
+ "tags": [
+ "EN",
+ "EN v54",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v54-18029756788"
+ ]
+ },
+ {
+ "slug": "the-indiedeveloper-fullstack-roadmap-en-v54-18029756788-fullstack-roadmap-en",
+ "title": "fullstack roadmap en",
+ "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v54, release EN-v54-18029756788, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "EN v54",
+ "updatedAt": "2025-09-26T06:28:22Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v54-18029756788/fullstack-roadmap-en.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v54-18029756788/fullstack-roadmap-en.html",
+ "language": "EN",
+ "variant": "EN-v54-18029756788",
+ "versionSlug": "en-v54-18029756788",
+ "tags": [
+ "EN",
+ "EN v54",
+ "The Indie Developer Fullstack Roadmap"
+ ],
+ "pathSegments": [
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "EN-v54-18029756788"
+ ]
+ },
+ {
+ "slug": "landingzone-en-v54-18029756788-landing-zone-design-and-implementation",
+ "title": "Landing Zone Design and Implementation",
+ "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v54, release EN-v54-18029756788, available as PDF).",
+ "category": "Landing Zone",
+ "version": "EN v54",
+ "updatedAt": "2025-09-26T06:28:14Z",
+ "collection": "LandingZone",
+ "collectionSlug": "landingzone",
+ "collectionLabel": "Landing Zone",
+ "pdfUrl": "/docs/LandingZone/EN-v54-18029756788/Landing-Zone-Design-and-Implementation.pdf",
+ "language": "EN",
+ "variant": "EN-v54-18029756788",
+ "versionSlug": "en-v54-18029756788",
+ "tags": [
+ "EN",
+ "EN v54",
+ "Landing Zone"
+ ],
+ "pathSegments": [
+ "LandingZone",
+ "EN-v54-18029756788"
+ ]
+ },
+ {
+ "slug": "keycloak-en-v54-18029756788-keycloak-sso-design-and-implementation",
+ "title": "Keycloak SSO Design and Implementation",
+ "description": "Keycloak SSO Design and Implementation — Keycloak (edition EN v54, release EN-v54-18029756788, available as HTML).",
+ "category": "Keycloak",
+ "version": "EN v54",
+ "updatedAt": "2025-09-26T06:28:08Z",
+ "collection": "Keycloak",
+ "collectionSlug": "keycloak",
+ "collectionLabel": "Keycloak",
+ "htmlUrl": "/docs/Keycloak/EN-v54-18029756788/Keycloak-SSO-Design-and-Implementation.html",
+ "language": "EN",
+ "variant": "EN-v54-18029756788",
+ "versionSlug": "en-v54-18029756788",
+ "tags": [
+ "EN",
+ "EN v54",
+ "Keycloak"
+ ],
+ "pathSegments": [
+ "Keycloak",
+ "EN-v54-18029756788"
+ ]
+ },
+ {
+ "slug": "linux-k8s-ops-cn-v54-18029756788-linux-k8s-ops-guide",
+ "title": "Linux K8 S OPS Guide",
+ "description": "Linux K8 S OPS Guide — Linux K8 S OPS (edition CN v54, release CN-v54-18029756788, available as PDF and HTML).",
+ "category": "Linux K8 S OPS",
+ "version": "CN v54",
+ "updatedAt": "2025-09-26T06:27:41Z",
+ "collection": "Linux-K8S-OPS",
+ "collectionSlug": "linux-k8s-ops",
+ "collectionLabel": "Linux K8 S OPS",
+ "pdfUrl": "/docs/Linux-K8S-OPS/CN-v54-18029756788/Linux-K8S-OPS-Guide.pdf",
+ "htmlUrl": "/docs/Linux-K8S-OPS/CN-v54-18029756788/Linux-K8S-OPS-Guide.html",
+ "language": "CN",
+ "variant": "CN-v54-18029756788",
+ "versionSlug": "cn-v54-18029756788",
+ "tags": [
+ "CN",
+ "CN v54",
+ "Linux K8 S OPS"
+ ],
+ "pathSegments": [
+ "Linux-K8S-OPS",
+ "CN-v54-18029756788"
+ ]
+ },
+ {
+ "slug": "observability-cn-v54-18029756788-observability-design-and-implementation",
+ "title": "Observability Design and Implementation",
+ "description": "Observability Design and Implementation — Observability (edition CN v54, release CN-v54-18029756788, available as PDF and HTML).",
+ "category": "Observability",
+ "version": "CN v54",
+ "updatedAt": "2025-09-26T06:26:57Z",
+ "collection": "Observability",
+ "collectionSlug": "observability",
+ "collectionLabel": "Observability",
+ "pdfUrl": "/docs/Observability/CN-v54-18029756788/Observability-Design-and-Implementation.pdf",
+ "htmlUrl": "/docs/Observability/CN-v54-18029756788/Observability-Design-and-Implementation.html",
+ "language": "CN",
+ "variant": "CN-v54-18029756788",
+ "versionSlug": "cn-v54-18029756788",
+ "tags": [
+ "CN",
+ "CN v54",
+ "Observability"
+ ],
+ "pathSegments": [
+ "Observability",
+ "CN-v54-18029756788"
+ ]
+ },
+ {
+ "slug": "landingzone-en-v53-18027447911-landing-zone-design-and-implementation",
+ "title": "Landing Zone Design and Implementation",
+ "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v53, release EN-v53-18027447911, available as PDF).",
+ "category": "Landing Zone",
+ "version": "EN v53",
+ "updatedAt": "2025-09-26T04:07:18Z",
+ "collection": "LandingZone",
+ "collectionSlug": "landingzone",
+ "collectionLabel": "Landing Zone",
+ "pdfUrl": "/docs/LandingZone/EN-v53-18027447911/Landing-Zone-Design-and-Implementation.pdf",
+ "language": "EN",
+ "variant": "EN-v53-18027447911",
+ "versionSlug": "en-v53-18027447911",
+ "tags": [
+ "EN",
+ "EN v53",
+ "Landing Zone"
+ ],
+ "pathSegments": [
+ "LandingZone",
+ "EN-v53-18027447911"
+ ]
+ },
+ {
+ "slug": "linux-k8s-ops-cn-v53-18027447911-linux-k8s-ops-guide",
+ "title": "Linux K8 S OPS Guide",
+ "description": "Linux K8 S OPS Guide — Linux K8 S OPS (edition CN v53, release CN-v53-18027447911, available as PDF and HTML).",
+ "category": "Linux K8 S OPS",
+ "version": "CN v53",
+ "updatedAt": "2025-09-26T04:06:01Z",
+ "collection": "Linux-K8S-OPS",
+ "collectionSlug": "linux-k8s-ops",
+ "collectionLabel": "Linux K8 S OPS",
+ "pdfUrl": "/docs/Linux-K8S-OPS/CN-v53-18027447911/Linux-K8S-OPS-Guide.pdf",
+ "htmlUrl": "/docs/Linux-K8S-OPS/CN-v53-18027447911/Linux-K8S-OPS-Guide.html",
+ "language": "CN",
+ "variant": "CN-v53-18027447911",
+ "versionSlug": "cn-v53-18027447911",
+ "tags": [
+ "CN",
+ "CN v53",
+ "Linux K8 S OPS"
+ ],
+ "pathSegments": [
+ "Linux-K8S-OPS",
+ "CN-v53-18027447911"
+ ]
+ },
+ {
+ "slug": "interview-qa-en-v53-18027447911-interview-qa-guide",
+ "title": "Interview QA Guide",
+ "description": "Interview QA Guide — interview qa (edition EN v53, release EN-v53-18027447911, available as PDF and HTML).",
+ "category": "interview qa",
+ "version": "EN v53",
+ "updatedAt": "2025-09-26T04:05:46Z",
+ "collection": "interview-qa",
+ "collectionSlug": "interview-qa",
+ "collectionLabel": "interview qa",
+ "pdfUrl": "/docs/interview-qa/EN-v53-18027447911/Interview-QA-Guide.pdf",
+ "htmlUrl": "/docs/interview-qa/EN-v53-18027447911/Interview-QA-Guide.html",
+ "language": "EN",
+ "variant": "EN-v53-18027447911",
+ "versionSlug": "en-v53-18027447911",
+ "tags": [
+ "EN",
+ "EN v53",
+ "interview qa"
+ ],
+ "pathSegments": [
+ "interview-qa",
+ "EN-v53-18027447911"
+ ]
+ },
+ {
+ "slug": "observability-cn-v53-18027447911-observability-design-and-implementation",
+ "title": "Observability Design and Implementation",
+ "description": "Observability Design and Implementation — Observability (edition CN v53, release CN-v53-18027447911, available as PDF and HTML).",
+ "category": "Observability",
+ "version": "CN v53",
+ "updatedAt": "2025-09-26T04:05:43Z",
+ "collection": "Observability",
+ "collectionSlug": "observability",
+ "collectionLabel": "Observability",
+ "pdfUrl": "/docs/Observability/CN-v53-18027447911/Observability-Design-and-Implementation.pdf",
+ "htmlUrl": "/docs/Observability/CN-v53-18027447911/Observability-Design-and-Implementation.html",
+ "language": "CN",
+ "variant": "CN-v53-18027447911",
+ "versionSlug": "cn-v53-18027447911",
+ "tags": [
+ "CN",
+ "CN v53",
+ "Observability"
+ ],
+ "pathSegments": [
+ "Observability",
+ "CN-v53-18027447911"
+ ]
+ },
+ {
+ "slug": "interview-qa-en-v52-18027443116-interview-qa-guide",
+ "title": "Interview QA Guide",
+ "description": "Interview QA Guide — interview qa (edition EN v52, release EN-v52-18027443116, available as PDF and HTML).",
+ "category": "interview qa",
+ "version": "EN v52",
+ "updatedAt": "2025-09-26T04:04:44Z",
+ "collection": "interview-qa",
+ "collectionSlug": "interview-qa",
+ "collectionLabel": "interview qa",
+ "pdfUrl": "/docs/interview-qa/EN-v52-18027443116/Interview-QA-Guide.pdf",
+ "htmlUrl": "/docs/interview-qa/EN-v52-18027443116/Interview-QA-Guide.html",
+ "language": "EN",
+ "variant": "EN-v52-18027443116",
+ "versionSlug": "en-v52-18027443116",
+ "tags": [
+ "EN",
+ "EN v52",
+ "interview qa"
+ ],
+ "pathSegments": [
+ "interview-qa",
+ "EN-v52-18027443116"
+ ]
+ },
+ {
+ "slug": "observability-cn-v52-18027443116-observability-design-and-implementation",
+ "title": "Observability Design and Implementation",
+ "description": "Observability Design and Implementation — Observability (edition CN v52, release CN-v52-18027443116, available as PDF and HTML).",
+ "category": "Observability",
+ "version": "CN v52",
+ "updatedAt": "2025-09-26T04:04:43Z",
+ "collection": "Observability",
+ "collectionSlug": "observability",
+ "collectionLabel": "Observability",
+ "pdfUrl": "/docs/Observability/CN-v52-18027443116/Observability-Design-and-Implementation.pdf",
+ "htmlUrl": "/docs/Observability/CN-v52-18027443116/Observability-Design-and-Implementation.html",
+ "language": "CN",
+ "variant": "CN-v52-18027443116",
+ "versionSlug": "cn-v52-18027443116",
+ "tags": [
+ "CN",
+ "CN v52",
+ "Observability"
+ ],
+ "pathSegments": [
+ "Observability",
+ "CN-v52-18027443116"
+ ]
+ },
+ {
+ "slug": "the-indiedeveloper-fullstack-roadmap-en-v52-18027443116-fullstack-roadmap-en",
+ "title": "fullstack roadmap en",
+ "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v52, release EN-v52-18027443116, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "EN v52",
+ "updatedAt": "2025-09-26T04:04:27Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v52-18027443116/fullstack-roadmap-en.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v52-18027443116/fullstack-roadmap-en.html",
+ "language": "EN",
+ "variant": "EN-v52-18027443116",
+ "versionSlug": "en-v52-18027443116",
+ "tags": [
+ "EN",
+ "EN v52",
+ "The Indie Developer Fullstack Roadmap"
+ ],
+ "pathSegments": [
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "EN-v52-18027443116"
+ ]
+ },
+ {
+ "slug": "personal-en-v52-18027443116-fullstack-language-core",
+ "title": "fullstack language core",
+ "description": "fullstack language core — Personal (edition EN v52, release EN-v52-18027443116, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v52",
+ "updatedAt": "2025-09-26T04:04:00Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v52-18027443116/fullstack-language-core.pdf",
+ "htmlUrl": "/docs/Personal/EN-v52-18027443116/fullstack-language-core.html",
+ "language": "EN",
+ "variant": "EN-v52-18027443116",
+ "versionSlug": "en-v52-18027443116",
+ "tags": [
+ "EN",
+ "EN v52",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v52-18027443116"
+ ]
+ },
+ {
+ "slug": "personal-en-v52-18027443116-cet-6",
+ "title": "cet 6",
+ "description": "cet 6 — Personal (edition EN v52, release EN-v52-18027443116, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v52",
+ "updatedAt": "2025-09-26T04:04:00Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v52-18027443116/cet-6.pdf",
+ "htmlUrl": "/docs/Personal/EN-v52-18027443116/cet-6.html",
+ "language": "EN",
+ "variant": "EN-v52-18027443116",
+ "versionSlug": "en-v52-18027443116",
+ "tags": [
+ "EN",
+ "EN v52",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v52-18027443116"
+ ]
+ },
+ {
+ "slug": "personal-en-v52-18027443116-resume-zh",
+ "title": "Resume ZH",
+ "description": "Resume ZH — Personal (edition EN v52, release EN-v52-18027443116, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v52",
+ "updatedAt": "2025-09-26T04:04:00Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v52-18027443116/Resume-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v52-18027443116/Resume-ZH.html",
+ "language": "EN",
+ "variant": "EN-v52-18027443116",
+ "versionSlug": "en-v52-18027443116",
+ "tags": [
+ "EN",
+ "EN v52",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v52-18027443116"
+ ]
+ },
+ {
+ "slug": "personal-en-v52-18027443116-resume-en",
+ "title": "Resume EN",
+ "description": "Resume EN — Personal (edition EN v52, release EN-v52-18027443116, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v52",
+ "updatedAt": "2025-09-26T04:04:00Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v52-18027443116/Resume-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v52-18027443116/Resume-EN.html",
+ "language": "EN",
+ "variant": "EN-v52-18027443116",
+ "versionSlug": "en-v52-18027443116",
+ "tags": [
+ "EN",
+ "EN v52",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v52-18027443116"
+ ]
+ },
+ {
+ "slug": "personal-en-v52-18027443116-resume-devops-en",
+ "title": "Resume Dev Ops EN",
+ "description": "Resume Dev Ops EN — Personal (edition EN v52, release EN-v52-18027443116, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v52",
+ "updatedAt": "2025-09-26T04:03:59Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v52-18027443116/Resume-DevOps-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v52-18027443116/Resume-DevOps-EN.html",
+ "language": "EN",
+ "variant": "EN-v52-18027443116",
+ "versionSlug": "en-v52-18027443116",
+ "tags": [
+ "EN",
+ "EN v52",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v52-18027443116"
+ ]
+ },
+ {
+ "slug": "personal-en-v52-18027443116-resume-devops-zh",
+ "title": "Resume Dev OPS ZH",
+ "description": "Resume Dev OPS ZH — Personal (edition EN v52, release EN-v52-18027443116, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v52",
+ "updatedAt": "2025-09-26T04:03:59Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v52-18027443116/Resume-DevOPS-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v52-18027443116/Resume-DevOPS-ZH.html",
+ "language": "EN",
+ "variant": "EN-v52-18027443116",
+ "versionSlug": "en-v52-18027443116",
+ "tags": [
+ "EN",
+ "EN v52",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v52-18027443116"
+ ]
+ },
+ {
+ "slug": "personal-en-v52-18027443116-readme",
+ "title": "README",
+ "description": "README — Personal (edition EN v52, release EN-v52-18027443116, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v52",
+ "updatedAt": "2025-09-26T04:03:59Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v52-18027443116/README.pdf",
+ "htmlUrl": "/docs/Personal/EN-v52-18027443116/README.html",
+ "language": "EN",
+ "variant": "EN-v52-18027443116",
+ "versionSlug": "en-v52-18027443116",
+ "tags": [
+ "EN",
+ "EN v52",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v52-18027443116"
+ ]
+ },
+ {
+ "slug": "personal-en-v52-18027443116-cv-zh",
+ "title": "CV ZH",
+ "description": "CV ZH — Personal (edition EN v52, release EN-v52-18027443116, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v52",
+ "updatedAt": "2025-09-26T04:03:59Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v52-18027443116/CV-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v52-18027443116/CV-ZH.html",
+ "language": "EN",
+ "variant": "EN-v52-18027443116",
+ "versionSlug": "en-v52-18027443116",
+ "tags": [
+ "EN",
+ "EN v52",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v52-18027443116"
+ ]
+ },
+ {
+ "slug": "personal-en-v52-18027443116-cv-en",
+ "title": "CV EN",
+ "description": "CV EN — Personal (edition EN v52, release EN-v52-18027443116, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v52",
+ "updatedAt": "2025-09-26T04:03:59Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v52-18027443116/CV-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v52-18027443116/CV-EN.html",
+ "language": "EN",
+ "variant": "EN-v52-18027443116",
+ "versionSlug": "en-v52-18027443116",
+ "tags": [
+ "EN",
+ "EN v52",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v52-18027443116"
+ ]
+ },
+ {
+ "slug": "personal-en-v52-18027443116-cv-ai-dev-zh",
+ "title": "CV AI Dev ZH",
+ "description": "CV AI Dev ZH — Personal (edition EN v52, release EN-v52-18027443116, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v52",
+ "updatedAt": "2025-09-26T04:03:59Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v52-18027443116/CV-AI-Dev-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v52-18027443116/CV-AI-Dev-ZH.html",
+ "language": "EN",
+ "variant": "EN-v52-18027443116",
+ "versionSlug": "en-v52-18027443116",
+ "tags": [
+ "EN",
+ "EN v52",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v52-18027443116"
+ ]
+ },
+ {
+ "slug": "personal-en-v52-18027443116-cv-ai-dev-en",
+ "title": "CV AI Dev EN",
+ "description": "CV AI Dev EN — Personal (edition EN v52, release EN-v52-18027443116, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v52",
+ "updatedAt": "2025-09-26T04:03:59Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v52-18027443116/CV-AI-Dev-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v52-18027443116/CV-AI-Dev-EN.html",
+ "language": "EN",
+ "variant": "EN-v52-18027443116",
+ "versionSlug": "en-v52-18027443116",
+ "tags": [
+ "EN",
+ "EN v52",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v52-18027443116"
+ ]
+ },
+ {
+ "slug": "personal-en-v52-18027443116-activebalance-plan",
+ "title": "Active Balance Plan",
+ "description": "Active Balance Plan — Personal (edition EN v52, release EN-v52-18027443116, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v52",
+ "updatedAt": "2025-09-26T04:03:59Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v52-18027443116/ActiveBalance-Plan.pdf",
+ "htmlUrl": "/docs/Personal/EN-v52-18027443116/ActiveBalance-Plan.html",
+ "language": "EN",
+ "variant": "EN-v52-18027443116",
+ "versionSlug": "en-v52-18027443116",
+ "tags": [
+ "EN",
+ "EN v52",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v52-18027443116"
+ ]
+ },
+ {
+ "slug": "keycloak-en-v52-18027443116-keycloak-sso-design-and-implementation",
+ "title": "Keycloak SSO Design and Implementation",
+ "description": "Keycloak SSO Design and Implementation — Keycloak (edition EN v52, release EN-v52-18027443116, available as HTML).",
+ "category": "Keycloak",
+ "version": "EN v52",
+ "updatedAt": "2025-09-26T04:03:37Z",
+ "collection": "Keycloak",
+ "collectionSlug": "keycloak",
+ "collectionLabel": "Keycloak",
+ "htmlUrl": "/docs/Keycloak/EN-v52-18027443116/Keycloak-SSO-Design-and-Implementation.html",
+ "language": "EN",
+ "variant": "EN-v52-18027443116",
+ "versionSlug": "en-v52-18027443116",
+ "tags": [
+ "EN",
+ "EN v52",
+ "Keycloak"
+ ],
+ "pathSegments": [
+ "Keycloak",
+ "EN-v52-18027443116"
+ ]
+ },
+ {
+ "slug": "landingzone-en-v52-18027443116-landing-zone-design-and-implementation",
+ "title": "Landing Zone Design and Implementation",
+ "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v52, release EN-v52-18027443116, available as PDF).",
+ "category": "Landing Zone",
+ "version": "EN v52",
+ "updatedAt": "2025-09-26T04:03:34Z",
+ "collection": "LandingZone",
+ "collectionSlug": "landingzone",
+ "collectionLabel": "Landing Zone",
+ "pdfUrl": "/docs/LandingZone/EN-v52-18027443116/Landing-Zone-Design-and-Implementation.pdf",
+ "language": "EN",
+ "variant": "EN-v52-18027443116",
+ "versionSlug": "en-v52-18027443116",
+ "tags": [
+ "EN",
+ "EN v52",
+ "Landing Zone"
+ ],
+ "pathSegments": [
+ "LandingZone",
+ "EN-v52-18027443116"
+ ]
+ },
+ {
+ "slug": "personal-en-v53-18027447911-fullstack-language-core",
+ "title": "fullstack language core",
+ "description": "fullstack language core — Personal (edition EN v53, release EN-v53-18027447911, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v53",
+ "updatedAt": "2025-09-26T04:03:27Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v53-18027447911/fullstack-language-core.pdf",
+ "htmlUrl": "/docs/Personal/EN-v53-18027447911/fullstack-language-core.html",
+ "language": "EN",
+ "variant": "EN-v53-18027447911",
+ "versionSlug": "en-v53-18027447911",
+ "tags": [
+ "EN",
+ "EN v53",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v53-18027447911"
+ ]
+ },
+ {
+ "slug": "personal-en-v53-18027447911-cet-6",
+ "title": "cet 6",
+ "description": "cet 6 — Personal (edition EN v53, release EN-v53-18027447911, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v53",
+ "updatedAt": "2025-09-26T04:03:27Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v53-18027447911/cet-6.pdf",
+ "htmlUrl": "/docs/Personal/EN-v53-18027447911/cet-6.html",
+ "language": "EN",
+ "variant": "EN-v53-18027447911",
+ "versionSlug": "en-v53-18027447911",
+ "tags": [
+ "EN",
+ "EN v53",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v53-18027447911"
+ ]
+ },
+ {
+ "slug": "personal-en-v53-18027447911-resume-zh",
+ "title": "Resume ZH",
+ "description": "Resume ZH — Personal (edition EN v53, release EN-v53-18027447911, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v53",
+ "updatedAt": "2025-09-26T04:03:27Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v53-18027447911/Resume-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v53-18027447911/Resume-ZH.html",
+ "language": "EN",
+ "variant": "EN-v53-18027447911",
+ "versionSlug": "en-v53-18027447911",
+ "tags": [
+ "EN",
+ "EN v53",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v53-18027447911"
+ ]
+ },
+ {
+ "slug": "personal-en-v53-18027447911-resume-en",
+ "title": "Resume EN",
+ "description": "Resume EN — Personal (edition EN v53, release EN-v53-18027447911, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v53",
+ "updatedAt": "2025-09-26T04:03:27Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v53-18027447911/Resume-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v53-18027447911/Resume-EN.html",
+ "language": "EN",
+ "variant": "EN-v53-18027447911",
+ "versionSlug": "en-v53-18027447911",
+ "tags": [
+ "EN",
+ "EN v53",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v53-18027447911"
+ ]
+ },
+ {
+ "slug": "personal-en-v53-18027447911-resume-devops-en",
+ "title": "Resume Dev Ops EN",
+ "description": "Resume Dev Ops EN — Personal (edition EN v53, release EN-v53-18027447911, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v53",
+ "updatedAt": "2025-09-26T04:03:26Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v53-18027447911/Resume-DevOps-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v53-18027447911/Resume-DevOps-EN.html",
+ "language": "EN",
+ "variant": "EN-v53-18027447911",
+ "versionSlug": "en-v53-18027447911",
+ "tags": [
+ "EN",
+ "EN v53",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v53-18027447911"
+ ]
+ },
+ {
+ "slug": "personal-en-v53-18027447911-resume-devops-zh",
+ "title": "Resume Dev OPS ZH",
+ "description": "Resume Dev OPS ZH — Personal (edition EN v53, release EN-v53-18027447911, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v53",
+ "updatedAt": "2025-09-26T04:03:26Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v53-18027447911/Resume-DevOPS-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v53-18027447911/Resume-DevOPS-ZH.html",
+ "language": "EN",
+ "variant": "EN-v53-18027447911",
+ "versionSlug": "en-v53-18027447911",
+ "tags": [
+ "EN",
+ "EN v53",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v53-18027447911"
+ ]
+ },
+ {
+ "slug": "personal-en-v53-18027447911-readme",
+ "title": "README",
+ "description": "README — Personal (edition EN v53, release EN-v53-18027447911, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v53",
+ "updatedAt": "2025-09-26T04:03:26Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v53-18027447911/README.pdf",
+ "htmlUrl": "/docs/Personal/EN-v53-18027447911/README.html",
+ "language": "EN",
+ "variant": "EN-v53-18027447911",
+ "versionSlug": "en-v53-18027447911",
+ "tags": [
+ "EN",
+ "EN v53",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v53-18027447911"
+ ]
+ },
+ {
+ "slug": "personal-en-v53-18027447911-cv-zh",
+ "title": "CV ZH",
+ "description": "CV ZH — Personal (edition EN v53, release EN-v53-18027447911, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v53",
+ "updatedAt": "2025-09-26T04:03:26Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v53-18027447911/CV-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v53-18027447911/CV-ZH.html",
+ "language": "EN",
+ "variant": "EN-v53-18027447911",
+ "versionSlug": "en-v53-18027447911",
+ "tags": [
+ "EN",
+ "EN v53",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v53-18027447911"
+ ]
+ },
+ {
+ "slug": "personal-en-v53-18027447911-cv-en",
+ "title": "CV EN",
+ "description": "CV EN — Personal (edition EN v53, release EN-v53-18027447911, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v53",
+ "updatedAt": "2025-09-26T04:03:26Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v53-18027447911/CV-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v53-18027447911/CV-EN.html",
+ "language": "EN",
+ "variant": "EN-v53-18027447911",
+ "versionSlug": "en-v53-18027447911",
+ "tags": [
+ "EN",
+ "EN v53",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v53-18027447911"
+ ]
+ },
+ {
+ "slug": "personal-en-v53-18027447911-cv-ai-dev-zh",
+ "title": "CV AI Dev ZH",
+ "description": "CV AI Dev ZH — Personal (edition EN v53, release EN-v53-18027447911, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v53",
+ "updatedAt": "2025-09-26T04:03:26Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v53-18027447911/CV-AI-Dev-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v53-18027447911/CV-AI-Dev-ZH.html",
+ "language": "EN",
+ "variant": "EN-v53-18027447911",
+ "versionSlug": "en-v53-18027447911",
+ "tags": [
+ "EN",
+ "EN v53",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v53-18027447911"
+ ]
+ },
+ {
+ "slug": "personal-en-v53-18027447911-cv-ai-dev-en",
+ "title": "CV AI Dev EN",
+ "description": "CV AI Dev EN — Personal (edition EN v53, release EN-v53-18027447911, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v53",
+ "updatedAt": "2025-09-26T04:03:26Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v53-18027447911/CV-AI-Dev-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v53-18027447911/CV-AI-Dev-EN.html",
+ "language": "EN",
+ "variant": "EN-v53-18027447911",
+ "versionSlug": "en-v53-18027447911",
+ "tags": [
+ "EN",
+ "EN v53",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v53-18027447911"
+ ]
+ },
+ {
+ "slug": "personal-en-v53-18027447911-activebalance-plan",
+ "title": "Active Balance Plan",
+ "description": "Active Balance Plan — Personal (edition EN v53, release EN-v53-18027447911, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v53",
+ "updatedAt": "2025-09-26T04:03:26Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v53-18027447911/ActiveBalance-Plan.pdf",
+ "htmlUrl": "/docs/Personal/EN-v53-18027447911/ActiveBalance-Plan.html",
+ "language": "EN",
+ "variant": "EN-v53-18027447911",
+ "versionSlug": "en-v53-18027447911",
+ "tags": [
+ "EN",
+ "EN v53",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v53-18027447911"
+ ]
+ },
+ {
+ "slug": "techexploration-en-v53-18027447911-tech-exploration",
+ "title": "Tech Exploration",
+ "description": "Tech Exploration — Tech Exploration (edition EN v53, release EN-v53-18027447911, available as PDF and HTML).",
+ "category": "Tech Exploration",
+ "version": "EN v53",
+ "updatedAt": "2025-09-26T04:03:17Z",
+ "collection": "TechExploration",
+ "collectionSlug": "techexploration",
+ "collectionLabel": "Tech Exploration",
+ "pdfUrl": "/docs/TechExploration/EN-v53-18027447911/Tech-Exploration.pdf",
+ "htmlUrl": "/docs/TechExploration/EN-v53-18027447911/Tech-Exploration.html",
+ "language": "EN",
+ "variant": "EN-v53-18027447911",
+ "versionSlug": "en-v53-18027447911",
+ "tags": [
+ "EN",
+ "EN v53",
+ "Tech Exploration"
+ ],
+ "pathSegments": [
+ "TechExploration",
+ "EN-v53-18027447911"
+ ]
+ },
+ {
+ "slug": "keycloak-en-v53-18027447911-keycloak-sso-design-and-implementation",
+ "title": "Keycloak SSO Design and Implementation",
+ "description": "Keycloak SSO Design and Implementation — Keycloak (edition EN v53, release EN-v53-18027447911, available as HTML).",
+ "category": "Keycloak",
+ "version": "EN v53",
+ "updatedAt": "2025-09-26T04:03:12Z",
+ "collection": "Keycloak",
+ "collectionSlug": "keycloak",
+ "collectionLabel": "Keycloak",
+ "htmlUrl": "/docs/Keycloak/EN-v53-18027447911/Keycloak-SSO-Design-and-Implementation.html",
+ "language": "EN",
+ "variant": "EN-v53-18027447911",
+ "versionSlug": "en-v53-18027447911",
+ "tags": [
+ "EN",
+ "EN v53",
+ "Keycloak"
+ ],
+ "pathSegments": [
+ "Keycloak",
+ "EN-v53-18027447911"
+ ]
+ },
+ {
+ "slug": "techexploration-en-v52-18027443116-tech-exploration",
+ "title": "Tech Exploration",
+ "description": "Tech Exploration — Tech Exploration (edition EN v52, release EN-v52-18027443116, available as PDF and HTML).",
+ "category": "Tech Exploration",
+ "version": "EN v52",
+ "updatedAt": "2025-09-26T04:03:12Z",
+ "collection": "TechExploration",
+ "collectionSlug": "techexploration",
+ "collectionLabel": "Tech Exploration",
+ "pdfUrl": "/docs/TechExploration/EN-v52-18027443116/Tech-Exploration.pdf",
+ "htmlUrl": "/docs/TechExploration/EN-v52-18027443116/Tech-Exploration.html",
+ "language": "EN",
+ "variant": "EN-v52-18027443116",
+ "versionSlug": "en-v52-18027443116",
+ "tags": [
+ "EN",
+ "EN v52",
+ "Tech Exploration"
+ ],
+ "pathSegments": [
+ "TechExploration",
+ "EN-v52-18027443116"
+ ]
+ },
+ {
+ "slug": "the-indiedeveloper-fullstack-roadmap-en-v53-18027447911-fullstack-roadmap-en",
+ "title": "fullstack roadmap en",
+ "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v53, release EN-v53-18027447911, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "EN v53",
+ "updatedAt": "2025-09-26T04:02:57Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v53-18027447911/fullstack-roadmap-en.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v53-18027447911/fullstack-roadmap-en.html",
+ "language": "EN",
+ "variant": "EN-v53-18027447911",
+ "versionSlug": "en-v53-18027447911",
+ "tags": [
+ "EN",
+ "EN v53",
+ "The Indie Developer Fullstack Roadmap"
+ ],
+ "pathSegments": [
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "EN-v53-18027447911"
+ ]
+ },
+ {
+ "slug": "linux-k8s-ops-cn-v52-18027443116-linux-k8s-ops-guide",
+ "title": "Linux K8 S OPS Guide",
+ "description": "Linux K8 S OPS Guide — Linux K8 S OPS (edition CN v52, release CN-v52-18027443116, available as PDF and HTML).",
+ "category": "Linux K8 S OPS",
+ "version": "CN v52",
+ "updatedAt": "2025-09-26T04:02:53Z",
+ "collection": "Linux-K8S-OPS",
+ "collectionSlug": "linux-k8s-ops",
+ "collectionLabel": "Linux K8 S OPS",
+ "pdfUrl": "/docs/Linux-K8S-OPS/CN-v52-18027443116/Linux-K8S-OPS-Guide.pdf",
+ "htmlUrl": "/docs/Linux-K8S-OPS/CN-v52-18027443116/Linux-K8S-OPS-Guide.html",
+ "language": "CN",
+ "variant": "CN-v52-18027443116",
+ "versionSlug": "cn-v52-18027443116",
+ "tags": [
+ "CN",
+ "CN v52",
+ "Linux K8 S OPS"
+ ],
+ "pathSegments": [
+ "Linux-K8S-OPS",
+ "CN-v52-18027443116"
+ ]
+ },
+ {
+ "slug": "keycloak-en-v51-18027438927-keycloak-sso-design-and-implementation",
+ "title": "Keycloak SSO Design and Implementation",
+ "description": "Keycloak SSO Design and Implementation — Keycloak (edition EN v51, release EN-v51-18027438927, available as HTML).",
+ "category": "Keycloak",
+ "version": "EN v51",
+ "updatedAt": "2025-09-26T04:02:09Z",
+ "collection": "Keycloak",
+ "collectionSlug": "keycloak",
+ "collectionLabel": "Keycloak",
+ "htmlUrl": "/docs/Keycloak/EN-v51-18027438927/Keycloak-SSO-Design-and-Implementation.html",
+ "language": "EN",
+ "variant": "EN-v51-18027438927",
+ "versionSlug": "en-v51-18027438927",
+ "tags": [
+ "EN",
+ "EN v51",
+ "Keycloak"
+ ],
+ "pathSegments": [
+ "Keycloak",
+ "EN-v51-18027438927"
+ ]
+ },
+ {
+ "slug": "the-indiedeveloper-fullstack-roadmap-en-v49-18027128243-fullstack-roadmap-en",
+ "title": "fullstack roadmap en",
+ "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v49, release EN-v49-18027128243, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "EN v49",
+ "updatedAt": "2025-09-26T03:39:48Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v49-18027128243/fullstack-roadmap-en.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v49-18027128243/fullstack-roadmap-en.html",
+ "language": "EN",
+ "variant": "EN-v49-18027128243",
+ "versionSlug": "en-v49-18027128243",
+ "tags": [
+ "EN",
+ "EN v49",
+ "The Indie Developer Fullstack Roadmap"
+ ],
+ "pathSegments": [
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "EN-v49-18027128243"
+ ]
+ },
+ {
+ "slug": "observability-cn-v49-18027128243-observability-design-and-implementation",
+ "title": "Observability Design and Implementation",
+ "description": "Observability Design and Implementation — Observability (edition CN v49, release CN-v49-18027128243, available as PDF and HTML).",
+ "category": "Observability",
+ "version": "CN v49",
+ "updatedAt": "2025-09-26T03:39:20Z",
+ "collection": "Observability",
+ "collectionSlug": "observability",
+ "collectionLabel": "Observability",
+ "pdfUrl": "/docs/Observability/CN-v49-18027128243/Observability-Design-and-Implementation.pdf",
+ "htmlUrl": "/docs/Observability/CN-v49-18027128243/Observability-Design-and-Implementation.html",
+ "language": "CN",
+ "variant": "CN-v49-18027128243",
+ "versionSlug": "cn-v49-18027128243",
+ "tags": [
+ "CN",
+ "CN v49",
+ "Observability"
+ ],
+ "pathSegments": [
+ "Observability",
+ "CN-v49-18027128243"
+ ]
+ },
+ {
+ "slug": "linux-k8s-ops-cn-v49-18027128243-linux-k8s-ops-guide",
+ "title": "Linux K8 S OPS Guide",
+ "description": "Linux K8 S OPS Guide — Linux K8 S OPS (edition CN v49, release CN-v49-18027128243, available as PDF and HTML).",
+ "category": "Linux K8 S OPS",
+ "version": "CN v49",
+ "updatedAt": "2025-09-26T03:39:04Z",
+ "collection": "Linux-K8S-OPS",
+ "collectionSlug": "linux-k8s-ops",
+ "collectionLabel": "Linux K8 S OPS",
+ "pdfUrl": "/docs/Linux-K8S-OPS/CN-v49-18027128243/Linux-K8S-OPS-Guide.pdf",
+ "htmlUrl": "/docs/Linux-K8S-OPS/CN-v49-18027128243/Linux-K8S-OPS-Guide.html",
+ "language": "CN",
+ "variant": "CN-v49-18027128243",
+ "versionSlug": "cn-v49-18027128243",
+ "tags": [
+ "CN",
+ "CN v49",
+ "Linux K8 S OPS"
+ ],
+ "pathSegments": [
+ "Linux-K8S-OPS",
+ "CN-v49-18027128243"
+ ]
+ },
+ {
+ "slug": "interview-qa-en-v49-18027128243-interview-qa-guide",
+ "title": "Interview QA Guide",
+ "description": "Interview QA Guide — interview qa (edition EN v49, release EN-v49-18027128243, available as PDF and HTML).",
+ "category": "interview qa",
+ "version": "EN v49",
+ "updatedAt": "2025-09-26T03:38:38Z",
+ "collection": "interview-qa",
+ "collectionSlug": "interview-qa",
+ "collectionLabel": "interview qa",
+ "pdfUrl": "/docs/interview-qa/EN-v49-18027128243/Interview-QA-Guide.pdf",
+ "htmlUrl": "/docs/interview-qa/EN-v49-18027128243/Interview-QA-Guide.html",
+ "language": "EN",
+ "variant": "EN-v49-18027128243",
+ "versionSlug": "en-v49-18027128243",
+ "tags": [
+ "EN",
+ "EN v49",
+ "interview qa"
+ ],
+ "pathSegments": [
+ "interview-qa",
+ "EN-v49-18027128243"
+ ]
+ },
+ {
+ "slug": "keycloak-en-v48-18026844950-keycloak-sso-design-and-implementation",
+ "title": "Keycloak SSO Design and Implementation",
+ "description": "Keycloak SSO Design and Implementation — Keycloak (edition EN v48, release EN-v48-18026844950, available as HTML).",
+ "category": "Keycloak",
+ "version": "EN v48",
+ "updatedAt": "2025-09-26T03:21:57Z",
+ "collection": "Keycloak",
+ "collectionSlug": "keycloak",
+ "collectionLabel": "Keycloak",
+ "htmlUrl": "/docs/Keycloak/EN-v48-18026844950/Keycloak-SSO-Design-and-Implementation.html",
+ "language": "EN",
+ "variant": "EN-v48-18026844950",
+ "versionSlug": "en-v48-18026844950",
+ "tags": [
+ "EN",
+ "EN v48",
+ "Keycloak"
+ ],
+ "pathSegments": [
+ "Keycloak",
+ "EN-v48-18026844950"
+ ]
+ },
+ {
+ "slug": "the-indiedeveloper-fullstack-roadmap-en-v48-18026844950-fullstack-roadmap-en",
+ "title": "fullstack roadmap en",
+ "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v48, release EN-v48-18026844950, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "EN v48",
+ "updatedAt": "2025-09-26T03:20:58Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v48-18026844950/fullstack-roadmap-en.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v48-18026844950/fullstack-roadmap-en.html",
+ "language": "EN",
+ "variant": "EN-v48-18026844950",
+ "versionSlug": "en-v48-18026844950",
+ "tags": [
+ "EN",
+ "EN v48",
+ "The Indie Developer Fullstack Roadmap"
+ ],
+ "pathSegments": [
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "EN-v48-18026844950"
+ ]
+ },
+ {
+ "slug": "linux-k8s-ops-cn-v48-18026844950-linux-k8s-ops-guide",
+ "title": "Linux K8 S OPS Guide",
+ "description": "Linux K8 S OPS Guide — Linux K8 S OPS (edition CN v48, release CN-v48-18026844950, available as PDF and HTML).",
+ "category": "Linux K8 S OPS",
+ "version": "CN v48",
+ "updatedAt": "2025-09-26T03:20:30Z",
+ "collection": "Linux-K8S-OPS",
+ "collectionSlug": "linux-k8s-ops",
+ "collectionLabel": "Linux K8 S OPS",
+ "pdfUrl": "/docs/Linux-K8S-OPS/CN-v48-18026844950/Linux-K8S-OPS-Guide.pdf",
+ "htmlUrl": "/docs/Linux-K8S-OPS/CN-v48-18026844950/Linux-K8S-OPS-Guide.html",
+ "language": "CN",
+ "variant": "CN-v48-18026844950",
+ "versionSlug": "cn-v48-18026844950",
+ "tags": [
+ "CN",
+ "CN v48",
+ "Linux K8 S OPS"
+ ],
+ "pathSegments": [
+ "Linux-K8S-OPS",
+ "CN-v48-18026844950"
+ ]
+ },
+ {
+ "slug": "techexploration-en-v47-18013619427-tech-exploration",
+ "title": "Tech Exploration",
+ "description": "Tech Exploration — Tech Exploration (edition EN v47, release EN-v47-18013619427, available as PDF and HTML).",
+ "category": "Tech Exploration",
+ "version": "EN v47",
+ "updatedAt": "2025-09-25T16:13:46Z",
+ "collection": "TechExploration",
+ "collectionSlug": "techexploration",
+ "collectionLabel": "Tech Exploration",
+ "pdfUrl": "/docs/TechExploration/EN-v47-18013619427/Tech-Exploration.pdf",
+ "htmlUrl": "/docs/TechExploration/EN-v47-18013619427/Tech-Exploration.html",
+ "language": "EN",
+ "variant": "EN-v47-18013619427",
+ "versionSlug": "en-v47-18013619427",
+ "tags": [
+ "EN",
+ "EN v47",
+ "Tech Exploration"
+ ],
+ "pathSegments": [
+ "TechExploration",
+ "EN-v47-18013619427"
+ ]
+ },
+ {
+ "slug": "landingzone-en-v47-18013619427-landing-zone-design-and-implementation",
+ "title": "Landing Zone Design and Implementation",
+ "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v47, release EN-v47-18013619427, available as PDF).",
+ "category": "Landing Zone",
+ "version": "EN v47",
+ "updatedAt": "2025-09-25T16:13:22Z",
+ "collection": "LandingZone",
+ "collectionSlug": "landingzone",
+ "collectionLabel": "Landing Zone",
+ "pdfUrl": "/docs/LandingZone/EN-v47-18013619427/Landing-Zone-Design-and-Implementation.pdf",
+ "language": "EN",
+ "variant": "EN-v47-18013619427",
+ "versionSlug": "en-v47-18013619427",
+ "tags": [
+ "EN",
+ "EN v47",
+ "Landing Zone"
+ ],
+ "pathSegments": [
+ "LandingZone",
+ "EN-v47-18013619427"
+ ]
+ },
+ {
+ "slug": "linux-k8s-ops-cn-v47-18013619427-linux-k8s-ops-guide",
+ "title": "Linux K8 S OPS Guide",
+ "description": "Linux K8 S OPS Guide — Linux K8 S OPS (edition CN v47, release CN-v47-18013619427, available as PDF and HTML).",
+ "category": "Linux K8 S OPS",
+ "version": "CN v47",
+ "updatedAt": "2025-09-25T16:13:18Z",
+ "collection": "Linux-K8S-OPS",
+ "collectionSlug": "linux-k8s-ops",
+ "collectionLabel": "Linux K8 S OPS",
+ "pdfUrl": "/docs/Linux-K8S-OPS/CN-v47-18013619427/Linux-K8S-OPS-Guide.pdf",
+ "htmlUrl": "/docs/Linux-K8S-OPS/CN-v47-18013619427/Linux-K8S-OPS-Guide.html",
+ "language": "CN",
+ "variant": "CN-v47-18013619427",
+ "versionSlug": "cn-v47-18013619427",
+ "tags": [
+ "CN",
+ "CN v47",
+ "Linux K8 S OPS"
+ ],
+ "pathSegments": [
+ "Linux-K8S-OPS",
+ "CN-v47-18013619427"
+ ]
+ },
+ {
+ "slug": "observability-cn-v47-18013619427-observability-design-and-implementation",
+ "title": "Observability Design and Implementation",
+ "description": "Observability Design and Implementation — Observability (edition CN v47, release CN-v47-18013619427, available as PDF and HTML).",
+ "category": "Observability",
+ "version": "CN v47",
+ "updatedAt": "2025-09-25T16:13:16Z",
+ "collection": "Observability",
+ "collectionSlug": "observability",
+ "collectionLabel": "Observability",
+ "pdfUrl": "/docs/Observability/CN-v47-18013619427/Observability-Design-and-Implementation.pdf",
+ "htmlUrl": "/docs/Observability/CN-v47-18013619427/Observability-Design-and-Implementation.html",
+ "language": "CN",
+ "variant": "CN-v47-18013619427",
+ "versionSlug": "cn-v47-18013619427",
+ "tags": [
+ "CN",
+ "CN v47",
+ "Observability"
+ ],
+ "pathSegments": [
+ "Observability",
+ "CN-v47-18013619427"
+ ]
+ },
+ {
+ "slug": "keycloak-en-v47-18013619427-keycloak-sso-design-and-implementation",
+ "title": "Keycloak SSO Design and Implementation",
+ "description": "Keycloak SSO Design and Implementation — Keycloak (edition EN v47, release EN-v47-18013619427, available as HTML).",
+ "category": "Keycloak",
+ "version": "EN v47",
+ "updatedAt": "2025-09-25T16:12:52Z",
+ "collection": "Keycloak",
+ "collectionSlug": "keycloak",
+ "collectionLabel": "Keycloak",
+ "htmlUrl": "/docs/Keycloak/EN-v47-18013619427/Keycloak-SSO-Design-and-Implementation.html",
+ "language": "EN",
+ "variant": "EN-v47-18013619427",
+ "versionSlug": "en-v47-18013619427",
+ "tags": [
+ "EN",
+ "EN v47",
+ "Keycloak"
+ ],
+ "pathSegments": [
+ "Keycloak",
+ "EN-v47-18013619427"
+ ]
+ },
+ {
+ "slug": "interview-qa-en-v47-18013619427-interview-qa-guide",
+ "title": "Interview QA Guide",
+ "description": "Interview QA Guide — interview qa (edition EN v47, release EN-v47-18013619427, available as PDF and HTML).",
+ "category": "interview qa",
+ "version": "EN v47",
+ "updatedAt": "2025-09-25T16:11:57Z",
+ "collection": "interview-qa",
+ "collectionSlug": "interview-qa",
+ "collectionLabel": "interview qa",
+ "pdfUrl": "/docs/interview-qa/EN-v47-18013619427/Interview-QA-Guide.pdf",
+ "htmlUrl": "/docs/interview-qa/EN-v47-18013619427/Interview-QA-Guide.html",
+ "language": "EN",
+ "variant": "EN-v47-18013619427",
+ "versionSlug": "en-v47-18013619427",
+ "tags": [
+ "EN",
+ "EN v47",
+ "interview qa"
+ ],
+ "pathSegments": [
+ "interview-qa",
+ "EN-v47-18013619427"
+ ]
+ },
+ {
+ "slug": "personal-en-v47-18013619427-fullstack-language-core",
+ "title": "fullstack language core",
+ "description": "fullstack language core — Personal (edition EN v47, release EN-v47-18013619427, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v47",
+ "updatedAt": "2025-09-25T16:11:32Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v47-18013619427/fullstack-language-core.pdf",
+ "htmlUrl": "/docs/Personal/EN-v47-18013619427/fullstack-language-core.html",
+ "language": "EN",
+ "variant": "EN-v47-18013619427",
+ "versionSlug": "en-v47-18013619427",
+ "tags": [
+ "EN",
+ "EN v47",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v47-18013619427"
+ ]
+ },
+ {
+ "slug": "personal-en-v47-18013619427-cet-6",
+ "title": "cet 6",
+ "description": "cet 6 — Personal (edition EN v47, release EN-v47-18013619427, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v47",
+ "updatedAt": "2025-09-25T16:11:32Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v47-18013619427/cet-6.pdf",
+ "htmlUrl": "/docs/Personal/EN-v47-18013619427/cet-6.html",
+ "language": "EN",
+ "variant": "EN-v47-18013619427",
+ "versionSlug": "en-v47-18013619427",
+ "tags": [
+ "EN",
+ "EN v47",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v47-18013619427"
+ ]
+ },
+ {
+ "slug": "personal-en-v47-18013619427-resume-zh",
+ "title": "Resume ZH",
+ "description": "Resume ZH — Personal (edition EN v47, release EN-v47-18013619427, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v47",
+ "updatedAt": "2025-09-25T16:11:32Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v47-18013619427/Resume-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v47-18013619427/Resume-ZH.html",
+ "language": "EN",
+ "variant": "EN-v47-18013619427",
+ "versionSlug": "en-v47-18013619427",
+ "tags": [
+ "EN",
+ "EN v47",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v47-18013619427"
+ ]
+ },
+ {
+ "slug": "personal-en-v47-18013619427-resume-en",
+ "title": "Resume EN",
+ "description": "Resume EN — Personal (edition EN v47, release EN-v47-18013619427, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v47",
+ "updatedAt": "2025-09-25T16:11:32Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v47-18013619427/Resume-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v47-18013619427/Resume-EN.html",
+ "language": "EN",
+ "variant": "EN-v47-18013619427",
+ "versionSlug": "en-v47-18013619427",
+ "tags": [
+ "EN",
+ "EN v47",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v47-18013619427"
+ ]
+ },
+ {
+ "slug": "personal-en-v47-18013619427-resume-devops-en",
+ "title": "Resume Dev Ops EN",
+ "description": "Resume Dev Ops EN — Personal (edition EN v47, release EN-v47-18013619427, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v47",
+ "updatedAt": "2025-09-25T16:11:31Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v47-18013619427/Resume-DevOps-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v47-18013619427/Resume-DevOps-EN.html",
+ "language": "EN",
+ "variant": "EN-v47-18013619427",
+ "versionSlug": "en-v47-18013619427",
+ "tags": [
+ "EN",
+ "EN v47",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v47-18013619427"
+ ]
+ },
+ {
+ "slug": "personal-en-v47-18013619427-resume-devops-zh",
+ "title": "Resume Dev OPS ZH",
+ "description": "Resume Dev OPS ZH — Personal (edition EN v47, release EN-v47-18013619427, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v47",
+ "updatedAt": "2025-09-25T16:11:31Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v47-18013619427/Resume-DevOPS-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v47-18013619427/Resume-DevOPS-ZH.html",
+ "language": "EN",
+ "variant": "EN-v47-18013619427",
+ "versionSlug": "en-v47-18013619427",
+ "tags": [
+ "EN",
+ "EN v47",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v47-18013619427"
+ ]
+ },
+ {
+ "slug": "personal-en-v47-18013619427-readme",
+ "title": "README",
+ "description": "README — Personal (edition EN v47, release EN-v47-18013619427, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v47",
+ "updatedAt": "2025-09-25T16:11:31Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v47-18013619427/README.pdf",
+ "htmlUrl": "/docs/Personal/EN-v47-18013619427/README.html",
+ "language": "EN",
+ "variant": "EN-v47-18013619427",
+ "versionSlug": "en-v47-18013619427",
+ "tags": [
+ "EN",
+ "EN v47",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v47-18013619427"
+ ]
+ },
+ {
+ "slug": "personal-en-v47-18013619427-cv-zh",
+ "title": "CV ZH",
+ "description": "CV ZH — Personal (edition EN v47, release EN-v47-18013619427, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v47",
+ "updatedAt": "2025-09-25T16:11:31Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v47-18013619427/CV-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v47-18013619427/CV-ZH.html",
+ "language": "EN",
+ "variant": "EN-v47-18013619427",
+ "versionSlug": "en-v47-18013619427",
+ "tags": [
+ "EN",
+ "EN v47",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v47-18013619427"
+ ]
+ },
+ {
+ "slug": "personal-en-v47-18013619427-cv-en",
+ "title": "CV EN",
+ "description": "CV EN — Personal (edition EN v47, release EN-v47-18013619427, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v47",
+ "updatedAt": "2025-09-25T16:11:31Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v47-18013619427/CV-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v47-18013619427/CV-EN.html",
+ "language": "EN",
+ "variant": "EN-v47-18013619427",
+ "versionSlug": "en-v47-18013619427",
+ "tags": [
+ "EN",
+ "EN v47",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v47-18013619427"
+ ]
+ },
+ {
+ "slug": "personal-en-v47-18013619427-cv-ai-dev-zh",
+ "title": "CV AI Dev ZH",
+ "description": "CV AI Dev ZH — Personal (edition EN v47, release EN-v47-18013619427, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v47",
+ "updatedAt": "2025-09-25T16:11:31Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v47-18013619427/CV-AI-Dev-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v47-18013619427/CV-AI-Dev-ZH.html",
+ "language": "EN",
+ "variant": "EN-v47-18013619427",
+ "versionSlug": "en-v47-18013619427",
+ "tags": [
+ "EN",
+ "EN v47",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v47-18013619427"
+ ]
+ },
+ {
+ "slug": "personal-en-v47-18013619427-cv-ai-dev-en",
+ "title": "CV AI Dev EN",
+ "description": "CV AI Dev EN — Personal (edition EN v47, release EN-v47-18013619427, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v47",
+ "updatedAt": "2025-09-25T16:11:31Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v47-18013619427/CV-AI-Dev-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v47-18013619427/CV-AI-Dev-EN.html",
+ "language": "EN",
+ "variant": "EN-v47-18013619427",
+ "versionSlug": "en-v47-18013619427",
+ "tags": [
+ "EN",
+ "EN v47",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v47-18013619427"
+ ]
+ },
+ {
+ "slug": "personal-en-v47-18013619427-activebalance-plan",
+ "title": "Active Balance Plan",
+ "description": "Active Balance Plan — Personal (edition EN v47, release EN-v47-18013619427, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v47",
+ "updatedAt": "2025-09-25T16:11:31Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v47-18013619427/ActiveBalance-Plan.pdf",
+ "htmlUrl": "/docs/Personal/EN-v47-18013619427/ActiveBalance-Plan.html",
+ "language": "EN",
+ "variant": "EN-v47-18013619427",
+ "versionSlug": "en-v47-18013619427",
+ "tags": [
+ "EN",
+ "EN v47",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v47-18013619427"
+ ]
+ },
+ {
+ "slug": "the-indiedeveloper-fullstack-roadmap-en-v47-18013619427-fullstack-roadmap-en",
+ "title": "fullstack roadmap en",
+ "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v47, release EN-v47-18013619427, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "EN v47",
+ "updatedAt": "2025-09-25T16:11:04Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v47-18013619427/fullstack-roadmap-en.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v47-18013619427/fullstack-roadmap-en.html",
+ "language": "EN",
+ "variant": "EN-v47-18013619427",
+ "versionSlug": "en-v47-18013619427",
+ "tags": [
+ "EN",
+ "EN v47",
+ "The Indie Developer Fullstack Roadmap"
+ ],
+ "pathSegments": [
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "EN-v47-18013619427"
+ ]
+ },
+ {
+ "slug": "personal-en-v45-18011937887-fullstack-language-core",
+ "title": "fullstack language core",
+ "description": "fullstack language core — Personal (edition EN v45, release EN-v45-18011937887, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v45",
+ "updatedAt": "2025-09-25T15:20:21Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v45-18011937887/fullstack-language-core.pdf",
+ "htmlUrl": "/docs/Personal/EN-v45-18011937887/fullstack-language-core.html",
+ "language": "EN",
+ "variant": "EN-v45-18011937887",
+ "versionSlug": "en-v45-18011937887",
+ "tags": [
+ "EN",
+ "EN v45",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v45-18011937887"
+ ]
+ },
+ {
+ "slug": "personal-en-v45-18011937887-cet-6",
+ "title": "cet 6",
+ "description": "cet 6 — Personal (edition EN v45, release EN-v45-18011937887, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v45",
+ "updatedAt": "2025-09-25T15:20:21Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v45-18011937887/cet-6.pdf",
+ "htmlUrl": "/docs/Personal/EN-v45-18011937887/cet-6.html",
+ "language": "EN",
+ "variant": "EN-v45-18011937887",
+ "versionSlug": "en-v45-18011937887",
+ "tags": [
+ "EN",
+ "EN v45",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v45-18011937887"
+ ]
+ },
+ {
+ "slug": "personal-en-v45-18011937887-resume-zh",
+ "title": "Resume ZH",
+ "description": "Resume ZH — Personal (edition EN v45, release EN-v45-18011937887, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v45",
+ "updatedAt": "2025-09-25T15:20:20Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v45-18011937887/Resume-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v45-18011937887/Resume-ZH.html",
+ "language": "EN",
+ "variant": "EN-v45-18011937887",
+ "versionSlug": "en-v45-18011937887",
+ "tags": [
+ "EN",
+ "EN v45",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v45-18011937887"
+ ]
+ },
+ {
+ "slug": "personal-en-v45-18011937887-resume-en",
+ "title": "Resume EN",
+ "description": "Resume EN — Personal (edition EN v45, release EN-v45-18011937887, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v45",
+ "updatedAt": "2025-09-25T15:20:20Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v45-18011937887/Resume-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v45-18011937887/Resume-EN.html",
+ "language": "EN",
+ "variant": "EN-v45-18011937887",
+ "versionSlug": "en-v45-18011937887",
+ "tags": [
+ "EN",
+ "EN v45",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v45-18011937887"
+ ]
+ },
+ {
+ "slug": "personal-en-v45-18011937887-resume-devops-en",
+ "title": "Resume Dev Ops EN",
+ "description": "Resume Dev Ops EN — Personal (edition EN v45, release EN-v45-18011937887, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v45",
+ "updatedAt": "2025-09-25T15:20:20Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v45-18011937887/Resume-DevOps-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v45-18011937887/Resume-DevOps-EN.html",
+ "language": "EN",
+ "variant": "EN-v45-18011937887",
+ "versionSlug": "en-v45-18011937887",
+ "tags": [
+ "EN",
+ "EN v45",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v45-18011937887"
+ ]
+ },
+ {
+ "slug": "personal-en-v45-18011937887-resume-devops-zh",
+ "title": "Resume Dev OPS ZH",
+ "description": "Resume Dev OPS ZH — Personal (edition EN v45, release EN-v45-18011937887, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v45",
+ "updatedAt": "2025-09-25T15:20:20Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v45-18011937887/Resume-DevOPS-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v45-18011937887/Resume-DevOPS-ZH.html",
+ "language": "EN",
+ "variant": "EN-v45-18011937887",
+ "versionSlug": "en-v45-18011937887",
+ "tags": [
+ "EN",
+ "EN v45",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v45-18011937887"
+ ]
+ },
+ {
+ "slug": "personal-en-v45-18011937887-readme",
+ "title": "README",
+ "description": "README — Personal (edition EN v45, release EN-v45-18011937887, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v45",
+ "updatedAt": "2025-09-25T15:20:20Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v45-18011937887/README.pdf",
+ "htmlUrl": "/docs/Personal/EN-v45-18011937887/README.html",
+ "language": "EN",
+ "variant": "EN-v45-18011937887",
+ "versionSlug": "en-v45-18011937887",
+ "tags": [
+ "EN",
+ "EN v45",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v45-18011937887"
+ ]
+ },
+ {
+ "slug": "personal-en-v45-18011937887-cv-zh",
+ "title": "CV ZH",
+ "description": "CV ZH — Personal (edition EN v45, release EN-v45-18011937887, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v45",
+ "updatedAt": "2025-09-25T15:20:20Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v45-18011937887/CV-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v45-18011937887/CV-ZH.html",
+ "language": "EN",
+ "variant": "EN-v45-18011937887",
+ "versionSlug": "en-v45-18011937887",
+ "tags": [
+ "EN",
+ "EN v45",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v45-18011937887"
+ ]
+ },
+ {
+ "slug": "personal-en-v45-18011937887-cv-en",
+ "title": "CV EN",
+ "description": "CV EN — Personal (edition EN v45, release EN-v45-18011937887, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v45",
+ "updatedAt": "2025-09-25T15:20:20Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v45-18011937887/CV-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v45-18011937887/CV-EN.html",
+ "language": "EN",
+ "variant": "EN-v45-18011937887",
+ "versionSlug": "en-v45-18011937887",
+ "tags": [
+ "EN",
+ "EN v45",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v45-18011937887"
+ ]
+ },
+ {
+ "slug": "personal-en-v45-18011937887-cv-ai-dev-zh",
+ "title": "CV AI Dev ZH",
+ "description": "CV AI Dev ZH — Personal (edition EN v45, release EN-v45-18011937887, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v45",
+ "updatedAt": "2025-09-25T15:20:20Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v45-18011937887/CV-AI-Dev-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v45-18011937887/CV-AI-Dev-ZH.html",
+ "language": "EN",
+ "variant": "EN-v45-18011937887",
+ "versionSlug": "en-v45-18011937887",
+ "tags": [
+ "EN",
+ "EN v45",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v45-18011937887"
+ ]
+ },
+ {
+ "slug": "personal-en-v45-18011937887-cv-ai-dev-en",
+ "title": "CV AI Dev EN",
+ "description": "CV AI Dev EN — Personal (edition EN v45, release EN-v45-18011937887, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v45",
+ "updatedAt": "2025-09-25T15:20:20Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v45-18011937887/CV-AI-Dev-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v45-18011937887/CV-AI-Dev-EN.html",
+ "language": "EN",
+ "variant": "EN-v45-18011937887",
+ "versionSlug": "en-v45-18011937887",
+ "tags": [
+ "EN",
+ "EN v45",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v45-18011937887"
+ ]
+ },
+ {
+ "slug": "personal-en-v45-18011937887-activebalance-plan",
+ "title": "Active Balance Plan",
+ "description": "Active Balance Plan — Personal (edition EN v45, release EN-v45-18011937887, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v45",
+ "updatedAt": "2025-09-25T15:20:20Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v45-18011937887/ActiveBalance-Plan.pdf",
+ "htmlUrl": "/docs/Personal/EN-v45-18011937887/ActiveBalance-Plan.html",
+ "language": "EN",
+ "variant": "EN-v45-18011937887",
+ "versionSlug": "en-v45-18011937887",
+ "tags": [
+ "EN",
+ "EN v45",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v45-18011937887"
+ ]
+ },
+ {
+ "slug": "observability-cn-v45-18011937887-observability-design-and-implementation",
+ "title": "Observability Design and Implementation",
+ "description": "Observability Design and Implementation — Observability (edition CN v45, release CN-v45-18011937887, available as PDF and HTML).",
+ "category": "Observability",
+ "version": "CN v45",
+ "updatedAt": "2025-09-25T15:13:18Z",
+ "collection": "Observability",
+ "collectionSlug": "observability",
+ "collectionLabel": "Observability",
+ "pdfUrl": "/docs/Observability/CN-v45-18011937887/Observability-Design-and-Implementation.pdf",
+ "htmlUrl": "/docs/Observability/CN-v45-18011937887/Observability-Design-and-Implementation.html",
+ "language": "CN",
+ "variant": "CN-v45-18011937887",
+ "versionSlug": "cn-v45-18011937887",
+ "tags": [
+ "CN",
+ "CN v45",
+ "Observability"
+ ],
+ "pathSegments": [
+ "Observability",
+ "CN-v45-18011937887"
+ ]
+ },
+ {
+ "slug": "landingzone-en-v45-18011937887-landing-zone-design-and-implementation",
+ "title": "Landing Zone Design and Implementation",
+ "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v45, release EN-v45-18011937887, available as PDF).",
+ "category": "Landing Zone",
+ "version": "EN v45",
+ "updatedAt": "2025-09-25T15:13:18Z",
+ "collection": "LandingZone",
+ "collectionSlug": "landingzone",
+ "collectionLabel": "Landing Zone",
+ "pdfUrl": "/docs/LandingZone/EN-v45-18011937887/Landing-Zone-Design-and-Implementation.pdf",
+ "language": "EN",
+ "variant": "EN-v45-18011937887",
+ "versionSlug": "en-v45-18011937887",
+ "tags": [
+ "EN",
+ "EN v45",
+ "Landing Zone"
+ ],
+ "pathSegments": [
+ "LandingZone",
+ "EN-v45-18011937887"
+ ]
+ },
+ {
+ "slug": "keycloak-en-v46-18011951541-keycloak-sso-design-and-implementation",
+ "title": "Keycloak SSO Design and Implementation",
+ "description": "Keycloak SSO Design and Implementation — Keycloak (edition EN v46, release EN-v46-18011951541, available as HTML).",
+ "category": "Keycloak",
+ "version": "EN v46",
+ "updatedAt": "2025-09-25T15:13:16Z",
+ "collection": "Keycloak",
+ "collectionSlug": "keycloak",
+ "collectionLabel": "Keycloak",
+ "htmlUrl": "/docs/Keycloak/EN-v46-18011951541/Keycloak-SSO-Design-and-Implementation.html",
+ "language": "EN",
+ "variant": "EN-v46-18011951541",
+ "versionSlug": "en-v46-18011951541",
+ "tags": [
+ "EN",
+ "EN v46",
+ "Keycloak"
+ ],
+ "pathSegments": [
+ "Keycloak",
+ "EN-v46-18011951541"
+ ]
+ },
+ {
+ "slug": "observability-cn-v46-18011951541-observability-design-and-implementation",
+ "title": "Observability Design and Implementation",
+ "description": "Observability Design and Implementation — Observability (edition CN v46, release CN-v46-18011951541, available as PDF and HTML).",
+ "category": "Observability",
+ "version": "CN v46",
+ "updatedAt": "2025-09-25T15:13:15Z",
+ "collection": "Observability",
+ "collectionSlug": "observability",
+ "collectionLabel": "Observability",
+ "pdfUrl": "/docs/Observability/CN-v46-18011951541/Observability-Design-and-Implementation.pdf",
+ "htmlUrl": "/docs/Observability/CN-v46-18011951541/Observability-Design-and-Implementation.html",
+ "language": "CN",
+ "variant": "CN-v46-18011951541",
+ "versionSlug": "cn-v46-18011951541",
+ "tags": [
+ "CN",
+ "CN v46",
+ "Observability"
+ ],
+ "pathSegments": [
+ "Observability",
+ "CN-v46-18011951541"
+ ]
+ },
+ {
+ "slug": "techexploration-en-v45-18011937887-tech-exploration",
+ "title": "Tech Exploration",
+ "description": "Tech Exploration — Tech Exploration (edition EN v45, release EN-v45-18011937887, available as PDF and HTML).",
+ "category": "Tech Exploration",
+ "version": "EN v45",
+ "updatedAt": "2025-09-25T15:12:37Z",
+ "collection": "TechExploration",
+ "collectionSlug": "techexploration",
+ "collectionLabel": "Tech Exploration",
+ "pdfUrl": "/docs/TechExploration/EN-v45-18011937887/Tech-Exploration.pdf",
+ "htmlUrl": "/docs/TechExploration/EN-v45-18011937887/Tech-Exploration.html",
+ "language": "EN",
+ "variant": "EN-v45-18011937887",
+ "versionSlug": "en-v45-18011937887",
+ "tags": [
+ "EN",
+ "EN v45",
+ "Tech Exploration"
+ ],
+ "pathSegments": [
+ "TechExploration",
+ "EN-v45-18011937887"
+ ]
+ },
+ {
+ "slug": "personal-en-v46-18011951541-fullstack-language-core",
+ "title": "fullstack language core",
+ "description": "fullstack language core — Personal (edition EN v46, release EN-v46-18011951541, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v46",
+ "updatedAt": "2025-09-25T15:12:24Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v46-18011951541/fullstack-language-core.pdf",
+ "htmlUrl": "/docs/Personal/EN-v46-18011951541/fullstack-language-core.html",
+ "language": "EN",
+ "variant": "EN-v46-18011951541",
+ "versionSlug": "en-v46-18011951541",
+ "tags": [
+ "EN",
+ "EN v46",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v46-18011951541"
+ ]
+ },
+ {
+ "slug": "personal-en-v46-18011951541-cet-6",
+ "title": "cet 6",
+ "description": "cet 6 — Personal (edition EN v46, release EN-v46-18011951541, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v46",
+ "updatedAt": "2025-09-25T15:12:23Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v46-18011951541/cet-6.pdf",
+ "htmlUrl": "/docs/Personal/EN-v46-18011951541/cet-6.html",
+ "language": "EN",
+ "variant": "EN-v46-18011951541",
+ "versionSlug": "en-v46-18011951541",
+ "tags": [
+ "EN",
+ "EN v46",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v46-18011951541"
+ ]
+ },
+ {
+ "slug": "personal-en-v46-18011951541-resume-zh",
+ "title": "Resume ZH",
+ "description": "Resume ZH — Personal (edition EN v46, release EN-v46-18011951541, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v46",
+ "updatedAt": "2025-09-25T15:12:23Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v46-18011951541/Resume-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v46-18011951541/Resume-ZH.html",
+ "language": "EN",
+ "variant": "EN-v46-18011951541",
+ "versionSlug": "en-v46-18011951541",
+ "tags": [
+ "EN",
+ "EN v46",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v46-18011951541"
+ ]
+ },
+ {
+ "slug": "personal-en-v46-18011951541-resume-en",
+ "title": "Resume EN",
+ "description": "Resume EN — Personal (edition EN v46, release EN-v46-18011951541, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v46",
+ "updatedAt": "2025-09-25T15:12:23Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v46-18011951541/Resume-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v46-18011951541/Resume-EN.html",
+ "language": "EN",
+ "variant": "EN-v46-18011951541",
+ "versionSlug": "en-v46-18011951541",
+ "tags": [
+ "EN",
+ "EN v46",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v46-18011951541"
+ ]
+ },
+ {
+ "slug": "personal-en-v46-18011951541-resume-devops-en",
+ "title": "Resume Dev Ops EN",
+ "description": "Resume Dev Ops EN — Personal (edition EN v46, release EN-v46-18011951541, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v46",
+ "updatedAt": "2025-09-25T15:12:23Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v46-18011951541/Resume-DevOps-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v46-18011951541/Resume-DevOps-EN.html",
+ "language": "EN",
+ "variant": "EN-v46-18011951541",
+ "versionSlug": "en-v46-18011951541",
+ "tags": [
+ "EN",
+ "EN v46",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v46-18011951541"
+ ]
+ },
+ {
+ "slug": "personal-en-v46-18011951541-resume-devops-zh",
+ "title": "Resume Dev OPS ZH",
+ "description": "Resume Dev OPS ZH — Personal (edition EN v46, release EN-v46-18011951541, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v46",
+ "updatedAt": "2025-09-25T15:12:23Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v46-18011951541/Resume-DevOPS-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v46-18011951541/Resume-DevOPS-ZH.html",
+ "language": "EN",
+ "variant": "EN-v46-18011951541",
+ "versionSlug": "en-v46-18011951541",
+ "tags": [
+ "EN",
+ "EN v46",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v46-18011951541"
+ ]
+ },
+ {
+ "slug": "personal-en-v46-18011951541-readme",
+ "title": "README",
+ "description": "README — Personal (edition EN v46, release EN-v46-18011951541, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v46",
+ "updatedAt": "2025-09-25T15:12:23Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v46-18011951541/README.pdf",
+ "htmlUrl": "/docs/Personal/EN-v46-18011951541/README.html",
+ "language": "EN",
+ "variant": "EN-v46-18011951541",
+ "versionSlug": "en-v46-18011951541",
+ "tags": [
+ "EN",
+ "EN v46",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v46-18011951541"
+ ]
+ },
+ {
+ "slug": "personal-en-v46-18011951541-cv-zh",
+ "title": "CV ZH",
+ "description": "CV ZH — Personal (edition EN v46, release EN-v46-18011951541, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v46",
+ "updatedAt": "2025-09-25T15:12:23Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v46-18011951541/CV-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v46-18011951541/CV-ZH.html",
+ "language": "EN",
+ "variant": "EN-v46-18011951541",
+ "versionSlug": "en-v46-18011951541",
+ "tags": [
+ "EN",
+ "EN v46",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v46-18011951541"
+ ]
+ },
+ {
+ "slug": "personal-en-v46-18011951541-cv-en",
+ "title": "CV EN",
+ "description": "CV EN — Personal (edition EN v46, release EN-v46-18011951541, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v46",
+ "updatedAt": "2025-09-25T15:12:23Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v46-18011951541/CV-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v46-18011951541/CV-EN.html",
+ "language": "EN",
+ "variant": "EN-v46-18011951541",
+ "versionSlug": "en-v46-18011951541",
+ "tags": [
+ "EN",
+ "EN v46",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v46-18011951541"
+ ]
+ },
+ {
+ "slug": "personal-en-v46-18011951541-cv-ai-dev-zh",
+ "title": "CV AI Dev ZH",
+ "description": "CV AI Dev ZH — Personal (edition EN v46, release EN-v46-18011951541, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v46",
+ "updatedAt": "2025-09-25T15:12:23Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v46-18011951541/CV-AI-Dev-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v46-18011951541/CV-AI-Dev-ZH.html",
+ "language": "EN",
+ "variant": "EN-v46-18011951541",
+ "versionSlug": "en-v46-18011951541",
+ "tags": [
+ "EN",
+ "EN v46",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v46-18011951541"
+ ]
+ },
+ {
+ "slug": "personal-en-v46-18011951541-cv-ai-dev-en",
+ "title": "CV AI Dev EN",
+ "description": "CV AI Dev EN — Personal (edition EN v46, release EN-v46-18011951541, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v46",
+ "updatedAt": "2025-09-25T15:12:23Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v46-18011951541/CV-AI-Dev-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v46-18011951541/CV-AI-Dev-EN.html",
+ "language": "EN",
+ "variant": "EN-v46-18011951541",
+ "versionSlug": "en-v46-18011951541",
+ "tags": [
+ "EN",
+ "EN v46",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v46-18011951541"
+ ]
+ },
+ {
+ "slug": "personal-en-v46-18011951541-activebalance-plan",
+ "title": "Active Balance Plan",
+ "description": "Active Balance Plan — Personal (edition EN v46, release EN-v46-18011951541, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v46",
+ "updatedAt": "2025-09-25T15:12:23Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v46-18011951541/ActiveBalance-Plan.pdf",
+ "htmlUrl": "/docs/Personal/EN-v46-18011951541/ActiveBalance-Plan.html",
+ "language": "EN",
+ "variant": "EN-v46-18011951541",
+ "versionSlug": "en-v46-18011951541",
+ "tags": [
+ "EN",
+ "EN v46",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v46-18011951541"
+ ]
+ },
+ {
+ "slug": "linux-k8s-ops-cn-v45-18011937887-linux-k8s-ops-guide",
+ "title": "Linux K8 S OPS Guide",
+ "description": "Linux K8 S OPS Guide — Linux K8 S OPS (edition CN v45, release CN-v45-18011937887, available as PDF and HTML).",
+ "category": "Linux K8 S OPS",
+ "version": "CN v45",
+ "updatedAt": "2025-09-25T15:12:00Z",
+ "collection": "Linux-K8S-OPS",
+ "collectionSlug": "linux-k8s-ops",
+ "collectionLabel": "Linux K8 S OPS",
+ "pdfUrl": "/docs/Linux-K8S-OPS/CN-v45-18011937887/Linux-K8S-OPS-Guide.pdf",
+ "htmlUrl": "/docs/Linux-K8S-OPS/CN-v45-18011937887/Linux-K8S-OPS-Guide.html",
+ "language": "CN",
+ "variant": "CN-v45-18011937887",
+ "versionSlug": "cn-v45-18011937887",
+ "tags": [
+ "CN",
+ "CN v45",
+ "Linux K8 S OPS"
+ ],
+ "pathSegments": [
+ "Linux-K8S-OPS",
+ "CN-v45-18011937887"
+ ]
+ },
+ {
+ "slug": "landingzone-en-v46-18011951541-landing-zone-design-and-implementation",
+ "title": "Landing Zone Design and Implementation",
+ "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v46, release EN-v46-18011951541, available as PDF).",
+ "category": "Landing Zone",
+ "version": "EN v46",
+ "updatedAt": "2025-09-25T15:12:00Z",
+ "collection": "LandingZone",
+ "collectionSlug": "landingzone",
+ "collectionLabel": "Landing Zone",
+ "pdfUrl": "/docs/LandingZone/EN-v46-18011951541/Landing-Zone-Design-and-Implementation.pdf",
+ "language": "EN",
+ "variant": "EN-v46-18011951541",
+ "versionSlug": "en-v46-18011951541",
+ "tags": [
+ "EN",
+ "EN v46",
+ "Landing Zone"
+ ],
+ "pathSegments": [
+ "LandingZone",
+ "EN-v46-18011951541"
+ ]
+ },
+ {
+ "slug": "interview-qa-en-v46-18011951541-interview-qa-guide",
+ "title": "Interview QA Guide",
+ "description": "Interview QA Guide — interview qa (edition EN v46, release EN-v46-18011951541, available as PDF and HTML).",
+ "category": "interview qa",
+ "version": "EN v46",
+ "updatedAt": "2025-09-25T15:11:55Z",
+ "collection": "interview-qa",
+ "collectionSlug": "interview-qa",
+ "collectionLabel": "interview qa",
+ "pdfUrl": "/docs/interview-qa/EN-v46-18011951541/Interview-QA-Guide.pdf",
+ "htmlUrl": "/docs/interview-qa/EN-v46-18011951541/Interview-QA-Guide.html",
+ "language": "EN",
+ "variant": "EN-v46-18011951541",
+ "versionSlug": "en-v46-18011951541",
+ "tags": [
+ "EN",
+ "EN v46",
+ "interview qa"
+ ],
+ "pathSegments": [
+ "interview-qa",
+ "EN-v46-18011951541"
+ ]
+ },
+ {
+ "slug": "interview-qa-en-v45-18011937887-interview-qa-guide",
+ "title": "Interview QA Guide",
+ "description": "Interview QA Guide — interview qa (edition EN v45, release EN-v45-18011937887, available as PDF and HTML).",
+ "category": "interview qa",
+ "version": "EN v45",
+ "updatedAt": "2025-09-25T15:11:41Z",
+ "collection": "interview-qa",
+ "collectionSlug": "interview-qa",
+ "collectionLabel": "interview qa",
+ "pdfUrl": "/docs/interview-qa/EN-v45-18011937887/Interview-QA-Guide.pdf",
+ "htmlUrl": "/docs/interview-qa/EN-v45-18011937887/Interview-QA-Guide.html",
+ "language": "EN",
+ "variant": "EN-v45-18011937887",
+ "versionSlug": "en-v45-18011937887",
+ "tags": [
+ "EN",
+ "EN v45",
+ "interview qa"
+ ],
+ "pathSegments": [
+ "interview-qa",
+ "EN-v45-18011937887"
+ ]
+ },
+ {
+ "slug": "linux-k8s-ops-cn-v46-18011951541-linux-k8s-ops-guide",
+ "title": "Linux K8 S OPS Guide",
+ "description": "Linux K8 S OPS Guide — Linux K8 S OPS (edition CN v46, release CN-v46-18011951541, available as PDF and HTML).",
+ "category": "Linux K8 S OPS",
+ "version": "CN v46",
+ "updatedAt": "2025-09-25T15:11:19Z",
+ "collection": "Linux-K8S-OPS",
+ "collectionSlug": "linux-k8s-ops",
+ "collectionLabel": "Linux K8 S OPS",
+ "pdfUrl": "/docs/Linux-K8S-OPS/CN-v46-18011951541/Linux-K8S-OPS-Guide.pdf",
+ "htmlUrl": "/docs/Linux-K8S-OPS/CN-v46-18011951541/Linux-K8S-OPS-Guide.html",
+ "language": "CN",
+ "variant": "CN-v46-18011951541",
+ "versionSlug": "cn-v46-18011951541",
+ "tags": [
+ "CN",
+ "CN v46",
+ "Linux K8 S OPS"
+ ],
+ "pathSegments": [
+ "Linux-K8S-OPS",
+ "CN-v46-18011951541"
+ ]
+ },
+ {
+ "slug": "the-indiedeveloper-fullstack-roadmap-en-v46-18011951541-fullstack-roadmap-en",
+ "title": "fullstack roadmap en",
+ "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v46, release EN-v46-18011951541, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "EN v46",
+ "updatedAt": "2025-09-25T15:10:30Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v46-18011951541/fullstack-roadmap-en.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v46-18011951541/fullstack-roadmap-en.html",
+ "language": "EN",
+ "variant": "EN-v46-18011951541",
+ "versionSlug": "en-v46-18011951541",
+ "tags": [
+ "EN",
+ "EN v46",
+ "The Indie Developer Fullstack Roadmap"
+ ],
+ "pathSegments": [
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "EN-v46-18011951541"
+ ]
+ },
+ {
+ "slug": "the-indiedeveloper-fullstack-roadmap-en-v45-18011937887-fullstack-roadmap-en",
+ "title": "fullstack roadmap en",
+ "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v45, release EN-v45-18011937887, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "EN v45",
+ "updatedAt": "2025-09-25T15:10:29Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v45-18011937887/fullstack-roadmap-en.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v45-18011937887/fullstack-roadmap-en.html",
+ "language": "EN",
+ "variant": "EN-v45-18011937887",
+ "versionSlug": "en-v45-18011937887",
+ "tags": [
+ "EN",
+ "EN v45",
+ "The Indie Developer Fullstack Roadmap"
+ ],
+ "pathSegments": [
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "EN-v45-18011937887"
+ ]
+ },
+ {
+ "slug": "techexploration-en-v46-18011951541-tech-exploration",
+ "title": "Tech Exploration",
+ "description": "Tech Exploration — Tech Exploration (edition EN v46, release EN-v46-18011951541, available as PDF and HTML).",
+ "category": "Tech Exploration",
+ "version": "EN v46",
+ "updatedAt": "2025-09-25T15:10:28Z",
+ "collection": "TechExploration",
+ "collectionSlug": "techexploration",
+ "collectionLabel": "Tech Exploration",
+ "pdfUrl": "/docs/TechExploration/EN-v46-18011951541/Tech-Exploration.pdf",
+ "htmlUrl": "/docs/TechExploration/EN-v46-18011951541/Tech-Exploration.html",
+ "language": "EN",
+ "variant": "EN-v46-18011951541",
+ "versionSlug": "en-v46-18011951541",
+ "tags": [
+ "EN",
+ "EN v46",
+ "Tech Exploration"
+ ],
+ "pathSegments": [
+ "TechExploration",
+ "EN-v46-18011951541"
+ ]
+ },
+ {
+ "slug": "keycloak-en-v45-18011937887-keycloak-sso-design-and-implementation",
+ "title": "Keycloak SSO Design and Implementation",
+ "description": "Keycloak SSO Design and Implementation — Keycloak (edition EN v45, release EN-v45-18011937887, available as HTML).",
+ "category": "Keycloak",
+ "version": "EN v45",
+ "updatedAt": "2025-09-25T15:10:12Z",
+ "collection": "Keycloak",
+ "collectionSlug": "keycloak",
+ "collectionLabel": "Keycloak",
+ "htmlUrl": "/docs/Keycloak/EN-v45-18011937887/Keycloak-SSO-Design-and-Implementation.html",
+ "language": "EN",
+ "variant": "EN-v45-18011937887",
+ "versionSlug": "en-v45-18011937887",
+ "tags": [
+ "EN",
+ "EN v45",
+ "Keycloak"
+ ],
+ "pathSegments": [
+ "Keycloak",
+ "EN-v45-18011937887"
+ ]
+ },
+ {
+ "slug": "personal-en-v44-18011825454-fullstack-language-core",
+ "title": "fullstack language core",
+ "description": "fullstack language core — Personal (edition EN v44, release EN-v44-18011825454, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v44",
+ "updatedAt": "2025-09-25T15:08:45Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v44-18011825454/fullstack-language-core.pdf",
+ "htmlUrl": "/docs/Personal/EN-v44-18011825454/fullstack-language-core.html",
+ "language": "EN",
+ "variant": "EN-v44-18011825454",
+ "versionSlug": "en-v44-18011825454",
+ "tags": [
+ "EN",
+ "EN v44",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v44-18011825454"
+ ]
+ },
+ {
+ "slug": "personal-en-v44-18011825454-cet-6",
+ "title": "cet 6",
+ "description": "cet 6 — Personal (edition EN v44, release EN-v44-18011825454, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v44",
+ "updatedAt": "2025-09-25T15:08:45Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v44-18011825454/cet-6.pdf",
+ "htmlUrl": "/docs/Personal/EN-v44-18011825454/cet-6.html",
+ "language": "EN",
+ "variant": "EN-v44-18011825454",
+ "versionSlug": "en-v44-18011825454",
+ "tags": [
+ "EN",
+ "EN v44",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v44-18011825454"
+ ]
+ },
+ {
+ "slug": "personal-en-v44-18011825454-resume-zh",
+ "title": "Resume ZH",
+ "description": "Resume ZH — Personal (edition EN v44, release EN-v44-18011825454, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v44",
+ "updatedAt": "2025-09-25T15:08:45Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v44-18011825454/Resume-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v44-18011825454/Resume-ZH.html",
+ "language": "EN",
+ "variant": "EN-v44-18011825454",
+ "versionSlug": "en-v44-18011825454",
+ "tags": [
+ "EN",
+ "EN v44",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v44-18011825454"
+ ]
+ },
+ {
+ "slug": "personal-en-v44-18011825454-resume-en",
+ "title": "Resume EN",
+ "description": "Resume EN — Personal (edition EN v44, release EN-v44-18011825454, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v44",
+ "updatedAt": "2025-09-25T15:08:45Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v44-18011825454/Resume-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v44-18011825454/Resume-EN.html",
+ "language": "EN",
+ "variant": "EN-v44-18011825454",
+ "versionSlug": "en-v44-18011825454",
+ "tags": [
+ "EN",
+ "EN v44",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v44-18011825454"
+ ]
+ },
+ {
+ "slug": "personal-en-v44-18011825454-resume-devops-en",
+ "title": "Resume Dev Ops EN",
+ "description": "Resume Dev Ops EN — Personal (edition EN v44, release EN-v44-18011825454, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v44",
+ "updatedAt": "2025-09-25T15:08:45Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v44-18011825454/Resume-DevOps-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v44-18011825454/Resume-DevOps-EN.html",
+ "language": "EN",
+ "variant": "EN-v44-18011825454",
+ "versionSlug": "en-v44-18011825454",
+ "tags": [
+ "EN",
+ "EN v44",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v44-18011825454"
+ ]
+ },
+ {
+ "slug": "personal-en-v44-18011825454-resume-devops-zh",
+ "title": "Resume Dev OPS ZH",
+ "description": "Resume Dev OPS ZH — Personal (edition EN v44, release EN-v44-18011825454, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v44",
+ "updatedAt": "2025-09-25T15:08:45Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v44-18011825454/Resume-DevOPS-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v44-18011825454/Resume-DevOPS-ZH.html",
+ "language": "EN",
+ "variant": "EN-v44-18011825454",
+ "versionSlug": "en-v44-18011825454",
+ "tags": [
+ "EN",
+ "EN v44",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v44-18011825454"
+ ]
+ },
+ {
+ "slug": "personal-en-v44-18011825454-readme",
+ "title": "README",
+ "description": "README — Personal (edition EN v44, release EN-v44-18011825454, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v44",
+ "updatedAt": "2025-09-25T15:08:45Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v44-18011825454/README.pdf",
+ "htmlUrl": "/docs/Personal/EN-v44-18011825454/README.html",
+ "language": "EN",
+ "variant": "EN-v44-18011825454",
+ "versionSlug": "en-v44-18011825454",
+ "tags": [
+ "EN",
+ "EN v44",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v44-18011825454"
+ ]
+ },
+ {
+ "slug": "personal-en-v44-18011825454-cv-zh",
+ "title": "CV ZH",
+ "description": "CV ZH — Personal (edition EN v44, release EN-v44-18011825454, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v44",
+ "updatedAt": "2025-09-25T15:08:45Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v44-18011825454/CV-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v44-18011825454/CV-ZH.html",
+ "language": "EN",
+ "variant": "EN-v44-18011825454",
+ "versionSlug": "en-v44-18011825454",
+ "tags": [
+ "EN",
+ "EN v44",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v44-18011825454"
+ ]
+ },
+ {
+ "slug": "personal-en-v44-18011825454-cv-en",
+ "title": "CV EN",
+ "description": "CV EN — Personal (edition EN v44, release EN-v44-18011825454, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v44",
+ "updatedAt": "2025-09-25T15:08:45Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v44-18011825454/CV-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v44-18011825454/CV-EN.html",
+ "language": "EN",
+ "variant": "EN-v44-18011825454",
+ "versionSlug": "en-v44-18011825454",
+ "tags": [
+ "EN",
+ "EN v44",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v44-18011825454"
+ ]
+ },
+ {
+ "slug": "personal-en-v44-18011825454-cv-ai-dev-zh",
+ "title": "CV AI Dev ZH",
+ "description": "CV AI Dev ZH — Personal (edition EN v44, release EN-v44-18011825454, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v44",
+ "updatedAt": "2025-09-25T15:08:44Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v44-18011825454/CV-AI-Dev-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v44-18011825454/CV-AI-Dev-ZH.html",
+ "language": "EN",
+ "variant": "EN-v44-18011825454",
+ "versionSlug": "en-v44-18011825454",
+ "tags": [
+ "EN",
+ "EN v44",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v44-18011825454"
+ ]
+ },
+ {
+ "slug": "personal-en-v44-18011825454-cv-ai-dev-en",
+ "title": "CV AI Dev EN",
+ "description": "CV AI Dev EN — Personal (edition EN v44, release EN-v44-18011825454, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v44",
+ "updatedAt": "2025-09-25T15:08:44Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v44-18011825454/CV-AI-Dev-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v44-18011825454/CV-AI-Dev-EN.html",
+ "language": "EN",
+ "variant": "EN-v44-18011825454",
+ "versionSlug": "en-v44-18011825454",
+ "tags": [
+ "EN",
+ "EN v44",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v44-18011825454"
+ ]
+ },
+ {
+ "slug": "personal-en-v44-18011825454-activebalance-plan",
+ "title": "Active Balance Plan",
+ "description": "Active Balance Plan — Personal (edition EN v44, release EN-v44-18011825454, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v44",
+ "updatedAt": "2025-09-25T15:08:44Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v44-18011825454/ActiveBalance-Plan.pdf",
+ "htmlUrl": "/docs/Personal/EN-v44-18011825454/ActiveBalance-Plan.html",
+ "language": "EN",
+ "variant": "EN-v44-18011825454",
+ "versionSlug": "en-v44-18011825454",
+ "tags": [
+ "EN",
+ "EN v44",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v44-18011825454"
+ ]
+ },
+ {
+ "slug": "the-indiedeveloper-fullstack-roadmap-en-v44-18011825454-fullstack-roadmap-en",
+ "title": "fullstack roadmap en",
+ "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v44, release EN-v44-18011825454, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "EN v44",
+ "updatedAt": "2025-09-25T15:07:57Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v44-18011825454/fullstack-roadmap-en.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v44-18011825454/fullstack-roadmap-en.html",
+ "language": "EN",
+ "variant": "EN-v44-18011825454",
+ "versionSlug": "en-v44-18011825454",
+ "tags": [
+ "EN",
+ "EN v44",
+ "The Indie Developer Fullstack Roadmap"
+ ],
+ "pathSegments": [
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "EN-v44-18011825454"
+ ]
+ },
+ {
+ "slug": "linux-k8s-ops-cn-v44-18011825454-linux-k8s-ops-guide",
+ "title": "Linux K8 S OPS Guide",
+ "description": "Linux K8 S OPS Guide — Linux K8 S OPS (edition CN v44, release CN-v44-18011825454, available as PDF and HTML).",
+ "category": "Linux K8 S OPS",
+ "version": "CN v44",
+ "updatedAt": "2025-09-25T15:06:57Z",
+ "collection": "Linux-K8S-OPS",
+ "collectionSlug": "linux-k8s-ops",
+ "collectionLabel": "Linux K8 S OPS",
+ "pdfUrl": "/docs/Linux-K8S-OPS/CN-v44-18011825454/Linux-K8S-OPS-Guide.pdf",
+ "htmlUrl": "/docs/Linux-K8S-OPS/CN-v44-18011825454/Linux-K8S-OPS-Guide.html",
+ "language": "CN",
+ "variant": "CN-v44-18011825454",
+ "versionSlug": "cn-v44-18011825454",
+ "tags": [
+ "CN",
+ "CN v44",
+ "Linux K8 S OPS"
+ ],
+ "pathSegments": [
+ "Linux-K8S-OPS",
+ "CN-v44-18011825454"
+ ]
+ },
+ {
+ "slug": "techexploration-en-v44-18011825454-tech-exploration",
+ "title": "Tech Exploration",
+ "description": "Tech Exploration — Tech Exploration (edition EN v44, release EN-v44-18011825454, available as PDF and HTML).",
+ "category": "Tech Exploration",
+ "version": "EN v44",
+ "updatedAt": "2025-09-25T15:06:38Z",
+ "collection": "TechExploration",
+ "collectionSlug": "techexploration",
+ "collectionLabel": "Tech Exploration",
+ "pdfUrl": "/docs/TechExploration/EN-v44-18011825454/Tech-Exploration.pdf",
+ "htmlUrl": "/docs/TechExploration/EN-v44-18011825454/Tech-Exploration.html",
+ "language": "EN",
+ "variant": "EN-v44-18011825454",
+ "versionSlug": "en-v44-18011825454",
+ "tags": [
+ "EN",
+ "EN v44",
+ "Tech Exploration"
+ ],
+ "pathSegments": [
+ "TechExploration",
+ "EN-v44-18011825454"
+ ]
+ },
+ {
+ "slug": "observability-cn-v44-18011825454-observability-design-and-implementation",
+ "title": "Observability Design and Implementation",
+ "description": "Observability Design and Implementation — Observability (edition CN v44, release CN-v44-18011825454, available as PDF and HTML).",
+ "category": "Observability",
+ "version": "CN v44",
+ "updatedAt": "2025-09-25T15:06:34Z",
+ "collection": "Observability",
+ "collectionSlug": "observability",
+ "collectionLabel": "Observability",
+ "pdfUrl": "/docs/Observability/CN-v44-18011825454/Observability-Design-and-Implementation.pdf",
+ "htmlUrl": "/docs/Observability/CN-v44-18011825454/Observability-Design-and-Implementation.html",
+ "language": "CN",
+ "variant": "CN-v44-18011825454",
+ "versionSlug": "cn-v44-18011825454",
+ "tags": [
+ "CN",
+ "CN v44",
+ "Observability"
+ ],
+ "pathSegments": [
+ "Observability",
+ "CN-v44-18011825454"
+ ]
+ },
+ {
+ "slug": "keycloak-en-v44-18011825454-keycloak-sso-design-and-implementation",
+ "title": "Keycloak SSO Design and Implementation",
+ "description": "Keycloak SSO Design and Implementation — Keycloak (edition EN v44, release EN-v44-18011825454, available as HTML).",
+ "category": "Keycloak",
+ "version": "EN v44",
+ "updatedAt": "2025-09-25T15:06:22Z",
+ "collection": "Keycloak",
+ "collectionSlug": "keycloak",
+ "collectionLabel": "Keycloak",
+ "htmlUrl": "/docs/Keycloak/EN-v44-18011825454/Keycloak-SSO-Design-and-Implementation.html",
+ "language": "EN",
+ "variant": "EN-v44-18011825454",
+ "versionSlug": "en-v44-18011825454",
+ "tags": [
+ "EN",
+ "EN v44",
+ "Keycloak"
+ ],
+ "pathSegments": [
+ "Keycloak",
+ "EN-v44-18011825454"
+ ]
+ },
+ {
+ "slug": "interview-qa-en-v44-18011825454-interview-qa-guide",
+ "title": "Interview QA Guide",
+ "description": "Interview QA Guide — interview qa (edition EN v44, release EN-v44-18011825454, available as PDF and HTML).",
+ "category": "interview qa",
+ "version": "EN v44",
+ "updatedAt": "2025-09-25T15:06:19Z",
+ "collection": "interview-qa",
+ "collectionSlug": "interview-qa",
+ "collectionLabel": "interview qa",
+ "pdfUrl": "/docs/interview-qa/EN-v44-18011825454/Interview-QA-Guide.pdf",
+ "htmlUrl": "/docs/interview-qa/EN-v44-18011825454/Interview-QA-Guide.html",
+ "language": "EN",
+ "variant": "EN-v44-18011825454",
+ "versionSlug": "en-v44-18011825454",
+ "tags": [
+ "EN",
+ "EN v44",
+ "interview qa"
+ ],
+ "pathSegments": [
+ "interview-qa",
+ "EN-v44-18011825454"
+ ]
+ },
+ {
+ "slug": "landingzone-en-v44-18011825454-landing-zone-design-and-implementation",
+ "title": "Landing Zone Design and Implementation",
+ "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v44, release EN-v44-18011825454, available as PDF).",
+ "category": "Landing Zone",
+ "version": "EN v44",
+ "updatedAt": "2025-09-25T15:05:53Z",
+ "collection": "LandingZone",
+ "collectionSlug": "landingzone",
+ "collectionLabel": "Landing Zone",
+ "pdfUrl": "/docs/LandingZone/EN-v44-18011825454/Landing-Zone-Design-and-Implementation.pdf",
+ "language": "EN",
+ "variant": "EN-v44-18011825454",
+ "versionSlug": "en-v44-18011825454",
+ "tags": [
+ "EN",
+ "EN v44",
+ "Landing Zone"
+ ],
+ "pathSegments": [
+ "LandingZone",
+ "EN-v44-18011825454"
+ ]
+ },
+ {
+ "slug": "observability-cn-v43-18011536494-observability-design-and-implementation",
+ "title": "Observability Design and Implementation",
+ "description": "Observability Design and Implementation — Observability (edition CN v43, release CN-v43-18011536494, available as PDF and HTML).",
+ "category": "Observability",
+ "version": "CN v43",
+ "updatedAt": "2025-09-25T14:58:25Z",
+ "collection": "Observability",
+ "collectionSlug": "observability",
+ "collectionLabel": "Observability",
+ "pdfUrl": "/docs/Observability/CN-v43-18011536494/Observability-Design-and-Implementation.pdf",
+ "htmlUrl": "/docs/Observability/CN-v43-18011536494/Observability-Design-and-Implementation.html",
+ "language": "CN",
+ "variant": "CN-v43-18011536494",
+ "versionSlug": "cn-v43-18011536494",
+ "tags": [
+ "CN",
+ "CN v43",
+ "Observability"
+ ],
+ "pathSegments": [
+ "Observability",
+ "CN-v43-18011536494"
+ ]
+ },
+ {
+ "slug": "techexploration-en-v43-18011536494-tech-exploration",
+ "title": "Tech Exploration",
+ "description": "Tech Exploration — Tech Exploration (edition EN v43, release EN-v43-18011536494, available as PDF and HTML).",
+ "category": "Tech Exploration",
+ "version": "EN v43",
+ "updatedAt": "2025-09-25T14:57:25Z",
+ "collection": "TechExploration",
+ "collectionSlug": "techexploration",
+ "collectionLabel": "Tech Exploration",
+ "pdfUrl": "/docs/TechExploration/EN-v43-18011536494/Tech-Exploration.pdf",
+ "htmlUrl": "/docs/TechExploration/EN-v43-18011536494/Tech-Exploration.html",
+ "language": "EN",
+ "variant": "EN-v43-18011536494",
+ "versionSlug": "en-v43-18011536494",
+ "tags": [
+ "EN",
+ "EN v43",
+ "Tech Exploration"
+ ],
+ "pathSegments": [
+ "TechExploration",
+ "EN-v43-18011536494"
+ ]
+ },
+ {
+ "slug": "personal-en-v43-18011536494-fullstack-language-core",
+ "title": "fullstack language core",
+ "description": "fullstack language core — Personal (edition EN v43, release EN-v43-18011536494, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v43",
+ "updatedAt": "2025-09-25T14:57:19Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v43-18011536494/fullstack-language-core.pdf",
+ "htmlUrl": "/docs/Personal/EN-v43-18011536494/fullstack-language-core.html",
+ "language": "EN",
+ "variant": "EN-v43-18011536494",
+ "versionSlug": "en-v43-18011536494",
+ "tags": [
+ "EN",
+ "EN v43",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v43-18011536494"
+ ]
+ },
+ {
+ "slug": "personal-en-v43-18011536494-cet-6",
+ "title": "cet 6",
+ "description": "cet 6 — Personal (edition EN v43, release EN-v43-18011536494, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v43",
+ "updatedAt": "2025-09-25T14:57:19Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v43-18011536494/cet-6.pdf",
+ "htmlUrl": "/docs/Personal/EN-v43-18011536494/cet-6.html",
+ "language": "EN",
+ "variant": "EN-v43-18011536494",
+ "versionSlug": "en-v43-18011536494",
+ "tags": [
+ "EN",
+ "EN v43",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v43-18011536494"
+ ]
+ },
+ {
+ "slug": "personal-en-v43-18011536494-resume-zh",
+ "title": "Resume ZH",
+ "description": "Resume ZH — Personal (edition EN v43, release EN-v43-18011536494, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v43",
+ "updatedAt": "2025-09-25T14:57:18Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v43-18011536494/Resume-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v43-18011536494/Resume-ZH.html",
+ "language": "EN",
+ "variant": "EN-v43-18011536494",
+ "versionSlug": "en-v43-18011536494",
+ "tags": [
+ "EN",
+ "EN v43",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v43-18011536494"
+ ]
+ },
+ {
+ "slug": "personal-en-v43-18011536494-resume-en",
+ "title": "Resume EN",
+ "description": "Resume EN — Personal (edition EN v43, release EN-v43-18011536494, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v43",
+ "updatedAt": "2025-09-25T14:57:18Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v43-18011536494/Resume-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v43-18011536494/Resume-EN.html",
+ "language": "EN",
+ "variant": "EN-v43-18011536494",
+ "versionSlug": "en-v43-18011536494",
+ "tags": [
+ "EN",
+ "EN v43",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v43-18011536494"
+ ]
+ },
+ {
+ "slug": "personal-en-v43-18011536494-resume-devops-en",
+ "title": "Resume Dev Ops EN",
+ "description": "Resume Dev Ops EN — Personal (edition EN v43, release EN-v43-18011536494, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v43",
+ "updatedAt": "2025-09-25T14:57:18Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v43-18011536494/Resume-DevOps-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v43-18011536494/Resume-DevOps-EN.html",
+ "language": "EN",
+ "variant": "EN-v43-18011536494",
+ "versionSlug": "en-v43-18011536494",
+ "tags": [
+ "EN",
+ "EN v43",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v43-18011536494"
+ ]
+ },
+ {
+ "slug": "personal-en-v43-18011536494-resume-devops-zh",
+ "title": "Resume Dev OPS ZH",
+ "description": "Resume Dev OPS ZH — Personal (edition EN v43, release EN-v43-18011536494, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v43",
+ "updatedAt": "2025-09-25T14:57:18Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v43-18011536494/Resume-DevOPS-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v43-18011536494/Resume-DevOPS-ZH.html",
+ "language": "EN",
+ "variant": "EN-v43-18011536494",
+ "versionSlug": "en-v43-18011536494",
+ "tags": [
+ "EN",
+ "EN v43",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v43-18011536494"
+ ]
+ },
+ {
+ "slug": "personal-en-v43-18011536494-readme",
+ "title": "README",
+ "description": "README — Personal (edition EN v43, release EN-v43-18011536494, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v43",
+ "updatedAt": "2025-09-25T14:57:18Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v43-18011536494/README.pdf",
+ "htmlUrl": "/docs/Personal/EN-v43-18011536494/README.html",
+ "language": "EN",
+ "variant": "EN-v43-18011536494",
+ "versionSlug": "en-v43-18011536494",
+ "tags": [
+ "EN",
+ "EN v43",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v43-18011536494"
+ ]
+ },
+ {
+ "slug": "personal-en-v43-18011536494-cv-zh",
+ "title": "CV ZH",
+ "description": "CV ZH — Personal (edition EN v43, release EN-v43-18011536494, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v43",
+ "updatedAt": "2025-09-25T14:57:18Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v43-18011536494/CV-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v43-18011536494/CV-ZH.html",
+ "language": "EN",
+ "variant": "EN-v43-18011536494",
+ "versionSlug": "en-v43-18011536494",
+ "tags": [
+ "EN",
+ "EN v43",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v43-18011536494"
+ ]
+ },
+ {
+ "slug": "personal-en-v43-18011536494-cv-en",
+ "title": "CV EN",
+ "description": "CV EN — Personal (edition EN v43, release EN-v43-18011536494, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v43",
+ "updatedAt": "2025-09-25T14:57:18Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v43-18011536494/CV-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v43-18011536494/CV-EN.html",
+ "language": "EN",
+ "variant": "EN-v43-18011536494",
+ "versionSlug": "en-v43-18011536494",
+ "tags": [
+ "EN",
+ "EN v43",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v43-18011536494"
+ ]
+ },
+ {
+ "slug": "personal-en-v43-18011536494-cv-ai-dev-zh",
+ "title": "CV AI Dev ZH",
+ "description": "CV AI Dev ZH — Personal (edition EN v43, release EN-v43-18011536494, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v43",
+ "updatedAt": "2025-09-25T14:57:18Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v43-18011536494/CV-AI-Dev-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v43-18011536494/CV-AI-Dev-ZH.html",
+ "language": "EN",
+ "variant": "EN-v43-18011536494",
+ "versionSlug": "en-v43-18011536494",
+ "tags": [
+ "EN",
+ "EN v43",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v43-18011536494"
+ ]
+ },
+ {
+ "slug": "personal-en-v43-18011536494-cv-ai-dev-en",
+ "title": "CV AI Dev EN",
+ "description": "CV AI Dev EN — Personal (edition EN v43, release EN-v43-18011536494, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v43",
+ "updatedAt": "2025-09-25T14:57:18Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v43-18011536494/CV-AI-Dev-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v43-18011536494/CV-AI-Dev-EN.html",
+ "language": "EN",
+ "variant": "EN-v43-18011536494",
+ "versionSlug": "en-v43-18011536494",
+ "tags": [
+ "EN",
+ "EN v43",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v43-18011536494"
+ ]
+ },
+ {
+ "slug": "personal-en-v43-18011536494-activebalance-plan",
+ "title": "Active Balance Plan",
+ "description": "Active Balance Plan — Personal (edition EN v43, release EN-v43-18011536494, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v43",
+ "updatedAt": "2025-09-25T14:57:18Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v43-18011536494/ActiveBalance-Plan.pdf",
+ "htmlUrl": "/docs/Personal/EN-v43-18011536494/ActiveBalance-Plan.html",
+ "language": "EN",
+ "variant": "EN-v43-18011536494",
+ "versionSlug": "en-v43-18011536494",
+ "tags": [
+ "EN",
+ "EN v43",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v43-18011536494"
+ ]
+ },
+ {
+ "slug": "the-indiedeveloper-fullstack-roadmap-en-v43-18011536494-fullstack-roadmap-en",
+ "title": "fullstack roadmap en",
+ "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v43, release EN-v43-18011536494, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "EN v43",
+ "updatedAt": "2025-09-25T14:56:22Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v43-18011536494/fullstack-roadmap-en.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v43-18011536494/fullstack-roadmap-en.html",
+ "language": "EN",
+ "variant": "EN-v43-18011536494",
+ "versionSlug": "en-v43-18011536494",
+ "tags": [
+ "EN",
+ "EN v43",
+ "The Indie Developer Fullstack Roadmap"
+ ],
+ "pathSegments": [
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "EN-v43-18011536494"
+ ]
+ },
+ {
+ "slug": "landingzone-en-v43-18011536494-landing-zone-design-and-implementation",
+ "title": "Landing Zone Design and Implementation",
+ "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v43, release EN-v43-18011536494, available as PDF).",
+ "category": "Landing Zone",
+ "version": "EN v43",
+ "updatedAt": "2025-09-25T14:56:21Z",
+ "collection": "LandingZone",
+ "collectionSlug": "landingzone",
+ "collectionLabel": "Landing Zone",
+ "pdfUrl": "/docs/LandingZone/EN-v43-18011536494/Landing-Zone-Design-and-Implementation.pdf",
+ "language": "EN",
+ "variant": "EN-v43-18011536494",
+ "versionSlug": "en-v43-18011536494",
+ "tags": [
+ "EN",
+ "EN v43",
+ "Landing Zone"
+ ],
+ "pathSegments": [
+ "LandingZone",
+ "EN-v43-18011536494"
+ ]
+ },
+ {
+ "slug": "linux-k8s-ops-cn-v43-18011536494-linux-k8s-ops-guide",
+ "title": "Linux K8 S OPS Guide",
+ "description": "Linux K8 S OPS Guide — Linux K8 S OPS (edition CN v43, release CN-v43-18011536494, available as PDF and HTML).",
+ "category": "Linux K8 S OPS",
+ "version": "CN v43",
+ "updatedAt": "2025-09-25T14:56:12Z",
+ "collection": "Linux-K8S-OPS",
+ "collectionSlug": "linux-k8s-ops",
+ "collectionLabel": "Linux K8 S OPS",
+ "pdfUrl": "/docs/Linux-K8S-OPS/CN-v43-18011536494/Linux-K8S-OPS-Guide.pdf",
+ "htmlUrl": "/docs/Linux-K8S-OPS/CN-v43-18011536494/Linux-K8S-OPS-Guide.html",
+ "language": "CN",
+ "variant": "CN-v43-18011536494",
+ "versionSlug": "cn-v43-18011536494",
+ "tags": [
+ "CN",
+ "CN v43",
+ "Linux K8 S OPS"
+ ],
+ "pathSegments": [
+ "Linux-K8S-OPS",
+ "CN-v43-18011536494"
+ ]
+ },
+ {
+ "slug": "interview-qa-en-v43-18011536494-interview-qa-guide",
+ "title": "Interview QA Guide",
+ "description": "Interview QA Guide — interview qa (edition EN v43, release EN-v43-18011536494, available as PDF and HTML).",
+ "category": "interview qa",
+ "version": "EN v43",
+ "updatedAt": "2025-09-25T14:56:11Z",
+ "collection": "interview-qa",
+ "collectionSlug": "interview-qa",
+ "collectionLabel": "interview qa",
+ "pdfUrl": "/docs/interview-qa/EN-v43-18011536494/Interview-QA-Guide.pdf",
+ "htmlUrl": "/docs/interview-qa/EN-v43-18011536494/Interview-QA-Guide.html",
+ "language": "EN",
+ "variant": "EN-v43-18011536494",
+ "versionSlug": "en-v43-18011536494",
+ "tags": [
+ "EN",
+ "EN v43",
+ "interview qa"
+ ],
+ "pathSegments": [
+ "interview-qa",
+ "EN-v43-18011536494"
+ ]
+ },
+ {
+ "slug": "keycloak-en-v43-18011536494-keycloak-sso-design-and-implementation",
+ "title": "Keycloak SSO Design and Implementation",
+ "description": "Keycloak SSO Design and Implementation — Keycloak (edition EN v43, release EN-v43-18011536494, available as HTML).",
+ "category": "Keycloak",
+ "version": "EN v43",
+ "updatedAt": "2025-09-25T14:55:58Z",
+ "collection": "Keycloak",
+ "collectionSlug": "keycloak",
+ "collectionLabel": "Keycloak",
+ "htmlUrl": "/docs/Keycloak/EN-v43-18011536494/Keycloak-SSO-Design-and-Implementation.html",
+ "language": "EN",
+ "variant": "EN-v43-18011536494",
+ "versionSlug": "en-v43-18011536494",
+ "tags": [
+ "EN",
+ "EN v43",
+ "Keycloak"
+ ],
+ "pathSegments": [
+ "Keycloak",
+ "EN-v43-18011536494"
+ ]
+ },
+ {
+ "slug": "observability-cn-v42-18006148753-observability-design-and-implementation",
+ "title": "Observability Design and Implementation",
+ "description": "Observability Design and Implementation — Observability (edition CN v42, release CN-v42-18006148753, available as PDF and HTML).",
+ "category": "Observability",
+ "version": "CN v42",
+ "updatedAt": "2025-09-25T11:38:49Z",
+ "collection": "Observability",
+ "collectionSlug": "observability",
+ "collectionLabel": "Observability",
+ "pdfUrl": "/docs/Observability/CN-v42-18006148753/Observability-Design-and-Implementation.pdf",
+ "htmlUrl": "/docs/Observability/CN-v42-18006148753/Observability-Design-and-Implementation.html",
+ "language": "CN",
+ "variant": "CN-v42-18006148753",
+ "versionSlug": "cn-v42-18006148753",
+ "tags": [
+ "CN",
+ "CN v42",
+ "Observability"
+ ],
+ "pathSegments": [
+ "Observability",
+ "CN-v42-18006148753"
+ ]
+ },
+ {
+ "slug": "personal-en-v42-18006148753-fullstack-language-core",
+ "title": "fullstack language core",
+ "description": "fullstack language core — Personal (edition EN v42, release EN-v42-18006148753, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v42",
+ "updatedAt": "2025-09-25T11:38:31Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v42-18006148753/fullstack-language-core.pdf",
+ "htmlUrl": "/docs/Personal/EN-v42-18006148753/fullstack-language-core.html",
+ "language": "EN",
+ "variant": "EN-v42-18006148753",
+ "versionSlug": "en-v42-18006148753",
+ "tags": [
+ "EN",
+ "EN v42",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v42-18006148753"
+ ]
+ },
+ {
+ "slug": "personal-en-v42-18006148753-cet-6",
+ "title": "cet 6",
+ "description": "cet 6 — Personal (edition EN v42, release EN-v42-18006148753, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v42",
+ "updatedAt": "2025-09-25T11:38:31Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v42-18006148753/cet-6.pdf",
+ "htmlUrl": "/docs/Personal/EN-v42-18006148753/cet-6.html",
+ "language": "EN",
+ "variant": "EN-v42-18006148753",
+ "versionSlug": "en-v42-18006148753",
+ "tags": [
+ "EN",
+ "EN v42",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v42-18006148753"
+ ]
+ },
+ {
+ "slug": "personal-en-v42-18006148753-resume-zh",
+ "title": "Resume ZH",
+ "description": "Resume ZH — Personal (edition EN v42, release EN-v42-18006148753, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v42",
+ "updatedAt": "2025-09-25T11:38:31Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v42-18006148753/Resume-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v42-18006148753/Resume-ZH.html",
+ "language": "EN",
+ "variant": "EN-v42-18006148753",
+ "versionSlug": "en-v42-18006148753",
+ "tags": [
+ "EN",
+ "EN v42",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v42-18006148753"
+ ]
+ },
+ {
+ "slug": "personal-en-v42-18006148753-resume-en",
+ "title": "Resume EN",
+ "description": "Resume EN — Personal (edition EN v42, release EN-v42-18006148753, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v42",
+ "updatedAt": "2025-09-25T11:38:31Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v42-18006148753/Resume-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v42-18006148753/Resume-EN.html",
+ "language": "EN",
+ "variant": "EN-v42-18006148753",
+ "versionSlug": "en-v42-18006148753",
+ "tags": [
+ "EN",
+ "EN v42",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v42-18006148753"
+ ]
+ },
+ {
+ "slug": "personal-en-v42-18006148753-resume-devops-en",
+ "title": "Resume Dev Ops EN",
+ "description": "Resume Dev Ops EN — Personal (edition EN v42, release EN-v42-18006148753, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v42",
+ "updatedAt": "2025-09-25T11:38:31Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v42-18006148753/Resume-DevOps-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v42-18006148753/Resume-DevOps-EN.html",
+ "language": "EN",
+ "variant": "EN-v42-18006148753",
+ "versionSlug": "en-v42-18006148753",
+ "tags": [
+ "EN",
+ "EN v42",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v42-18006148753"
+ ]
+ },
+ {
+ "slug": "personal-en-v42-18006148753-resume-devops-zh",
+ "title": "Resume Dev OPS ZH",
+ "description": "Resume Dev OPS ZH — Personal (edition EN v42, release EN-v42-18006148753, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v42",
+ "updatedAt": "2025-09-25T11:38:31Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v42-18006148753/Resume-DevOPS-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v42-18006148753/Resume-DevOPS-ZH.html",
+ "language": "EN",
+ "variant": "EN-v42-18006148753",
+ "versionSlug": "en-v42-18006148753",
+ "tags": [
+ "EN",
+ "EN v42",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v42-18006148753"
+ ]
+ },
+ {
+ "slug": "personal-en-v42-18006148753-readme",
+ "title": "README",
+ "description": "README — Personal (edition EN v42, release EN-v42-18006148753, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v42",
+ "updatedAt": "2025-09-25T11:38:31Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v42-18006148753/README.pdf",
+ "htmlUrl": "/docs/Personal/EN-v42-18006148753/README.html",
+ "language": "EN",
+ "variant": "EN-v42-18006148753",
+ "versionSlug": "en-v42-18006148753",
+ "tags": [
+ "EN",
+ "EN v42",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v42-18006148753"
+ ]
+ },
+ {
+ "slug": "personal-en-v42-18006148753-cv-zh",
+ "title": "CV ZH",
+ "description": "CV ZH — Personal (edition EN v42, release EN-v42-18006148753, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v42",
+ "updatedAt": "2025-09-25T11:38:31Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v42-18006148753/CV-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v42-18006148753/CV-ZH.html",
+ "language": "EN",
+ "variant": "EN-v42-18006148753",
+ "versionSlug": "en-v42-18006148753",
+ "tags": [
+ "EN",
+ "EN v42",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v42-18006148753"
+ ]
+ },
+ {
+ "slug": "personal-en-v42-18006148753-cv-en",
+ "title": "CV EN",
+ "description": "CV EN — Personal (edition EN v42, release EN-v42-18006148753, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v42",
+ "updatedAt": "2025-09-25T11:38:31Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v42-18006148753/CV-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v42-18006148753/CV-EN.html",
+ "language": "EN",
+ "variant": "EN-v42-18006148753",
+ "versionSlug": "en-v42-18006148753",
+ "tags": [
+ "EN",
+ "EN v42",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v42-18006148753"
+ ]
+ },
+ {
+ "slug": "personal-en-v42-18006148753-cv-ai-dev-zh",
+ "title": "CV AI Dev ZH",
+ "description": "CV AI Dev ZH — Personal (edition EN v42, release EN-v42-18006148753, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v42",
+ "updatedAt": "2025-09-25T11:38:31Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v42-18006148753/CV-AI-Dev-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v42-18006148753/CV-AI-Dev-ZH.html",
+ "language": "EN",
+ "variant": "EN-v42-18006148753",
+ "versionSlug": "en-v42-18006148753",
+ "tags": [
+ "EN",
+ "EN v42",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v42-18006148753"
+ ]
+ },
+ {
+ "slug": "personal-en-v42-18006148753-cv-ai-dev-en",
+ "title": "CV AI Dev EN",
+ "description": "CV AI Dev EN — Personal (edition EN v42, release EN-v42-18006148753, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v42",
+ "updatedAt": "2025-09-25T11:38:31Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v42-18006148753/CV-AI-Dev-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v42-18006148753/CV-AI-Dev-EN.html",
+ "language": "EN",
+ "variant": "EN-v42-18006148753",
+ "versionSlug": "en-v42-18006148753",
+ "tags": [
+ "EN",
+ "EN v42",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v42-18006148753"
+ ]
+ },
+ {
+ "slug": "personal-en-v42-18006148753-activebalance-plan",
+ "title": "Active Balance Plan",
+ "description": "Active Balance Plan — Personal (edition EN v42, release EN-v42-18006148753, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v42",
+ "updatedAt": "2025-09-25T11:38:30Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v42-18006148753/ActiveBalance-Plan.pdf",
+ "htmlUrl": "/docs/Personal/EN-v42-18006148753/ActiveBalance-Plan.html",
+ "language": "EN",
+ "variant": "EN-v42-18006148753",
+ "versionSlug": "en-v42-18006148753",
+ "tags": [
+ "EN",
+ "EN v42",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v42-18006148753"
+ ]
+ },
+ {
+ "slug": "linux-k8s-ops-cn-v42-18006148753-linux-k8s-ops-guide",
+ "title": "Linux K8 S OPS Guide",
+ "description": "Linux K8 S OPS Guide — Linux K8 S OPS (edition CN v42, release CN-v42-18006148753, available as PDF and HTML).",
+ "category": "Linux K8 S OPS",
+ "version": "CN v42",
+ "updatedAt": "2025-09-25T11:38:09Z",
+ "collection": "Linux-K8S-OPS",
+ "collectionSlug": "linux-k8s-ops",
+ "collectionLabel": "Linux K8 S OPS",
+ "pdfUrl": "/docs/Linux-K8S-OPS/CN-v42-18006148753/Linux-K8S-OPS-Guide.pdf",
+ "htmlUrl": "/docs/Linux-K8S-OPS/CN-v42-18006148753/Linux-K8S-OPS-Guide.html",
+ "language": "CN",
+ "variant": "CN-v42-18006148753",
+ "versionSlug": "cn-v42-18006148753",
+ "tags": [
+ "CN",
+ "CN v42",
+ "Linux K8 S OPS"
+ ],
+ "pathSegments": [
+ "Linux-K8S-OPS",
+ "CN-v42-18006148753"
+ ]
+ },
+ {
+ "slug": "landingzone-en-v42-18006148753-landing-zone-design-and-implementation",
+ "title": "Landing Zone Design and Implementation",
+ "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v42, release EN-v42-18006148753, available as PDF).",
+ "category": "Landing Zone",
+ "version": "EN v42",
+ "updatedAt": "2025-09-25T11:38:01Z",
+ "collection": "LandingZone",
+ "collectionSlug": "landingzone",
+ "collectionLabel": "Landing Zone",
+ "pdfUrl": "/docs/LandingZone/EN-v42-18006148753/Landing-Zone-Design-and-Implementation.pdf",
+ "language": "EN",
+ "variant": "EN-v42-18006148753",
+ "versionSlug": "en-v42-18006148753",
+ "tags": [
+ "EN",
+ "EN v42",
+ "Landing Zone"
+ ],
+ "pathSegments": [
+ "LandingZone",
+ "EN-v42-18006148753"
+ ]
+ },
+ {
+ "slug": "the-indiedeveloper-fullstack-roadmap-en-v42-18006148753-fullstack-roadmap-en",
+ "title": "fullstack roadmap en",
+ "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v42, release EN-v42-18006148753, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "EN v42",
+ "updatedAt": "2025-09-25T11:37:15Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v42-18006148753/fullstack-roadmap-en.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v42-18006148753/fullstack-roadmap-en.html",
+ "language": "EN",
+ "variant": "EN-v42-18006148753",
+ "versionSlug": "en-v42-18006148753",
+ "tags": [
+ "EN",
+ "EN v42",
+ "The Indie Developer Fullstack Roadmap"
+ ],
+ "pathSegments": [
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "EN-v42-18006148753"
+ ]
+ },
+ {
+ "slug": "keycloak-en-v42-18006148753-keycloak-sso-design-and-implementation",
+ "title": "Keycloak SSO Design and Implementation",
+ "description": "Keycloak SSO Design and Implementation — Keycloak (edition EN v42, release EN-v42-18006148753, available as HTML).",
+ "category": "Keycloak",
+ "version": "EN v42",
+ "updatedAt": "2025-09-25T11:36:22Z",
+ "collection": "Keycloak",
+ "collectionSlug": "keycloak",
+ "collectionLabel": "Keycloak",
+ "htmlUrl": "/docs/Keycloak/EN-v42-18006148753/Keycloak-SSO-Design-and-Implementation.html",
+ "language": "EN",
+ "variant": "EN-v42-18006148753",
+ "versionSlug": "en-v42-18006148753",
+ "tags": [
+ "EN",
+ "EN v42",
+ "Keycloak"
+ ],
+ "pathSegments": [
+ "Keycloak",
+ "EN-v42-18006148753"
+ ]
+ },
+ {
+ "slug": "techexploration-en-v42-18006148753-tech-exploration",
+ "title": "Tech Exploration",
+ "description": "Tech Exploration — Tech Exploration (edition EN v42, release EN-v42-18006148753, available as PDF and HTML).",
+ "category": "Tech Exploration",
+ "version": "EN v42",
+ "updatedAt": "2025-09-25T11:36:08Z",
+ "collection": "TechExploration",
+ "collectionSlug": "techexploration",
+ "collectionLabel": "Tech Exploration",
+ "pdfUrl": "/docs/TechExploration/EN-v42-18006148753/Tech-Exploration.pdf",
+ "htmlUrl": "/docs/TechExploration/EN-v42-18006148753/Tech-Exploration.html",
+ "language": "EN",
+ "variant": "EN-v42-18006148753",
+ "versionSlug": "en-v42-18006148753",
+ "tags": [
+ "EN",
+ "EN v42",
+ "Tech Exploration"
+ ],
+ "pathSegments": [
+ "TechExploration",
+ "EN-v42-18006148753"
+ ]
+ },
+ {
+ "slug": "interview-qa-en-v42-18006148753-interview-qa-guide",
+ "title": "Interview QA Guide",
+ "description": "Interview QA Guide — interview qa (edition EN v42, release EN-v42-18006148753, available as PDF and HTML).",
+ "category": "interview qa",
+ "version": "EN v42",
+ "updatedAt": "2025-09-25T11:36:00Z",
+ "collection": "interview-qa",
+ "collectionSlug": "interview-qa",
+ "collectionLabel": "interview qa",
+ "pdfUrl": "/docs/interview-qa/EN-v42-18006148753/Interview-QA-Guide.pdf",
+ "htmlUrl": "/docs/interview-qa/EN-v42-18006148753/Interview-QA-Guide.html",
+ "language": "EN",
+ "variant": "EN-v42-18006148753",
+ "versionSlug": "en-v42-18006148753",
+ "tags": [
+ "EN",
+ "EN v42",
+ "interview qa"
+ ],
+ "pathSegments": [
+ "interview-qa",
+ "EN-v42-18006148753"
+ ]
+ },
+ {
+ "slug": "observability-cn-v41-18005142964-observability-design-and-implementation",
+ "title": "Observability Design and Implementation",
+ "description": "Observability Design and Implementation — Observability (edition CN v41, release CN-v41-18005142964, available as PDF and HTML).",
+ "category": "Observability",
+ "version": "CN v41",
+ "updatedAt": "2025-09-25T10:55:37Z",
+ "collection": "Observability",
+ "collectionSlug": "observability",
+ "collectionLabel": "Observability",
+ "pdfUrl": "/docs/Observability/CN-v41-18005142964/Observability-Design-and-Implementation.pdf",
+ "htmlUrl": "/docs/Observability/CN-v41-18005142964/Observability-Design-and-Implementation.html",
+ "language": "CN",
+ "variant": "CN-v41-18005142964",
+ "versionSlug": "cn-v41-18005142964",
+ "tags": [
+ "CN",
+ "CN v41",
+ "Observability"
+ ],
+ "pathSegments": [
+ "Observability",
+ "CN-v41-18005142964"
+ ]
+ },
{
"slug": "linux-k8s-ops-cn-v41-18005142964-linux-k8s-ops-guide",
"title": "Linux K8 S OPS Guide",
"description": "Linux K8 S OPS Guide — Linux K8 S OPS (edition CN v41, release CN-v41-18005142964, available as PDF and HTML).",
"category": "Linux K8 S OPS",
"version": "CN v41",
- "updatedAt": "2025-09-25T12:35:19Z",
+ "updatedAt": "2025-09-25T10:55:25Z",
"collection": "Linux-K8S-OPS",
"collectionSlug": "linux-k8s-ops",
"collectionLabel": "Linux K8 S OPS",
@@ -25,77 +7318,353 @@
]
},
{
- "slug": "linux-k8s-ops-cn-v39-18004672680-linux-k8s-ops-guide",
- "title": "Linux K8 S OPS Guide",
- "description": "Linux K8 S OPS Guide — Linux K8 S OPS (edition CN v39, release CN-v39-18004672680, available as PDF and HTML).",
- "category": "Linux K8 S OPS",
- "version": "CN v39",
- "updatedAt": "2025-09-25T12:34:03Z",
- "collection": "Linux-K8S-OPS",
- "collectionSlug": "linux-k8s-ops",
- "collectionLabel": "Linux K8 S OPS",
- "pdfUrl": "/docs/Linux-K8S-OPS/CN-v39-18004672680/Linux-K8S-OPS-Guide.pdf",
- "htmlUrl": "/docs/Linux-K8S-OPS/CN-v39-18004672680/Linux-K8S-OPS-Guide.html",
- "language": "CN",
- "variant": "CN-v39-18004672680",
- "versionSlug": "cn-v39-18004672680",
- "tags": [
- "CN",
- "CN v39",
- "Linux K8 S OPS"
- ],
- "pathSegments": [
- "Linux-K8S-OPS",
- "CN-v39-18004672680"
- ]
- },
- {
- "slug": "linux-k8s-ops-cn-v40-18004678416-linux-k8s-ops-guide",
- "title": "Linux K8 S OPS Guide",
- "description": "Linux K8 S OPS Guide — Linux K8 S OPS (edition CN v40, release CN-v40-18004678416, available as PDF and HTML).",
- "category": "Linux K8 S OPS",
- "version": "CN v40",
- "updatedAt": "2025-09-25T12:34:03Z",
- "collection": "Linux-K8S-OPS",
- "collectionSlug": "linux-k8s-ops",
- "collectionLabel": "Linux K8 S OPS",
- "pdfUrl": "/docs/Linux-K8S-OPS/CN-v40-18004678416/Linux-K8S-OPS-Guide.pdf",
- "htmlUrl": "/docs/Linux-K8S-OPS/CN-v40-18004678416/Linux-K8S-OPS-Guide.html",
- "language": "CN",
- "variant": "CN-v40-18004678416",
- "versionSlug": "cn-v40-18004678416",
- "tags": [
- "CN",
- "CN v40",
- "Linux K8 S OPS"
- ],
- "pathSegments": [
- "Linux-K8S-OPS",
- "CN-v40-18004678416"
- ]
- },
- {
- "slug": "keycloak-en-v40-18004678416-keycloak-sso-design-and-implementation",
- "title": "Keycloak SSO Design and Implementation",
- "description": "Keycloak SSO Design and Implementation — Keycloak (edition EN v40, release EN-v40-18004678416, available as HTML).",
- "category": "Keycloak",
- "version": "EN v40",
- "updatedAt": "2025-09-25T12:34:02Z",
- "collection": "Keycloak",
- "collectionSlug": "keycloak",
- "collectionLabel": "Keycloak",
- "htmlUrl": "/docs/Keycloak/EN-v40-18004678416/Keycloak-SSO-Design-and-Implementation.html",
+ "slug": "the-indiedeveloper-fullstack-roadmap-en-v41-18005142964-fullstack-roadmap-en",
+ "title": "fullstack roadmap en",
+ "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v41, release EN-v41-18005142964, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "EN v41",
+ "updatedAt": "2025-09-25T10:54:56Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v41-18005142964/fullstack-roadmap-en.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v41-18005142964/fullstack-roadmap-en.html",
"language": "EN",
- "variant": "EN-v40-18004678416",
- "versionSlug": "en-v40-18004678416",
+ "variant": "EN-v41-18005142964",
+ "versionSlug": "en-v41-18005142964",
"tags": [
"EN",
- "EN v40",
- "Keycloak"
+ "EN v41",
+ "The Indie Developer Fullstack Roadmap"
],
"pathSegments": [
- "Keycloak",
- "EN-v40-18004678416"
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "EN-v41-18005142964"
+ ]
+ },
+ {
+ "slug": "personal-en-v41-18005142964-fullstack-language-core",
+ "title": "fullstack language core",
+ "description": "fullstack language core — Personal (edition EN v41, release EN-v41-18005142964, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v41",
+ "updatedAt": "2025-09-25T10:54:38Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v41-18005142964/fullstack-language-core.pdf",
+ "htmlUrl": "/docs/Personal/EN-v41-18005142964/fullstack-language-core.html",
+ "language": "EN",
+ "variant": "EN-v41-18005142964",
+ "versionSlug": "en-v41-18005142964",
+ "tags": [
+ "EN",
+ "EN v41",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v41-18005142964"
+ ]
+ },
+ {
+ "slug": "personal-en-v41-18005142964-cet-6",
+ "title": "cet 6",
+ "description": "cet 6 — Personal (edition EN v41, release EN-v41-18005142964, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v41",
+ "updatedAt": "2025-09-25T10:54:38Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v41-18005142964/cet-6.pdf",
+ "htmlUrl": "/docs/Personal/EN-v41-18005142964/cet-6.html",
+ "language": "EN",
+ "variant": "EN-v41-18005142964",
+ "versionSlug": "en-v41-18005142964",
+ "tags": [
+ "EN",
+ "EN v41",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v41-18005142964"
+ ]
+ },
+ {
+ "slug": "personal-en-v41-18005142964-resume-zh",
+ "title": "Resume ZH",
+ "description": "Resume ZH — Personal (edition EN v41, release EN-v41-18005142964, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v41",
+ "updatedAt": "2025-09-25T10:54:38Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v41-18005142964/Resume-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v41-18005142964/Resume-ZH.html",
+ "language": "EN",
+ "variant": "EN-v41-18005142964",
+ "versionSlug": "en-v41-18005142964",
+ "tags": [
+ "EN",
+ "EN v41",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v41-18005142964"
+ ]
+ },
+ {
+ "slug": "personal-en-v41-18005142964-resume-en",
+ "title": "Resume EN",
+ "description": "Resume EN — Personal (edition EN v41, release EN-v41-18005142964, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v41",
+ "updatedAt": "2025-09-25T10:54:37Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v41-18005142964/Resume-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v41-18005142964/Resume-EN.html",
+ "language": "EN",
+ "variant": "EN-v41-18005142964",
+ "versionSlug": "en-v41-18005142964",
+ "tags": [
+ "EN",
+ "EN v41",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v41-18005142964"
+ ]
+ },
+ {
+ "slug": "personal-en-v41-18005142964-resume-devops-en",
+ "title": "Resume Dev Ops EN",
+ "description": "Resume Dev Ops EN — Personal (edition EN v41, release EN-v41-18005142964, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v41",
+ "updatedAt": "2025-09-25T10:54:37Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v41-18005142964/Resume-DevOps-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v41-18005142964/Resume-DevOps-EN.html",
+ "language": "EN",
+ "variant": "EN-v41-18005142964",
+ "versionSlug": "en-v41-18005142964",
+ "tags": [
+ "EN",
+ "EN v41",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v41-18005142964"
+ ]
+ },
+ {
+ "slug": "personal-en-v41-18005142964-resume-devops-zh",
+ "title": "Resume Dev OPS ZH",
+ "description": "Resume Dev OPS ZH — Personal (edition EN v41, release EN-v41-18005142964, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v41",
+ "updatedAt": "2025-09-25T10:54:37Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v41-18005142964/Resume-DevOPS-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v41-18005142964/Resume-DevOPS-ZH.html",
+ "language": "EN",
+ "variant": "EN-v41-18005142964",
+ "versionSlug": "en-v41-18005142964",
+ "tags": [
+ "EN",
+ "EN v41",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v41-18005142964"
+ ]
+ },
+ {
+ "slug": "personal-en-v41-18005142964-readme",
+ "title": "README",
+ "description": "README — Personal (edition EN v41, release EN-v41-18005142964, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v41",
+ "updatedAt": "2025-09-25T10:54:37Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v41-18005142964/README.pdf",
+ "htmlUrl": "/docs/Personal/EN-v41-18005142964/README.html",
+ "language": "EN",
+ "variant": "EN-v41-18005142964",
+ "versionSlug": "en-v41-18005142964",
+ "tags": [
+ "EN",
+ "EN v41",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v41-18005142964"
+ ]
+ },
+ {
+ "slug": "personal-en-v41-18005142964-cv-zh",
+ "title": "CV ZH",
+ "description": "CV ZH — Personal (edition EN v41, release EN-v41-18005142964, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v41",
+ "updatedAt": "2025-09-25T10:54:37Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v41-18005142964/CV-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v41-18005142964/CV-ZH.html",
+ "language": "EN",
+ "variant": "EN-v41-18005142964",
+ "versionSlug": "en-v41-18005142964",
+ "tags": [
+ "EN",
+ "EN v41",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v41-18005142964"
+ ]
+ },
+ {
+ "slug": "personal-en-v41-18005142964-cv-en",
+ "title": "CV EN",
+ "description": "CV EN — Personal (edition EN v41, release EN-v41-18005142964, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v41",
+ "updatedAt": "2025-09-25T10:54:37Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v41-18005142964/CV-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v41-18005142964/CV-EN.html",
+ "language": "EN",
+ "variant": "EN-v41-18005142964",
+ "versionSlug": "en-v41-18005142964",
+ "tags": [
+ "EN",
+ "EN v41",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v41-18005142964"
+ ]
+ },
+ {
+ "slug": "personal-en-v41-18005142964-cv-ai-dev-zh",
+ "title": "CV AI Dev ZH",
+ "description": "CV AI Dev ZH — Personal (edition EN v41, release EN-v41-18005142964, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v41",
+ "updatedAt": "2025-09-25T10:54:37Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v41-18005142964/CV-AI-Dev-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v41-18005142964/CV-AI-Dev-ZH.html",
+ "language": "EN",
+ "variant": "EN-v41-18005142964",
+ "versionSlug": "en-v41-18005142964",
+ "tags": [
+ "EN",
+ "EN v41",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v41-18005142964"
+ ]
+ },
+ {
+ "slug": "personal-en-v41-18005142964-cv-ai-dev-en",
+ "title": "CV AI Dev EN",
+ "description": "CV AI Dev EN — Personal (edition EN v41, release EN-v41-18005142964, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v41",
+ "updatedAt": "2025-09-25T10:54:37Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v41-18005142964/CV-AI-Dev-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v41-18005142964/CV-AI-Dev-EN.html",
+ "language": "EN",
+ "variant": "EN-v41-18005142964",
+ "versionSlug": "en-v41-18005142964",
+ "tags": [
+ "EN",
+ "EN v41",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v41-18005142964"
+ ]
+ },
+ {
+ "slug": "personal-en-v41-18005142964-activebalance-plan",
+ "title": "Active Balance Plan",
+ "description": "Active Balance Plan — Personal (edition EN v41, release EN-v41-18005142964, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v41",
+ "updatedAt": "2025-09-25T10:54:37Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v41-18005142964/ActiveBalance-Plan.pdf",
+ "htmlUrl": "/docs/Personal/EN-v41-18005142964/ActiveBalance-Plan.html",
+ "language": "EN",
+ "variant": "EN-v41-18005142964",
+ "versionSlug": "en-v41-18005142964",
+ "tags": [
+ "EN",
+ "EN v41",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v41-18005142964"
+ ]
+ },
+ {
+ "slug": "techexploration-en-v41-18005142964-tech-exploration",
+ "title": "Tech Exploration",
+ "description": "Tech Exploration — Tech Exploration (edition EN v41, release EN-v41-18005142964, available as PDF and HTML).",
+ "category": "Tech Exploration",
+ "version": "EN v41",
+ "updatedAt": "2025-09-25T10:54:16Z",
+ "collection": "TechExploration",
+ "collectionSlug": "techexploration",
+ "collectionLabel": "Tech Exploration",
+ "pdfUrl": "/docs/TechExploration/EN-v41-18005142964/Tech-Exploration.pdf",
+ "htmlUrl": "/docs/TechExploration/EN-v41-18005142964/Tech-Exploration.html",
+ "language": "EN",
+ "variant": "EN-v41-18005142964",
+ "versionSlug": "en-v41-18005142964",
+ "tags": [
+ "EN",
+ "EN v41",
+ "Tech Exploration"
+ ],
+ "pathSegments": [
+ "TechExploration",
+ "EN-v41-18005142964"
]
},
{
@@ -104,7 +7673,7 @@
"description": "Keycloak SSO Design and Implementation — Keycloak (edition EN v41, release EN-v41-18005142964, available as HTML).",
"category": "Keycloak",
"version": "EN v41",
- "updatedAt": "2025-09-25T12:34:02Z",
+ "updatedAt": "2025-09-25T10:54:14Z",
"collection": "Keycloak",
"collectionSlug": "keycloak",
"collectionLabel": "Keycloak",
@@ -122,229 +7691,13 @@
"EN-v41-18005142964"
]
},
- {
- "slug": "keycloak-en-v42-18006148753-keycloak-sso-design-and-implementation",
- "title": "Keycloak SSO Design and Implementation",
- "description": "Keycloak SSO Design and Implementation — Keycloak (edition EN v42, release EN-v42-18006148753, available as HTML).",
- "category": "Keycloak",
- "version": "EN v42",
- "updatedAt": "2025-09-25T12:34:02Z",
- "collection": "Keycloak",
- "collectionSlug": "keycloak",
- "collectionLabel": "Keycloak",
- "htmlUrl": "/docs/Keycloak/EN-v42-18006148753/Keycloak-SSO-Design-and-Implementation.html",
- "language": "EN",
- "variant": "EN-v42-18006148753",
- "versionSlug": "en-v42-18006148753",
- "tags": [
- "EN",
- "EN v42",
- "Keycloak"
- ],
- "pathSegments": [
- "Keycloak",
- "EN-v42-18006148753"
- ]
- },
- {
- "slug": "landingzone-en-v33-17996525102-landing-zone-design-and-implementation",
- "title": "Landing Zone Design and Implementation",
- "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v33, release EN-v33-17996525102, available as PDF).",
- "category": "Landing Zone",
- "version": "EN v33",
- "updatedAt": "2025-09-25T12:34:02Z",
- "collection": "LandingZone",
- "collectionSlug": "landingzone",
- "collectionLabel": "Landing Zone",
- "pdfUrl": "/docs/LandingZone/EN-v33-17996525102/Landing-Zone-Design-and-Implementation.pdf",
- "language": "EN",
- "variant": "EN-v33-17996525102",
- "versionSlug": "en-v33-17996525102",
- "tags": [
- "EN",
- "EN v33",
- "Landing Zone"
- ],
- "pathSegments": [
- "LandingZone",
- "EN-v33-17996525102"
- ]
- },
- {
- "slug": "landingzone-en-v34-18001960544-landing-zone-design-and-implementation",
- "title": "Landing Zone Design and Implementation",
- "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v34, release EN-v34-18001960544, available as PDF).",
- "category": "Landing Zone",
- "version": "EN v34",
- "updatedAt": "2025-09-25T12:34:02Z",
- "collection": "LandingZone",
- "collectionSlug": "landingzone",
- "collectionLabel": "Landing Zone",
- "pdfUrl": "/docs/LandingZone/EN-v34-18001960544/Landing-Zone-Design-and-Implementation.pdf",
- "language": "EN",
- "variant": "EN-v34-18001960544",
- "versionSlug": "en-v34-18001960544",
- "tags": [
- "EN",
- "EN v34",
- "Landing Zone"
- ],
- "pathSegments": [
- "LandingZone",
- "EN-v34-18001960544"
- ]
- },
- {
- "slug": "landingzone-en-v35-18002040798-landing-zone-design-and-implementation",
- "title": "Landing Zone Design and Implementation",
- "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v35, release EN-v35-18002040798, available as PDF).",
- "category": "Landing Zone",
- "version": "EN v35",
- "updatedAt": "2025-09-25T12:34:02Z",
- "collection": "LandingZone",
- "collectionSlug": "landingzone",
- "collectionLabel": "Landing Zone",
- "pdfUrl": "/docs/LandingZone/EN-v35-18002040798/Landing-Zone-Design-and-Implementation.pdf",
- "language": "EN",
- "variant": "EN-v35-18002040798",
- "versionSlug": "en-v35-18002040798",
- "tags": [
- "EN",
- "EN v35",
- "Landing Zone"
- ],
- "pathSegments": [
- "LandingZone",
- "EN-v35-18002040798"
- ]
- },
- {
- "slug": "landingzone-en-v36-18002294267-landing-zone-design-and-implementation",
- "title": "Landing Zone Design and Implementation",
- "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v36, release EN-v36-18002294267, available as PDF).",
- "category": "Landing Zone",
- "version": "EN v36",
- "updatedAt": "2025-09-25T12:34:02Z",
- "collection": "LandingZone",
- "collectionSlug": "landingzone",
- "collectionLabel": "Landing Zone",
- "pdfUrl": "/docs/LandingZone/EN-v36-18002294267/Landing-Zone-Design-and-Implementation.pdf",
- "language": "EN",
- "variant": "EN-v36-18002294267",
- "versionSlug": "en-v36-18002294267",
- "tags": [
- "EN",
- "EN v36",
- "Landing Zone"
- ],
- "pathSegments": [
- "LandingZone",
- "EN-v36-18002294267"
- ]
- },
- {
- "slug": "landingzone-en-v37-18002553627-landing-zone-design-and-implementation",
- "title": "Landing Zone Design and Implementation",
- "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v37, release EN-v37-18002553627, available as PDF).",
- "category": "Landing Zone",
- "version": "EN v37",
- "updatedAt": "2025-09-25T12:34:02Z",
- "collection": "LandingZone",
- "collectionSlug": "landingzone",
- "collectionLabel": "Landing Zone",
- "pdfUrl": "/docs/LandingZone/EN-v37-18002553627/Landing-Zone-Design-and-Implementation.pdf",
- "language": "EN",
- "variant": "EN-v37-18002553627",
- "versionSlug": "en-v37-18002553627",
- "tags": [
- "EN",
- "EN v37",
- "Landing Zone"
- ],
- "pathSegments": [
- "LandingZone",
- "EN-v37-18002553627"
- ]
- },
- {
- "slug": "landingzone-en-v38-18003957466-landing-zone-design-and-implementation",
- "title": "Landing Zone Design and Implementation",
- "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v38, release EN-v38-18003957466, available as PDF).",
- "category": "Landing Zone",
- "version": "EN v38",
- "updatedAt": "2025-09-25T12:34:02Z",
- "collection": "LandingZone",
- "collectionSlug": "landingzone",
- "collectionLabel": "Landing Zone",
- "pdfUrl": "/docs/LandingZone/EN-v38-18003957466/Landing-Zone-Design-and-Implementation.pdf",
- "language": "EN",
- "variant": "EN-v38-18003957466",
- "versionSlug": "en-v38-18003957466",
- "tags": [
- "EN",
- "EN v38",
- "Landing Zone"
- ],
- "pathSegments": [
- "LandingZone",
- "EN-v38-18003957466"
- ]
- },
- {
- "slug": "landingzone-en-v39-18004672680-landing-zone-design-and-implementation",
- "title": "Landing Zone Design and Implementation",
- "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v39, release EN-v39-18004672680, available as PDF).",
- "category": "Landing Zone",
- "version": "EN v39",
- "updatedAt": "2025-09-25T12:34:02Z",
- "collection": "LandingZone",
- "collectionSlug": "landingzone",
- "collectionLabel": "Landing Zone",
- "pdfUrl": "/docs/LandingZone/EN-v39-18004672680/Landing-Zone-Design-and-Implementation.pdf",
- "language": "EN",
- "variant": "EN-v39-18004672680",
- "versionSlug": "en-v39-18004672680",
- "tags": [
- "EN",
- "EN v39",
- "Landing Zone"
- ],
- "pathSegments": [
- "LandingZone",
- "EN-v39-18004672680"
- ]
- },
- {
- "slug": "landingzone-en-v40-18004678416-landing-zone-design-and-implementation",
- "title": "Landing Zone Design and Implementation",
- "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v40, release EN-v40-18004678416, available as PDF).",
- "category": "Landing Zone",
- "version": "EN v40",
- "updatedAt": "2025-09-25T12:34:02Z",
- "collection": "LandingZone",
- "collectionSlug": "landingzone",
- "collectionLabel": "Landing Zone",
- "pdfUrl": "/docs/LandingZone/EN-v40-18004678416/Landing-Zone-Design-and-Implementation.pdf",
- "language": "EN",
- "variant": "EN-v40-18004678416",
- "versionSlug": "en-v40-18004678416",
- "tags": [
- "EN",
- "EN v40",
- "Landing Zone"
- ],
- "pathSegments": [
- "LandingZone",
- "EN-v40-18004678416"
- ]
- },
{
"slug": "landingzone-en-v41-18005142964-landing-zone-design-and-implementation",
"title": "Landing Zone Design and Implementation",
"description": "Landing Zone Design and Implementation — Landing Zone (edition EN v41, release EN-v41-18005142964, available as PDF).",
"category": "Landing Zone",
"version": "EN v41",
- "updatedAt": "2025-09-25T12:34:02Z",
+ "updatedAt": "2025-09-25T10:54:00Z",
"collection": "LandingZone",
"collectionSlug": "landingzone",
"collectionLabel": "Landing Zone",
@@ -363,946 +7716,51 @@
]
},
{
- "slug": "landingzone-en-v42-18006148753-landing-zone-design-and-implementation",
- "title": "Landing Zone Design and Implementation",
- "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v42, release EN-v42-18006148753, available as PDF).",
- "category": "Landing Zone",
- "version": "EN v42",
- "updatedAt": "2025-09-25T12:34:02Z",
- "collection": "LandingZone",
- "collectionSlug": "landingzone",
- "collectionLabel": "Landing Zone",
- "pdfUrl": "/docs/LandingZone/EN-v42-18006148753/Landing-Zone-Design-and-Implementation.pdf",
- "language": "EN",
- "variant": "EN-v42-18006148753",
- "versionSlug": "en-v42-18006148753",
- "tags": [
- "EN",
- "EN v42",
- "Landing Zone"
- ],
- "pathSegments": [
- "LandingZone",
- "EN-v42-18006148753"
- ]
- },
- {
- "slug": "linux-k8s-ops-cn-v33-17996525102-linux-k8s-ops-guide",
- "title": "Linux K8 S OPS Guide",
- "description": "Linux K8 S OPS Guide — Linux K8 S OPS (edition CN v33, release CN-v33-17996525102, available as PDF and HTML).",
- "category": "Linux K8 S OPS",
- "version": "CN v33",
- "updatedAt": "2025-09-25T12:34:02Z",
- "collection": "Linux-K8S-OPS",
- "collectionSlug": "linux-k8s-ops",
- "collectionLabel": "Linux K8 S OPS",
- "pdfUrl": "/docs/Linux-K8S-OPS/CN-v33-17996525102/Linux-K8S-OPS-Guide.pdf",
- "htmlUrl": "/docs/Linux-K8S-OPS/CN-v33-17996525102/Linux-K8S-OPS-Guide.html",
+ "slug": "the-indiedeveloper-fullstack-roadmap-cn-v41-18005142964-fullstack-roadmap-cn",
+ "title": "fullstack roadmap cn",
+ "description": "fullstack roadmap cn — The Indie Developer Fullstack Roadmap (edition CN v41, release CN-v41-18005142964, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "CN v41",
+ "updatedAt": "2025-09-25T10:53:58Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v41-18005142964/fullstack-roadmap-cn.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v41-18005142964/fullstack-roadmap-cn.html",
"language": "CN",
- "variant": "CN-v33-17996525102",
- "versionSlug": "cn-v33-17996525102",
+ "variant": "CN-v41-18005142964",
+ "versionSlug": "cn-v41-18005142964",
"tags": [
"CN",
- "CN v33",
- "Linux K8 S OPS"
+ "CN v41",
+ "The Indie Developer Fullstack Roadmap"
],
"pathSegments": [
- "Linux-K8S-OPS",
- "CN-v33-17996525102"
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "CN-v41-18005142964"
]
},
{
- "slug": "keycloak-en-v33-17996525102-keycloak-sso-design-and-implementation",
+ "slug": "keycloak-en-v40-18004678416-keycloak-sso-design-and-implementation",
"title": "Keycloak SSO Design and Implementation",
- "description": "Keycloak SSO Design and Implementation — Keycloak (edition EN v33, release EN-v33-17996525102, available as HTML).",
+ "description": "Keycloak SSO Design and Implementation — Keycloak (edition EN v40, release EN-v40-18004678416, available as HTML).",
"category": "Keycloak",
- "version": "EN v33",
- "updatedAt": "2025-09-25T12:34:01Z",
+ "version": "EN v40",
+ "updatedAt": "2025-09-25T10:36:57Z",
"collection": "Keycloak",
"collectionSlug": "keycloak",
"collectionLabel": "Keycloak",
- "htmlUrl": "/docs/Keycloak/EN-v33-17996525102/Keycloak-SSO-Design-and-Implementation.html",
+ "htmlUrl": "/docs/Keycloak/EN-v40-18004678416/Keycloak-SSO-Design-and-Implementation.html",
"language": "EN",
- "variant": "EN-v33-17996525102",
- "versionSlug": "en-v33-17996525102",
+ "variant": "EN-v40-18004678416",
+ "versionSlug": "en-v40-18004678416",
"tags": [
"EN",
- "EN v33",
+ "EN v40",
"Keycloak"
],
"pathSegments": [
"Keycloak",
- "EN-v33-17996525102"
- ]
- },
- {
- "slug": "keycloak-en-v34-18001960544-keycloak-sso-design-and-implementation",
- "title": "Keycloak SSO Design and Implementation",
- "description": "Keycloak SSO Design and Implementation — Keycloak (edition EN v34, release EN-v34-18001960544, available as HTML).",
- "category": "Keycloak",
- "version": "EN v34",
- "updatedAt": "2025-09-25T12:34:01Z",
- "collection": "Keycloak",
- "collectionSlug": "keycloak",
- "collectionLabel": "Keycloak",
- "htmlUrl": "/docs/Keycloak/EN-v34-18001960544/Keycloak-SSO-Design-and-Implementation.html",
- "language": "EN",
- "variant": "EN-v34-18001960544",
- "versionSlug": "en-v34-18001960544",
- "tags": [
- "EN",
- "EN v34",
- "Keycloak"
- ],
- "pathSegments": [
- "Keycloak",
- "EN-v34-18001960544"
- ]
- },
- {
- "slug": "keycloak-en-v35-18002040798-keycloak-sso-design-and-implementation",
- "title": "Keycloak SSO Design and Implementation",
- "description": "Keycloak SSO Design and Implementation — Keycloak (edition EN v35, release EN-v35-18002040798, available as HTML).",
- "category": "Keycloak",
- "version": "EN v35",
- "updatedAt": "2025-09-25T12:34:01Z",
- "collection": "Keycloak",
- "collectionSlug": "keycloak",
- "collectionLabel": "Keycloak",
- "htmlUrl": "/docs/Keycloak/EN-v35-18002040798/Keycloak-SSO-Design-and-Implementation.html",
- "language": "EN",
- "variant": "EN-v35-18002040798",
- "versionSlug": "en-v35-18002040798",
- "tags": [
- "EN",
- "EN v35",
- "Keycloak"
- ],
- "pathSegments": [
- "Keycloak",
- "EN-v35-18002040798"
- ]
- },
- {
- "slug": "keycloak-en-v36-18002294267-keycloak-sso-design-and-implementation",
- "title": "Keycloak SSO Design and Implementation",
- "description": "Keycloak SSO Design and Implementation — Keycloak (edition EN v36, release EN-v36-18002294267, available as HTML).",
- "category": "Keycloak",
- "version": "EN v36",
- "updatedAt": "2025-09-25T12:34:01Z",
- "collection": "Keycloak",
- "collectionSlug": "keycloak",
- "collectionLabel": "Keycloak",
- "htmlUrl": "/docs/Keycloak/EN-v36-18002294267/Keycloak-SSO-Design-and-Implementation.html",
- "language": "EN",
- "variant": "EN-v36-18002294267",
- "versionSlug": "en-v36-18002294267",
- "tags": [
- "EN",
- "EN v36",
- "Keycloak"
- ],
- "pathSegments": [
- "Keycloak",
- "EN-v36-18002294267"
- ]
- },
- {
- "slug": "keycloak-en-v39-18004672680-keycloak-sso-design-and-implementation",
- "title": "Keycloak SSO Design and Implementation",
- "description": "Keycloak SSO Design and Implementation — Keycloak (edition EN v39, release EN-v39-18004672680, available as HTML).",
- "category": "Keycloak",
- "version": "EN v39",
- "updatedAt": "2025-09-25T12:34:01Z",
- "collection": "Keycloak",
- "collectionSlug": "keycloak",
- "collectionLabel": "Keycloak",
- "htmlUrl": "/docs/Keycloak/EN-v39-18004672680/Keycloak-SSO-Design-and-Implementation.html",
- "language": "EN",
- "variant": "EN-v39-18004672680",
- "versionSlug": "en-v39-18004672680",
- "tags": [
- "EN",
- "EN v39",
- "Keycloak"
- ],
- "pathSegments": [
- "Keycloak",
- "EN-v39-18004672680"
- ]
- },
- {
- "slug": "the-indiedeveloper-fullstack-roadmap-en-v40-18004678416-fullstack-roadmap-en",
- "title": "fullstack roadmap en",
- "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v40, release EN-v40-18004678416, available as PDF and HTML).",
- "category": "The Indie Developer Fullstack Roadmap",
- "version": "EN v40",
- "updatedAt": "2025-09-25T12:29:13Z",
- "collection": "The-IndieDeveloper-Fullstack-Roadmap",
- "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
- "collectionLabel": "The Indie Developer Fullstack Roadmap",
- "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v40-18004678416/fullstack-roadmap-en.pdf",
- "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v40-18004678416/fullstack-roadmap-en.html",
- "language": "EN",
- "variant": "EN-v40-18004678416",
- "versionSlug": "en-v40-18004678416",
- "tags": [
- "EN",
- "EN v40",
- "The Indie Developer Fullstack Roadmap"
- ],
- "pathSegments": [
- "The-IndieDeveloper-Fullstack-Roadmap",
- "EN-v40-18004678416"
- ]
- },
- {
- "slug": "the-indiedeveloper-fullstack-roadmap-en-v39-18004672680-fullstack-roadmap-en",
- "title": "fullstack roadmap en",
- "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v39, release EN-v39-18004672680, available as PDF and HTML).",
- "category": "The Indie Developer Fullstack Roadmap",
- "version": "EN v39",
- "updatedAt": "2025-09-25T12:29:09Z",
- "collection": "The-IndieDeveloper-Fullstack-Roadmap",
- "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
- "collectionLabel": "The Indie Developer Fullstack Roadmap",
- "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v39-18004672680/fullstack-roadmap-en.pdf",
- "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v39-18004672680/fullstack-roadmap-en.html",
- "language": "EN",
- "variant": "EN-v39-18004672680",
- "versionSlug": "en-v39-18004672680",
- "tags": [
- "EN",
- "EN v39",
- "The Indie Developer Fullstack Roadmap"
- ],
- "pathSegments": [
- "The-IndieDeveloper-Fullstack-Roadmap",
- "EN-v39-18004672680"
- ]
- },
- {
- "slug": "the-indiedeveloper-fullstack-roadmap-en-v38-18003957466-fullstack-roadmap-en",
- "title": "fullstack roadmap en",
- "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v38, release EN-v38-18003957466, available as PDF and HTML).",
- "category": "The Indie Developer Fullstack Roadmap",
- "version": "EN v38",
- "updatedAt": "2025-09-25T12:29:06Z",
- "collection": "The-IndieDeveloper-Fullstack-Roadmap",
- "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
- "collectionLabel": "The Indie Developer Fullstack Roadmap",
- "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v38-18003957466/fullstack-roadmap-en.pdf",
- "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v38-18003957466/fullstack-roadmap-en.html",
- "language": "EN",
- "variant": "EN-v38-18003957466",
- "versionSlug": "en-v38-18003957466",
- "tags": [
- "EN",
- "EN v38",
- "The Indie Developer Fullstack Roadmap"
- ],
- "pathSegments": [
- "The-IndieDeveloper-Fullstack-Roadmap",
- "EN-v38-18003957466"
- ]
- },
- {
- "slug": "the-indiedeveloper-fullstack-roadmap-en-v37-18002553627-fullstack-roadmap-en",
- "title": "fullstack roadmap en",
- "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v37, release EN-v37-18002553627, available as PDF and HTML).",
- "category": "The Indie Developer Fullstack Roadmap",
- "version": "EN v37",
- "updatedAt": "2025-09-25T12:29:03Z",
- "collection": "The-IndieDeveloper-Fullstack-Roadmap",
- "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
- "collectionLabel": "The Indie Developer Fullstack Roadmap",
- "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v37-18002553627/fullstack-roadmap-en.pdf",
- "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v37-18002553627/fullstack-roadmap-en.html",
- "language": "EN",
- "variant": "EN-v37-18002553627",
- "versionSlug": "en-v37-18002553627",
- "tags": [
- "EN",
- "EN v37",
- "The Indie Developer Fullstack Roadmap"
- ],
- "pathSegments": [
- "The-IndieDeveloper-Fullstack-Roadmap",
- "EN-v37-18002553627"
- ]
- },
- {
- "slug": "the-indiedeveloper-fullstack-roadmap-en-v36-18002294267-fullstack-roadmap-en",
- "title": "fullstack roadmap en",
- "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v36, release EN-v36-18002294267, available as PDF and HTML).",
- "category": "The Indie Developer Fullstack Roadmap",
- "version": "EN v36",
- "updatedAt": "2025-09-25T12:29:01Z",
- "collection": "The-IndieDeveloper-Fullstack-Roadmap",
- "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
- "collectionLabel": "The Indie Developer Fullstack Roadmap",
- "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v36-18002294267/fullstack-roadmap-en.pdf",
- "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v36-18002294267/fullstack-roadmap-en.html",
- "language": "EN",
- "variant": "EN-v36-18002294267",
- "versionSlug": "en-v36-18002294267",
- "tags": [
- "EN",
- "EN v36",
- "The Indie Developer Fullstack Roadmap"
- ],
- "pathSegments": [
- "The-IndieDeveloper-Fullstack-Roadmap",
- "EN-v36-18002294267"
- ]
- },
- {
- "slug": "the-indiedeveloper-fullstack-roadmap-en-v34-18001960544-fullstack-roadmap-en",
- "title": "fullstack roadmap en",
- "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v34, release EN-v34-18001960544, available as PDF and HTML).",
- "category": "The Indie Developer Fullstack Roadmap",
- "version": "EN v34",
- "updatedAt": "2025-09-25T12:28:54Z",
- "collection": "The-IndieDeveloper-Fullstack-Roadmap",
- "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
- "collectionLabel": "The Indie Developer Fullstack Roadmap",
- "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v34-18001960544/fullstack-roadmap-en.pdf",
- "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v34-18001960544/fullstack-roadmap-en.html",
- "language": "EN",
- "variant": "EN-v34-18001960544",
- "versionSlug": "en-v34-18001960544",
- "tags": [
- "EN",
- "EN v34",
- "The Indie Developer Fullstack Roadmap"
- ],
- "pathSegments": [
- "The-IndieDeveloper-Fullstack-Roadmap",
- "EN-v34-18001960544"
- ]
- },
- {
- "slug": "the-indiedeveloper-fullstack-roadmap-cn-v40-18004678416-fullstack-roadmap-cn",
- "title": "fullstack roadmap cn",
- "description": "fullstack roadmap cn — The Indie Developer Fullstack Roadmap (edition CN v40, release CN-v40-18004678416, available as PDF and HTML).",
- "category": "The Indie Developer Fullstack Roadmap",
- "version": "CN v40",
- "updatedAt": "2025-09-25T12:28:49Z",
- "collection": "The-IndieDeveloper-Fullstack-Roadmap",
- "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
- "collectionLabel": "The Indie Developer Fullstack Roadmap",
- "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v40-18004678416/fullstack-roadmap-cn.pdf",
- "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v40-18004678416/fullstack-roadmap-cn.html",
- "language": "CN",
- "variant": "CN-v40-18004678416",
- "versionSlug": "cn-v40-18004678416",
- "tags": [
- "CN",
- "CN v40",
- "The Indie Developer Fullstack Roadmap"
- ],
- "pathSegments": [
- "The-IndieDeveloper-Fullstack-Roadmap",
- "CN-v40-18004678416"
- ]
- },
- {
- "slug": "the-indiedeveloper-fullstack-roadmap-en-v33-17996525102-fullstack-roadmap-en",
- "title": "fullstack roadmap en",
- "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v33, release EN-v33-17996525102, available as PDF and HTML).",
- "category": "The Indie Developer Fullstack Roadmap",
- "version": "EN v33",
- "updatedAt": "2025-09-25T12:28:49Z",
- "collection": "The-IndieDeveloper-Fullstack-Roadmap",
- "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
- "collectionLabel": "The Indie Developer Fullstack Roadmap",
- "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v33-17996525102/fullstack-roadmap-en.pdf",
- "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v33-17996525102/fullstack-roadmap-en.html",
- "language": "EN",
- "variant": "EN-v33-17996525102",
- "versionSlug": "en-v33-17996525102",
- "tags": [
- "EN",
- "EN v33",
- "The Indie Developer Fullstack Roadmap"
- ],
- "pathSegments": [
- "The-IndieDeveloper-Fullstack-Roadmap",
- "EN-v33-17996525102"
- ]
- },
- {
- "slug": "the-indiedeveloper-fullstack-roadmap-cn-v39-18004672680-fullstack-roadmap-cn",
- "title": "fullstack roadmap cn",
- "description": "fullstack roadmap cn — The Indie Developer Fullstack Roadmap (edition CN v39, release CN-v39-18004672680, available as PDF and HTML).",
- "category": "The Indie Developer Fullstack Roadmap",
- "version": "CN v39",
- "updatedAt": "2025-09-25T12:27:51Z",
- "collection": "The-IndieDeveloper-Fullstack-Roadmap",
- "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
- "collectionLabel": "The Indie Developer Fullstack Roadmap",
- "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v39-18004672680/fullstack-roadmap-cn.pdf",
- "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v39-18004672680/fullstack-roadmap-cn.html",
- "language": "CN",
- "variant": "CN-v39-18004672680",
- "versionSlug": "cn-v39-18004672680",
- "tags": [
- "CN",
- "CN v39",
- "The Indie Developer Fullstack Roadmap"
- ],
- "pathSegments": [
- "The-IndieDeveloper-Fullstack-Roadmap",
- "CN-v39-18004672680"
- ]
- },
- {
- "slug": "the-indiedeveloper-fullstack-roadmap-cn-v38-18003957466-fullstack-roadmap-cn",
- "title": "fullstack roadmap cn",
- "description": "fullstack roadmap cn — The Indie Developer Fullstack Roadmap (edition CN v38, release CN-v38-18003957466, available as PDF and HTML).",
- "category": "The Indie Developer Fullstack Roadmap",
- "version": "CN v38",
- "updatedAt": "2025-09-25T12:27:11Z",
- "collection": "The-IndieDeveloper-Fullstack-Roadmap",
- "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
- "collectionLabel": "The Indie Developer Fullstack Roadmap",
- "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v38-18003957466/fullstack-roadmap-cn.pdf",
- "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v38-18003957466/fullstack-roadmap-cn.html",
- "language": "CN",
- "variant": "CN-v38-18003957466",
- "versionSlug": "cn-v38-18003957466",
- "tags": [
- "CN",
- "CN v38",
- "The Indie Developer Fullstack Roadmap"
- ],
- "pathSegments": [
- "The-IndieDeveloper-Fullstack-Roadmap",
- "CN-v38-18003957466"
- ]
- },
- {
- "slug": "the-indiedeveloper-fullstack-roadmap-cn-v36-18002294267-fullstack-roadmap-cn",
- "title": "fullstack roadmap cn",
- "description": "fullstack roadmap cn — The Indie Developer Fullstack Roadmap (edition CN v36, release CN-v36-18002294267, available as PDF and HTML).",
- "category": "The Indie Developer Fullstack Roadmap",
- "version": "CN v36",
- "updatedAt": "2025-09-25T12:25:51Z",
- "collection": "The-IndieDeveloper-Fullstack-Roadmap",
- "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
- "collectionLabel": "The Indie Developer Fullstack Roadmap",
- "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v36-18002294267/fullstack-roadmap-cn.pdf",
- "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v36-18002294267/fullstack-roadmap-cn.html",
- "language": "CN",
- "variant": "CN-v36-18002294267",
- "versionSlug": "cn-v36-18002294267",
- "tags": [
- "CN",
- "CN v36",
- "The Indie Developer Fullstack Roadmap"
- ],
- "pathSegments": [
- "The-IndieDeveloper-Fullstack-Roadmap",
- "CN-v36-18002294267"
- ]
- },
- {
- "slug": "the-indiedeveloper-fullstack-roadmap-cn-v34-18001960544-fullstack-roadmap-cn",
- "title": "fullstack roadmap cn",
- "description": "fullstack roadmap cn — The Indie Developer Fullstack Roadmap (edition CN v34, release CN-v34-18001960544, available as PDF and HTML).",
- "category": "The Indie Developer Fullstack Roadmap",
- "version": "CN v34",
- "updatedAt": "2025-09-25T12:24:55Z",
- "collection": "The-IndieDeveloper-Fullstack-Roadmap",
- "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
- "collectionLabel": "The Indie Developer Fullstack Roadmap",
- "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v34-18001960544/fullstack-roadmap-cn.pdf",
- "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v34-18001960544/fullstack-roadmap-cn.html",
- "language": "CN",
- "variant": "CN-v34-18001960544",
- "versionSlug": "cn-v34-18001960544",
- "tags": [
- "CN",
- "CN v34",
- "The Indie Developer Fullstack Roadmap"
- ],
- "pathSegments": [
- "The-IndieDeveloper-Fullstack-Roadmap",
- "CN-v34-18001960544"
- ]
- },
- {
- "slug": "techexploration-en-v40-18004678416-tech-exploration",
- "title": "Tech Exploration",
- "description": "Tech Exploration — Tech Exploration (edition EN v40, release EN-v40-18004678416, available as PDF and HTML).",
- "category": "Tech Exploration",
- "version": "EN v40",
- "updatedAt": "2025-09-25T12:23:45Z",
- "collection": "TechExploration",
- "collectionSlug": "techexploration",
- "collectionLabel": "Tech Exploration",
- "pdfUrl": "/docs/TechExploration/EN-v40-18004678416/Tech-Exploration.pdf",
- "htmlUrl": "/docs/TechExploration/EN-v40-18004678416/Tech-Exploration.html",
- "language": "EN",
- "variant": "EN-v40-18004678416",
- "versionSlug": "en-v40-18004678416",
- "tags": [
- "EN",
- "EN v40",
- "Tech Exploration"
- ],
- "pathSegments": [
- "TechExploration",
- "EN-v40-18004678416"
- ]
- },
- {
- "slug": "the-indiedeveloper-fullstack-roadmap-cn-v33-17996525102-fullstack-roadmap-cn",
- "title": "fullstack roadmap cn",
- "description": "fullstack roadmap cn — The Indie Developer Fullstack Roadmap (edition CN v33, release CN-v33-17996525102, available as PDF and HTML).",
- "category": "The Indie Developer Fullstack Roadmap",
- "version": "CN v33",
- "updatedAt": "2025-09-25T12:23:45Z",
- "collection": "The-IndieDeveloper-Fullstack-Roadmap",
- "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
- "collectionLabel": "The Indie Developer Fullstack Roadmap",
- "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v33-17996525102/fullstack-roadmap-cn.pdf",
- "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v33-17996525102/fullstack-roadmap-cn.html",
- "language": "CN",
- "variant": "CN-v33-17996525102",
- "versionSlug": "cn-v33-17996525102",
- "tags": [
- "CN",
- "CN v33",
- "The Indie Developer Fullstack Roadmap"
- ],
- "pathSegments": [
- "The-IndieDeveloper-Fullstack-Roadmap",
- "CN-v33-17996525102"
- ]
- },
- {
- "slug": "techexploration-en-v39-18004672680-tech-exploration",
- "title": "Tech Exploration",
- "description": "Tech Exploration — Tech Exploration (edition EN v39, release EN-v39-18004672680, available as PDF and HTML).",
- "category": "Tech Exploration",
- "version": "EN v39",
- "updatedAt": "2025-09-25T12:17:16Z",
- "collection": "TechExploration",
- "collectionSlug": "techexploration",
- "collectionLabel": "Tech Exploration",
- "pdfUrl": "/docs/TechExploration/EN-v39-18004672680/Tech-Exploration.pdf",
- "htmlUrl": "/docs/TechExploration/EN-v39-18004672680/Tech-Exploration.html",
- "language": "EN",
- "variant": "EN-v39-18004672680",
- "versionSlug": "en-v39-18004672680",
- "tags": [
- "EN",
- "EN v39",
- "Tech Exploration"
- ],
- "pathSegments": [
- "TechExploration",
- "EN-v39-18004672680"
- ]
- },
- {
- "slug": "techexploration-en-v37-18002553627-tech-exploration",
- "title": "Tech Exploration",
- "description": "Tech Exploration — Tech Exploration (edition EN v37, release EN-v37-18002553627, available as PDF and HTML).",
- "category": "Tech Exploration",
- "version": "EN v37",
- "updatedAt": "2025-09-25T12:11:38Z",
- "collection": "TechExploration",
- "collectionSlug": "techexploration",
- "collectionLabel": "Tech Exploration",
- "pdfUrl": "/docs/TechExploration/EN-v37-18002553627/Tech-Exploration.pdf",
- "htmlUrl": "/docs/TechExploration/EN-v37-18002553627/Tech-Exploration.html",
- "language": "EN",
- "variant": "EN-v37-18002553627",
- "versionSlug": "en-v37-18002553627",
- "tags": [
- "EN",
- "EN v37",
- "Tech Exploration"
- ],
- "pathSegments": [
- "TechExploration",
- "EN-v37-18002553627"
- ]
- },
- {
- "slug": "techexploration-en-v36-18002294267-tech-exploration",
- "title": "Tech Exploration",
- "description": "Tech Exploration — Tech Exploration (edition EN v36, release EN-v36-18002294267, available as PDF and HTML).",
- "category": "Tech Exploration",
- "version": "EN v36",
- "updatedAt": "2025-09-25T12:04:23Z",
- "collection": "TechExploration",
- "collectionSlug": "techexploration",
- "collectionLabel": "Tech Exploration",
- "pdfUrl": "/docs/TechExploration/EN-v36-18002294267/Tech-Exploration.pdf",
- "htmlUrl": "/docs/TechExploration/EN-v36-18002294267/Tech-Exploration.html",
- "language": "EN",
- "variant": "EN-v36-18002294267",
- "versionSlug": "en-v36-18002294267",
- "tags": [
- "EN",
- "EN v36",
- "Tech Exploration"
- ],
- "pathSegments": [
- "TechExploration",
- "EN-v36-18002294267"
- ]
- },
- {
- "slug": "techexploration-en-v34-18001960544-tech-exploration",
- "title": "Tech Exploration",
- "description": "Tech Exploration — Tech Exploration (edition EN v34, release EN-v34-18001960544, available as PDF and HTML).",
- "category": "Tech Exploration",
- "version": "EN v34",
- "updatedAt": "2025-09-25T11:59:06Z",
- "collection": "TechExploration",
- "collectionSlug": "techexploration",
- "collectionLabel": "Tech Exploration",
- "pdfUrl": "/docs/TechExploration/EN-v34-18001960544/Tech-Exploration.pdf",
- "htmlUrl": "/docs/TechExploration/EN-v34-18001960544/Tech-Exploration.html",
- "language": "EN",
- "variant": "EN-v34-18001960544",
- "versionSlug": "en-v34-18001960544",
- "tags": [
- "EN",
- "EN v34",
- "Tech Exploration"
- ],
- "pathSegments": [
- "TechExploration",
- "EN-v34-18001960544"
- ]
- },
- {
- "slug": "personal-en-v40-18004678416-fullstack-language-core",
- "title": "fullstack language core",
- "description": "fullstack language core — Personal (edition EN v40, release EN-v40-18004678416, available as PDF and HTML).",
- "category": "Personal",
- "version": "EN v40",
- "updatedAt": "2025-09-25T11:55:22Z",
- "collection": "Personal",
- "collectionSlug": "personal",
- "collectionLabel": "Personal",
- "pdfUrl": "/docs/Personal/EN-v40-18004678416/fullstack-language-core.pdf",
- "htmlUrl": "/docs/Personal/EN-v40-18004678416/fullstack-language-core.html",
- "language": "EN",
- "variant": "EN-v40-18004678416",
- "versionSlug": "en-v40-18004678416",
- "tags": [
- "EN",
- "EN v40",
- "Personal"
- ],
- "pathSegments": [
- "Personal",
- "EN-v40-18004678416"
- ]
- },
- {
- "slug": "techexploration-en-v33-17996525102-tech-exploration",
- "title": "Tech Exploration",
- "description": "Tech Exploration — Tech Exploration (edition EN v33, release EN-v33-17996525102, available as PDF and HTML).",
- "category": "Tech Exploration",
- "version": "EN v33",
- "updatedAt": "2025-09-25T11:55:22Z",
- "collection": "TechExploration",
- "collectionSlug": "techexploration",
- "collectionLabel": "Tech Exploration",
- "pdfUrl": "/docs/TechExploration/EN-v33-17996525102/Tech-Exploration.pdf",
- "htmlUrl": "/docs/TechExploration/EN-v33-17996525102/Tech-Exploration.html",
- "language": "EN",
- "variant": "EN-v33-17996525102",
- "versionSlug": "en-v33-17996525102",
- "tags": [
- "EN",
- "EN v33",
- "Tech Exploration"
- ],
- "pathSegments": [
- "TechExploration",
- "EN-v33-17996525102"
- ]
- },
- {
- "slug": "personal-en-v40-18004678416-cet-6",
- "title": "cet 6",
- "description": "cet 6 — Personal (edition EN v40, release EN-v40-18004678416, available as PDF and HTML).",
- "category": "Personal",
- "version": "EN v40",
- "updatedAt": "2025-09-25T11:55:04Z",
- "collection": "Personal",
- "collectionSlug": "personal",
- "collectionLabel": "Personal",
- "pdfUrl": "/docs/Personal/EN-v40-18004678416/cet-6.pdf",
- "htmlUrl": "/docs/Personal/EN-v40-18004678416/cet-6.html",
- "language": "EN",
- "variant": "EN-v40-18004678416",
- "versionSlug": "en-v40-18004678416",
- "tags": [
- "EN",
- "EN v40",
- "Personal"
- ],
- "pathSegments": [
- "Personal",
- "EN-v40-18004678416"
- ]
- },
- {
- "slug": "personal-en-v40-18004678416-resume-zh",
- "title": "Resume ZH",
- "description": "Resume ZH — Personal (edition EN v40, release EN-v40-18004678416, available as PDF and HTML).",
- "category": "Personal",
- "version": "EN v40",
- "updatedAt": "2025-09-25T11:48:16Z",
- "collection": "Personal",
- "collectionSlug": "personal",
- "collectionLabel": "Personal",
- "pdfUrl": "/docs/Personal/EN-v40-18004678416/Resume-ZH.pdf",
- "htmlUrl": "/docs/Personal/EN-v40-18004678416/Resume-ZH.html",
- "language": "EN",
- "variant": "EN-v40-18004678416",
- "versionSlug": "en-v40-18004678416",
- "tags": [
- "EN",
- "EN v40",
- "Personal"
- ],
- "pathSegments": [
- "Personal",
- "EN-v40-18004678416"
- ]
- },
- {
- "slug": "personal-en-v40-18004678416-resume-en",
- "title": "Resume EN",
- "description": "Resume EN — Personal (edition EN v40, release EN-v40-18004678416, available as PDF and HTML).",
- "category": "Personal",
- "version": "EN v40",
- "updatedAt": "2025-09-25T11:47:19Z",
- "collection": "Personal",
- "collectionSlug": "personal",
- "collectionLabel": "Personal",
- "pdfUrl": "/docs/Personal/EN-v40-18004678416/Resume-EN.pdf",
- "htmlUrl": "/docs/Personal/EN-v40-18004678416/Resume-EN.html",
- "language": "EN",
- "variant": "EN-v40-18004678416",
- "versionSlug": "en-v40-18004678416",
- "tags": [
- "EN",
- "EN v40",
- "Personal"
- ],
- "pathSegments": [
- "Personal",
- "EN-v40-18004678416"
- ]
- },
- {
- "slug": "personal-en-v40-18004678416-resume-devops-en",
- "title": "Resume Dev Ops EN",
- "description": "Resume Dev Ops EN — Personal (edition EN v40, release EN-v40-18004678416, available as PDF and HTML).",
- "category": "Personal",
- "version": "EN v40",
- "updatedAt": "2025-09-25T11:47:06Z",
- "collection": "Personal",
- "collectionSlug": "personal",
- "collectionLabel": "Personal",
- "pdfUrl": "/docs/Personal/EN-v40-18004678416/Resume-DevOps-EN.pdf",
- "htmlUrl": "/docs/Personal/EN-v40-18004678416/Resume-DevOps-EN.html",
- "language": "EN",
- "variant": "EN-v40-18004678416",
- "versionSlug": "en-v40-18004678416",
- "tags": [
- "EN",
- "EN v40",
- "Personal"
- ],
- "pathSegments": [
- "Personal",
- "EN-v40-18004678416"
- ]
- },
- {
- "slug": "personal-en-v40-18004678416-resume-devops-zh",
- "title": "Resume Dev OPS ZH",
- "description": "Resume Dev OPS ZH — Personal (edition EN v40, release EN-v40-18004678416, available as PDF and HTML).",
- "category": "Personal",
- "version": "EN v40",
- "updatedAt": "2025-09-25T11:46:55Z",
- "collection": "Personal",
- "collectionSlug": "personal",
- "collectionLabel": "Personal",
- "pdfUrl": "/docs/Personal/EN-v40-18004678416/Resume-DevOPS-ZH.pdf",
- "htmlUrl": "/docs/Personal/EN-v40-18004678416/Resume-DevOPS-ZH.html",
- "language": "EN",
- "variant": "EN-v40-18004678416",
- "versionSlug": "en-v40-18004678416",
- "tags": [
- "EN",
- "EN v40",
- "Personal"
- ],
- "pathSegments": [
- "Personal",
- "EN-v40-18004678416"
- ]
- },
- {
- "slug": "personal-en-v40-18004678416-readme",
- "title": "README",
- "description": "README — Personal (edition EN v40, release EN-v40-18004678416, available as PDF and HTML).",
- "category": "Personal",
- "version": "EN v40",
- "updatedAt": "2025-09-25T11:46:35Z",
- "collection": "Personal",
- "collectionSlug": "personal",
- "collectionLabel": "Personal",
- "pdfUrl": "/docs/Personal/EN-v40-18004678416/README.pdf",
- "htmlUrl": "/docs/Personal/EN-v40-18004678416/README.html",
- "language": "EN",
- "variant": "EN-v40-18004678416",
- "versionSlug": "en-v40-18004678416",
- "tags": [
- "EN",
- "EN v40",
- "Personal"
- ],
- "pathSegments": [
- "Personal",
- "EN-v40-18004678416"
- ]
- },
- {
- "slug": "personal-en-v40-18004678416-cv-zh",
- "title": "CV ZH",
- "description": "CV ZH — Personal (edition EN v40, release EN-v40-18004678416, available as PDF and HTML).",
- "category": "Personal",
- "version": "EN v40",
- "updatedAt": "2025-09-25T11:46:12Z",
- "collection": "Personal",
- "collectionSlug": "personal",
- "collectionLabel": "Personal",
- "pdfUrl": "/docs/Personal/EN-v40-18004678416/CV-ZH.pdf",
- "htmlUrl": "/docs/Personal/EN-v40-18004678416/CV-ZH.html",
- "language": "EN",
- "variant": "EN-v40-18004678416",
- "versionSlug": "en-v40-18004678416",
- "tags": [
- "EN",
- "EN v40",
- "Personal"
- ],
- "pathSegments": [
- "Personal",
- "EN-v40-18004678416"
- ]
- },
- {
- "slug": "personal-en-v40-18004678416-cv-en",
- "title": "CV EN",
- "description": "CV EN — Personal (edition EN v40, release EN-v40-18004678416, available as PDF and HTML).",
- "category": "Personal",
- "version": "EN v40",
- "updatedAt": "2025-09-25T11:45:23Z",
- "collection": "Personal",
- "collectionSlug": "personal",
- "collectionLabel": "Personal",
- "pdfUrl": "/docs/Personal/EN-v40-18004678416/CV-EN.pdf",
- "htmlUrl": "/docs/Personal/EN-v40-18004678416/CV-EN.html",
- "language": "EN",
- "variant": "EN-v40-18004678416",
- "versionSlug": "en-v40-18004678416",
- "tags": [
- "EN",
- "EN v40",
- "Personal"
- ],
- "pathSegments": [
- "Personal",
- "EN-v40-18004678416"
- ]
- },
- {
- "slug": "personal-en-v40-18004678416-cv-ai-dev-zh",
- "title": "CV AI Dev ZH",
- "description": "CV AI Dev ZH — Personal (edition EN v40, release EN-v40-18004678416, available as PDF and HTML).",
- "category": "Personal",
- "version": "EN v40",
- "updatedAt": "2025-09-25T11:45:09Z",
- "collection": "Personal",
- "collectionSlug": "personal",
- "collectionLabel": "Personal",
- "pdfUrl": "/docs/Personal/EN-v40-18004678416/CV-AI-Dev-ZH.pdf",
- "htmlUrl": "/docs/Personal/EN-v40-18004678416/CV-AI-Dev-ZH.html",
- "language": "EN",
- "variant": "EN-v40-18004678416",
- "versionSlug": "en-v40-18004678416",
- "tags": [
- "EN",
- "EN v40",
- "Personal"
- ],
- "pathSegments": [
- "Personal",
- "EN-v40-18004678416"
- ]
- },
- {
- "slug": "personal-en-v40-18004678416-cv-ai-dev-en",
- "title": "CV AI Dev EN",
- "description": "CV AI Dev EN — Personal (edition EN v40, release EN-v40-18004678416, available as PDF and HTML).",
- "category": "Personal",
- "version": "EN v40",
- "updatedAt": "2025-09-25T11:44:21Z",
- "collection": "Personal",
- "collectionSlug": "personal",
- "collectionLabel": "Personal",
- "pdfUrl": "/docs/Personal/EN-v40-18004678416/CV-AI-Dev-EN.pdf",
- "htmlUrl": "/docs/Personal/EN-v40-18004678416/CV-AI-Dev-EN.html",
- "language": "EN",
- "variant": "EN-v40-18004678416",
- "versionSlug": "en-v40-18004678416",
- "tags": [
- "EN",
- "EN v40",
- "Personal"
- ],
- "pathSegments": [
- "Personal",
- "EN-v40-18004678416"
- ]
- },
- {
- "slug": "personal-en-v40-18004678416-activebalance-plan",
- "title": "Active Balance Plan",
- "description": "Active Balance Plan — Personal (edition EN v40, release EN-v40-18004678416, available as PDF and HTML).",
- "category": "Personal",
- "version": "EN v40",
- "updatedAt": "2025-09-25T11:44:02Z",
- "collection": "Personal",
- "collectionSlug": "personal",
- "collectionLabel": "Personal",
- "pdfUrl": "/docs/Personal/EN-v40-18004678416/ActiveBalance-Plan.pdf",
- "htmlUrl": "/docs/Personal/EN-v40-18004678416/ActiveBalance-Plan.html",
- "language": "EN",
- "variant": "EN-v40-18004678416",
- "versionSlug": "en-v40-18004678416",
- "tags": [
- "EN",
- "EN v40",
- "Personal"
- ],
- "pathSegments": [
- "Personal",
"EN-v40-18004678416"
]
},
@@ -1312,7 +7770,7 @@
"description": "fullstack language core — Personal (edition EN v39, release EN-v39-18004672680, available as PDF and HTML).",
"category": "Personal",
"version": "EN v39",
- "updatedAt": "2025-09-25T11:43:41Z",
+ "updatedAt": "2025-09-25T10:35:58Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -1337,7 +7795,7 @@
"description": "cet 6 — Personal (edition EN v39, release EN-v39-18004672680, available as PDF and HTML).",
"category": "Personal",
"version": "EN v39",
- "updatedAt": "2025-09-25T11:43:13Z",
+ "updatedAt": "2025-09-25T10:35:58Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -1362,7 +7820,7 @@
"description": "Resume ZH — Personal (edition EN v39, release EN-v39-18004672680, available as PDF and HTML).",
"category": "Personal",
"version": "EN v39",
- "updatedAt": "2025-09-25T11:38:38Z",
+ "updatedAt": "2025-09-25T10:35:57Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -1387,7 +7845,7 @@
"description": "Resume EN — Personal (edition EN v39, release EN-v39-18004672680, available as PDF and HTML).",
"category": "Personal",
"version": "EN v39",
- "updatedAt": "2025-09-25T11:38:19Z",
+ "updatedAt": "2025-09-25T10:35:57Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -1412,7 +7870,7 @@
"description": "Resume Dev Ops EN — Personal (edition EN v39, release EN-v39-18004672680, available as PDF and HTML).",
"category": "Personal",
"version": "EN v39",
- "updatedAt": "2025-09-25T11:38:03Z",
+ "updatedAt": "2025-09-25T10:35:57Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -1437,7 +7895,7 @@
"description": "Resume Dev OPS ZH — Personal (edition EN v39, release EN-v39-18004672680, available as PDF and HTML).",
"category": "Personal",
"version": "EN v39",
- "updatedAt": "2025-09-25T11:37:50Z",
+ "updatedAt": "2025-09-25T10:35:57Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -1462,7 +7920,7 @@
"description": "README — Personal (edition EN v39, release EN-v39-18004672680, available as PDF and HTML).",
"category": "Personal",
"version": "EN v39",
- "updatedAt": "2025-09-25T11:37:18Z",
+ "updatedAt": "2025-09-25T10:35:57Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -1487,7 +7945,7 @@
"description": "CV ZH — Personal (edition EN v39, release EN-v39-18004672680, available as PDF and HTML).",
"category": "Personal",
"version": "EN v39",
- "updatedAt": "2025-09-25T11:37:12Z",
+ "updatedAt": "2025-09-25T10:35:57Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -1512,7 +7970,7 @@
"description": "CV EN — Personal (edition EN v39, release EN-v39-18004672680, available as PDF and HTML).",
"category": "Personal",
"version": "EN v39",
- "updatedAt": "2025-09-25T11:36:08Z",
+ "updatedAt": "2025-09-25T10:35:57Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -1537,7 +7995,7 @@
"description": "CV AI Dev ZH — Personal (edition EN v39, release EN-v39-18004672680, available as PDF and HTML).",
"category": "Personal",
"version": "EN v39",
- "updatedAt": "2025-09-25T11:35:24Z",
+ "updatedAt": "2025-09-25T10:35:57Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -1562,7 +8020,7 @@
"description": "CV AI Dev EN — Personal (edition EN v39, release EN-v39-18004672680, available as PDF and HTML).",
"category": "Personal",
"version": "EN v39",
- "updatedAt": "2025-09-25T11:34:15Z",
+ "updatedAt": "2025-09-25T10:35:57Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -1587,7 +8045,7 @@
"description": "Active Balance Plan — Personal (edition EN v39, release EN-v39-18004672680, available as PDF and HTML).",
"category": "Personal",
"version": "EN v39",
- "updatedAt": "2025-09-25T11:34:00Z",
+ "updatedAt": "2025-09-25T10:35:57Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -1606,13 +8064,734 @@
"EN-v39-18004672680"
]
},
+ {
+ "slug": "linux-k8s-ops-cn-v39-18004672680-linux-k8s-ops-guide",
+ "title": "Linux K8 S OPS Guide",
+ "description": "Linux K8 S OPS Guide — Linux K8 S OPS (edition CN v39, release CN-v39-18004672680, available as PDF and HTML).",
+ "category": "Linux K8 S OPS",
+ "version": "CN v39",
+ "updatedAt": "2025-09-25T10:35:49Z",
+ "collection": "Linux-K8S-OPS",
+ "collectionSlug": "linux-k8s-ops",
+ "collectionLabel": "Linux K8 S OPS",
+ "pdfUrl": "/docs/Linux-K8S-OPS/CN-v39-18004672680/Linux-K8S-OPS-Guide.pdf",
+ "htmlUrl": "/docs/Linux-K8S-OPS/CN-v39-18004672680/Linux-K8S-OPS-Guide.html",
+ "language": "CN",
+ "variant": "CN-v39-18004672680",
+ "versionSlug": "cn-v39-18004672680",
+ "tags": [
+ "CN",
+ "CN v39",
+ "Linux K8 S OPS"
+ ],
+ "pathSegments": [
+ "Linux-K8S-OPS",
+ "CN-v39-18004672680"
+ ]
+ },
+ {
+ "slug": "landingzone-en-v40-18004678416-landing-zone-design-and-implementation",
+ "title": "Landing Zone Design and Implementation",
+ "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v40, release EN-v40-18004678416, available as PDF).",
+ "category": "Landing Zone",
+ "version": "EN v40",
+ "updatedAt": "2025-09-25T10:35:38Z",
+ "collection": "LandingZone",
+ "collectionSlug": "landingzone",
+ "collectionLabel": "Landing Zone",
+ "pdfUrl": "/docs/LandingZone/EN-v40-18004678416/Landing-Zone-Design-and-Implementation.pdf",
+ "language": "EN",
+ "variant": "EN-v40-18004678416",
+ "versionSlug": "en-v40-18004678416",
+ "tags": [
+ "EN",
+ "EN v40",
+ "Landing Zone"
+ ],
+ "pathSegments": [
+ "LandingZone",
+ "EN-v40-18004678416"
+ ]
+ },
+ {
+ "slug": "the-indiedeveloper-fullstack-roadmap-cn-v39-18004672680-fullstack-roadmap-cn",
+ "title": "fullstack roadmap cn",
+ "description": "fullstack roadmap cn — The Indie Developer Fullstack Roadmap (edition CN v39, release CN-v39-18004672680, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "CN v39",
+ "updatedAt": "2025-09-25T10:35:32Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v39-18004672680/fullstack-roadmap-cn.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v39-18004672680/fullstack-roadmap-cn.html",
+ "language": "CN",
+ "variant": "CN-v39-18004672680",
+ "versionSlug": "cn-v39-18004672680",
+ "tags": [
+ "CN",
+ "CN v39",
+ "The Indie Developer Fullstack Roadmap"
+ ],
+ "pathSegments": [
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "CN-v39-18004672680"
+ ]
+ },
+ {
+ "slug": "observability-cn-v39-18004672680-observability-design-and-implementation",
+ "title": "Observability Design and Implementation",
+ "description": "Observability Design and Implementation — Observability (edition CN v39, release CN-v39-18004672680, available as PDF and HTML).",
+ "category": "Observability",
+ "version": "CN v39",
+ "updatedAt": "2025-09-25T10:35:28Z",
+ "collection": "Observability",
+ "collectionSlug": "observability",
+ "collectionLabel": "Observability",
+ "pdfUrl": "/docs/Observability/CN-v39-18004672680/Observability-Design-and-Implementation.pdf",
+ "htmlUrl": "/docs/Observability/CN-v39-18004672680/Observability-Design-and-Implementation.html",
+ "language": "CN",
+ "variant": "CN-v39-18004672680",
+ "versionSlug": "cn-v39-18004672680",
+ "tags": [
+ "CN",
+ "CN v39",
+ "Observability"
+ ],
+ "pathSegments": [
+ "Observability",
+ "CN-v39-18004672680"
+ ]
+ },
+ {
+ "slug": "linux-k8s-ops-cn-v40-18004678416-linux-k8s-ops-guide",
+ "title": "Linux K8 S OPS Guide",
+ "description": "Linux K8 S OPS Guide — Linux K8 S OPS (edition CN v40, release CN-v40-18004678416, available as PDF and HTML).",
+ "category": "Linux K8 S OPS",
+ "version": "CN v40",
+ "updatedAt": "2025-09-25T10:35:28Z",
+ "collection": "Linux-K8S-OPS",
+ "collectionSlug": "linux-k8s-ops",
+ "collectionLabel": "Linux K8 S OPS",
+ "pdfUrl": "/docs/Linux-K8S-OPS/CN-v40-18004678416/Linux-K8S-OPS-Guide.pdf",
+ "htmlUrl": "/docs/Linux-K8S-OPS/CN-v40-18004678416/Linux-K8S-OPS-Guide.html",
+ "language": "CN",
+ "variant": "CN-v40-18004678416",
+ "versionSlug": "cn-v40-18004678416",
+ "tags": [
+ "CN",
+ "CN v40",
+ "Linux K8 S OPS"
+ ],
+ "pathSegments": [
+ "Linux-K8S-OPS",
+ "CN-v40-18004678416"
+ ]
+ },
+ {
+ "slug": "the-indiedeveloper-fullstack-roadmap-en-v39-18004672680-fullstack-roadmap-en",
+ "title": "fullstack roadmap en",
+ "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v39, release EN-v39-18004672680, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "EN v39",
+ "updatedAt": "2025-09-25T10:35:27Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v39-18004672680/fullstack-roadmap-en.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v39-18004672680/fullstack-roadmap-en.html",
+ "language": "EN",
+ "variant": "EN-v39-18004672680",
+ "versionSlug": "en-v39-18004672680",
+ "tags": [
+ "EN",
+ "EN v39",
+ "The Indie Developer Fullstack Roadmap"
+ ],
+ "pathSegments": [
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "EN-v39-18004672680"
+ ]
+ },
+ {
+ "slug": "landingzone-en-v39-18004672680-landing-zone-design-and-implementation",
+ "title": "Landing Zone Design and Implementation",
+ "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v39, release EN-v39-18004672680, available as PDF).",
+ "category": "Landing Zone",
+ "version": "EN v39",
+ "updatedAt": "2025-09-25T10:35:27Z",
+ "collection": "LandingZone",
+ "collectionSlug": "landingzone",
+ "collectionLabel": "Landing Zone",
+ "pdfUrl": "/docs/LandingZone/EN-v39-18004672680/Landing-Zone-Design-and-Implementation.pdf",
+ "language": "EN",
+ "variant": "EN-v39-18004672680",
+ "versionSlug": "en-v39-18004672680",
+ "tags": [
+ "EN",
+ "EN v39",
+ "Landing Zone"
+ ],
+ "pathSegments": [
+ "LandingZone",
+ "EN-v39-18004672680"
+ ]
+ },
+ {
+ "slug": "keycloak-en-v39-18004672680-keycloak-sso-design-and-implementation",
+ "title": "Keycloak SSO Design and Implementation",
+ "description": "Keycloak SSO Design and Implementation — Keycloak (edition EN v39, release EN-v39-18004672680, available as HTML).",
+ "category": "Keycloak",
+ "version": "EN v39",
+ "updatedAt": "2025-09-25T10:35:16Z",
+ "collection": "Keycloak",
+ "collectionSlug": "keycloak",
+ "collectionLabel": "Keycloak",
+ "htmlUrl": "/docs/Keycloak/EN-v39-18004672680/Keycloak-SSO-Design-and-Implementation.html",
+ "language": "EN",
+ "variant": "EN-v39-18004672680",
+ "versionSlug": "en-v39-18004672680",
+ "tags": [
+ "EN",
+ "EN v39",
+ "Keycloak"
+ ],
+ "pathSegments": [
+ "Keycloak",
+ "EN-v39-18004672680"
+ ]
+ },
+ {
+ "slug": "personal-en-v40-18004678416-fullstack-language-core",
+ "title": "fullstack language core",
+ "description": "fullstack language core — Personal (edition EN v40, release EN-v40-18004678416, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v40",
+ "updatedAt": "2025-09-25T10:35:13Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v40-18004678416/fullstack-language-core.pdf",
+ "htmlUrl": "/docs/Personal/EN-v40-18004678416/fullstack-language-core.html",
+ "language": "EN",
+ "variant": "EN-v40-18004678416",
+ "versionSlug": "en-v40-18004678416",
+ "tags": [
+ "EN",
+ "EN v40",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v40-18004678416"
+ ]
+ },
+ {
+ "slug": "personal-en-v40-18004678416-cet-6",
+ "title": "cet 6",
+ "description": "cet 6 — Personal (edition EN v40, release EN-v40-18004678416, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v40",
+ "updatedAt": "2025-09-25T10:35:13Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v40-18004678416/cet-6.pdf",
+ "htmlUrl": "/docs/Personal/EN-v40-18004678416/cet-6.html",
+ "language": "EN",
+ "variant": "EN-v40-18004678416",
+ "versionSlug": "en-v40-18004678416",
+ "tags": [
+ "EN",
+ "EN v40",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v40-18004678416"
+ ]
+ },
+ {
+ "slug": "personal-en-v40-18004678416-resume-zh",
+ "title": "Resume ZH",
+ "description": "Resume ZH — Personal (edition EN v40, release EN-v40-18004678416, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v40",
+ "updatedAt": "2025-09-25T10:35:13Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v40-18004678416/Resume-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v40-18004678416/Resume-ZH.html",
+ "language": "EN",
+ "variant": "EN-v40-18004678416",
+ "versionSlug": "en-v40-18004678416",
+ "tags": [
+ "EN",
+ "EN v40",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v40-18004678416"
+ ]
+ },
+ {
+ "slug": "personal-en-v40-18004678416-resume-en",
+ "title": "Resume EN",
+ "description": "Resume EN — Personal (edition EN v40, release EN-v40-18004678416, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v40",
+ "updatedAt": "2025-09-25T10:35:13Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v40-18004678416/Resume-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v40-18004678416/Resume-EN.html",
+ "language": "EN",
+ "variant": "EN-v40-18004678416",
+ "versionSlug": "en-v40-18004678416",
+ "tags": [
+ "EN",
+ "EN v40",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v40-18004678416"
+ ]
+ },
+ {
+ "slug": "personal-en-v40-18004678416-resume-devops-en",
+ "title": "Resume Dev Ops EN",
+ "description": "Resume Dev Ops EN — Personal (edition EN v40, release EN-v40-18004678416, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v40",
+ "updatedAt": "2025-09-25T10:35:13Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v40-18004678416/Resume-DevOps-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v40-18004678416/Resume-DevOps-EN.html",
+ "language": "EN",
+ "variant": "EN-v40-18004678416",
+ "versionSlug": "en-v40-18004678416",
+ "tags": [
+ "EN",
+ "EN v40",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v40-18004678416"
+ ]
+ },
+ {
+ "slug": "personal-en-v40-18004678416-resume-devops-zh",
+ "title": "Resume Dev OPS ZH",
+ "description": "Resume Dev OPS ZH — Personal (edition EN v40, release EN-v40-18004678416, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v40",
+ "updatedAt": "2025-09-25T10:35:13Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v40-18004678416/Resume-DevOPS-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v40-18004678416/Resume-DevOPS-ZH.html",
+ "language": "EN",
+ "variant": "EN-v40-18004678416",
+ "versionSlug": "en-v40-18004678416",
+ "tags": [
+ "EN",
+ "EN v40",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v40-18004678416"
+ ]
+ },
+ {
+ "slug": "personal-en-v40-18004678416-readme",
+ "title": "README",
+ "description": "README — Personal (edition EN v40, release EN-v40-18004678416, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v40",
+ "updatedAt": "2025-09-25T10:35:13Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v40-18004678416/README.pdf",
+ "htmlUrl": "/docs/Personal/EN-v40-18004678416/README.html",
+ "language": "EN",
+ "variant": "EN-v40-18004678416",
+ "versionSlug": "en-v40-18004678416",
+ "tags": [
+ "EN",
+ "EN v40",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v40-18004678416"
+ ]
+ },
+ {
+ "slug": "personal-en-v40-18004678416-cv-zh",
+ "title": "CV ZH",
+ "description": "CV ZH — Personal (edition EN v40, release EN-v40-18004678416, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v40",
+ "updatedAt": "2025-09-25T10:35:13Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v40-18004678416/CV-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v40-18004678416/CV-ZH.html",
+ "language": "EN",
+ "variant": "EN-v40-18004678416",
+ "versionSlug": "en-v40-18004678416",
+ "tags": [
+ "EN",
+ "EN v40",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v40-18004678416"
+ ]
+ },
+ {
+ "slug": "personal-en-v40-18004678416-cv-en",
+ "title": "CV EN",
+ "description": "CV EN — Personal (edition EN v40, release EN-v40-18004678416, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v40",
+ "updatedAt": "2025-09-25T10:35:13Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v40-18004678416/CV-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v40-18004678416/CV-EN.html",
+ "language": "EN",
+ "variant": "EN-v40-18004678416",
+ "versionSlug": "en-v40-18004678416",
+ "tags": [
+ "EN",
+ "EN v40",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v40-18004678416"
+ ]
+ },
+ {
+ "slug": "personal-en-v40-18004678416-cv-ai-dev-zh",
+ "title": "CV AI Dev ZH",
+ "description": "CV AI Dev ZH — Personal (edition EN v40, release EN-v40-18004678416, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v40",
+ "updatedAt": "2025-09-25T10:35:13Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v40-18004678416/CV-AI-Dev-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v40-18004678416/CV-AI-Dev-ZH.html",
+ "language": "EN",
+ "variant": "EN-v40-18004678416",
+ "versionSlug": "en-v40-18004678416",
+ "tags": [
+ "EN",
+ "EN v40",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v40-18004678416"
+ ]
+ },
+ {
+ "slug": "personal-en-v40-18004678416-cv-ai-dev-en",
+ "title": "CV AI Dev EN",
+ "description": "CV AI Dev EN — Personal (edition EN v40, release EN-v40-18004678416, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v40",
+ "updatedAt": "2025-09-25T10:35:13Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v40-18004678416/CV-AI-Dev-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v40-18004678416/CV-AI-Dev-EN.html",
+ "language": "EN",
+ "variant": "EN-v40-18004678416",
+ "versionSlug": "en-v40-18004678416",
+ "tags": [
+ "EN",
+ "EN v40",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v40-18004678416"
+ ]
+ },
+ {
+ "slug": "personal-en-v40-18004678416-activebalance-plan",
+ "title": "Active Balance Plan",
+ "description": "Active Balance Plan — Personal (edition EN v40, release EN-v40-18004678416, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v40",
+ "updatedAt": "2025-09-25T10:35:12Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v40-18004678416/ActiveBalance-Plan.pdf",
+ "htmlUrl": "/docs/Personal/EN-v40-18004678416/ActiveBalance-Plan.html",
+ "language": "EN",
+ "variant": "EN-v40-18004678416",
+ "versionSlug": "en-v40-18004678416",
+ "tags": [
+ "EN",
+ "EN v40",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v40-18004678416"
+ ]
+ },
+ {
+ "slug": "techexploration-en-v40-18004678416-tech-exploration",
+ "title": "Tech Exploration",
+ "description": "Tech Exploration — Tech Exploration (edition EN v40, release EN-v40-18004678416, available as PDF and HTML).",
+ "category": "Tech Exploration",
+ "version": "EN v40",
+ "updatedAt": "2025-09-25T10:34:42Z",
+ "collection": "TechExploration",
+ "collectionSlug": "techexploration",
+ "collectionLabel": "Tech Exploration",
+ "pdfUrl": "/docs/TechExploration/EN-v40-18004678416/Tech-Exploration.pdf",
+ "htmlUrl": "/docs/TechExploration/EN-v40-18004678416/Tech-Exploration.html",
+ "language": "EN",
+ "variant": "EN-v40-18004678416",
+ "versionSlug": "en-v40-18004678416",
+ "tags": [
+ "EN",
+ "EN v40",
+ "Tech Exploration"
+ ],
+ "pathSegments": [
+ "TechExploration",
+ "EN-v40-18004678416"
+ ]
+ },
+ {
+ "slug": "observability-cn-v40-18004678416-observability-design-and-implementation",
+ "title": "Observability Design and Implementation",
+ "description": "Observability Design and Implementation — Observability (edition CN v40, release CN-v40-18004678416, available as PDF and HTML).",
+ "category": "Observability",
+ "version": "CN v40",
+ "updatedAt": "2025-09-25T10:34:08Z",
+ "collection": "Observability",
+ "collectionSlug": "observability",
+ "collectionLabel": "Observability",
+ "pdfUrl": "/docs/Observability/CN-v40-18004678416/Observability-Design-and-Implementation.pdf",
+ "htmlUrl": "/docs/Observability/CN-v40-18004678416/Observability-Design-and-Implementation.html",
+ "language": "CN",
+ "variant": "CN-v40-18004678416",
+ "versionSlug": "cn-v40-18004678416",
+ "tags": [
+ "CN",
+ "CN v40",
+ "Observability"
+ ],
+ "pathSegments": [
+ "Observability",
+ "CN-v40-18004678416"
+ ]
+ },
+ {
+ "slug": "the-indiedeveloper-fullstack-roadmap-en-v40-18004678416-fullstack-roadmap-en",
+ "title": "fullstack roadmap en",
+ "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v40, release EN-v40-18004678416, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "EN v40",
+ "updatedAt": "2025-09-25T10:34:03Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v40-18004678416/fullstack-roadmap-en.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v40-18004678416/fullstack-roadmap-en.html",
+ "language": "EN",
+ "variant": "EN-v40-18004678416",
+ "versionSlug": "en-v40-18004678416",
+ "tags": [
+ "EN",
+ "EN v40",
+ "The Indie Developer Fullstack Roadmap"
+ ],
+ "pathSegments": [
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "EN-v40-18004678416"
+ ]
+ },
+ {
+ "slug": "the-indiedeveloper-fullstack-roadmap-cn-v40-18004678416-fullstack-roadmap-cn",
+ "title": "fullstack roadmap cn",
+ "description": "fullstack roadmap cn — The Indie Developer Fullstack Roadmap (edition CN v40, release CN-v40-18004678416, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "CN v40",
+ "updatedAt": "2025-09-25T10:33:47Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v40-18004678416/fullstack-roadmap-cn.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v40-18004678416/fullstack-roadmap-cn.html",
+ "language": "CN",
+ "variant": "CN-v40-18004678416",
+ "versionSlug": "cn-v40-18004678416",
+ "tags": [
+ "CN",
+ "CN v40",
+ "The Indie Developer Fullstack Roadmap"
+ ],
+ "pathSegments": [
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "CN-v40-18004678416"
+ ]
+ },
+ {
+ "slug": "techexploration-en-v39-18004672680-tech-exploration",
+ "title": "Tech Exploration",
+ "description": "Tech Exploration — Tech Exploration (edition EN v39, release EN-v39-18004672680, available as PDF and HTML).",
+ "category": "Tech Exploration",
+ "version": "EN v39",
+ "updatedAt": "2025-09-25T10:33:34Z",
+ "collection": "TechExploration",
+ "collectionSlug": "techexploration",
+ "collectionLabel": "Tech Exploration",
+ "pdfUrl": "/docs/TechExploration/EN-v39-18004672680/Tech-Exploration.pdf",
+ "htmlUrl": "/docs/TechExploration/EN-v39-18004672680/Tech-Exploration.html",
+ "language": "EN",
+ "variant": "EN-v39-18004672680",
+ "versionSlug": "en-v39-18004672680",
+ "tags": [
+ "EN",
+ "EN v39",
+ "Tech Exploration"
+ ],
+ "pathSegments": [
+ "TechExploration",
+ "EN-v39-18004672680"
+ ]
+ },
+ {
+ "slug": "landingzone-en-v38-18003957466-landing-zone-design-and-implementation",
+ "title": "Landing Zone Design and Implementation",
+ "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v38, release EN-v38-18003957466, available as PDF).",
+ "category": "Landing Zone",
+ "version": "EN v38",
+ "updatedAt": "2025-09-25T10:07:06Z",
+ "collection": "LandingZone",
+ "collectionSlug": "landingzone",
+ "collectionLabel": "Landing Zone",
+ "pdfUrl": "/docs/LandingZone/EN-v38-18003957466/Landing-Zone-Design-and-Implementation.pdf",
+ "language": "EN",
+ "variant": "EN-v38-18003957466",
+ "versionSlug": "en-v38-18003957466",
+ "tags": [
+ "EN",
+ "EN v38",
+ "Landing Zone"
+ ],
+ "pathSegments": [
+ "LandingZone",
+ "EN-v38-18003957466"
+ ]
+ },
+ {
+ "slug": "the-indiedeveloper-fullstack-roadmap-cn-v38-18003957466-fullstack-roadmap-cn",
+ "title": "fullstack roadmap cn",
+ "description": "fullstack roadmap cn — The Indie Developer Fullstack Roadmap (edition CN v38, release CN-v38-18003957466, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "CN v38",
+ "updatedAt": "2025-09-25T10:06:38Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v38-18003957466/fullstack-roadmap-cn.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v38-18003957466/fullstack-roadmap-cn.html",
+ "language": "CN",
+ "variant": "CN-v38-18003957466",
+ "versionSlug": "cn-v38-18003957466",
+ "tags": [
+ "CN",
+ "CN v38",
+ "The Indie Developer Fullstack Roadmap"
+ ],
+ "pathSegments": [
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "CN-v38-18003957466"
+ ]
+ },
+ {
+ "slug": "the-indiedeveloper-fullstack-roadmap-en-v38-18003957466-fullstack-roadmap-en",
+ "title": "fullstack roadmap en",
+ "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v38, release EN-v38-18003957466, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "EN v38",
+ "updatedAt": "2025-09-25T10:06:20Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v38-18003957466/fullstack-roadmap-en.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v38-18003957466/fullstack-roadmap-en.html",
+ "language": "EN",
+ "variant": "EN-v38-18003957466",
+ "versionSlug": "en-v38-18003957466",
+ "tags": [
+ "EN",
+ "EN v38",
+ "The Indie Developer Fullstack Roadmap"
+ ],
+ "pathSegments": [
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "EN-v38-18003957466"
+ ]
+ },
+ {
+ "slug": "observability-cn-v37-18002553627-observability-design-and-implementation",
+ "title": "Observability Design and Implementation",
+ "description": "Observability Design and Implementation — Observability (edition CN v37, release CN-v37-18002553627, available as PDF and HTML).",
+ "category": "Observability",
+ "version": "CN v37",
+ "updatedAt": "2025-09-25T09:09:29Z",
+ "collection": "Observability",
+ "collectionSlug": "observability",
+ "collectionLabel": "Observability",
+ "pdfUrl": "/docs/Observability/CN-v37-18002553627/Observability-Design-and-Implementation.pdf",
+ "htmlUrl": "/docs/Observability/CN-v37-18002553627/Observability-Design-and-Implementation.html",
+ "language": "CN",
+ "variant": "CN-v37-18002553627",
+ "versionSlug": "cn-v37-18002553627",
+ "tags": [
+ "CN",
+ "CN v37",
+ "Observability"
+ ],
+ "pathSegments": [
+ "Observability",
+ "CN-v37-18002553627"
+ ]
+ },
{
"slug": "personal-en-v37-18002553627-fullstack-language-core",
"title": "fullstack language core",
"description": "fullstack language core — Personal (edition EN v37, release EN-v37-18002553627, available as PDF and HTML).",
"category": "Personal",
"version": "EN v37",
- "updatedAt": "2025-09-25T11:33:42Z",
+ "updatedAt": "2025-09-25T09:09:23Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -1637,7 +8816,7 @@
"description": "cet 6 — Personal (edition EN v37, release EN-v37-18002553627, available as PDF and HTML).",
"category": "Personal",
"version": "EN v37",
- "updatedAt": "2025-09-25T11:33:34Z",
+ "updatedAt": "2025-09-25T09:09:23Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -1662,7 +8841,7 @@
"description": "Resume ZH — Personal (edition EN v37, release EN-v37-18002553627, available as PDF and HTML).",
"category": "Personal",
"version": "EN v37",
- "updatedAt": "2025-09-25T11:25:58Z",
+ "updatedAt": "2025-09-25T09:09:22Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -1687,7 +8866,7 @@
"description": "Resume EN — Personal (edition EN v37, release EN-v37-18002553627, available as PDF and HTML).",
"category": "Personal",
"version": "EN v37",
- "updatedAt": "2025-09-25T11:25:02Z",
+ "updatedAt": "2025-09-25T09:09:22Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -1712,7 +8891,7 @@
"description": "Resume Dev Ops EN — Personal (edition EN v37, release EN-v37-18002553627, available as PDF and HTML).",
"category": "Personal",
"version": "EN v37",
- "updatedAt": "2025-09-25T11:24:37Z",
+ "updatedAt": "2025-09-25T09:09:22Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -1737,7 +8916,7 @@
"description": "Resume Dev OPS ZH — Personal (edition EN v37, release EN-v37-18002553627, available as PDF and HTML).",
"category": "Personal",
"version": "EN v37",
- "updatedAt": "2025-09-25T11:24:31Z",
+ "updatedAt": "2025-09-25T09:09:22Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -1762,7 +8941,7 @@
"description": "README — Personal (edition EN v37, release EN-v37-18002553627, available as PDF and HTML).",
"category": "Personal",
"version": "EN v37",
- "updatedAt": "2025-09-25T11:24:01Z",
+ "updatedAt": "2025-09-25T09:09:22Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -1781,13 +8960,37 @@
"EN-v37-18002553627"
]
},
+ {
+ "slug": "landingzone-en-v37-18002553627-landing-zone-design-and-implementation",
+ "title": "Landing Zone Design and Implementation",
+ "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v37, release EN-v37-18002553627, available as PDF).",
+ "category": "Landing Zone",
+ "version": "EN v37",
+ "updatedAt": "2025-09-25T09:09:22Z",
+ "collection": "LandingZone",
+ "collectionSlug": "landingzone",
+ "collectionLabel": "Landing Zone",
+ "pdfUrl": "/docs/LandingZone/EN-v37-18002553627/Landing-Zone-Design-and-Implementation.pdf",
+ "language": "EN",
+ "variant": "EN-v37-18002553627",
+ "versionSlug": "en-v37-18002553627",
+ "tags": [
+ "EN",
+ "EN v37",
+ "Landing Zone"
+ ],
+ "pathSegments": [
+ "LandingZone",
+ "EN-v37-18002553627"
+ ]
+ },
{
"slug": "personal-en-v37-18002553627-cv-zh",
"title": "CV ZH",
"description": "CV ZH — Personal (edition EN v37, release EN-v37-18002553627, available as PDF and HTML).",
"category": "Personal",
"version": "EN v37",
- "updatedAt": "2025-09-25T11:23:46Z",
+ "updatedAt": "2025-09-25T09:09:22Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -1812,7 +9015,7 @@
"description": "CV EN — Personal (edition EN v37, release EN-v37-18002553627, available as PDF and HTML).",
"category": "Personal",
"version": "EN v37",
- "updatedAt": "2025-09-25T11:23:07Z",
+ "updatedAt": "2025-09-25T09:09:22Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -1837,7 +9040,7 @@
"description": "CV AI Dev ZH — Personal (edition EN v37, release EN-v37-18002553627, available as PDF and HTML).",
"category": "Personal",
"version": "EN v37",
- "updatedAt": "2025-09-25T11:22:49Z",
+ "updatedAt": "2025-09-25T09:09:22Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -1862,7 +9065,7 @@
"description": "CV AI Dev EN — Personal (edition EN v37, release EN-v37-18002553627, available as PDF and HTML).",
"category": "Personal",
"version": "EN v37",
- "updatedAt": "2025-09-25T11:22:01Z",
+ "updatedAt": "2025-09-25T09:09:22Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -1887,7 +9090,7 @@
"description": "Active Balance Plan — Personal (edition EN v37, release EN-v37-18002553627, available as PDF and HTML).",
"category": "Personal",
"version": "EN v37",
- "updatedAt": "2025-09-25T11:21:35Z",
+ "updatedAt": "2025-09-25T09:09:22Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -1906,13 +9109,113 @@
"EN-v37-18002553627"
]
},
+ {
+ "slug": "techexploration-en-v37-18002553627-tech-exploration",
+ "title": "Tech Exploration",
+ "description": "Tech Exploration — Tech Exploration (edition EN v37, release EN-v37-18002553627, available as PDF and HTML).",
+ "category": "Tech Exploration",
+ "version": "EN v37",
+ "updatedAt": "2025-09-25T09:09:20Z",
+ "collection": "TechExploration",
+ "collectionSlug": "techexploration",
+ "collectionLabel": "Tech Exploration",
+ "pdfUrl": "/docs/TechExploration/EN-v37-18002553627/Tech-Exploration.pdf",
+ "htmlUrl": "/docs/TechExploration/EN-v37-18002553627/Tech-Exploration.html",
+ "language": "EN",
+ "variant": "EN-v37-18002553627",
+ "versionSlug": "en-v37-18002553627",
+ "tags": [
+ "EN",
+ "EN v37",
+ "Tech Exploration"
+ ],
+ "pathSegments": [
+ "TechExploration",
+ "EN-v37-18002553627"
+ ]
+ },
+ {
+ "slug": "the-indiedeveloper-fullstack-roadmap-en-v37-18002553627-fullstack-roadmap-en",
+ "title": "fullstack roadmap en",
+ "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v37, release EN-v37-18002553627, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "EN v37",
+ "updatedAt": "2025-09-25T09:09:10Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v37-18002553627/fullstack-roadmap-en.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v37-18002553627/fullstack-roadmap-en.html",
+ "language": "EN",
+ "variant": "EN-v37-18002553627",
+ "versionSlug": "en-v37-18002553627",
+ "tags": [
+ "EN",
+ "EN v37",
+ "The Indie Developer Fullstack Roadmap"
+ ],
+ "pathSegments": [
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "EN-v37-18002553627"
+ ]
+ },
+ {
+ "slug": "observability-cn-v36-18002294267-observability-design-and-implementation",
+ "title": "Observability Design and Implementation",
+ "description": "Observability Design and Implementation — Observability (edition CN v36, release CN-v36-18002294267, available as PDF and HTML).",
+ "category": "Observability",
+ "version": "CN v36",
+ "updatedAt": "2025-09-25T09:00:56Z",
+ "collection": "Observability",
+ "collectionSlug": "observability",
+ "collectionLabel": "Observability",
+ "pdfUrl": "/docs/Observability/CN-v36-18002294267/Observability-Design-and-Implementation.pdf",
+ "htmlUrl": "/docs/Observability/CN-v36-18002294267/Observability-Design-and-Implementation.html",
+ "language": "CN",
+ "variant": "CN-v36-18002294267",
+ "versionSlug": "cn-v36-18002294267",
+ "tags": [
+ "CN",
+ "CN v36",
+ "Observability"
+ ],
+ "pathSegments": [
+ "Observability",
+ "CN-v36-18002294267"
+ ]
+ },
+ {
+ "slug": "the-indiedeveloper-fullstack-roadmap-en-v36-18002294267-fullstack-roadmap-en",
+ "title": "fullstack roadmap en",
+ "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v36, release EN-v36-18002294267, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "EN v36",
+ "updatedAt": "2025-09-25T09:00:39Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v36-18002294267/fullstack-roadmap-en.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v36-18002294267/fullstack-roadmap-en.html",
+ "language": "EN",
+ "variant": "EN-v36-18002294267",
+ "versionSlug": "en-v36-18002294267",
+ "tags": [
+ "EN",
+ "EN v36",
+ "The Indie Developer Fullstack Roadmap"
+ ],
+ "pathSegments": [
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "EN-v36-18002294267"
+ ]
+ },
{
"slug": "personal-en-v36-18002294267-fullstack-language-core",
"title": "fullstack language core",
"description": "fullstack language core — Personal (edition EN v36, release EN-v36-18002294267, available as PDF and HTML).",
"category": "Personal",
"version": "EN v36",
- "updatedAt": "2025-09-25T11:21:22Z",
+ "updatedAt": "2025-09-25T08:59:54Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -1937,7 +9240,7 @@
"description": "cet 6 — Personal (edition EN v36, release EN-v36-18002294267, available as PDF and HTML).",
"category": "Personal",
"version": "EN v36",
- "updatedAt": "2025-09-25T11:20:56Z",
+ "updatedAt": "2025-09-25T08:59:54Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -1962,7 +9265,7 @@
"description": "Resume ZH — Personal (edition EN v36, release EN-v36-18002294267, available as PDF and HTML).",
"category": "Personal",
"version": "EN v36",
- "updatedAt": "2025-09-25T11:16:29Z",
+ "updatedAt": "2025-09-25T08:59:54Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -1987,7 +9290,7 @@
"description": "Resume EN — Personal (edition EN v36, release EN-v36-18002294267, available as PDF and HTML).",
"category": "Personal",
"version": "EN v36",
- "updatedAt": "2025-09-25T11:16:00Z",
+ "updatedAt": "2025-09-25T08:59:54Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -2012,7 +9315,7 @@
"description": "Resume Dev Ops EN — Personal (edition EN v36, release EN-v36-18002294267, available as PDF and HTML).",
"category": "Personal",
"version": "EN v36",
- "updatedAt": "2025-09-25T11:15:50Z",
+ "updatedAt": "2025-09-25T08:59:54Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -2037,7 +9340,7 @@
"description": "Resume Dev OPS ZH — Personal (edition EN v36, release EN-v36-18002294267, available as PDF and HTML).",
"category": "Personal",
"version": "EN v36",
- "updatedAt": "2025-09-25T11:15:40Z",
+ "updatedAt": "2025-09-25T08:59:54Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -2062,7 +9365,7 @@
"description": "README — Personal (edition EN v36, release EN-v36-18002294267, available as PDF and HTML).",
"category": "Personal",
"version": "EN v36",
- "updatedAt": "2025-09-25T11:15:26Z",
+ "updatedAt": "2025-09-25T08:59:54Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -2087,7 +9390,7 @@
"description": "CV ZH — Personal (edition EN v36, release EN-v36-18002294267, available as PDF and HTML).",
"category": "Personal",
"version": "EN v36",
- "updatedAt": "2025-09-25T11:15:19Z",
+ "updatedAt": "2025-09-25T08:59:54Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -2112,7 +9415,7 @@
"description": "CV EN — Personal (edition EN v36, release EN-v36-18002294267, available as PDF and HTML).",
"category": "Personal",
"version": "EN v36",
- "updatedAt": "2025-09-25T11:14:52Z",
+ "updatedAt": "2025-09-25T08:59:54Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -2137,7 +9440,7 @@
"description": "CV AI Dev ZH — Personal (edition EN v36, release EN-v36-18002294267, available as PDF and HTML).",
"category": "Personal",
"version": "EN v36",
- "updatedAt": "2025-09-25T11:14:44Z",
+ "updatedAt": "2025-09-25T08:59:54Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -2162,7 +9465,7 @@
"description": "CV AI Dev EN — Personal (edition EN v36, release EN-v36-18002294267, available as PDF and HTML).",
"category": "Personal",
"version": "EN v36",
- "updatedAt": "2025-09-25T11:14:01Z",
+ "updatedAt": "2025-09-25T08:59:53Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -2187,7 +9490,7 @@
"description": "Active Balance Plan — Personal (edition EN v36, release EN-v36-18002294267, available as PDF and HTML).",
"category": "Personal",
"version": "EN v36",
- "updatedAt": "2025-09-25T11:13:44Z",
+ "updatedAt": "2025-09-25T08:59:53Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -2206,13 +9509,183 @@
"EN-v36-18002294267"
]
},
+ {
+ "slug": "keycloak-en-v36-18002294267-keycloak-sso-design-and-implementation",
+ "title": "Keycloak SSO Design and Implementation",
+ "description": "Keycloak SSO Design and Implementation — Keycloak (edition EN v36, release EN-v36-18002294267, available as HTML).",
+ "category": "Keycloak",
+ "version": "EN v36",
+ "updatedAt": "2025-09-25T08:59:49Z",
+ "collection": "Keycloak",
+ "collectionSlug": "keycloak",
+ "collectionLabel": "Keycloak",
+ "htmlUrl": "/docs/Keycloak/EN-v36-18002294267/Keycloak-SSO-Design-and-Implementation.html",
+ "language": "EN",
+ "variant": "EN-v36-18002294267",
+ "versionSlug": "en-v36-18002294267",
+ "tags": [
+ "EN",
+ "EN v36",
+ "Keycloak"
+ ],
+ "pathSegments": [
+ "Keycloak",
+ "EN-v36-18002294267"
+ ]
+ },
+ {
+ "slug": "techexploration-en-v36-18002294267-tech-exploration",
+ "title": "Tech Exploration",
+ "description": "Tech Exploration — Tech Exploration (edition EN v36, release EN-v36-18002294267, available as PDF and HTML).",
+ "category": "Tech Exploration",
+ "version": "EN v36",
+ "updatedAt": "2025-09-25T08:59:12Z",
+ "collection": "TechExploration",
+ "collectionSlug": "techexploration",
+ "collectionLabel": "Tech Exploration",
+ "pdfUrl": "/docs/TechExploration/EN-v36-18002294267/Tech-Exploration.pdf",
+ "htmlUrl": "/docs/TechExploration/EN-v36-18002294267/Tech-Exploration.html",
+ "language": "EN",
+ "variant": "EN-v36-18002294267",
+ "versionSlug": "en-v36-18002294267",
+ "tags": [
+ "EN",
+ "EN v36",
+ "Tech Exploration"
+ ],
+ "pathSegments": [
+ "TechExploration",
+ "EN-v36-18002294267"
+ ]
+ },
+ {
+ "slug": "the-indiedeveloper-fullstack-roadmap-cn-v36-18002294267-fullstack-roadmap-cn",
+ "title": "fullstack roadmap cn",
+ "description": "fullstack roadmap cn — The Indie Developer Fullstack Roadmap (edition CN v36, release CN-v36-18002294267, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "CN v36",
+ "updatedAt": "2025-09-25T08:59:09Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v36-18002294267/fullstack-roadmap-cn.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v36-18002294267/fullstack-roadmap-cn.html",
+ "language": "CN",
+ "variant": "CN-v36-18002294267",
+ "versionSlug": "cn-v36-18002294267",
+ "tags": [
+ "CN",
+ "CN v36",
+ "The Indie Developer Fullstack Roadmap"
+ ],
+ "pathSegments": [
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "CN-v36-18002294267"
+ ]
+ },
+ {
+ "slug": "landingzone-en-v36-18002294267-landing-zone-design-and-implementation",
+ "title": "Landing Zone Design and Implementation",
+ "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v36, release EN-v36-18002294267, available as PDF).",
+ "category": "Landing Zone",
+ "version": "EN v36",
+ "updatedAt": "2025-09-25T08:58:59Z",
+ "collection": "LandingZone",
+ "collectionSlug": "landingzone",
+ "collectionLabel": "Landing Zone",
+ "pdfUrl": "/docs/LandingZone/EN-v36-18002294267/Landing-Zone-Design-and-Implementation.pdf",
+ "language": "EN",
+ "variant": "EN-v36-18002294267",
+ "versionSlug": "en-v36-18002294267",
+ "tags": [
+ "EN",
+ "EN v36",
+ "Landing Zone"
+ ],
+ "pathSegments": [
+ "LandingZone",
+ "EN-v36-18002294267"
+ ]
+ },
+ {
+ "slug": "landingzone-en-v35-18002040798-landing-zone-design-and-implementation",
+ "title": "Landing Zone Design and Implementation",
+ "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v35, release EN-v35-18002040798, available as PDF).",
+ "category": "Landing Zone",
+ "version": "EN v35",
+ "updatedAt": "2025-09-25T08:49:04Z",
+ "collection": "LandingZone",
+ "collectionSlug": "landingzone",
+ "collectionLabel": "Landing Zone",
+ "pdfUrl": "/docs/LandingZone/EN-v35-18002040798/Landing-Zone-Design-and-Implementation.pdf",
+ "language": "EN",
+ "variant": "EN-v35-18002040798",
+ "versionSlug": "en-v35-18002040798",
+ "tags": [
+ "EN",
+ "EN v35",
+ "Landing Zone"
+ ],
+ "pathSegments": [
+ "LandingZone",
+ "EN-v35-18002040798"
+ ]
+ },
+ {
+ "slug": "keycloak-en-v35-18002040798-keycloak-sso-design-and-implementation",
+ "title": "Keycloak SSO Design and Implementation",
+ "description": "Keycloak SSO Design and Implementation — Keycloak (edition EN v35, release EN-v35-18002040798, available as HTML).",
+ "category": "Keycloak",
+ "version": "EN v35",
+ "updatedAt": "2025-09-25T08:48:51Z",
+ "collection": "Keycloak",
+ "collectionSlug": "keycloak",
+ "collectionLabel": "Keycloak",
+ "htmlUrl": "/docs/Keycloak/EN-v35-18002040798/Keycloak-SSO-Design-and-Implementation.html",
+ "language": "EN",
+ "variant": "EN-v35-18002040798",
+ "versionSlug": "en-v35-18002040798",
+ "tags": [
+ "EN",
+ "EN v35",
+ "Keycloak"
+ ],
+ "pathSegments": [
+ "Keycloak",
+ "EN-v35-18002040798"
+ ]
+ },
+ {
+ "slug": "landingzone-en-v34-18001960544-landing-zone-design-and-implementation",
+ "title": "Landing Zone Design and Implementation",
+ "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v34, release EN-v34-18001960544, available as PDF).",
+ "category": "Landing Zone",
+ "version": "EN v34",
+ "updatedAt": "2025-09-25T08:46:33Z",
+ "collection": "LandingZone",
+ "collectionSlug": "landingzone",
+ "collectionLabel": "Landing Zone",
+ "pdfUrl": "/docs/LandingZone/EN-v34-18001960544/Landing-Zone-Design-and-Implementation.pdf",
+ "language": "EN",
+ "variant": "EN-v34-18001960544",
+ "versionSlug": "en-v34-18001960544",
+ "tags": [
+ "EN",
+ "EN v34",
+ "Landing Zone"
+ ],
+ "pathSegments": [
+ "LandingZone",
+ "EN-v34-18001960544"
+ ]
+ },
{
"slug": "personal-en-v34-18001960544-fullstack-language-core",
"title": "fullstack language core",
"description": "fullstack language core — Personal (edition EN v34, release EN-v34-18001960544, available as PDF and HTML).",
"category": "Personal",
"version": "EN v34",
- "updatedAt": "2025-09-25T11:13:14Z",
+ "updatedAt": "2025-09-25T08:46:25Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -2237,7 +9710,7 @@
"description": "cet 6 — Personal (edition EN v34, release EN-v34-18001960544, available as PDF and HTML).",
"category": "Personal",
"version": "EN v34",
- "updatedAt": "2025-09-25T11:13:01Z",
+ "updatedAt": "2025-09-25T08:46:25Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -2262,7 +9735,7 @@
"description": "Resume ZH — Personal (edition EN v34, release EN-v34-18001960544, available as PDF and HTML).",
"category": "Personal",
"version": "EN v34",
- "updatedAt": "2025-09-25T11:09:05Z",
+ "updatedAt": "2025-09-25T08:46:25Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -2287,7 +9760,7 @@
"description": "Resume EN — Personal (edition EN v34, release EN-v34-18001960544, available as PDF and HTML).",
"category": "Personal",
"version": "EN v34",
- "updatedAt": "2025-09-25T11:08:50Z",
+ "updatedAt": "2025-09-25T08:46:25Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -2312,7 +9785,7 @@
"description": "Resume Dev Ops EN — Personal (edition EN v34, release EN-v34-18001960544, available as PDF and HTML).",
"category": "Personal",
"version": "EN v34",
- "updatedAt": "2025-09-25T11:08:42Z",
+ "updatedAt": "2025-09-25T08:46:25Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -2337,7 +9810,7 @@
"description": "Resume Dev OPS ZH — Personal (edition EN v34, release EN-v34-18001960544, available as PDF and HTML).",
"category": "Personal",
"version": "EN v34",
- "updatedAt": "2025-09-25T11:08:38Z",
+ "updatedAt": "2025-09-25T08:46:25Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -2362,7 +9835,7 @@
"description": "README — Personal (edition EN v34, release EN-v34-18001960544, available as PDF and HTML).",
"category": "Personal",
"version": "EN v34",
- "updatedAt": "2025-09-25T11:08:26Z",
+ "updatedAt": "2025-09-25T08:46:25Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -2387,7 +9860,7 @@
"description": "CV ZH — Personal (edition EN v34, release EN-v34-18001960544, available as PDF and HTML).",
"category": "Personal",
"version": "EN v34",
- "updatedAt": "2025-09-25T11:08:24Z",
+ "updatedAt": "2025-09-25T08:46:25Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -2412,7 +9885,7 @@
"description": "CV EN — Personal (edition EN v34, release EN-v34-18001960544, available as PDF and HTML).",
"category": "Personal",
"version": "EN v34",
- "updatedAt": "2025-09-25T11:08:12Z",
+ "updatedAt": "2025-09-25T08:46:25Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -2437,7 +9910,7 @@
"description": "CV AI Dev ZH — Personal (edition EN v34, release EN-v34-18001960544, available as PDF and HTML).",
"category": "Personal",
"version": "EN v34",
- "updatedAt": "2025-09-25T11:08:07Z",
+ "updatedAt": "2025-09-25T08:46:24Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -2462,7 +9935,7 @@
"description": "CV AI Dev EN — Personal (edition EN v34, release EN-v34-18001960544, available as PDF and HTML).",
"category": "Personal",
"version": "EN v34",
- "updatedAt": "2025-09-25T11:07:53Z",
+ "updatedAt": "2025-09-25T08:46:24Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -2487,7 +9960,7 @@
"description": "Active Balance Plan — Personal (edition EN v34, release EN-v34-18001960544, available as PDF and HTML).",
"category": "Personal",
"version": "EN v34",
- "updatedAt": "2025-09-25T11:07:48Z",
+ "updatedAt": "2025-09-25T08:46:24Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -2507,28 +9980,102 @@
]
},
{
- "slug": "personal-en-v33-17996525102-cet-6",
- "title": "cet 6",
- "description": "cet 6 — Personal (edition EN v33, release EN-v33-17996525102, available as PDF and HTML).",
- "category": "Personal",
- "version": "EN v33",
- "updatedAt": "2025-09-25T11:07:42Z",
- "collection": "Personal",
- "collectionSlug": "personal",
- "collectionLabel": "Personal",
- "pdfUrl": "/docs/Personal/EN-v33-17996525102/cet-6.pdf",
- "htmlUrl": "/docs/Personal/EN-v33-17996525102/cet-6.html",
+ "slug": "keycloak-en-v34-18001960544-keycloak-sso-design-and-implementation",
+ "title": "Keycloak SSO Design and Implementation",
+ "description": "Keycloak SSO Design and Implementation — Keycloak (edition EN v34, release EN-v34-18001960544, available as HTML).",
+ "category": "Keycloak",
+ "version": "EN v34",
+ "updatedAt": "2025-09-25T08:45:53Z",
+ "collection": "Keycloak",
+ "collectionSlug": "keycloak",
+ "collectionLabel": "Keycloak",
+ "htmlUrl": "/docs/Keycloak/EN-v34-18001960544/Keycloak-SSO-Design-and-Implementation.html",
"language": "EN",
- "variant": "EN-v33-17996525102",
- "versionSlug": "en-v33-17996525102",
+ "variant": "EN-v34-18001960544",
+ "versionSlug": "en-v34-18001960544",
"tags": [
"EN",
- "EN v33",
- "Personal"
+ "EN v34",
+ "Keycloak"
],
"pathSegments": [
- "Personal",
- "EN-v33-17996525102"
+ "Keycloak",
+ "EN-v34-18001960544"
+ ]
+ },
+ {
+ "slug": "the-indiedeveloper-fullstack-roadmap-en-v34-18001960544-fullstack-roadmap-en",
+ "title": "fullstack roadmap en",
+ "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v34, release EN-v34-18001960544, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "EN v34",
+ "updatedAt": "2025-09-25T08:45:32Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v34-18001960544/fullstack-roadmap-en.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v34-18001960544/fullstack-roadmap-en.html",
+ "language": "EN",
+ "variant": "EN-v34-18001960544",
+ "versionSlug": "en-v34-18001960544",
+ "tags": [
+ "EN",
+ "EN v34",
+ "The Indie Developer Fullstack Roadmap"
+ ],
+ "pathSegments": [
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "EN-v34-18001960544"
+ ]
+ },
+ {
+ "slug": "the-indiedeveloper-fullstack-roadmap-cn-v34-18001960544-fullstack-roadmap-cn",
+ "title": "fullstack roadmap cn",
+ "description": "fullstack roadmap cn — The Indie Developer Fullstack Roadmap (edition CN v34, release CN-v34-18001960544, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "CN v34",
+ "updatedAt": "2025-09-25T08:45:32Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v34-18001960544/fullstack-roadmap-cn.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v34-18001960544/fullstack-roadmap-cn.html",
+ "language": "CN",
+ "variant": "CN-v34-18001960544",
+ "versionSlug": "cn-v34-18001960544",
+ "tags": [
+ "CN",
+ "CN v34",
+ "The Indie Developer Fullstack Roadmap"
+ ],
+ "pathSegments": [
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "CN-v34-18001960544"
+ ]
+ },
+ {
+ "slug": "techexploration-en-v34-18001960544-tech-exploration",
+ "title": "Tech Exploration",
+ "description": "Tech Exploration — Tech Exploration (edition EN v34, release EN-v34-18001960544, available as PDF and HTML).",
+ "category": "Tech Exploration",
+ "version": "EN v34",
+ "updatedAt": "2025-09-25T08:45:31Z",
+ "collection": "TechExploration",
+ "collectionSlug": "techexploration",
+ "collectionLabel": "Tech Exploration",
+ "pdfUrl": "/docs/TechExploration/EN-v34-18001960544/Tech-Exploration.pdf",
+ "htmlUrl": "/docs/TechExploration/EN-v34-18001960544/Tech-Exploration.html",
+ "language": "EN",
+ "variant": "EN-v34-18001960544",
+ "versionSlug": "en-v34-18001960544",
+ "tags": [
+ "EN",
+ "EN v34",
+ "Tech Exploration"
+ ],
+ "pathSegments": [
+ "TechExploration",
+ "EN-v34-18001960544"
]
},
{
@@ -2537,7 +10084,7 @@
"description": "fullstack language core — Personal (edition EN v33, release EN-v33-17996525102, available as PDF and HTML).",
"category": "Personal",
"version": "EN v33",
- "updatedAt": "2025-09-25T11:07:42Z",
+ "updatedAt": "2025-09-25T04:08:06Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -2557,17 +10104,17 @@
]
},
{
- "slug": "personal-en-v33-17996525102-cv-ai-dev-zh",
- "title": "CV AI Dev ZH",
- "description": "CV AI Dev ZH — Personal (edition EN v33, release EN-v33-17996525102, available as PDF and HTML).",
+ "slug": "personal-en-v33-17996525102-cet-6",
+ "title": "cet 6",
+ "description": "cet 6 — Personal (edition EN v33, release EN-v33-17996525102, available as PDF and HTML).",
"category": "Personal",
"version": "EN v33",
- "updatedAt": "2025-09-25T11:07:41Z",
+ "updatedAt": "2025-09-25T04:08:06Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
- "pdfUrl": "/docs/Personal/EN-v33-17996525102/CV-AI-Dev-ZH.pdf",
- "htmlUrl": "/docs/Personal/EN-v33-17996525102/CV-AI-Dev-ZH.html",
+ "pdfUrl": "/docs/Personal/EN-v33-17996525102/cet-6.pdf",
+ "htmlUrl": "/docs/Personal/EN-v33-17996525102/cet-6.html",
"language": "EN",
"variant": "EN-v33-17996525102",
"versionSlug": "en-v33-17996525102",
@@ -2582,17 +10129,17 @@
]
},
{
- "slug": "personal-en-v33-17996525102-cv-en",
- "title": "CV EN",
- "description": "CV EN — Personal (edition EN v33, release EN-v33-17996525102, available as PDF and HTML).",
+ "slug": "personal-en-v33-17996525102-resume-zh",
+ "title": "Resume ZH",
+ "description": "Resume ZH — Personal (edition EN v33, release EN-v33-17996525102, available as PDF and HTML).",
"category": "Personal",
"version": "EN v33",
- "updatedAt": "2025-09-25T11:07:41Z",
+ "updatedAt": "2025-09-25T04:08:06Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
- "pdfUrl": "/docs/Personal/EN-v33-17996525102/CV-EN.pdf",
- "htmlUrl": "/docs/Personal/EN-v33-17996525102/CV-EN.html",
+ "pdfUrl": "/docs/Personal/EN-v33-17996525102/Resume-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v33-17996525102/Resume-ZH.html",
"language": "EN",
"variant": "EN-v33-17996525102",
"versionSlug": "en-v33-17996525102",
@@ -2607,42 +10154,17 @@
]
},
{
- "slug": "personal-en-v33-17996525102-cv-zh",
- "title": "CV ZH",
- "description": "CV ZH — Personal (edition EN v33, release EN-v33-17996525102, available as PDF and HTML).",
+ "slug": "personal-en-v33-17996525102-resume-en",
+ "title": "Resume EN",
+ "description": "Resume EN — Personal (edition EN v33, release EN-v33-17996525102, available as PDF and HTML).",
"category": "Personal",
"version": "EN v33",
- "updatedAt": "2025-09-25T11:07:41Z",
+ "updatedAt": "2025-09-25T04:08:06Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
- "pdfUrl": "/docs/Personal/EN-v33-17996525102/CV-ZH.pdf",
- "htmlUrl": "/docs/Personal/EN-v33-17996525102/CV-ZH.html",
- "language": "EN",
- "variant": "EN-v33-17996525102",
- "versionSlug": "en-v33-17996525102",
- "tags": [
- "EN",
- "EN v33",
- "Personal"
- ],
- "pathSegments": [
- "Personal",
- "EN-v33-17996525102"
- ]
- },
- {
- "slug": "personal-en-v33-17996525102-readme",
- "title": "README",
- "description": "README — Personal (edition EN v33, release EN-v33-17996525102, available as PDF and HTML).",
- "category": "Personal",
- "version": "EN v33",
- "updatedAt": "2025-09-25T11:07:41Z",
- "collection": "Personal",
- "collectionSlug": "personal",
- "collectionLabel": "Personal",
- "pdfUrl": "/docs/Personal/EN-v33-17996525102/README.pdf",
- "htmlUrl": "/docs/Personal/EN-v33-17996525102/README.html",
+ "pdfUrl": "/docs/Personal/EN-v33-17996525102/Resume-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v33-17996525102/Resume-EN.html",
"language": "EN",
"variant": "EN-v33-17996525102",
"versionSlug": "en-v33-17996525102",
@@ -2662,7 +10184,7 @@
"description": "Resume Dev Ops EN — Personal (edition EN v33, release EN-v33-17996525102, available as PDF and HTML).",
"category": "Personal",
"version": "EN v33",
- "updatedAt": "2025-09-25T11:07:41Z",
+ "updatedAt": "2025-09-25T04:08:06Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -2687,7 +10209,7 @@
"description": "Resume Dev OPS ZH — Personal (edition EN v33, release EN-v33-17996525102, available as PDF and HTML).",
"category": "Personal",
"version": "EN v33",
- "updatedAt": "2025-09-25T11:07:41Z",
+ "updatedAt": "2025-09-25T04:08:06Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -2707,17 +10229,17 @@
]
},
{
- "slug": "personal-en-v33-17996525102-resume-en",
- "title": "Resume EN",
- "description": "Resume EN — Personal (edition EN v33, release EN-v33-17996525102, available as PDF and HTML).",
+ "slug": "personal-en-v33-17996525102-readme",
+ "title": "README",
+ "description": "README — Personal (edition EN v33, release EN-v33-17996525102, available as PDF and HTML).",
"category": "Personal",
"version": "EN v33",
- "updatedAt": "2025-09-25T11:07:41Z",
+ "updatedAt": "2025-09-25T04:08:06Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
- "pdfUrl": "/docs/Personal/EN-v33-17996525102/Resume-EN.pdf",
- "htmlUrl": "/docs/Personal/EN-v33-17996525102/Resume-EN.html",
+ "pdfUrl": "/docs/Personal/EN-v33-17996525102/README.pdf",
+ "htmlUrl": "/docs/Personal/EN-v33-17996525102/README.html",
"language": "EN",
"variant": "EN-v33-17996525102",
"versionSlug": "en-v33-17996525102",
@@ -2732,17 +10254,17 @@
]
},
{
- "slug": "personal-en-v33-17996525102-resume-zh",
- "title": "Resume ZH",
- "description": "Resume ZH — Personal (edition EN v33, release EN-v33-17996525102, available as PDF and HTML).",
+ "slug": "personal-en-v33-17996525102-cv-zh",
+ "title": "CV ZH",
+ "description": "CV ZH — Personal (edition EN v33, release EN-v33-17996525102, available as PDF and HTML).",
"category": "Personal",
"version": "EN v33",
- "updatedAt": "2025-09-25T11:07:41Z",
+ "updatedAt": "2025-09-25T04:08:05Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
- "pdfUrl": "/docs/Personal/EN-v33-17996525102/Resume-ZH.pdf",
- "htmlUrl": "/docs/Personal/EN-v33-17996525102/Resume-ZH.html",
+ "pdfUrl": "/docs/Personal/EN-v33-17996525102/CV-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v33-17996525102/CV-ZH.html",
"language": "EN",
"variant": "EN-v33-17996525102",
"versionSlug": "en-v33-17996525102",
@@ -2757,42 +10279,42 @@
]
},
{
- "slug": "observability-cn-v40-18004678416-observability-design-and-implementation",
- "title": "Observability Design and Implementation",
- "description": "Observability Design and Implementation — Observability (edition CN v40, release CN-v40-18004678416, available as PDF and HTML).",
- "category": "Observability",
- "version": "CN v40",
- "updatedAt": "2025-09-25T11:07:40Z",
- "collection": "Observability",
- "collectionSlug": "observability",
- "collectionLabel": "Observability",
- "pdfUrl": "/docs/Observability/CN-v40-18004678416/Observability-Design-and-Implementation.pdf",
- "htmlUrl": "/docs/Observability/CN-v40-18004678416/Observability-Design-and-Implementation.html",
- "language": "CN",
- "variant": "CN-v40-18004678416",
- "versionSlug": "cn-v40-18004678416",
- "tags": [
- "CN",
- "CN v40",
- "Observability"
- ],
- "pathSegments": [
- "Observability",
- "CN-v40-18004678416"
- ]
- },
- {
- "slug": "personal-en-v33-17996525102-activebalance-plan",
- "title": "Active Balance Plan",
- "description": "Active Balance Plan — Personal (edition EN v33, release EN-v33-17996525102, available as PDF and HTML).",
+ "slug": "personal-en-v33-17996525102-cv-en",
+ "title": "CV EN",
+ "description": "CV EN — Personal (edition EN v33, release EN-v33-17996525102, available as PDF and HTML).",
"category": "Personal",
"version": "EN v33",
- "updatedAt": "2025-09-25T11:07:40Z",
+ "updatedAt": "2025-09-25T04:08:05Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
- "pdfUrl": "/docs/Personal/EN-v33-17996525102/ActiveBalance-Plan.pdf",
- "htmlUrl": "/docs/Personal/EN-v33-17996525102/ActiveBalance-Plan.html",
+ "pdfUrl": "/docs/Personal/EN-v33-17996525102/CV-EN.pdf",
+ "htmlUrl": "/docs/Personal/EN-v33-17996525102/CV-EN.html",
+ "language": "EN",
+ "variant": "EN-v33-17996525102",
+ "versionSlug": "en-v33-17996525102",
+ "tags": [
+ "EN",
+ "EN v33",
+ "Personal"
+ ],
+ "pathSegments": [
+ "Personal",
+ "EN-v33-17996525102"
+ ]
+ },
+ {
+ "slug": "personal-en-v33-17996525102-cv-ai-dev-zh",
+ "title": "CV AI Dev ZH",
+ "description": "CV AI Dev ZH — Personal (edition EN v33, release EN-v33-17996525102, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v33",
+ "updatedAt": "2025-09-25T04:08:05Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v33-17996525102/CV-AI-Dev-ZH.pdf",
+ "htmlUrl": "/docs/Personal/EN-v33-17996525102/CV-AI-Dev-ZH.html",
"language": "EN",
"variant": "EN-v33-17996525102",
"versionSlug": "en-v33-17996525102",
@@ -2812,7 +10334,7 @@
"description": "CV AI Dev EN — Personal (edition EN v33, release EN-v33-17996525102, available as PDF and HTML).",
"category": "Personal",
"version": "EN v33",
- "updatedAt": "2025-09-25T11:07:40Z",
+ "updatedAt": "2025-09-25T04:08:05Z",
"collection": "Personal",
"collectionSlug": "personal",
"collectionLabel": "Personal",
@@ -2832,78 +10354,77 @@
]
},
{
- "slug": "observability-cn-v39-18004672680-observability-design-and-implementation",
- "title": "Observability Design and Implementation",
- "description": "Observability Design and Implementation — Observability (edition CN v39, release CN-v39-18004672680, available as PDF and HTML).",
- "category": "Observability",
- "version": "CN v39",
- "updatedAt": "2025-09-25T11:04:44Z",
- "collection": "Observability",
- "collectionSlug": "observability",
- "collectionLabel": "Observability",
- "pdfUrl": "/docs/Observability/CN-v39-18004672680/Observability-Design-and-Implementation.pdf",
- "htmlUrl": "/docs/Observability/CN-v39-18004672680/Observability-Design-and-Implementation.html",
- "language": "CN",
- "variant": "CN-v39-18004672680",
- "versionSlug": "cn-v39-18004672680",
+ "slug": "personal-en-v33-17996525102-activebalance-plan",
+ "title": "Active Balance Plan",
+ "description": "Active Balance Plan — Personal (edition EN v33, release EN-v33-17996525102, available as PDF and HTML).",
+ "category": "Personal",
+ "version": "EN v33",
+ "updatedAt": "2025-09-25T04:08:05Z",
+ "collection": "Personal",
+ "collectionSlug": "personal",
+ "collectionLabel": "Personal",
+ "pdfUrl": "/docs/Personal/EN-v33-17996525102/ActiveBalance-Plan.pdf",
+ "htmlUrl": "/docs/Personal/EN-v33-17996525102/ActiveBalance-Plan.html",
+ "language": "EN",
+ "variant": "EN-v33-17996525102",
+ "versionSlug": "en-v33-17996525102",
"tags": [
- "CN",
- "CN v39",
- "Observability"
+ "EN",
+ "EN v33",
+ "Personal"
],
"pathSegments": [
- "Observability",
- "CN-v39-18004672680"
+ "Personal",
+ "EN-v33-17996525102"
]
},
{
- "slug": "observability-cn-v37-18002553627-observability-design-and-implementation",
- "title": "Observability Design and Implementation",
- "description": "Observability Design and Implementation — Observability (edition CN v37, release CN-v37-18002553627, available as PDF and HTML).",
- "category": "Observability",
- "version": "CN v37",
- "updatedAt": "2025-09-25T11:02:40Z",
- "collection": "Observability",
- "collectionSlug": "observability",
- "collectionLabel": "Observability",
- "pdfUrl": "/docs/Observability/CN-v37-18002553627/Observability-Design-and-Implementation.pdf",
- "htmlUrl": "/docs/Observability/CN-v37-18002553627/Observability-Design-and-Implementation.html",
- "language": "CN",
- "variant": "CN-v37-18002553627",
- "versionSlug": "cn-v37-18002553627",
+ "slug": "landingzone-en-v33-17996525102-landing-zone-design-and-implementation",
+ "title": "Landing Zone Design and Implementation",
+ "description": "Landing Zone Design and Implementation — Landing Zone (edition EN v33, release EN-v33-17996525102, available as PDF).",
+ "category": "Landing Zone",
+ "version": "EN v33",
+ "updatedAt": "2025-09-25T04:07:59Z",
+ "collection": "LandingZone",
+ "collectionSlug": "landingzone",
+ "collectionLabel": "Landing Zone",
+ "pdfUrl": "/docs/LandingZone/EN-v33-17996525102/Landing-Zone-Design-and-Implementation.pdf",
+ "language": "EN",
+ "variant": "EN-v33-17996525102",
+ "versionSlug": "en-v33-17996525102",
"tags": [
- "CN",
- "CN v37",
- "Observability"
+ "EN",
+ "EN v33",
+ "Landing Zone"
],
"pathSegments": [
- "Observability",
- "CN-v37-18002553627"
+ "LandingZone",
+ "EN-v33-17996525102"
]
},
{
- "slug": "observability-cn-v36-18002294267-observability-design-and-implementation",
- "title": "Observability Design and Implementation",
- "description": "Observability Design and Implementation — Observability (edition CN v36, release CN-v36-18002294267, available as PDF and HTML).",
- "category": "Observability",
- "version": "CN v36",
- "updatedAt": "2025-09-25T10:58:38Z",
- "collection": "Observability",
- "collectionSlug": "observability",
- "collectionLabel": "Observability",
- "pdfUrl": "/docs/Observability/CN-v36-18002294267/Observability-Design-and-Implementation.pdf",
- "htmlUrl": "/docs/Observability/CN-v36-18002294267/Observability-Design-and-Implementation.html",
- "language": "CN",
- "variant": "CN-v36-18002294267",
- "versionSlug": "cn-v36-18002294267",
+ "slug": "techexploration-en-v33-17996525102-tech-exploration",
+ "title": "Tech Exploration",
+ "description": "Tech Exploration — Tech Exploration (edition EN v33, release EN-v33-17996525102, available as PDF and HTML).",
+ "category": "Tech Exploration",
+ "version": "EN v33",
+ "updatedAt": "2025-09-25T04:07:43Z",
+ "collection": "TechExploration",
+ "collectionSlug": "techexploration",
+ "collectionLabel": "Tech Exploration",
+ "pdfUrl": "/docs/TechExploration/EN-v33-17996525102/Tech-Exploration.pdf",
+ "htmlUrl": "/docs/TechExploration/EN-v33-17996525102/Tech-Exploration.html",
+ "language": "EN",
+ "variant": "EN-v33-17996525102",
+ "versionSlug": "en-v33-17996525102",
"tags": [
- "CN",
- "CN v36",
- "Observability"
+ "EN",
+ "EN v33",
+ "Tech Exploration"
],
"pathSegments": [
- "Observability",
- "CN-v36-18002294267"
+ "TechExploration",
+ "EN-v33-17996525102"
]
},
{
@@ -2912,7 +10433,7 @@
"description": "Observability Design and Implementation — Observability (edition CN v33, release CN-v33-17996525102, available as PDF and HTML).",
"category": "Observability",
"version": "CN v33",
- "updatedAt": "2025-09-25T10:56:03Z",
+ "updatedAt": "2025-09-25T04:07:19Z",
"collection": "Observability",
"collectionSlug": "observability",
"collectionLabel": "Observability",
@@ -2930,5 +10451,104 @@
"Observability",
"CN-v33-17996525102"
]
+ },
+ {
+ "slug": "linux-k8s-ops-cn-v33-17996525102-linux-k8s-ops-guide",
+ "title": "Linux K8 S OPS Guide",
+ "description": "Linux K8 S OPS Guide — Linux K8 S OPS (edition CN v33, release CN-v33-17996525102, available as PDF and HTML).",
+ "category": "Linux K8 S OPS",
+ "version": "CN v33",
+ "updatedAt": "2025-09-25T04:06:40Z",
+ "collection": "Linux-K8S-OPS",
+ "collectionSlug": "linux-k8s-ops",
+ "collectionLabel": "Linux K8 S OPS",
+ "pdfUrl": "/docs/Linux-K8S-OPS/CN-v33-17996525102/Linux-K8S-OPS-Guide.pdf",
+ "htmlUrl": "/docs/Linux-K8S-OPS/CN-v33-17996525102/Linux-K8S-OPS-Guide.html",
+ "language": "CN",
+ "variant": "CN-v33-17996525102",
+ "versionSlug": "cn-v33-17996525102",
+ "tags": [
+ "CN",
+ "CN v33",
+ "Linux K8 S OPS"
+ ],
+ "pathSegments": [
+ "Linux-K8S-OPS",
+ "CN-v33-17996525102"
+ ]
+ },
+ {
+ "slug": "the-indiedeveloper-fullstack-roadmap-en-v33-17996525102-fullstack-roadmap-en",
+ "title": "fullstack roadmap en",
+ "description": "fullstack roadmap en — The Indie Developer Fullstack Roadmap (edition EN v33, release EN-v33-17996525102, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "EN v33",
+ "updatedAt": "2025-09-25T04:06:29Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v33-17996525102/fullstack-roadmap-en.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/EN-v33-17996525102/fullstack-roadmap-en.html",
+ "language": "EN",
+ "variant": "EN-v33-17996525102",
+ "versionSlug": "en-v33-17996525102",
+ "tags": [
+ "EN",
+ "EN v33",
+ "The Indie Developer Fullstack Roadmap"
+ ],
+ "pathSegments": [
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "EN-v33-17996525102"
+ ]
+ },
+ {
+ "slug": "the-indiedeveloper-fullstack-roadmap-cn-v33-17996525102-fullstack-roadmap-cn",
+ "title": "fullstack roadmap cn",
+ "description": "fullstack roadmap cn — The Indie Developer Fullstack Roadmap (edition CN v33, release CN-v33-17996525102, available as PDF and HTML).",
+ "category": "The Indie Developer Fullstack Roadmap",
+ "version": "CN v33",
+ "updatedAt": "2025-09-25T04:06:19Z",
+ "collection": "The-IndieDeveloper-Fullstack-Roadmap",
+ "collectionSlug": "the-indiedeveloper-fullstack-roadmap",
+ "collectionLabel": "The Indie Developer Fullstack Roadmap",
+ "pdfUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v33-17996525102/fullstack-roadmap-cn.pdf",
+ "htmlUrl": "/docs/The-IndieDeveloper-Fullstack-Roadmap/CN-v33-17996525102/fullstack-roadmap-cn.html",
+ "language": "CN",
+ "variant": "CN-v33-17996525102",
+ "versionSlug": "cn-v33-17996525102",
+ "tags": [
+ "CN",
+ "CN v33",
+ "The Indie Developer Fullstack Roadmap"
+ ],
+ "pathSegments": [
+ "The-IndieDeveloper-Fullstack-Roadmap",
+ "CN-v33-17996525102"
+ ]
+ },
+ {
+ "slug": "keycloak-en-v33-17996525102-keycloak-sso-design-and-implementation",
+ "title": "Keycloak SSO Design and Implementation",
+ "description": "Keycloak SSO Design and Implementation — Keycloak (edition EN v33, release EN-v33-17996525102, available as HTML).",
+ "category": "Keycloak",
+ "version": "EN v33",
+ "updatedAt": "2025-09-25T04:06:10Z",
+ "collection": "Keycloak",
+ "collectionSlug": "keycloak",
+ "collectionLabel": "Keycloak",
+ "htmlUrl": "/docs/Keycloak/EN-v33-17996525102/Keycloak-SSO-Design-and-Implementation.html",
+ "language": "EN",
+ "variant": "EN-v33-17996525102",
+ "versionSlug": "en-v33-17996525102",
+ "tags": [
+ "EN",
+ "EN v33",
+ "Keycloak"
+ ],
+ "pathSegments": [
+ "Keycloak",
+ "EN-v33-17996525102"
+ ]
}
]
diff --git a/dashboard/src/app/[slug]/page.tsx b/dashboard/src/app/[slug]/page.tsx
index e23d0b1..2454f85 100644
--- a/dashboard/src/app/[slug]/page.tsx
+++ b/dashboard/src/app/[slug]/page.tsx
@@ -2,7 +2,7 @@ import type { Metadata } from 'next'
import { notFound } from 'next/navigation'
import Client from './Client'
-import { PRODUCT_MAP, getAllSlugs } from '@src/products/registry'
+import { PRODUCT_MAP, getAllSlugs } from '../../../../modules/products/registry'
type PageProps = {
params: Promise<{
diff --git a/dashboard/src/app/cloud_iac/[provider]/[service]/page.tsx b/dashboard/src/app/cloud_iac/[provider]/[service]/page.tsx
index 1b4275d..f5aa06b 100644
--- a/dashboard/src/app/cloud_iac/[provider]/[service]/page.tsx
+++ b/dashboard/src/app/cloud_iac/[provider]/[service]/page.tsx
@@ -7,7 +7,7 @@ import ServiceDetailView from '@components/iac/ServiceDetailView'
import { CATALOG, PROVIDERS } from '@lib/iac/catalog'
import type { CatalogItem, ProviderKey } from '@lib/iac/types'
-import cloudIacIndex from '../../../../public/_build/cloud_iac_index.json'
+import cloudIacIndex from '../../../../../public/_build/cloud_iac_index.json'
import { isFeatureEnabled } from '@lib/featureToggles'
type PageParams = {
diff --git a/dashboard/src/app/cloud_iac/[provider]/page.tsx b/dashboard/src/app/cloud_iac/[provider]/page.tsx
index 64b1a31..641bef3 100644
--- a/dashboard/src/app/cloud_iac/[provider]/page.tsx
+++ b/dashboard/src/app/cloud_iac/[provider]/page.tsx
@@ -7,7 +7,7 @@ import CloudIacCatalog from '@components/iac/CloudIacCatalog'
import { CATALOG, PROVIDERS } from '@lib/iac/catalog'
import type { ProviderKey } from '@lib/iac/types'
-import cloudIacIndex from '../../../public/_build/cloud_iac_index.json'
+import cloudIacIndex from '../../../../../public/_build/cloud_iac_index.json'
import { isFeatureEnabled } from '@lib/featureToggles'
type PageParams = {
diff --git a/dashboard/src/app/docs/resources.server.ts b/dashboard/src/app/docs/resources.server.ts
index 73a1a0f..07f1dec 100644
--- a/dashboard/src/app/docs/resources.server.ts
+++ b/dashboard/src/app/docs/resources.server.ts
@@ -1,8 +1,8 @@
import 'server-only'
import { isFeatureEnabled } from '@lib/featureToggles'
-import docsManifest from '../../public/dl-index/docs-manifest.json'
-import fallbackDocsIndex from '../../public/_build/docs_index.json'
+import docsManifest from '../../../public/dl-index/docs-manifest.json'
+import fallbackDocsIndex from '../../../public/_build/docs_index.json'
import { buildAbsoluteDocUrl } from './utils'
import type { DocCollection, DocResource, DocVersionOption } from './types'
diff --git a/dashboard/src/modules/extensions/builtin/user-center/account/ThemePreferenceCard.tsx b/dashboard/src/modules/extensions/builtin/user-center/account/ThemePreferenceCard.tsx
index 14c41f1..d145a86 100644
--- a/dashboard/src/modules/extensions/builtin/user-center/account/ThemePreferenceCard.tsx
+++ b/dashboard/src/modules/extensions/builtin/user-center/account/ThemePreferenceCard.tsx
@@ -3,8 +3,8 @@
import { useMemo } from 'react'
import Card from '../components/Card'
-import { darkTheme, lightTheme, useTheme } from '../../../../theme'
-import type { ThemeDefinition, ThemeName, ThemePreference } from '../../../../theme'
+import { darkTheme, lightTheme, useTheme } from '../routes/theme'
+import type { ThemeDefinition, ThemeName, ThemePreference } from '../routes/theme'
const THEME_OPTIONS: Array<{
value: ThemePreference
diff --git a/dashboard/tailwind.config.js b/dashboard/tailwind.config.js
index 3025c65..0b88aef 100644
--- a/dashboard/tailwind.config.js
+++ b/dashboard/tailwind.config.js
@@ -1,7 +1,7 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
- content: ['./app/**/*.{ts,tsx}', './components/**/*.{ts,tsx}'],
+ content: ['./src/**/*.{js,ts,jsx,tsx,mdx}', './app/**/*.{js,ts,jsx,tsx,mdx}', './components/**/*.{js,ts,jsx,tsx,mdx}'],
theme: {
extend: {
fontFamily: {