├── .browserslistrc ├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── README.md ├── index.html ├── jsconfig.json ├── package.json ├── pnpm-lock.yaml ├── public ├── favicon.ico └── feeds.json ├── src ├── App.vue ├── components │ └── HelloWorld.vue ├── layouts │ └── default │ │ └── Default.vue ├── main.js ├── plugins │ ├── index.js │ └── vuetify.js ├── router │ └── index.js ├── store │ ├── app.js │ └── index.js ├── styles │ └── settings.scss ├── utils │ ├── feed2follow.js │ └── opmlUtils.js └── views │ ├── Home.vue │ └── User.vue └── vite.config.js /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | not ie 11 5 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | [*.{js,jsx,ts,tsx,vue}] 2 | indent_style = space 3 | indent_size = 2 4 | trim_trailing_whitespace = true 5 | insert_final_newline = true 6 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | env: { 4 | node: true, 5 | }, 6 | extends: [ 7 | 'plugin:vue/vue3-essential', 8 | 'eslint:recommended', 9 | ], 10 | } 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /dist 4 | 5 | # local env files 6 | .env.local 7 | .env.*.local 8 | 9 | # Log files 10 | npm-debug.log* 11 | yarn-debug.log* 12 | yarn-error.log* 13 | pnpm-debug.log* 14 | 15 | # Editor directories and files 16 | .idea 17 | .vscode 18 | *.suo 19 | *.ntvs* 20 | *.njsproj 21 | *.sln 22 | *.sw? 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # top-rss-hub 2 | 3 | ## Project setup 4 | 5 | ``` 6 | # yarn 7 | yarn 8 | 9 | # npm 10 | npm install 11 | 12 | # pnpm 13 | pnpm install 14 | 15 | # bun 16 | bun install 17 | ``` 18 | 19 | ### Compiles and hot-reloads for development 20 | 21 | ``` 22 | # yarn 23 | yarn dev 24 | 25 | # npm 26 | npm run dev 27 | 28 | # pnpm 29 | pnpm dev 30 | 31 | # bun 32 | bun run dev 33 | ``` 34 | 35 | ### Compiles and minifies for production 36 | 37 | ``` 38 | # yarn 39 | yarn build 40 | 41 | # npm 42 | npm run build 43 | 44 | # pnpm 45 | pnpm build 46 | 47 | # bun 48 | bun run build 49 | ``` 50 | 51 | ### Lints and fixes files 52 | 53 | ``` 54 | # yarn 55 | yarn lint 56 | 57 | # npm 58 | npm run lint 59 | 60 | # pnpm 61 | pnpm lint 62 | 63 | # bun 64 | bun run lint 65 | ``` 66 | 67 | ### Customize configuration 68 | 69 | See [Configuration Reference](https://vitejs.dev/config/). 70 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Top RSS Hub 9 | 10 | 11 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "module": "esnext", 5 | "baseUrl": "./", 6 | "moduleResolution": "node", 7 | "paths": { 8 | "@/*": [ 9 | "src/*" 10 | ] 11 | }, 12 | "lib": [ 13 | "esnext", 14 | "dom", 15 | "dom.iterable", 16 | "scripthost" 17 | ] 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "top-rss-hub", 3 | "version": "0.0.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "vite", 7 | "build": "vite build", 8 | "preview": "vite preview", 9 | "lint": "eslint . --fix --ignore-path .gitignore" 10 | }, 11 | "dependencies": { 12 | "@mdi/font": "7.0.96", 13 | "core-js": "^3.29.0", 14 | "pinia": "^2.0.0", 15 | "roboto-fontface": "*", 16 | "vue": "^3.2.0", 17 | "vue-router": "^4.0.0", 18 | "vuetify": "^3.0.0" 19 | }, 20 | "devDependencies": { 21 | "@vitejs/plugin-vue": "^4.0.0", 22 | "eslint": "^8.37.0", 23 | "eslint-plugin-vue": "^9.3.0", 24 | "sass": "^1.60.0", 25 | "unplugin-fonts": "^1.0.3", 26 | "vite": "^4.2.0", 27 | "vite-plugin-vuetify": "^1.0.0" 28 | } 29 | } -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: 5.4 2 | 3 | specifiers: 4 | '@mdi/font': 7.0.96 5 | '@vitejs/plugin-vue': ^4.0.0 6 | core-js: ^3.29.0 7 | eslint: ^8.37.0 8 | eslint-plugin-vue: ^9.3.0 9 | pinia: ^2.0.0 10 | roboto-fontface: '*' 11 | sass: ^1.60.0 12 | unplugin-fonts: ^1.0.3 13 | vite: ^4.2.0 14 | vite-plugin-vuetify: ^1.0.0 15 | vue: ^3.2.0 16 | vue-router: ^4.0.0 17 | vuetify: ^3.0.0 18 | 19 | dependencies: 20 | '@mdi/font': 7.0.96 21 | core-js: 3.38.1 22 | pinia: 2.2.2_vue@3.5.8 23 | roboto-fontface: 0.10.0 24 | vue: 3.5.8 25 | vue-router: 4.4.5_vue@3.5.8 26 | vuetify: 3.7.2_55qseij4q7uj7if5zkpsxgcsku 27 | 28 | devDependencies: 29 | '@vitejs/plugin-vue': 4.6.2_vite@4.5.5+vue@3.5.8 30 | eslint: 8.57.1 31 | eslint-plugin-vue: 9.28.0_eslint@8.57.1 32 | sass: 1.79.3 33 | unplugin-fonts: 1.1.1_vite@4.5.5 34 | vite: 4.5.5_sass@1.79.3 35 | vite-plugin-vuetify: 1.0.2_3s3sr5wu4eu6ymsc7r6ep7xhna 36 | 37 | packages: 38 | 39 | /@babel/helper-string-parser/7.24.8: 40 | resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==} 41 | engines: {node: '>=6.9.0'} 42 | 43 | /@babel/helper-validator-identifier/7.24.7: 44 | resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==} 45 | engines: {node: '>=6.9.0'} 46 | 47 | /@babel/parser/7.25.6: 48 | resolution: {integrity: sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==} 49 | engines: {node: '>=6.0.0'} 50 | hasBin: true 51 | dependencies: 52 | '@babel/types': 7.25.6 53 | 54 | /@babel/types/7.25.6: 55 | resolution: {integrity: sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==} 56 | engines: {node: '>=6.9.0'} 57 | dependencies: 58 | '@babel/helper-string-parser': 7.24.8 59 | '@babel/helper-validator-identifier': 7.24.7 60 | to-fast-properties: 2.0.0 61 | 62 | /@esbuild/android-arm/0.18.20: 63 | resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} 64 | engines: {node: '>=12'} 65 | cpu: [arm] 66 | os: [android] 67 | requiresBuild: true 68 | optional: true 69 | 70 | /@esbuild/android-arm64/0.18.20: 71 | resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} 72 | engines: {node: '>=12'} 73 | cpu: [arm64] 74 | os: [android] 75 | requiresBuild: true 76 | optional: true 77 | 78 | /@esbuild/android-x64/0.18.20: 79 | resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} 80 | engines: {node: '>=12'} 81 | cpu: [x64] 82 | os: [android] 83 | requiresBuild: true 84 | optional: true 85 | 86 | /@esbuild/darwin-arm64/0.18.20: 87 | resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} 88 | engines: {node: '>=12'} 89 | cpu: [arm64] 90 | os: [darwin] 91 | requiresBuild: true 92 | optional: true 93 | 94 | /@esbuild/darwin-x64/0.18.20: 95 | resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} 96 | engines: {node: '>=12'} 97 | cpu: [x64] 98 | os: [darwin] 99 | requiresBuild: true 100 | optional: true 101 | 102 | /@esbuild/freebsd-arm64/0.18.20: 103 | resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} 104 | engines: {node: '>=12'} 105 | cpu: [arm64] 106 | os: [freebsd] 107 | requiresBuild: true 108 | optional: true 109 | 110 | /@esbuild/freebsd-x64/0.18.20: 111 | resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} 112 | engines: {node: '>=12'} 113 | cpu: [x64] 114 | os: [freebsd] 115 | requiresBuild: true 116 | optional: true 117 | 118 | /@esbuild/linux-arm/0.18.20: 119 | resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} 120 | engines: {node: '>=12'} 121 | cpu: [arm] 122 | os: [linux] 123 | requiresBuild: true 124 | optional: true 125 | 126 | /@esbuild/linux-arm64/0.18.20: 127 | resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} 128 | engines: {node: '>=12'} 129 | cpu: [arm64] 130 | os: [linux] 131 | requiresBuild: true 132 | optional: true 133 | 134 | /@esbuild/linux-ia32/0.18.20: 135 | resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} 136 | engines: {node: '>=12'} 137 | cpu: [ia32] 138 | os: [linux] 139 | requiresBuild: true 140 | optional: true 141 | 142 | /@esbuild/linux-loong64/0.18.20: 143 | resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==} 144 | engines: {node: '>=12'} 145 | cpu: [loong64] 146 | os: [linux] 147 | requiresBuild: true 148 | optional: true 149 | 150 | /@esbuild/linux-mips64el/0.18.20: 151 | resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} 152 | engines: {node: '>=12'} 153 | cpu: [mips64el] 154 | os: [linux] 155 | requiresBuild: true 156 | optional: true 157 | 158 | /@esbuild/linux-ppc64/0.18.20: 159 | resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} 160 | engines: {node: '>=12'} 161 | cpu: [ppc64] 162 | os: [linux] 163 | requiresBuild: true 164 | optional: true 165 | 166 | /@esbuild/linux-riscv64/0.18.20: 167 | resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} 168 | engines: {node: '>=12'} 169 | cpu: [riscv64] 170 | os: [linux] 171 | requiresBuild: true 172 | optional: true 173 | 174 | /@esbuild/linux-s390x/0.18.20: 175 | resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} 176 | engines: {node: '>=12'} 177 | cpu: [s390x] 178 | os: [linux] 179 | requiresBuild: true 180 | optional: true 181 | 182 | /@esbuild/linux-x64/0.18.20: 183 | resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} 184 | engines: {node: '>=12'} 185 | cpu: [x64] 186 | os: [linux] 187 | requiresBuild: true 188 | optional: true 189 | 190 | /@esbuild/netbsd-x64/0.18.20: 191 | resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} 192 | engines: {node: '>=12'} 193 | cpu: [x64] 194 | os: [netbsd] 195 | requiresBuild: true 196 | optional: true 197 | 198 | /@esbuild/openbsd-x64/0.18.20: 199 | resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} 200 | engines: {node: '>=12'} 201 | cpu: [x64] 202 | os: [openbsd] 203 | requiresBuild: true 204 | optional: true 205 | 206 | /@esbuild/sunos-x64/0.18.20: 207 | resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} 208 | engines: {node: '>=12'} 209 | cpu: [x64] 210 | os: [sunos] 211 | requiresBuild: true 212 | optional: true 213 | 214 | /@esbuild/win32-arm64/0.18.20: 215 | resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} 216 | engines: {node: '>=12'} 217 | cpu: [arm64] 218 | os: [win32] 219 | requiresBuild: true 220 | optional: true 221 | 222 | /@esbuild/win32-ia32/0.18.20: 223 | resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} 224 | engines: {node: '>=12'} 225 | cpu: [ia32] 226 | os: [win32] 227 | requiresBuild: true 228 | optional: true 229 | 230 | /@esbuild/win32-x64/0.18.20: 231 | resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} 232 | engines: {node: '>=12'} 233 | cpu: [x64] 234 | os: [win32] 235 | requiresBuild: true 236 | optional: true 237 | 238 | /@eslint-community/eslint-utils/4.4.0_eslint@8.57.1: 239 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} 240 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 241 | peerDependencies: 242 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 243 | dependencies: 244 | eslint: 8.57.1 245 | eslint-visitor-keys: 3.4.3 246 | dev: true 247 | 248 | /@eslint-community/regexpp/4.11.1: 249 | resolution: {integrity: sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==} 250 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 251 | dev: true 252 | 253 | /@eslint/eslintrc/2.1.4: 254 | resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} 255 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 256 | dependencies: 257 | ajv: 6.12.6 258 | debug: 4.3.7 259 | espree: 9.6.1 260 | globals: 13.24.0 261 | ignore: 5.3.2 262 | import-fresh: 3.3.0 263 | js-yaml: 4.1.0 264 | minimatch: 3.1.2 265 | strip-json-comments: 3.1.1 266 | transitivePeerDependencies: 267 | - supports-color 268 | dev: true 269 | 270 | /@eslint/js/8.57.1: 271 | resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==} 272 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 273 | dev: true 274 | 275 | /@humanwhocodes/config-array/0.13.0: 276 | resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==} 277 | engines: {node: '>=10.10.0'} 278 | deprecated: Use @eslint/config-array instead 279 | dependencies: 280 | '@humanwhocodes/object-schema': 2.0.3 281 | debug: 4.3.7 282 | minimatch: 3.1.2 283 | transitivePeerDependencies: 284 | - supports-color 285 | dev: true 286 | 287 | /@humanwhocodes/module-importer/1.0.1: 288 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 289 | engines: {node: '>=12.22'} 290 | dev: true 291 | 292 | /@humanwhocodes/object-schema/2.0.3: 293 | resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} 294 | deprecated: Use @eslint/object-schema instead 295 | dev: true 296 | 297 | /@jridgewell/sourcemap-codec/1.5.0: 298 | resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} 299 | 300 | /@mdi/font/7.0.96: 301 | resolution: {integrity: sha512-rzlxTfR64hqY8yiBzDjmANfcd8rv+T5C0Yedv/TWk2QyAQYdc66e0kaN1ipmnYU3RukHRTRcBARHzzm+tIhL7w==} 302 | dev: false 303 | 304 | /@nodelib/fs.scandir/2.1.5: 305 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 306 | engines: {node: '>= 8'} 307 | dependencies: 308 | '@nodelib/fs.stat': 2.0.5 309 | run-parallel: 1.2.0 310 | dev: true 311 | 312 | /@nodelib/fs.stat/2.0.5: 313 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 314 | engines: {node: '>= 8'} 315 | dev: true 316 | 317 | /@nodelib/fs.walk/1.2.8: 318 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 319 | engines: {node: '>= 8'} 320 | dependencies: 321 | '@nodelib/fs.scandir': 2.1.5 322 | fastq: 1.17.1 323 | dev: true 324 | 325 | /@ungap/structured-clone/1.2.0: 326 | resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} 327 | dev: true 328 | 329 | /@vitejs/plugin-vue/4.6.2_vite@4.5.5+vue@3.5.8: 330 | resolution: {integrity: sha512-kqf7SGFoG+80aZG6Pf+gsZIVvGSCKE98JbiWqcCV9cThtg91Jav0yvYFC9Zb+jKetNGF6ZKeoaxgZfND21fWKw==} 331 | engines: {node: ^14.18.0 || >=16.0.0} 332 | peerDependencies: 333 | vite: ^4.0.0 || ^5.0.0 334 | vue: ^3.2.25 335 | dependencies: 336 | vite: 4.5.5_sass@1.79.3 337 | vue: 3.5.8 338 | dev: true 339 | 340 | /@vue/compiler-core/3.5.8: 341 | resolution: {integrity: sha512-Uzlxp91EPjfbpeO5KtC0KnXPkuTfGsNDeaKQJxQN718uz+RqDYarEf7UhQJGK+ZYloD2taUbHTI2J4WrUaZQNA==} 342 | dependencies: 343 | '@babel/parser': 7.25.6 344 | '@vue/shared': 3.5.8 345 | entities: 4.5.0 346 | estree-walker: 2.0.2 347 | source-map-js: 1.2.1 348 | 349 | /@vue/compiler-dom/3.5.8: 350 | resolution: {integrity: sha512-GUNHWvoDSbSa5ZSHT9SnV5WkStWfzJwwTd6NMGzilOE/HM5j+9EB9zGXdtu/fCNEmctBqMs6C9SvVPpVPuk1Eg==} 351 | dependencies: 352 | '@vue/compiler-core': 3.5.8 353 | '@vue/shared': 3.5.8 354 | 355 | /@vue/compiler-sfc/3.5.8: 356 | resolution: {integrity: sha512-taYpngQtSysrvO9GULaOSwcG5q821zCoIQBtQQSx7Uf7DxpR6CIHR90toPr9QfDD2mqHQPCSgoWBvJu0yV9zjg==} 357 | dependencies: 358 | '@babel/parser': 7.25.6 359 | '@vue/compiler-core': 3.5.8 360 | '@vue/compiler-dom': 3.5.8 361 | '@vue/compiler-ssr': 3.5.8 362 | '@vue/shared': 3.5.8 363 | estree-walker: 2.0.2 364 | magic-string: 0.30.11 365 | postcss: 8.4.47 366 | source-map-js: 1.2.1 367 | 368 | /@vue/compiler-ssr/3.5.8: 369 | resolution: {integrity: sha512-W96PtryNsNG9u0ZnN5Q5j27Z/feGrFV6zy9q5tzJVyJaLiwYxvC0ek4IXClZygyhjm+XKM7WD9pdKi/wIRVC/Q==} 370 | dependencies: 371 | '@vue/compiler-dom': 3.5.8 372 | '@vue/shared': 3.5.8 373 | 374 | /@vue/devtools-api/6.6.4: 375 | resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==} 376 | dev: false 377 | 378 | /@vue/reactivity/3.5.8: 379 | resolution: {integrity: sha512-mlgUyFHLCUZcAYkqvzYnlBRCh0t5ZQfLYit7nukn1GR96gc48Bp4B7OIcSfVSvlG1k3BPfD+p22gi1t2n9tsXg==} 380 | dependencies: 381 | '@vue/shared': 3.5.8 382 | 383 | /@vue/runtime-core/3.5.8: 384 | resolution: {integrity: sha512-fJuPelh64agZ8vKkZgp5iCkPaEqFJsYzxLk9vSC0X3G8ppknclNDr61gDc45yBGTaN5Xqc1qZWU3/NoaBMHcjQ==} 385 | dependencies: 386 | '@vue/reactivity': 3.5.8 387 | '@vue/shared': 3.5.8 388 | 389 | /@vue/runtime-dom/3.5.8: 390 | resolution: {integrity: sha512-DpAUz+PKjTZPUOB6zJgkxVI3GuYc2iWZiNeeHQUw53kdrparSTG6HeXUrYDjaam8dVsCdvQxDz6ZWxnyjccUjQ==} 391 | dependencies: 392 | '@vue/reactivity': 3.5.8 393 | '@vue/runtime-core': 3.5.8 394 | '@vue/shared': 3.5.8 395 | csstype: 3.1.3 396 | 397 | /@vue/server-renderer/3.5.8_vue@3.5.8: 398 | resolution: {integrity: sha512-7AmC9/mEeV9mmXNVyUIm1a1AjUhyeeGNbkLh39J00E7iPeGks8OGRB5blJiMmvqSh8SkaS7jkLWSpXtxUCeagA==} 399 | peerDependencies: 400 | vue: 3.5.8 401 | dependencies: 402 | '@vue/compiler-ssr': 3.5.8 403 | '@vue/shared': 3.5.8 404 | vue: 3.5.8 405 | 406 | /@vue/shared/3.5.8: 407 | resolution: {integrity: sha512-mJleSWbAGySd2RJdX1RBtcrUBX6snyOc0qHpgk3lGi4l9/P/3ny3ELqFWqYdkXIwwNN/kdm8nD9ky8o6l/Lx2A==} 408 | 409 | /@vuetify/loader-shared/1.7.1_vue@3.5.8+vuetify@3.7.2: 410 | resolution: {integrity: sha512-kLUvuAed6RCvkeeTNJzuy14pqnkur8lTuner7v7pNE/kVhPR97TuyXwBSBMR1cJeiLiOfu6SF5XlCYbXByEx1g==} 411 | peerDependencies: 412 | vue: ^3.0.0 413 | vuetify: ^3.0.0-beta.4 414 | dependencies: 415 | find-cache-dir: 3.3.2 416 | upath: 2.0.1 417 | vue: 3.5.8 418 | vuetify: 3.7.2_55qseij4q7uj7if5zkpsxgcsku 419 | 420 | /acorn-jsx/5.3.2_acorn@8.12.1: 421 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 422 | peerDependencies: 423 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 424 | dependencies: 425 | acorn: 8.12.1 426 | dev: true 427 | 428 | /acorn/8.12.1: 429 | resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==} 430 | engines: {node: '>=0.4.0'} 431 | hasBin: true 432 | dev: true 433 | 434 | /ajv/6.12.6: 435 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 436 | dependencies: 437 | fast-deep-equal: 3.1.3 438 | fast-json-stable-stringify: 2.1.0 439 | json-schema-traverse: 0.4.1 440 | uri-js: 4.4.1 441 | dev: true 442 | 443 | /ansi-regex/5.0.1: 444 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 445 | engines: {node: '>=8'} 446 | dev: true 447 | 448 | /ansi-styles/4.3.0: 449 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 450 | engines: {node: '>=8'} 451 | dependencies: 452 | color-convert: 2.0.1 453 | dev: true 454 | 455 | /argparse/2.0.1: 456 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 457 | dev: true 458 | 459 | /balanced-match/1.0.2: 460 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 461 | dev: true 462 | 463 | /boolbase/1.0.0: 464 | resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} 465 | dev: true 466 | 467 | /brace-expansion/1.1.11: 468 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 469 | dependencies: 470 | balanced-match: 1.0.2 471 | concat-map: 0.0.1 472 | dev: true 473 | 474 | /braces/3.0.3: 475 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 476 | engines: {node: '>=8'} 477 | dependencies: 478 | fill-range: 7.1.1 479 | dev: true 480 | 481 | /callsites/3.1.0: 482 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 483 | engines: {node: '>=6'} 484 | dev: true 485 | 486 | /chalk/4.1.2: 487 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 488 | engines: {node: '>=10'} 489 | dependencies: 490 | ansi-styles: 4.3.0 491 | supports-color: 7.2.0 492 | dev: true 493 | 494 | /chokidar/4.0.1: 495 | resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==} 496 | engines: {node: '>= 14.16.0'} 497 | dependencies: 498 | readdirp: 4.0.1 499 | 500 | /color-convert/2.0.1: 501 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 502 | engines: {node: '>=7.0.0'} 503 | dependencies: 504 | color-name: 1.1.4 505 | dev: true 506 | 507 | /color-name/1.1.4: 508 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 509 | dev: true 510 | 511 | /commondir/1.0.1: 512 | resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} 513 | 514 | /concat-map/0.0.1: 515 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 516 | dev: true 517 | 518 | /core-js/3.38.1: 519 | resolution: {integrity: sha512-OP35aUorbU3Zvlx7pjsFdu1rGNnD4pgw/CWoYzRY3t2EzoVT7shKHY1dlAy3f41cGIO7ZDPQimhGFTlEYkG/Hw==} 520 | requiresBuild: true 521 | dev: false 522 | 523 | /cross-spawn/7.0.3: 524 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 525 | engines: {node: '>= 8'} 526 | dependencies: 527 | path-key: 3.1.1 528 | shebang-command: 2.0.0 529 | which: 2.0.2 530 | dev: true 531 | 532 | /cssesc/3.0.0: 533 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 534 | engines: {node: '>=4'} 535 | hasBin: true 536 | dev: true 537 | 538 | /csstype/3.1.3: 539 | resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} 540 | 541 | /debug/4.3.7: 542 | resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} 543 | engines: {node: '>=6.0'} 544 | peerDependencies: 545 | supports-color: '*' 546 | peerDependenciesMeta: 547 | supports-color: 548 | optional: true 549 | dependencies: 550 | ms: 2.1.3 551 | 552 | /deep-is/0.1.4: 553 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 554 | dev: true 555 | 556 | /doctrine/3.0.0: 557 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 558 | engines: {node: '>=6.0.0'} 559 | dependencies: 560 | esutils: 2.0.3 561 | dev: true 562 | 563 | /entities/4.5.0: 564 | resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} 565 | engines: {node: '>=0.12'} 566 | 567 | /esbuild/0.18.20: 568 | resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==} 569 | engines: {node: '>=12'} 570 | hasBin: true 571 | requiresBuild: true 572 | optionalDependencies: 573 | '@esbuild/android-arm': 0.18.20 574 | '@esbuild/android-arm64': 0.18.20 575 | '@esbuild/android-x64': 0.18.20 576 | '@esbuild/darwin-arm64': 0.18.20 577 | '@esbuild/darwin-x64': 0.18.20 578 | '@esbuild/freebsd-arm64': 0.18.20 579 | '@esbuild/freebsd-x64': 0.18.20 580 | '@esbuild/linux-arm': 0.18.20 581 | '@esbuild/linux-arm64': 0.18.20 582 | '@esbuild/linux-ia32': 0.18.20 583 | '@esbuild/linux-loong64': 0.18.20 584 | '@esbuild/linux-mips64el': 0.18.20 585 | '@esbuild/linux-ppc64': 0.18.20 586 | '@esbuild/linux-riscv64': 0.18.20 587 | '@esbuild/linux-s390x': 0.18.20 588 | '@esbuild/linux-x64': 0.18.20 589 | '@esbuild/netbsd-x64': 0.18.20 590 | '@esbuild/openbsd-x64': 0.18.20 591 | '@esbuild/sunos-x64': 0.18.20 592 | '@esbuild/win32-arm64': 0.18.20 593 | '@esbuild/win32-ia32': 0.18.20 594 | '@esbuild/win32-x64': 0.18.20 595 | 596 | /escape-string-regexp/4.0.0: 597 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 598 | engines: {node: '>=10'} 599 | dev: true 600 | 601 | /eslint-plugin-vue/9.28.0_eslint@8.57.1: 602 | resolution: {integrity: sha512-ShrihdjIhOTxs+MfWun6oJWuk+g/LAhN+CiuOl/jjkG3l0F2AuK5NMTaWqyvBgkFtpYmyks6P4603mLmhNJW8g==} 603 | engines: {node: ^14.17.0 || >=16.0.0} 604 | peerDependencies: 605 | eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 606 | dependencies: 607 | '@eslint-community/eslint-utils': 4.4.0_eslint@8.57.1 608 | eslint: 8.57.1 609 | globals: 13.24.0 610 | natural-compare: 1.4.0 611 | nth-check: 2.1.1 612 | postcss-selector-parser: 6.1.2 613 | semver: 7.6.3 614 | vue-eslint-parser: 9.4.3_eslint@8.57.1 615 | xml-name-validator: 4.0.0 616 | transitivePeerDependencies: 617 | - supports-color 618 | dev: true 619 | 620 | /eslint-scope/7.2.2: 621 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} 622 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 623 | dependencies: 624 | esrecurse: 4.3.0 625 | estraverse: 5.3.0 626 | dev: true 627 | 628 | /eslint-visitor-keys/3.4.3: 629 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 630 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 631 | dev: true 632 | 633 | /eslint/8.57.1: 634 | resolution: {integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==} 635 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 636 | hasBin: true 637 | dependencies: 638 | '@eslint-community/eslint-utils': 4.4.0_eslint@8.57.1 639 | '@eslint-community/regexpp': 4.11.1 640 | '@eslint/eslintrc': 2.1.4 641 | '@eslint/js': 8.57.1 642 | '@humanwhocodes/config-array': 0.13.0 643 | '@humanwhocodes/module-importer': 1.0.1 644 | '@nodelib/fs.walk': 1.2.8 645 | '@ungap/structured-clone': 1.2.0 646 | ajv: 6.12.6 647 | chalk: 4.1.2 648 | cross-spawn: 7.0.3 649 | debug: 4.3.7 650 | doctrine: 3.0.0 651 | escape-string-regexp: 4.0.0 652 | eslint-scope: 7.2.2 653 | eslint-visitor-keys: 3.4.3 654 | espree: 9.6.1 655 | esquery: 1.6.0 656 | esutils: 2.0.3 657 | fast-deep-equal: 3.1.3 658 | file-entry-cache: 6.0.1 659 | find-up: 5.0.0 660 | glob-parent: 6.0.2 661 | globals: 13.24.0 662 | graphemer: 1.4.0 663 | ignore: 5.3.2 664 | imurmurhash: 0.1.4 665 | is-glob: 4.0.3 666 | is-path-inside: 3.0.3 667 | js-yaml: 4.1.0 668 | json-stable-stringify-without-jsonify: 1.0.1 669 | levn: 0.4.1 670 | lodash.merge: 4.6.2 671 | minimatch: 3.1.2 672 | natural-compare: 1.4.0 673 | optionator: 0.9.4 674 | strip-ansi: 6.0.1 675 | text-table: 0.2.0 676 | transitivePeerDependencies: 677 | - supports-color 678 | dev: true 679 | 680 | /espree/9.6.1: 681 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} 682 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 683 | dependencies: 684 | acorn: 8.12.1 685 | acorn-jsx: 5.3.2_acorn@8.12.1 686 | eslint-visitor-keys: 3.4.3 687 | dev: true 688 | 689 | /esquery/1.6.0: 690 | resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} 691 | engines: {node: '>=0.10'} 692 | dependencies: 693 | estraverse: 5.3.0 694 | dev: true 695 | 696 | /esrecurse/4.3.0: 697 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 698 | engines: {node: '>=4.0'} 699 | dependencies: 700 | estraverse: 5.3.0 701 | dev: true 702 | 703 | /estraverse/5.3.0: 704 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 705 | engines: {node: '>=4.0'} 706 | dev: true 707 | 708 | /estree-walker/2.0.2: 709 | resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} 710 | 711 | /esutils/2.0.3: 712 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 713 | engines: {node: '>=0.10.0'} 714 | dev: true 715 | 716 | /fast-deep-equal/3.1.3: 717 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 718 | dev: true 719 | 720 | /fast-glob/3.3.2: 721 | resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} 722 | engines: {node: '>=8.6.0'} 723 | dependencies: 724 | '@nodelib/fs.stat': 2.0.5 725 | '@nodelib/fs.walk': 1.2.8 726 | glob-parent: 5.1.2 727 | merge2: 1.4.1 728 | micromatch: 4.0.8 729 | dev: true 730 | 731 | /fast-json-stable-stringify/2.1.0: 732 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 733 | dev: true 734 | 735 | /fast-levenshtein/2.0.6: 736 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 737 | dev: true 738 | 739 | /fastq/1.17.1: 740 | resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} 741 | dependencies: 742 | reusify: 1.0.4 743 | dev: true 744 | 745 | /file-entry-cache/6.0.1: 746 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 747 | engines: {node: ^10.12.0 || >=12.0.0} 748 | dependencies: 749 | flat-cache: 3.2.0 750 | dev: true 751 | 752 | /fill-range/7.1.1: 753 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 754 | engines: {node: '>=8'} 755 | dependencies: 756 | to-regex-range: 5.0.1 757 | dev: true 758 | 759 | /find-cache-dir/3.3.2: 760 | resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} 761 | engines: {node: '>=8'} 762 | dependencies: 763 | commondir: 1.0.1 764 | make-dir: 3.1.0 765 | pkg-dir: 4.2.0 766 | 767 | /find-up/4.1.0: 768 | resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} 769 | engines: {node: '>=8'} 770 | dependencies: 771 | locate-path: 5.0.0 772 | path-exists: 4.0.0 773 | 774 | /find-up/5.0.0: 775 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 776 | engines: {node: '>=10'} 777 | dependencies: 778 | locate-path: 6.0.0 779 | path-exists: 4.0.0 780 | dev: true 781 | 782 | /flat-cache/3.2.0: 783 | resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} 784 | engines: {node: ^10.12.0 || >=12.0.0} 785 | dependencies: 786 | flatted: 3.3.1 787 | keyv: 4.5.4 788 | rimraf: 3.0.2 789 | dev: true 790 | 791 | /flatted/3.3.1: 792 | resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} 793 | dev: true 794 | 795 | /fs.realpath/1.0.0: 796 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 797 | dev: true 798 | 799 | /fsevents/2.3.3: 800 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 801 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 802 | os: [darwin] 803 | requiresBuild: true 804 | optional: true 805 | 806 | /glob-parent/5.1.2: 807 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 808 | engines: {node: '>= 6'} 809 | dependencies: 810 | is-glob: 4.0.3 811 | dev: true 812 | 813 | /glob-parent/6.0.2: 814 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 815 | engines: {node: '>=10.13.0'} 816 | dependencies: 817 | is-glob: 4.0.3 818 | dev: true 819 | 820 | /glob/7.2.3: 821 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 822 | deprecated: Glob versions prior to v9 are no longer supported 823 | dependencies: 824 | fs.realpath: 1.0.0 825 | inflight: 1.0.6 826 | inherits: 2.0.4 827 | minimatch: 3.1.2 828 | once: 1.4.0 829 | path-is-absolute: 1.0.1 830 | dev: true 831 | 832 | /globals/13.24.0: 833 | resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} 834 | engines: {node: '>=8'} 835 | dependencies: 836 | type-fest: 0.20.2 837 | dev: true 838 | 839 | /graphemer/1.4.0: 840 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 841 | dev: true 842 | 843 | /has-flag/4.0.0: 844 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 845 | engines: {node: '>=8'} 846 | dev: true 847 | 848 | /ignore/5.3.2: 849 | resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} 850 | engines: {node: '>= 4'} 851 | dev: true 852 | 853 | /immutable/4.3.7: 854 | resolution: {integrity: sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==} 855 | 856 | /import-fresh/3.3.0: 857 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 858 | engines: {node: '>=6'} 859 | dependencies: 860 | parent-module: 1.0.1 861 | resolve-from: 4.0.0 862 | dev: true 863 | 864 | /imurmurhash/0.1.4: 865 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 866 | engines: {node: '>=0.8.19'} 867 | dev: true 868 | 869 | /inflight/1.0.6: 870 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 871 | deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. 872 | dependencies: 873 | once: 1.4.0 874 | wrappy: 1.0.2 875 | dev: true 876 | 877 | /inherits/2.0.4: 878 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 879 | dev: true 880 | 881 | /is-extglob/2.1.1: 882 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 883 | engines: {node: '>=0.10.0'} 884 | dev: true 885 | 886 | /is-glob/4.0.3: 887 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 888 | engines: {node: '>=0.10.0'} 889 | dependencies: 890 | is-extglob: 2.1.1 891 | dev: true 892 | 893 | /is-number/7.0.0: 894 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 895 | engines: {node: '>=0.12.0'} 896 | dev: true 897 | 898 | /is-path-inside/3.0.3: 899 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 900 | engines: {node: '>=8'} 901 | dev: true 902 | 903 | /isexe/2.0.0: 904 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 905 | dev: true 906 | 907 | /js-yaml/4.1.0: 908 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 909 | hasBin: true 910 | dependencies: 911 | argparse: 2.0.1 912 | dev: true 913 | 914 | /json-buffer/3.0.1: 915 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 916 | dev: true 917 | 918 | /json-schema-traverse/0.4.1: 919 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 920 | dev: true 921 | 922 | /json-stable-stringify-without-jsonify/1.0.1: 923 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 924 | dev: true 925 | 926 | /keyv/4.5.4: 927 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 928 | dependencies: 929 | json-buffer: 3.0.1 930 | dev: true 931 | 932 | /levn/0.4.1: 933 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 934 | engines: {node: '>= 0.8.0'} 935 | dependencies: 936 | prelude-ls: 1.2.1 937 | type-check: 0.4.0 938 | dev: true 939 | 940 | /locate-path/5.0.0: 941 | resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} 942 | engines: {node: '>=8'} 943 | dependencies: 944 | p-locate: 4.1.0 945 | 946 | /locate-path/6.0.0: 947 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 948 | engines: {node: '>=10'} 949 | dependencies: 950 | p-locate: 5.0.0 951 | dev: true 952 | 953 | /lodash.merge/4.6.2: 954 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 955 | dev: true 956 | 957 | /lodash/4.17.21: 958 | resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} 959 | dev: true 960 | 961 | /magic-string/0.30.11: 962 | resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==} 963 | dependencies: 964 | '@jridgewell/sourcemap-codec': 1.5.0 965 | 966 | /make-dir/3.1.0: 967 | resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} 968 | engines: {node: '>=8'} 969 | dependencies: 970 | semver: 6.3.1 971 | 972 | /merge2/1.4.1: 973 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 974 | engines: {node: '>= 8'} 975 | dev: true 976 | 977 | /micromatch/4.0.8: 978 | resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} 979 | engines: {node: '>=8.6'} 980 | dependencies: 981 | braces: 3.0.3 982 | picomatch: 2.3.1 983 | dev: true 984 | 985 | /minimatch/3.1.2: 986 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 987 | dependencies: 988 | brace-expansion: 1.1.11 989 | dev: true 990 | 991 | /ms/2.1.3: 992 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 993 | 994 | /nanoid/3.3.7: 995 | resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} 996 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 997 | hasBin: true 998 | 999 | /natural-compare/1.4.0: 1000 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 1001 | dev: true 1002 | 1003 | /nth-check/2.1.1: 1004 | resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} 1005 | dependencies: 1006 | boolbase: 1.0.0 1007 | dev: true 1008 | 1009 | /once/1.4.0: 1010 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 1011 | dependencies: 1012 | wrappy: 1.0.2 1013 | dev: true 1014 | 1015 | /optionator/0.9.4: 1016 | resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} 1017 | engines: {node: '>= 0.8.0'} 1018 | dependencies: 1019 | deep-is: 0.1.4 1020 | fast-levenshtein: 2.0.6 1021 | levn: 0.4.1 1022 | prelude-ls: 1.2.1 1023 | type-check: 0.4.0 1024 | word-wrap: 1.2.5 1025 | dev: true 1026 | 1027 | /p-limit/2.3.0: 1028 | resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} 1029 | engines: {node: '>=6'} 1030 | dependencies: 1031 | p-try: 2.2.0 1032 | 1033 | /p-limit/3.1.0: 1034 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 1035 | engines: {node: '>=10'} 1036 | dependencies: 1037 | yocto-queue: 0.1.0 1038 | dev: true 1039 | 1040 | /p-locate/4.1.0: 1041 | resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} 1042 | engines: {node: '>=8'} 1043 | dependencies: 1044 | p-limit: 2.3.0 1045 | 1046 | /p-locate/5.0.0: 1047 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 1048 | engines: {node: '>=10'} 1049 | dependencies: 1050 | p-limit: 3.1.0 1051 | dev: true 1052 | 1053 | /p-try/2.2.0: 1054 | resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} 1055 | engines: {node: '>=6'} 1056 | 1057 | /parent-module/1.0.1: 1058 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 1059 | engines: {node: '>=6'} 1060 | dependencies: 1061 | callsites: 3.1.0 1062 | dev: true 1063 | 1064 | /path-exists/4.0.0: 1065 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 1066 | engines: {node: '>=8'} 1067 | 1068 | /path-is-absolute/1.0.1: 1069 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 1070 | engines: {node: '>=0.10.0'} 1071 | dev: true 1072 | 1073 | /path-key/3.1.1: 1074 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 1075 | engines: {node: '>=8'} 1076 | dev: true 1077 | 1078 | /picocolors/1.1.0: 1079 | resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==} 1080 | 1081 | /picomatch/2.3.1: 1082 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 1083 | engines: {node: '>=8.6'} 1084 | dev: true 1085 | 1086 | /pinia/2.2.2_vue@3.5.8: 1087 | resolution: {integrity: sha512-ja2XqFWZC36mupU4z1ZzxeTApV7DOw44cV4dhQ9sGwun+N89v/XP7+j7q6TanS1u1tdbK4r+1BUx7heMaIdagA==} 1088 | peerDependencies: 1089 | '@vue/composition-api': ^1.4.0 1090 | typescript: '>=4.4.4' 1091 | vue: ^2.6.14 || ^3.3.0 1092 | peerDependenciesMeta: 1093 | '@vue/composition-api': 1094 | optional: true 1095 | typescript: 1096 | optional: true 1097 | dependencies: 1098 | '@vue/devtools-api': 6.6.4 1099 | vue: 3.5.8 1100 | vue-demi: 0.14.10_vue@3.5.8 1101 | dev: false 1102 | 1103 | /pkg-dir/4.2.0: 1104 | resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} 1105 | engines: {node: '>=8'} 1106 | dependencies: 1107 | find-up: 4.1.0 1108 | 1109 | /postcss-selector-parser/6.1.2: 1110 | resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} 1111 | engines: {node: '>=4'} 1112 | dependencies: 1113 | cssesc: 3.0.0 1114 | util-deprecate: 1.0.2 1115 | dev: true 1116 | 1117 | /postcss/8.4.47: 1118 | resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==} 1119 | engines: {node: ^10 || ^12 || >=14} 1120 | dependencies: 1121 | nanoid: 3.3.7 1122 | picocolors: 1.1.0 1123 | source-map-js: 1.2.1 1124 | 1125 | /prelude-ls/1.2.1: 1126 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 1127 | engines: {node: '>= 0.8.0'} 1128 | dev: true 1129 | 1130 | /punycode/2.3.1: 1131 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 1132 | engines: {node: '>=6'} 1133 | dev: true 1134 | 1135 | /queue-microtask/1.2.3: 1136 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 1137 | dev: true 1138 | 1139 | /readdirp/4.0.1: 1140 | resolution: {integrity: sha512-GkMg9uOTpIWWKbSsgwb5fA4EavTR+SG/PMPoAY8hkhHfEEY0/vqljY+XHqtDf2cr2IJtoNRDbrrEpZUiZCkYRw==} 1141 | engines: {node: '>= 14.16.0'} 1142 | 1143 | /resolve-from/4.0.0: 1144 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 1145 | engines: {node: '>=4'} 1146 | dev: true 1147 | 1148 | /reusify/1.0.4: 1149 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 1150 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 1151 | dev: true 1152 | 1153 | /rimraf/3.0.2: 1154 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 1155 | deprecated: Rimraf versions prior to v4 are no longer supported 1156 | hasBin: true 1157 | dependencies: 1158 | glob: 7.2.3 1159 | dev: true 1160 | 1161 | /roboto-fontface/0.10.0: 1162 | resolution: {integrity: sha512-OlwfYEgA2RdboZohpldlvJ1xngOins5d7ejqnIBWr9KaMxsnBqotpptRXTyfNRLnFpqzX6sTDt+X+a+6udnU8g==} 1163 | dev: false 1164 | 1165 | /rollup/3.29.5: 1166 | resolution: {integrity: sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w==} 1167 | engines: {node: '>=14.18.0', npm: '>=8.0.0'} 1168 | hasBin: true 1169 | optionalDependencies: 1170 | fsevents: 2.3.3 1171 | 1172 | /run-parallel/1.2.0: 1173 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 1174 | dependencies: 1175 | queue-microtask: 1.2.3 1176 | dev: true 1177 | 1178 | /sass/1.79.3: 1179 | resolution: {integrity: sha512-m7dZxh0W9EZ3cw50Me5GOuYm/tVAJAn91SUnohLRo9cXBixGUOdvmryN+dXpwR831bhoY3Zv7rEFt85PUwTmzA==} 1180 | engines: {node: '>=14.0.0'} 1181 | hasBin: true 1182 | dependencies: 1183 | chokidar: 4.0.1 1184 | immutable: 4.3.7 1185 | source-map-js: 1.2.1 1186 | 1187 | /semver/6.3.1: 1188 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 1189 | hasBin: true 1190 | 1191 | /semver/7.6.3: 1192 | resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} 1193 | engines: {node: '>=10'} 1194 | hasBin: true 1195 | dev: true 1196 | 1197 | /shebang-command/2.0.0: 1198 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 1199 | engines: {node: '>=8'} 1200 | dependencies: 1201 | shebang-regex: 3.0.0 1202 | dev: true 1203 | 1204 | /shebang-regex/3.0.0: 1205 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 1206 | engines: {node: '>=8'} 1207 | dev: true 1208 | 1209 | /source-map-js/1.2.1: 1210 | resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 1211 | engines: {node: '>=0.10.0'} 1212 | 1213 | /strip-ansi/6.0.1: 1214 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 1215 | engines: {node: '>=8'} 1216 | dependencies: 1217 | ansi-regex: 5.0.1 1218 | dev: true 1219 | 1220 | /strip-json-comments/3.1.1: 1221 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 1222 | engines: {node: '>=8'} 1223 | dev: true 1224 | 1225 | /supports-color/7.2.0: 1226 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 1227 | engines: {node: '>=8'} 1228 | dependencies: 1229 | has-flag: 4.0.0 1230 | dev: true 1231 | 1232 | /text-table/0.2.0: 1233 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 1234 | dev: true 1235 | 1236 | /to-fast-properties/2.0.0: 1237 | resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} 1238 | engines: {node: '>=4'} 1239 | 1240 | /to-regex-range/5.0.1: 1241 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 1242 | engines: {node: '>=8.0'} 1243 | dependencies: 1244 | is-number: 7.0.0 1245 | dev: true 1246 | 1247 | /type-check/0.4.0: 1248 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 1249 | engines: {node: '>= 0.8.0'} 1250 | dependencies: 1251 | prelude-ls: 1.2.1 1252 | dev: true 1253 | 1254 | /type-fest/0.20.2: 1255 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 1256 | engines: {node: '>=10'} 1257 | dev: true 1258 | 1259 | /unplugin-fonts/1.1.1_vite@4.5.5: 1260 | resolution: {integrity: sha512-/Aw/rL9D2aslGGM0vi+2R2aG508RSwawLnnBuo+JDSqYc4cHJO1R1phllhN6GysEhBp/6a4B6+vSFPVapWyAAw==} 1261 | peerDependencies: 1262 | '@nuxt/kit': ^3.0.0 1263 | vite: ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 1264 | peerDependenciesMeta: 1265 | '@nuxt/kit': 1266 | optional: true 1267 | dependencies: 1268 | fast-glob: 3.3.2 1269 | unplugin: 1.14.1 1270 | vite: 4.5.5_sass@1.79.3 1271 | transitivePeerDependencies: 1272 | - webpack-sources 1273 | dev: true 1274 | 1275 | /unplugin/1.14.1: 1276 | resolution: {integrity: sha512-lBlHbfSFPToDYp9pjXlUEFVxYLaue9f9T1HC+4OHlmj+HnMDdz9oZY+erXfoCe/5V/7gKUSY2jpXPb9S7f0f/w==} 1277 | engines: {node: '>=14.0.0'} 1278 | peerDependencies: 1279 | webpack-sources: ^3 1280 | peerDependenciesMeta: 1281 | webpack-sources: 1282 | optional: true 1283 | dependencies: 1284 | acorn: 8.12.1 1285 | webpack-virtual-modules: 0.6.2 1286 | dev: true 1287 | 1288 | /upath/2.0.1: 1289 | resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==} 1290 | engines: {node: '>=4'} 1291 | 1292 | /uri-js/4.4.1: 1293 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 1294 | dependencies: 1295 | punycode: 2.3.1 1296 | dev: true 1297 | 1298 | /util-deprecate/1.0.2: 1299 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 1300 | dev: true 1301 | 1302 | /vite-plugin-vuetify/1.0.2_3s3sr5wu4eu6ymsc7r6ep7xhna: 1303 | resolution: {integrity: sha512-MubIcKD33O8wtgQXlbEXE7ccTEpHZ8nPpe77y9Wy3my2MWw/PgehP9VqTp92BLqr0R1dSL970Lynvisx3UxBFw==} 1304 | engines: {node: '>=12'} 1305 | peerDependencies: 1306 | vite: ^2.7.0 || ^3.0.0 || ^4.0.0 1307 | vuetify: ^3.0.0-beta.4 1308 | dependencies: 1309 | '@vuetify/loader-shared': 1.7.1_vue@3.5.8+vuetify@3.7.2 1310 | debug: 4.3.7 1311 | upath: 2.0.1 1312 | vite: 4.5.5_sass@1.79.3 1313 | vuetify: 3.7.2_55qseij4q7uj7if5zkpsxgcsku 1314 | transitivePeerDependencies: 1315 | - supports-color 1316 | - vue 1317 | 1318 | /vite/4.5.5_sass@1.79.3: 1319 | resolution: {integrity: sha512-ifW3Lb2sMdX+WU91s3R0FyQlAyLxOzCSCP37ujw0+r5POeHPwe6udWVIElKQq8gk3t7b8rkmvqC6IHBpCff4GQ==} 1320 | engines: {node: ^14.18.0 || >=16.0.0} 1321 | hasBin: true 1322 | peerDependencies: 1323 | '@types/node': '>= 14' 1324 | less: '*' 1325 | lightningcss: ^1.21.0 1326 | sass: '*' 1327 | stylus: '*' 1328 | sugarss: '*' 1329 | terser: ^5.4.0 1330 | peerDependenciesMeta: 1331 | '@types/node': 1332 | optional: true 1333 | less: 1334 | optional: true 1335 | lightningcss: 1336 | optional: true 1337 | sass: 1338 | optional: true 1339 | stylus: 1340 | optional: true 1341 | sugarss: 1342 | optional: true 1343 | terser: 1344 | optional: true 1345 | dependencies: 1346 | esbuild: 0.18.20 1347 | postcss: 8.4.47 1348 | rollup: 3.29.5 1349 | sass: 1.79.3 1350 | optionalDependencies: 1351 | fsevents: 2.3.3 1352 | 1353 | /vue-demi/0.14.10_vue@3.5.8: 1354 | resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==} 1355 | engines: {node: '>=12'} 1356 | hasBin: true 1357 | requiresBuild: true 1358 | peerDependencies: 1359 | '@vue/composition-api': ^1.0.0-rc.1 1360 | vue: ^3.0.0-0 || ^2.6.0 1361 | peerDependenciesMeta: 1362 | '@vue/composition-api': 1363 | optional: true 1364 | dependencies: 1365 | vue: 3.5.8 1366 | dev: false 1367 | 1368 | /vue-eslint-parser/9.4.3_eslint@8.57.1: 1369 | resolution: {integrity: sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==} 1370 | engines: {node: ^14.17.0 || >=16.0.0} 1371 | peerDependencies: 1372 | eslint: '>=6.0.0' 1373 | dependencies: 1374 | debug: 4.3.7 1375 | eslint: 8.57.1 1376 | eslint-scope: 7.2.2 1377 | eslint-visitor-keys: 3.4.3 1378 | espree: 9.6.1 1379 | esquery: 1.6.0 1380 | lodash: 4.17.21 1381 | semver: 7.6.3 1382 | transitivePeerDependencies: 1383 | - supports-color 1384 | dev: true 1385 | 1386 | /vue-router/4.4.5_vue@3.5.8: 1387 | resolution: {integrity: sha512-4fKZygS8cH1yCyuabAXGUAsyi1b2/o/OKgu/RUb+znIYOxPRxdkytJEx+0wGcpBE1pX6vUgh5jwWOKRGvuA/7Q==} 1388 | peerDependencies: 1389 | vue: ^3.2.0 1390 | dependencies: 1391 | '@vue/devtools-api': 6.6.4 1392 | vue: 3.5.8 1393 | dev: false 1394 | 1395 | /vue/3.5.8: 1396 | resolution: {integrity: sha512-hvuvuCy51nP/1fSRvrrIqTLSvrSyz2Pq+KQ8S8SXCxTWVE0nMaOnSDnSOxV1eYmGfvK7mqiwvd1C59CEEz7dAQ==} 1397 | peerDependencies: 1398 | typescript: '*' 1399 | peerDependenciesMeta: 1400 | typescript: 1401 | optional: true 1402 | dependencies: 1403 | '@vue/compiler-dom': 3.5.8 1404 | '@vue/compiler-sfc': 3.5.8 1405 | '@vue/runtime-dom': 3.5.8 1406 | '@vue/server-renderer': 3.5.8_vue@3.5.8 1407 | '@vue/shared': 3.5.8 1408 | 1409 | /vuetify/3.7.2_55qseij4q7uj7if5zkpsxgcsku: 1410 | resolution: {integrity: sha512-q0WTcRG977+a9Dqhb8TOaPm+Xmvj0oVhnBJhAdHWFSov3HhHTTxlH2nXP/GBTXZuuMHDbBeIWFuUR2/1Fx0PPw==} 1411 | engines: {node: ^12.20 || >=14.13} 1412 | peerDependencies: 1413 | typescript: '>=4.7' 1414 | vite-plugin-vuetify: '>=1.0.0' 1415 | vue: ^3.3.0 1416 | webpack-plugin-vuetify: '>=2.0.0' 1417 | peerDependenciesMeta: 1418 | typescript: 1419 | optional: true 1420 | vite-plugin-vuetify: 1421 | optional: true 1422 | webpack-plugin-vuetify: 1423 | optional: true 1424 | dependencies: 1425 | vite-plugin-vuetify: 1.0.2_3s3sr5wu4eu6ymsc7r6ep7xhna 1426 | vue: 3.5.8 1427 | 1428 | /webpack-virtual-modules/0.6.2: 1429 | resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==} 1430 | dev: true 1431 | 1432 | /which/2.0.2: 1433 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 1434 | engines: {node: '>= 8'} 1435 | hasBin: true 1436 | dependencies: 1437 | isexe: 2.0.0 1438 | dev: true 1439 | 1440 | /word-wrap/1.2.5: 1441 | resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} 1442 | engines: {node: '>=0.10.0'} 1443 | dev: true 1444 | 1445 | /wrappy/1.0.2: 1446 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 1447 | dev: true 1448 | 1449 | /xml-name-validator/4.0.0: 1450 | resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} 1451 | engines: {node: '>=12'} 1452 | dev: true 1453 | 1454 | /yocto-queue/0.1.0: 1455 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 1456 | engines: {node: '>=10'} 1457 | dev: true 1458 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weekend-project-space/top-rss-hub/dd4c6af9fef6c101dc0125f157d838f9661f194f/public/favicon.ico -------------------------------------------------------------------------------- /public/feeds.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "title": "知乎每日精选", 3 | "description": "中文互联网最大的知识平台,帮助人们便捷地分享彼此的知识、经验和见解。", 4 | "category": "热榜", 5 | "htmlUrl": "http://www.zhihu.com", 6 | "url": "https://www.zhihu.com/rss", 7 | "icon": "https://static.zhihu.com/heifetz/favicon.ico", 8 | "lastBuildDate": "2024/9/15 08:17:07", 9 | "qty": 437 10 | }, 11 | { 12 | "title": "阮一峰的网络日志", 13 | "description": "阮一峰的网络日志", 14 | "category": "博客", 15 | "htmlUrl": "http://www.ruanyifeng.com/blog/", 16 | "url": "https://www.ruanyifeng.com/blog/atom.xml", 17 | "icon": "https://www.ruanyifeng.com/favicon.ico", 18 | "lastBuildDate": "2024/9/21 18:01:41", 19 | "qty": 343 20 | }, 21 | { 22 | "title": "《联合早报》-中港台-即时", 23 | "description": "新加坡、中国、亚洲和国际的即时、评论、商业、体育、生活、科技与多媒体新闻,尽在联合早报。 ", 24 | "category": "新闻", 25 | "htmlUrl": "https://www.zaobao.com/realtime/china", 26 | "url": "https://plink.anyfeeder.com/zaobao/realtime/china", 27 | "icon": "https://oss-alpha-static-zaobao.oss-cn-hongkong.aliyuncs.com/assets/common/favicon.ico", 28 | "lastBuildDate": "2024/9/18 04:05:40", 29 | "qty": 199 30 | }, 31 | { 32 | "title": "少数派", 33 | "description": "少数派致力于更好地运用数字产品或科学方法,帮助用户提升工作效率和生活品质", 34 | "category": "科技", 35 | "htmlUrl": "https://sspai.com", 36 | "url": "https://sspai.com/feed", 37 | "icon": "https://cdn-static.sspai.com/favicon/sspai.ico", 38 | "lastBuildDate": null, 39 | "qty": 160 40 | }, 41 | { 42 | "title": "知乎热榜", 43 | "description": "知乎热榜 ", 44 | "category": "热榜", 45 | "htmlUrl": "https://www.zhihu.com/billboard", 46 | "url": "https://rsshub.app/zhihu/hotlist", 47 | "icon": "https://static.zhihu.com/heifetz/favicon.ico", 48 | "lastBuildDate": "2023/10/10 03:55:29", 49 | "qty": 146 50 | }, 51 | { 52 | "title": "爱范儿", 53 | "description": "让未来触手可及", 54 | "category": "科技", 55 | "htmlUrl": "https://www.ifanr.com?utm_source=rss&utm_medium=rss&utm_campaign=", 56 | "url": "https://www.ifanr.com/feed", 57 | "icon": "https://images.ifanr.cn/wp-content/themes/ifanr-5.0-pc/static/images/favicon.ico", 58 | "lastBuildDate": "2024/9/26 00:37:33", 59 | "qty": 140 60 | }, 61 | { 62 | "title": "《联合早报》-国际-即时", 63 | "description": "新加坡、中国、亚洲和国际的即时、评论、商业、体育、生活、科技与多媒体新闻,尽在联合早报。 ", 64 | "category": "新闻", 65 | "htmlUrl": "https://www.zaobao.com/realtime/world", 66 | "url": "https://plink.anyfeeder.com/zaobao/realtime/world", 67 | "icon": "https://oss-alpha-static-zaobao.oss-cn-hongkong.aliyuncs.com/assets/common/favicon.ico", 68 | "lastBuildDate": "2024/9/18 04:44:19", 69 | "qty": 138 70 | }, 71 | { 72 | "title": "V2EX", 73 | "description": null, 74 | "category": "社区", 75 | "htmlUrl": "https://www.v2ex.com/", 76 | "url": "https://v2ex.com/index.xml", 77 | "icon": "https://www.v2ex.com/static/favicon.ico", 78 | "lastBuildDate": "2024/9/26 01:14:48", 79 | "qty": 137 80 | }, 81 | { 82 | "title": "机核", 83 | "description": "不止是游戏", 84 | "category": "游戏", 85 | "htmlUrl": "https://www.gcores.com", 86 | "url": "https://www.gcores.com/rss", 87 | "icon": "https://www.gcores.com/favicon.ico?v=jw7pQOOwRY", 88 | "lastBuildDate": "2024/9/25 13:27:12", 89 | "qty": 133 90 | }, 91 | { 92 | "title": "奇客Solidot–传递最新科技情报", 93 | "description": "奇客的知识,重要的东西。", 94 | "category": "科技", 95 | "htmlUrl": "https://www.solidot.org", 96 | "url": "https://www.solidot.org/index.rss", 97 | "icon": "https://www.solidot.org/favicon.ico", 98 | "lastBuildDate": null, 99 | "qty": 133 100 | }, 101 | { 102 | "title": "阮一峰的网络日志", 103 | "description": "Ruan YiFeng's Blog", 104 | "category": "博客", 105 | "htmlUrl": "https://www.ruanyifeng.com/blog/", 106 | "url": "http://feeds.feedburner.com/ruanyifeng", 107 | "icon": "https://www.ruanyifeng.com/favicon.ico", 108 | "lastBuildDate": "2024/9/20 08:04:39", 109 | "qty": 130 110 | }, 111 | { 112 | "title": "南方周末-新闻", 113 | "description": "南方周末-新闻 ", 114 | "category": "新闻", 115 | "htmlUrl": "http://www.infzm.com/contents?term_id=2", 116 | "url": "https://rsshub.app/infzm/2", 117 | "icon": "http://www.infzm.com/favicon.ico", 118 | "lastBuildDate": "2024/9/25 15:10:43", 119 | "qty": 129 120 | }, 121 | { 122 | "title": "美团技术团队", 123 | "description": "美团技术团队最近更新内容。 ", 124 | "category": "技术", 125 | "htmlUrl": "https://tech.meituan.com/feed/", 126 | "url": "https://rsshub.app/meituan/tech/home", 127 | "icon": "https://awps-assets.meituan.net/mit/blog/v20190629/asset/icon/favicon.ico", 128 | "lastBuildDate": "2023/11/24 15:36:37", 129 | "qty": 119 130 | }, 131 | { 132 | "title": "36氪", 133 | "description": "11月29日-30日,36氪WISE2022 新经济之王大会顺利举办。 36氪将大会主题定义为“Long China Long Innovation 守望中国 保持创新”,大会将聚焦新能源、SmartEV、新消费、投资人、硬核科技、数字化、XR与元宇宙和机器人八大热门赛道,汇集数字化、企服、新能源、新消费、双碳、二级市场、商学院、创变者等10大分会场。重磅推出“WISE 2022新经济之王年度人物”、“WISE 2022新经济之王年度企业”、“WISE 2022新经济之王年度焦点产品”三大年度名册。全方位展", 134 | "category": "科技", 135 | "htmlUrl": "http://36kr.com", 136 | "url": "https://36kr.com/feed", 137 | "icon": "http://36kr.com/favicon.ico", 138 | "lastBuildDate": null, 139 | "qty": 109 140 | }, 141 | { 142 | "title": "酷 壳 – CoolShell", 143 | "description": "享受编程和技术所带来的快乐 - Coding Your Ambition", 144 | "category": "博客", 145 | "htmlUrl": "https://coolshell.cn", 146 | "url": "http://coolshell.cn/feed", 147 | "icon": "https://coolshell.cn/favicon.ico", 148 | "lastBuildDate": "2023/5/9 04:25:32", 149 | "qty": 106 150 | }, 151 | { 152 | "title": "构建我的被动收入", 153 | "description": "Recent content on 构建我的被动收入", 154 | "category": "博客", 155 | "htmlUrl": "https://www.bmpi.dev", 156 | "url": "https://www.bmpi.dev/index.xml", 157 | "icon": "https://www.bmpi.dev/images/ico/favicon-32x32.png", 158 | "lastBuildDate": "2024/8/17 00:00:00", 159 | "qty": 104 160 | }, 161 | { 162 | "title": "少数派 -- Matrix", 163 | "description": "少数派 -- Matrix ", 164 | "category": "科技", 165 | "htmlUrl": "https://sspai.com/matrix", 166 | "url": "https://plink.anyfeeder.com/ssapi/matrix", 167 | "icon": "https://cdn-static.sspai.com/favicon/sspai.ico", 168 | "lastBuildDate": "2024/9/18 05:44:30", 169 | "qty": 104 170 | }, 171 | { 172 | "title": "虎嗅网", 173 | "description": "虎嗅网RSS订阅", 174 | "category": "资讯", 175 | "htmlUrl": "http://www.huxiu.com", 176 | "url": "https://www.huxiu.com/rss/0.xml", 177 | "icon": null, 178 | "lastBuildDate": null, 179 | "qty": 103 180 | }, 181 | { 182 | "title": "小众软件", 183 | "description": "分享免费、小巧、实用、有趣、绿色的软件", 184 | "category": "未分类", 185 | "htmlUrl": "https://www.appinn.com", 186 | "url": "http://feed.appinn.com/", 187 | "icon": "https://img3.appinn.net/static/wp-content/uploads/Appinn-icon-32.jpg", 188 | "lastBuildDate": "2024/9/25 12:46:57", 189 | "qty": 102 190 | }, 191 | { 192 | "title": "极客公园", 193 | "description": "极客公园", 194 | "category": "科技", 195 | "htmlUrl": "http://main_test.geekpark.net/rss.rss/", 196 | "url": "http://www.geekpark.net/rss", 197 | "icon": null, 198 | "lastBuildDate": null, 199 | "qty": 102 200 | }, 201 | { 202 | "title": "澎湃新闻 - 首页头条", 203 | "description": "澎湃新闻 - 首页头条 ", 204 | "category": "新闻", 205 | "htmlUrl": "https://m.thepaper.cn/", 206 | "url": "https://plink.anyfeeder.com/thepaper", 207 | "icon": "https://m.thepaper.cn/favicon.ico", 208 | "lastBuildDate": "2024/9/18 04:09:01", 209 | "qty": 98 210 | }, 211 | { 212 | "title": "iDaily 每日环球视野", 213 | "description": "iDaily 每日环球视野 ", 214 | "category": "未分类", 215 | "htmlUrl": "https://docs.rsshub.app", 216 | "url": "https://plink.anyfeeder.com/idaily/today", 217 | "icon": "https://docs.rsshub.app/logo.png", 218 | "lastBuildDate": "2024/9/18 05:33:02", 219 | "qty": 92 220 | }, 221 | { 222 | "title": "「ONE · 一个」", 223 | "description": "复杂世界里, 一个就够了. One is all. ", 224 | "category": "影音", 225 | "htmlUrl": "http://wufazhuce.com/", 226 | "url": "https://rsshub.app/one", 227 | "icon": "http://image.wufazhuce.com/favicon.ico", 228 | "lastBuildDate": "2024/3/1 04:51:00", 229 | "qty": 92 230 | }, 231 | { 232 | "title": "酷安 - 新鲜图文", 233 | "description": "酷安 - 新鲜图文 ", 234 | "category": "资讯", 235 | "htmlUrl": "https://www.coolapk.com/", 236 | "url": "https://rsshub.app/coolapk/tuwen-xinxian", 237 | "icon": "https://www.coolapk.com/favicon.ico", 238 | "lastBuildDate": "2024/9/24 01:12:49", 239 | "qty": 92 240 | }, 241 | { 242 | "title": "小众软件", 243 | "description": "分享免费、小巧、实用、有趣、绿色的软件", 244 | "category": "软件", 245 | "htmlUrl": "https://www.appinn.com", 246 | "url": "https://www.appinn.com/feed/", 247 | "icon": "https://img3.appinn.net/static/wp-content/uploads/Appinn-icon-32.jpg", 248 | "lastBuildDate": "2024/9/20 09:11:42", 249 | "qty": 90 250 | }, 251 | { 252 | "title": "左岸读书", 253 | "description": "一切成功均源自积累!", 254 | "category": "影音", 255 | "htmlUrl": "http://www.zreading.cn", 256 | "url": "http://www.zreading.cn/feed", 257 | "icon": "http://www.zreading.cn/wp-content/themes/Lion-master/static/img/favicon.ico", 258 | "lastBuildDate": "2023/10/13 13:40:13", 259 | "qty": 88 260 | }, 261 | { 262 | "title": "微博热搜榜", 263 | "description": "实时热点,每分钟更新一次 ", 264 | "category": "微博", 265 | "htmlUrl": "https://s.weibo.com/top/summary?cate=realtimehot", 266 | "url": "https://rsshub.app/weibo/search/hot", 267 | "icon": "https://s.weibo.com/favicon.ico", 268 | "lastBuildDate": "2024/9/25 19:35:43", 269 | "qty": 87 270 | }, 271 | { 272 | "title": "IT之家", 273 | "description": "IT之家 - 软媒旗下网站", 274 | "category": "科技", 275 | "htmlUrl": "https://www.ithome.com/", 276 | "url": "https://www.ithome.com/rss/", 277 | "icon": "https://www.ithome.com/favicon.ico", 278 | "lastBuildDate": null, 279 | "qty": 87 280 | }, 281 | { 282 | "title": "一天一篇经济学人(双语)", 283 | "description": "每周定期更新杂志,工作日每天翻译一篇经济学人", 284 | "category": "未分类", 285 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E4%B8%80%E5%A4%A9%E4%B8%80%E7%AF%87%E7%BB%8F%E6%B5%8E%E5%AD%A6%E4%BA%BA%28%E5%8F%8C%E8%AF%AD%29", 286 | "url": "https://plink.anyfeeder.com/weixin/Economist_fans", 287 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 288 | "lastBuildDate": null, 289 | "qty": 80 290 | }, 291 | { 292 | "title": "青年文摘", 293 | "description": "青年文摘杂志社的官方公众号。小火慢炖暖心汤,挑三拣四好文章。来约,不让你失望~", 294 | "category": "杂志", 295 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E9%9D%92%E5%B9%B4%E6%96%87%E6%91%98", 296 | "url": "https://plink.anyfeeder.com/weixin/qnwzwx", 297 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 298 | "lastBuildDate": null, 299 | "qty": 79 300 | }, 301 | { 302 | "title": "豆瓣最受欢迎的书评", 303 | "description": "豆瓣成员投票选出的最佳书评", 304 | "category": "资讯", 305 | "htmlUrl": "https://book.douban.com/review/book_best/", 306 | "url": "https://www.douban.com/feed/review/book", 307 | "icon": null, 308 | "lastBuildDate": null, 309 | "qty": 79 310 | }, 311 | { 312 | "title": "太隐", 313 | "description": "一个人的思想发育史就是他的阅读史", 314 | "category": "博客", 315 | "htmlUrl": "https://wangyurui.com/", 316 | "url": "https://wangyurui.com/feed.xml", 317 | "icon": "https://i.typlog.com/wangyr45/8354037005_710322.png?x-oss-process=style/ss", 318 | "lastBuildDate": null, 319 | "qty": 78 320 | }, 321 | { 322 | "title": "异次元软件世界", 323 | "description": "软件改变生活", 324 | "category": "软件", 325 | "htmlUrl": "https://www.iplaysoft.com", 326 | "url": "http://feed.iplaysoft.com/", 327 | "icon": "https://cdn.iplaysoft.com/ips/icon/favicon-v1/favicon.ico", 328 | "lastBuildDate": null, 329 | "qty": 78 330 | }, 331 | { 332 | "title": "小众软件", 333 | "description": "分享免费、小巧、实用、有趣、绿色的软件", 334 | "category": "未分类", 335 | "htmlUrl": "https://www.appinn.com", 336 | "url": "https://feeds.appinn.com/appinns/", 337 | "icon": "https://www.appinn.com/wp-content/uploads/Appinn-icon-32.jpg", 338 | "lastBuildDate": "2024/9/25 12:46:57", 339 | "qty": 77 340 | }, 341 | { 342 | "title": "抽屉新热榜-168小时最热榜", 343 | "description": "抽屉新热榜,汇聚每日搞笑段子、热门图片、有趣新闻。它将微博、门户、社区、bbs、社交网站等海量内容聚合在一起,通过用户推荐生成最热榜单。看抽屉新热榜,每日热门、有趣资讯尽收眼底。 ", 344 | "category": "热榜", 345 | "htmlUrl": "https://dig.chouti.com/", 346 | "url": "https://rsshub.app/chouti/top/168", 347 | "icon": "https://dig.chouti.com/images/favicon-d38b877458.png", 348 | "lastBuildDate": "2024/2/29 10:35:00", 349 | "qty": 76 350 | }, 351 | { 352 | "title": "编程随想的博客", 353 | "description": null, 354 | "category": "博客", 355 | "htmlUrl": "https://program-think.blogspot.com/", 356 | "url": "https://feeds2.feedburner.com/programthink", 357 | "icon": "https://program-think.blogspot.com/favicon.ico", 358 | "lastBuildDate": "2024/9/26 01:46:17", 359 | "qty": 75 360 | }, 361 | { 362 | "title": "新华社新闻_新华网", 363 | "description": "新华社新闻_新华网 ", 364 | "category": "新闻", 365 | "htmlUrl": "http://www.news.cn/whxw.htm", 366 | "url": "https://plink.anyfeeder.com/newscn/whxw", 367 | "icon": "http://www.news.cn/favicon.ico", 368 | "lastBuildDate": "2024/9/18 06:27:48", 369 | "qty": 73 370 | }, 371 | { 372 | "title": "ZAKER 精读新闻", 373 | "description": "ZAKER 精读新闻 ", 374 | "category": "新闻", 375 | "htmlUrl": "http://www.myzaker.com/?pos=selected_article", 376 | "url": "https://rsshub.app/zaker/focusread", 377 | "icon": null, 378 | "lastBuildDate": "2024/9/10 09:24:10", 379 | "qty": 71 380 | }, 381 | { 382 | "title": "热榜 - 煎蛋", 383 | "description": "煎蛋热门内容排行榜 版权声明 煎蛋所有内容皆为煎蛋用户发布,仅授权在煎蛋网页、煎蛋APP和煎蛋小程序访问。 ", 384 | "category": "热榜", 385 | "htmlUrl": "http://i.jandan.net/top", 386 | "url": "https://rsshub.app/jandan/top", 387 | "icon": "https://cdn.jandan.net/static/img/favicon.ico", 388 | "lastBuildDate": "2024/9/25 22:27:45", 389 | "qty": 71 390 | }, 391 | { 392 | "title": "知乎日报", 393 | "description": "每天3次,每次7分钟 ", 394 | "category": "热榜", 395 | "htmlUrl": "https://daily.zhihu.com", 396 | "url": "https://rsshub.app/zhihu/daily", 397 | "icon": "https://daily.zhihu.com/favicon.ico", 398 | "lastBuildDate": "2024/5/24 04:28:08", 399 | "qty": 71 400 | }, 401 | { 402 | "title": "美团技术团队", 403 | "description": "美团技术团队最近更新内容。", 404 | "category": "技术", 405 | "htmlUrl": null, 406 | "url": "https://tech.meituan.com/feed/", 407 | "icon": "https://tech.meituan.com/favicon.ico", 408 | "lastBuildDate": "2024/8/16 00:00:00", 409 | "qty": 70 410 | }, 411 | { 412 | "title": "人民日报", 413 | "description": null, 414 | "category": "新闻", 415 | "htmlUrl": "http://www.people.com.cn/", 416 | "url": "https://plink.anyfeeder.com/people-daily", 417 | "icon": null, 418 | "lastBuildDate": null, 419 | "qty": 69 420 | }, 421 | { 422 | "title": "华尔街日报", 423 | "description": null, 424 | "category": "未分类", 425 | "htmlUrl": "https://www.wsj.com", 426 | "url": "https://plink.anyfeeder.com/wsj/cn", 427 | "icon": null, 428 | "lastBuildDate": null, 429 | "qty": 69 430 | }, 431 | { 432 | "title": "BBC", 433 | "description": "BBC全文RSS。获取更多全文RSS:https://feedx.net", 434 | "category": "未分类", 435 | "htmlUrl": "http://bbc.com/", 436 | "url": "https://plink.anyfeeder.com/bbc/cn", 437 | "icon": null, 438 | "lastBuildDate": null, 439 | "qty": 67 440 | }, 441 | { 442 | "title": "云风的 BLOG", 443 | "description": null, 444 | "category": "博客", 445 | "htmlUrl": "https://blog.codingnow.com", 446 | "url": "http://blog.codingnow.com/atom.xml", 447 | "icon": "https://blog.codingnow.com/favicon.ico", 448 | "lastBuildDate": "2024/9/3 03:21:48", 449 | "qty": 67 450 | }, 451 | { 452 | "title": "月光博客", 453 | "description": "关注互联网和搜索引擎的IT科技博客", 454 | "category": "科技", 455 | "htmlUrl": "https://www.williamlong.info/", 456 | "url": "http://www.williamlong.info/rss.xml", 457 | "icon": "https://www.williamlong.info/favicon.ico", 458 | "lastBuildDate": null, 459 | "qty": 67 460 | }, 461 | { 462 | "title": "36氪", 463 | "description": "2022中国低碳科技新势力产业TOP20 互联网与人工智能、大数据等新技术的出现,推动诸多产业完成了新的转型升级。但能源与互联网等新科技之间,似乎存在着一定距", 464 | "category": "科技", 465 | "htmlUrl": "http://36kr.com", 466 | "url": "https://www.36kr.com/feed", 467 | "icon": "http://36kr.com/favicon.ico", 468 | "lastBuildDate": null, 469 | "qty": 66 470 | }, 471 | { 472 | "title": "程序员的喵", 473 | "description": null, 474 | "category": "博客", 475 | "htmlUrl": "https://catcoding.me/", 476 | "url": "https://catcoding.me/atom.xml", 477 | "icon": "http://catcoding.me/css/images/favicon.ico", 478 | "lastBuildDate": "2024/8/20 03:24:51", 479 | "qty": 66 480 | }, 481 | { 482 | "title": "让小产品的独立变现更简单 - ezindie.com", 483 | "description": "让技术变现,做可持续盈利的产品", 484 | "category": "开发者", 485 | "htmlUrl": "https://www.ezindie.com/weekly", 486 | "url": "https://www.ezindie.com/feed/rss.xml", 487 | "icon": "https://www.ezindie.com/favicon.ico", 488 | "lastBuildDate": "2024/9/18 16:07:06", 489 | "qty": 65 490 | }, 491 | { 492 | "title": "洞见", 493 | "description": "在转型时代的中国,洞察,见解。新鲜独到,犀利理性", 494 | "category": "博客", 495 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E6%B4%9E%E8%A7%81", 496 | "url": "https://plink.anyfeeder.com/weixin/DJ00123987", 497 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 498 | "lastBuildDate": null, 499 | "qty": 64 500 | }, 501 | { 502 | "title": "4K影视屋(分屋)-蓝光无损电影 - Telegram Channel", 503 | "description": "4K影视屋(分屋)-蓝光无损电影 - Telegram Channel ", 504 | "category": "影音", 505 | "htmlUrl": "https://t.me/s/dianying4K", 506 | "url": "https://rsshub.app/telegram/channel/dianying4K", 507 | "icon": "https://telegram.org/img/website_icon.svg?4", 508 | "lastBuildDate": "2024/9/17 01:43:43", 509 | "qty": 63 510 | }, 511 | { 512 | "title": "HelloGitHub 月刊", 513 | "description": "一切出于兴趣。兴趣是最好的老师,HelloGitHub 就是帮你找到编程的兴趣。", 514 | "category": "未分类", 515 | "htmlUrl": "https://hellogithub.com", 516 | "url": "http://hellogithub.com/rss", 517 | "icon": "https://hellogithub.com/favicon/android-icon-192x192.png", 518 | "lastBuildDate": "2024/8/28 08:03:49", 519 | "qty": 62 520 | }, 521 | { 522 | "title": "技術討論區 | 草榴社區 - t66y.com", 523 | "description": "技術討論區 | 草榴社區 - t66y.com ", 524 | "category": "未分类", 525 | "htmlUrl": "http://www.t66y.com/thread0806.php?fid=7", 526 | "url": "https://rsshub.app/t66y/7", 527 | "icon": null, 528 | "lastBuildDate": "2024/9/16 23:28:53", 529 | "qty": 62 530 | }, 531 | { 532 | "title": "三联生活周刊", 533 | "description": "一本杂志和他倡导的生活。", 534 | "category": "未分类", 535 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E4%B8%89%E8%81%94%E7%94%9F%E6%B4%BB%E5%91%A8%E5%88%8A", 536 | "url": "https://plink.anyfeeder.com/weixin/lifeweek", 537 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 538 | "lastBuildDate": null, 539 | "qty": 61 540 | }, 541 | { 542 | "title": "今日话题 - 雪球", 543 | "description": "雪球是一个社交投资网络,「今日话题」是雪球用户每日发布的投资交流精选。", 544 | "category": "未分类", 545 | "htmlUrl": "http://xueqiu.com/hots/topic", 546 | "url": "https://plink.anyfeeder.com/xueqiu/hot", 547 | "icon": "https://xqimg.imedao.com/17af5fe80fb1844b3fd48941.png", 548 | "lastBuildDate": "2024/9/18 05:02:00", 549 | "qty": 60 550 | }, 551 | { 552 | "title": "掘金 前端", 553 | "description": "掘金 前端 ", 554 | "category": "技术", 555 | "htmlUrl": "https://juejin.cn/frontend", 556 | "url": "https://rsshub.app/juejin/category/frontend", 557 | "icon": "https://lf3-cdn-tos.bytescm.com/obj/static/xitu_juejin_web//static/favicons/favicon-32x32.png", 558 | "lastBuildDate": "2024/9/24 23:38:56", 559 | "qty": 57 560 | }, 561 | { 562 | "title": "IT之家-24 小时最热", 563 | "description": "IT之家-24 小时最热 ", 564 | "category": "科技", 565 | "htmlUrl": "https://www.ithome.com", 566 | "url": "https://rsshub.app/ithome/ranking/24h", 567 | "icon": "https://www.ithome.com/favicon.ico", 568 | "lastBuildDate": "2024/9/25 23:43:03", 569 | "qty": 56 570 | }, 571 | { 572 | "title": "Randy's Blog", 573 | "description": null, 574 | "category": "博客", 575 | "htmlUrl": "https://lutaonan.com", 576 | "url": "https://lutaonan.com/rss.xml", 577 | "icon": null, 578 | "lastBuildDate": null, 579 | "qty": 55 580 | }, 581 | { 582 | "title": "参考消息", 583 | "description": "纵览外国媒体每日报道精选", 584 | "category": "未分类", 585 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E5%8F%82%E8%80%83%E6%B6%88%E6%81%AF", 586 | "url": "https://plink.anyfeeder.com/weixin/ckxxwx", 587 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 588 | "lastBuildDate": null, 589 | "qty": 55 590 | }, 591 | { 592 | "title": "知乎日报", 593 | "description": null, 594 | "category": "资讯", 595 | "htmlUrl": "https://news-at.zhihu.com/api/4/stories/latest?client=0", 596 | "url": "http://feeds.feedburner.com/zhihu-daily", 597 | "icon": null, 598 | "lastBuildDate": "2024/9/26 00:00:36", 599 | "qty": 54 600 | }, 601 | { 602 | "title": "微博热搜榜", 603 | "description": "实时热点,每分钟更新一次 ", 604 | "category": "微博", 605 | "htmlUrl": "https://s.weibo.com/top/summary?cate=realtimehot", 606 | "url": "https://plink.anyfeeder.com/weibo/search/hot", 607 | "icon": "https://s.weibo.com/favicon.ico", 608 | "lastBuildDate": "2024/9/25 20:06:52", 609 | "qty": 54 610 | }, 611 | { 612 | "title": "纽约时报", 613 | "description": "纽约时报全文RSS。获取更多全文RSS:https://feedx.net", 614 | "category": "未分类", 615 | "htmlUrl": "https://nytimes.com/", 616 | "url": "https://plink.anyfeeder.com/nytimes/cn", 617 | "icon": "https://nytimes.com/vi-assets/static-assets/favicon-d2483f10ef688e6f89e23806b9700298.ico", 618 | "lastBuildDate": null, 619 | "qty": 53 620 | }, 621 | { 622 | "title": "中国日报: 双语新闻", 623 | "description": null, 624 | "category": "未分类", 625 | "htmlUrl": "http://language.chinadaily.com.cn/news_bilingual.html", 626 | "url": "https://plink.anyfeeder.com/chinadaily/dual", 627 | "icon": null, 628 | "lastBuildDate": null, 629 | "qty": 53 630 | }, 631 | { 632 | "title": "晚晴幽草轩", 633 | "description": null, 634 | "category": "博客", 635 | "htmlUrl": "https://www.jeffjade.com", 636 | "url": "https://www.jeffjade.com/atom.xml", 637 | "icon": "https://www.jeffjade.com/favicons/favicon.ico", 638 | "lastBuildDate": "2024/8/30 17:26:20", 639 | "qty": 52 640 | }, 641 | { 642 | "title": "土木坛子", 643 | "description": "和光同尘,与时舒卷", 644 | "category": "博客", 645 | "htmlUrl": "https://tumutanzi.com/", 646 | "url": "https://tumutanzi.com/feed", 647 | "icon": "https://tumutanzi.com/favicon.ico", 648 | "lastBuildDate": "2024/9/13 07:20:52", 649 | "qty": 52 650 | }, 651 | { 652 | "title": "游戏研究社", 653 | "description": null, 654 | "category": "博客", 655 | "htmlUrl": "https://www.yystv.cn/", 656 | "url": "https://www.yystv.cn/rss/feed", 657 | "icon": null, 658 | "lastBuildDate": null, 659 | "qty": 52 660 | }, 661 | { 662 | "title": "美国之音", 663 | "description": "美国之音 ", 664 | "category": "未分类", 665 | "htmlUrl": "https://www.voachinese.com/", 666 | "url": "https://plink.anyfeeder.com/voa/chinese", 667 | "icon": "https://www.voachinese.com/Content/responsive/VOA/img/webApp/favicon.svg", 668 | "lastBuildDate": "2024/3/1 03:51:21", 669 | "qty": 51 670 | }, 671 | { 672 | "title": "开源中国-软件更新资讯", 673 | "description": "开源中国-软件更新资讯 ", 674 | "category": "资讯", 675 | "htmlUrl": "https://www.oschina.net/news/project", 676 | "url": "https://rsshub.app/oschina/news/project", 677 | "icon": "https://static.oschina.net/new-osc/img/favicon.ico", 678 | "lastBuildDate": "2024/9/26 00:05:13", 679 | "qty": 51 680 | }, 681 | { 682 | "title": "透明创业实验", 683 | "description": null, 684 | "category": "开发者", 685 | "htmlUrl": "https://blog.t9t.io", 686 | "url": "https://blog.t9t.io/atom.xml", 687 | "icon": "https://blog.t9t.io/favicon/favicon.ico", 688 | "lastBuildDate": "2023/12/1 01:48:37", 689 | "qty": 50 690 | }, 691 | { 692 | "title": "罗辑思维", 693 | "description": "每天一段60秒语音,一篇新角度看世界的文章。关注罗胖,让你每天比别人知道的多一些。", 694 | "category": "未分类", 695 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E7%BD%97%E8%BE%91%E6%80%9D%E7%BB%B4", 696 | "url": "https://plink.anyfeeder.com/weixin/luojisw", 697 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 698 | "lastBuildDate": null, 699 | "qty": 50 700 | }, 701 | { 702 | "title": "书单来了", 703 | "description": "如果你不知道读什么书,关注书单狗就对了。书单狗将接管你下半生的全部阅读计划。书单狗每天为500万粉丝推荐书单狗牌书单,看过你就会爱上我。", 704 | "category": "未分类", 705 | "htmlUrl": null, 706 | "url": "https://plink.anyfeeder.com/weixin/shudanlaile", 707 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 708 | "lastBuildDate": null, 709 | "qty": 50 710 | }, 711 | { 712 | "title": "潮流周刊", 713 | "description": "记录 Tw93 潮流前端的日常生活", 714 | "category": "未分类", 715 | "htmlUrl": "https://weekly.tw93.fun/", 716 | "url": "https://weekly.tw93.fun/rss.xml", 717 | "icon": "https://gw.alipayobjects.com/zos/k/qv/coffee-2-icon.png", 718 | "lastBuildDate": null, 719 | "qty": 50 720 | }, 721 | { 722 | "title": "掘金专栏-字节跳动技术团队", 723 | "description": "掘金专栏-字节跳动技术团队 ", 724 | "category": "技术", 725 | "htmlUrl": "https://juejin.cn/user/1838039172387262/posts", 726 | "url": "https://rsshub.app/juejin/posts/1838039172387262", 727 | "icon": "https://lf3-cdn-tos.bytescm.com/obj/static/xitu_juejin_web//static/favicons/favicon-32x32.png", 728 | "lastBuildDate": "2024/9/15 10:12:32", 729 | "qty": 49 730 | }, 731 | { 732 | "title": "每日一文", 733 | "description": "每日一文", 734 | "category": "影音", 735 | "htmlUrl": "http://meiriyiwen.com", 736 | "url": "http://node2.feed43.com/mryw.xml", 737 | "icon": "http://yile-static-files.b0.upaiyun.com/meiriyiwen_com_favicon.ico", 738 | "lastBuildDate": "2023/3/28 12:00:33", 739 | "qty": 49 740 | }, 741 | { 742 | "title": "经济学人", 743 | "description": "经济学人集团是分析国际商业及时事的主要来源。我们通过报纸杂志,会议商讨及电子服务等各种形式为您提供全方位信息", 744 | "category": "未分类", 745 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E7%BB%8F%E6%B5%8E%E5%AD%A6%E4%BA%BA", 746 | "url": "https://plink.anyfeeder.com/weixin/theeconomist", 747 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 748 | "lastBuildDate": null, 749 | "qty": 48 750 | }, 751 | { 752 | "title": "路透中文", 753 | "description": null, 754 | "category": "未分类", 755 | "htmlUrl": "http://reuters.com", 756 | "url": "https://plink.anyfeeder.com/reuters/cn", 757 | "icon": null, 758 | "lastBuildDate": null, 759 | "qty": 48 760 | }, 761 | { 762 | "title": "影视资源联盟 - Telegram Channel", 763 | "description": "高分剧集资源发布 ", 764 | "category": "影音", 765 | "htmlUrl": "https://t.me/s/yszylm", 766 | "url": "https://rsshub.app/telegram/channel/yszylm", 767 | "icon": "https://telegram.org/img/website_icon.svg?4", 768 | "lastBuildDate": "2024/9/25 01:41:47", 769 | "qty": 48 770 | }, 771 | { 772 | "title": "胡涂说", 773 | "description": null, 774 | "category": "博客", 775 | "htmlUrl": "https://hutusi.com/", 776 | "url": "https://hutusi.com/feed.xml", 777 | "icon": "https://hutusi.com/assets/favicon-32x32.png", 778 | "lastBuildDate": "2024/7/14 20:37:09", 779 | "qty": 47 780 | }, 781 | { 782 | "title": "历史研习社", 783 | "description": "顺时针研究历史,逆时针解毒世界", 784 | "category": "未分类", 785 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E5%8E%86%E5%8F%B2%E7%A0%94%E4%B9%A0%E7%A4%BE", 786 | "url": "https://plink.anyfeeder.com/weixin/mingqinghistory", 787 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 788 | "lastBuildDate": null, 789 | "qty": 46 790 | }, 791 | { 792 | "title": "有赞技术团队", 793 | "description": "Thoughts, stories and ideas.", 794 | "category": "技术", 795 | "htmlUrl": "https://tech.youzan.com/", 796 | "url": "https://tech.youzan.com/rss/", 797 | "icon": "https://tech.youzan.com/favicon.ico", 798 | "lastBuildDate": "2023/9/17 09:45:29", 799 | "qty": 45 800 | }, 801 | { 802 | "title": "DIYGod - 写代码是热爱,写到世界充满爱!", 803 | "description": null, 804 | "category": "博客", 805 | "htmlUrl": "https://diygod.me", 806 | "url": "https://diygod.me/atom.xml", 807 | "icon": "https://diygod.me/favicon.ico", 808 | "lastBuildDate": "2024/9/25 23:07:23", 809 | "qty": 45 810 | }, 811 | { 812 | "title": "V2EX", 813 | "description": null, 814 | "category": "未分类", 815 | "htmlUrl": "https://www.v2ex.com/", 816 | "url": "http://www.v2ex.com/index.xml", 817 | "icon": "https://www.v2ex.com/static/favicon.ico", 818 | "lastBuildDate": "2024/9/25 23:53:02", 819 | "qty": 45 820 | }, 821 | { 822 | "title": "虎嗅", 823 | "description": "虎嗅网RSS订阅", 824 | "category": "未分类", 825 | "htmlUrl": "https://www.huxiu.com", 826 | "url": "https://rss.huxiu.com/", 827 | "icon": "https://www.huxiu.com/favicon.ico", 828 | "lastBuildDate": null, 829 | "qty": 45 830 | }, 831 | { 832 | "title": "界面新闻: 财经", 833 | "description": null, 834 | "category": "未分类", 835 | "htmlUrl": "https://www.jiemian.com/lists/800.html", 836 | "url": "https://plink.anyfeeder.com/jiemian/finance", 837 | "icon": "https://www.jiemian.com/favicon.ico", 838 | "lastBuildDate": null, 839 | "qty": 45 840 | }, 841 | { 842 | "title": "Python 工匠", 843 | "description": "Programming in python, JavaScript and Golang.", 844 | "category": "博客", 845 | "htmlUrl": "https://www.zlovezl.cn", 846 | "url": "https://www.zlovezl.cn/feeds/latest/", 847 | "icon": null, 848 | "lastBuildDate": "2023/9/20 16:52:03", 849 | "qty": 44 850 | }, 851 | { 852 | "title": "哈佛商业评论", 853 | "description": "《哈佛商业评论》( Harvard Business Review,简称 HBR )创建于1922年,是哈佛商学院的标志性杂志,被全球商界誉为“管理圣经”,众多耳熟能详的管理思想家、管理理论均出自《哈佛商业评论》。更多管理智慧,请登录官方网站:www.hbrchina.org。", 854 | "category": "未分类", 855 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E5%93%88%E4%BD%9B%E5%95%86%E4%B8%9A%E8%AF%84%E8%AE%BA", 856 | "url": "https://plink.anyfeeder.com/weixin/hbrchinese", 857 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 858 | "lastBuildDate": null, 859 | "qty": 44 860 | }, 861 | { 862 | "title": "财富中文网", 863 | "description": "财富中文网 ", 864 | "category": "未分类", 865 | "htmlUrl": "https://www.fortunechina.com/", 866 | "url": "https://plink.anyfeeder.com/fortunechina", 867 | "icon": "https://www.fortunechina.com/favicon.ico", 868 | "lastBuildDate": "2024/9/18 06:12:26", 869 | "qty": 42 870 | }, 871 | { 872 | "title": "十点读书", 873 | "description": "深夜十点,陪你读书,美好的生活方式。好书/故事/美文/电台/美学。", 874 | "category": "未分类", 875 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E5%8D%81%E7%82%B9%E8%AF%BB%E4%B9%A6", 876 | "url": "https://plink.anyfeeder.com/weixin/duhaoshu", 877 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 878 | "lastBuildDate": null, 879 | "qty": 42 880 | }, 881 | { 882 | "title": "王垠的博客", 883 | "description": "王垠的博客 - 当然我在扯淡 ", 884 | "category": "博客", 885 | "htmlUrl": "https://www.yinwang.org/", 886 | "url": "https://rsshub.app/blogs/wangyin", 887 | "icon": "https://www.yinwang.org/images/Yc.jpg", 888 | "lastBuildDate": "2024/3/1 04:07:29", 889 | "qty": 42 890 | }, 891 | { 892 | "title": "InfoQ 推荐", 893 | "description": "InfoQ 推荐 ", 894 | "category": "未分类", 895 | "htmlUrl": "https://www.infoq.cn", 896 | "url": "https://plink.anyfeeder.com/infoq/recommend", 897 | "icon": "https://static001.infoq.cn/static/infoq/www/img/share-default-5tgbiuhgfefgujjhg.png", 898 | "lastBuildDate": "2024/9/18 06:12:24", 899 | "qty": 42 900 | }, 901 | { 902 | "title": "扯氮集", 903 | "description": "多歧为贵 不取苟同", 904 | "category": "博客", 905 | "htmlUrl": "http://weiwuhui.com/", 906 | "url": "http://weiwuhui.com/feed", 907 | "icon": "http://weiwuhui.com/wp-content/uploads/2020/04/cropped-截屏2020-04-05-下午8.38.09-32x32.png", 908 | "lastBuildDate": "2024/5/13 08:51:08", 909 | "qty": 41 910 | }, 911 | { 912 | "title": "纽约时报双语版", 913 | "description": "纽约时报双语版全文RSS。获取更多全文RSS:https://feedx.net", 914 | "category": "未分类", 915 | "htmlUrl": "http://nytimes.com/", 916 | "url": "https://plink.anyfeeder.com/nytimes/dual", 917 | "icon": null, 918 | "lastBuildDate": null, 919 | "qty": 41 920 | }, 921 | { 922 | "title": "理想生活实验室", 923 | "description": "为更理想的生活", 924 | "category": "未分类", 925 | "htmlUrl": "http://www.toodaylab.com", 926 | "url": "https://www.toodaylab.com/feed", 927 | "icon": "https://static.toodaylab.com/static/favicon.ico", 928 | "lastBuildDate": "2024/9/25 21:00:44", 929 | "qty": 41 930 | }, 931 | { 932 | "title": "唐巧的博客", 933 | "description": null, 934 | "category": "博客", 935 | "htmlUrl": "https://blog.devtang.com/", 936 | "url": "http://blog.devtang.com/atom.xml", 937 | "icon": "https://blog.devtang.com/assets/favicon-32x32.png", 938 | "lastBuildDate": "2024/9/21 13:51:33", 939 | "qty": 41 940 | }, 941 | { 942 | "title": "华尔街见闻", 943 | "description": "追踪全球财经热点,精选影响您财富的资讯,投资理财必备神器!", 944 | "category": "未分类", 945 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E5%8D%8E%E5%B0%94%E8%A1%97%E8%A7%81%E9%97%BB", 946 | "url": "https://plink.anyfeeder.com/weixin/wallstreetcn", 947 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 948 | "lastBuildDate": null, 949 | "qty": 41 950 | }, 951 | { 952 | "title": "《联合早报》-中港台-即时", 953 | "description": "新加坡、中国、亚洲和国际的即时、评论、商业、体育、生活、科技与多媒体新闻,尽在联合早报。 ", 954 | "category": "未分类", 955 | "htmlUrl": "https://www.zaobao.com/realtime/china", 956 | "url": "https://rsshub.app/zaobao/realtime/china", 957 | "icon": "https://oss-static-zaobao.oss-cn-hongkong.aliyuncs.com/assets/common/favicon.ico", 958 | "lastBuildDate": "2024/9/25 22:53:22", 959 | "qty": 41 960 | }, 961 | { 962 | "title": "奔跑中的奶酪", 963 | "description": "有智,有趣,有爱", 964 | "category": "博客", 965 | "htmlUrl": "https://www.runningcheese.com", 966 | "url": "https://www.runningcheese.com/feed", 967 | "icon": "https://www.runningcheese.com/favicon.ico", 968 | "lastBuildDate": "2024/8/31 15:20:09", 969 | "qty": 40 970 | }, 971 | { 972 | "title": "小众软件", 973 | "description": "分享免费、小巧、实用、有趣、绿色的软件", 974 | "category": "未分类", 975 | "htmlUrl": "https://www.appinn.com/", 976 | "url": "https://plink.anyfeeder.com/appinn", 977 | "icon": "https://www.appinn.com/wp-content/uploads/Appinn-icon-32.jpg", 978 | "lastBuildDate": "2024/9/20 09:11:13", 979 | "qty": 40 980 | }, 981 | { 982 | "title": "商业 - 财富中文网 - FORTUNEChina.com", 983 | "description": "商业 - 财富中文网 - FORTUNEChina.com ", 984 | "category": "未分类", 985 | "htmlUrl": "https://www.fortunechina.com/shangye", 986 | "url": "https://plink.anyfeeder.com/fortunechina/shangye", 987 | "icon": "https://www.fortunechina.com/favicon.ico", 988 | "lastBuildDate": "2024/9/18 05:57:34", 989 | "qty": 39 990 | }, 991 | { 992 | "title": "真实故事计划", 993 | "description": "每天一个打动人心的故事,国内首个真实故事平台。", 994 | "category": "未分类", 995 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E7%9C%9F%E5%AE%9E%E6%95%85%E4%BA%8B%E8%AE%A1%E5%88%92", 996 | "url": "https://plink.anyfeeder.com/weixin/zhenshigushi1", 997 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 998 | "lastBuildDate": null, 999 | "qty": 39 1000 | }, 1001 | { 1002 | "title": "技术小黑屋", 1003 | "description": null, 1004 | "category": "博客", 1005 | "htmlUrl": "https://droidyue.com", 1006 | "url": "https://droidyue.com/atom.xml", 1007 | "icon": null, 1008 | "lastBuildDate": "2023/3/12 20:56:31", 1009 | "qty": 38 1010 | }, 1011 | { 1012 | "title": "Mac玩儿法", 1013 | "description": null, 1014 | "category": "软件", 1015 | "htmlUrl": "https://www.waerfa.com/", 1016 | "url": "http://www.waerfa.com/feed", 1017 | "icon": "https://www.waerfa.com/wp-content/uploads/2016/08/cropped-logo-2-32x32.png", 1018 | "lastBuildDate": "2023/4/5 13:28:01", 1019 | "qty": 38 1020 | }, 1021 | { 1022 | "title": "看理想", 1023 | "description": "“看理想”诞生于知名出版品牌“理想国”,以“做出版”的态度,开发视频节目、直播、音频及周边产品等一系列媒介,探寻文化生活的另一种可能。", 1024 | "category": "未分类", 1025 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E7%9C%8B%E7%90%86%E6%83%B3", 1026 | "url": "https://plink.anyfeeder.com/weixin/ikanlixiang", 1027 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1028 | "lastBuildDate": null, 1029 | "qty": 38 1030 | }, 1031 | { 1032 | "title": "Linux 中国◆开源社区", 1033 | "description": "Linux 中国◆开源社区", 1034 | "category": "未分类", 1035 | "htmlUrl": "https://linux.cn/", 1036 | "url": "https://plink.anyfeeder.com/linux.cn", 1037 | "icon": "https://img.linux.net.cn/favicon.ico", 1038 | "lastBuildDate": "2023/12/5 10:27:46", 1039 | "qty": 37 1040 | }, 1041 | { 1042 | "title": "中国国家地理", 1043 | "description": "《中国国家地理》杂志是一本隶属于中国科学院的科学传媒,她关注未知世界的新发现和新进展,追逐已知现象的再探索和再认识。她讲述社会热点、难点、疑点话题的地理科学背景,用精准、精彩、精练的图文语言为大众提供科学话题和谈资。", 1044 | "category": "未分类", 1045 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E4%B8%AD%E5%9B%BD%E5%9B%BD%E5%AE%B6%E5%9C%B0%E7%90%86", 1046 | "url": "https://plink.anyfeeder.com/weixin/dili360", 1047 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1048 | "lastBuildDate": null, 1049 | "qty": 37 1050 | }, 1051 | { 1052 | "title": "MIT 科技评论 - 本周热榜", 1053 | "description": "MIT 科技评论 - 本周热榜 ", 1054 | "category": "未分类", 1055 | "htmlUrl": "http://www.mittrchina.com/", 1056 | "url": "https://plink.anyfeeder.com/mittrchina/hot", 1057 | "icon": "http://www.mittrchina.com/logo2.ico", 1058 | "lastBuildDate": "2024/9/5 13:42:32", 1059 | "qty": 37 1060 | }, 1061 | { 1062 | "title": "湾区日报第1370期 2021/08/09", 1063 | "description": null, 1064 | "category": "未分类", 1065 | "htmlUrl": null, 1066 | "url": "https://wanqu.co/feed/", 1067 | "icon": null, 1068 | "lastBuildDate": null, 1069 | "qty": 36 1070 | }, 1071 | { 1072 | "title": "BBC 英语教学", 1073 | "description": null, 1074 | "category": "未分类", 1075 | "htmlUrl": "http://www.bbc.co.uk/learningenglish/chinese/", 1076 | "url": "https://plink.anyfeeder.com/bbc/learningenglish", 1077 | "icon": null, 1078 | "lastBuildDate": null, 1079 | "qty": 36 1080 | }, 1081 | { 1082 | "title": "小球飞鱼", 1083 | "description": "Recent content on 小球飞鱼", 1084 | "category": "博客", 1085 | "htmlUrl": "https://mantyke.icu/", 1086 | "url": "https://mantyke.icu/index.xml", 1087 | "icon": "https://mantyke.icu/images/logo.png", 1088 | "lastBuildDate": "2024/9/8 00:00:00", 1089 | "qty": 36 1090 | }, 1091 | { 1092 | "title": "架构师之路", 1093 | "description": "架构师之路,坚持撰写接地气的架构文章", 1094 | "category": "未分类", 1095 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E6%9E%B6%E6%9E%84%E5%B8%88%E4%B9%8B%E8%B7%AF", 1096 | "url": "https://plink.anyfeeder.com/weixin/gh_10a6b96351a9", 1097 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1098 | "lastBuildDate": null, 1099 | "qty": 36 1100 | }, 1101 | { 1102 | "title": "央视新闻", 1103 | "description": "中央电视台新闻中心公众号,提供时政、社会、财经、体育、突发等新闻信息以及天气、路况、视频直播等服务信息。", 1104 | "category": "未分类", 1105 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E5%A4%AE%E8%A7%86%E6%96%B0%E9%97%BB", 1106 | "url": "https://plink.anyfeeder.com/weixin/cctvnewscenter", 1107 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1108 | "lastBuildDate": null, 1109 | "qty": 35 1110 | }, 1111 | { 1112 | "title": "香港凤凰周刊", 1113 | "description": "有温度 有情感 有趣味", 1114 | "category": "未分类", 1115 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E9%A6%99%E6%B8%AF%E5%87%A4%E5%87%B0%E5%91%A8%E5%88%8A", 1116 | "url": "https://plink.anyfeeder.com/weixin/phoenixweekly", 1117 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1118 | "lastBuildDate": null, 1119 | "qty": 35 1120 | }, 1121 | { 1122 | "title": "风雪之隅", 1123 | "description": "左手代码右手诗", 1124 | "category": "未分类", 1125 | "htmlUrl": "https://www.laruence.com", 1126 | "url": "http://www.laruence.com/feed", 1127 | "icon": "https://www.laruence.com/favicon.ico", 1128 | "lastBuildDate": "2023/2/28 06:25:46", 1129 | "qty": 35 1130 | }, 1131 | { 1132 | "title": "笔记侠", 1133 | "description": "-1~6岁CEO都在看的第一手笔记干货", 1134 | "category": "未分类", 1135 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E7%AC%94%E8%AE%B0%E4%BE%A0", 1136 | "url": "https://plink.anyfeeder.com/weixin/Notesman", 1137 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1138 | "lastBuildDate": null, 1139 | "qty": 35 1140 | }, 1141 | { 1142 | "title": "丁香医生", 1143 | "description": "每天看专业医生写的健康科普,还能随时免费查疾病、查药品、查医院。", 1144 | "category": "未分类", 1145 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E4%B8%81%E9%A6%99%E5%8C%BB%E7%94%9F", 1146 | "url": "https://plink.anyfeeder.com/weixin/DingXiangYiSheng", 1147 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1148 | "lastBuildDate": null, 1149 | "qty": 35 1150 | }, 1151 | { 1152 | "title": "中国日报: 时政", 1153 | "description": null, 1154 | "category": "新闻", 1155 | "htmlUrl": "http://china.chinadaily.com.cn/5bd5639ca3101a87ca8ff636", 1156 | "url": "https://plink.anyfeeder.com/chinadaily/china", 1157 | "icon": null, 1158 | "lastBuildDate": null, 1159 | "qty": 34 1160 | }, 1161 | { 1162 | "title": "开发者头条", 1163 | "description": null, 1164 | "category": "未分类", 1165 | "htmlUrl": "http://toutiao.io/", 1166 | "url": "https://plink.anyfeeder.com/toutiao.io", 1167 | "icon": "http://toutiao.io/favicon.ico", 1168 | "lastBuildDate": null, 1169 | "qty": 34 1170 | }, 1171 | { 1172 | "title": "Vista看天下", 1173 | "description": "《Vista看天下》唯一官方公众号,这里有最好看的新闻故事。", 1174 | "category": "未分类", 1175 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=Vista%E7%9C%8B%E5%A4%A9%E4%B8%8B", 1176 | "url": "https://plink.anyfeeder.com/weixin/vistaweek", 1177 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?nv=1&v=3", 1178 | "lastBuildDate": null, 1179 | "qty": 34 1180 | }, 1181 | { 1182 | "title": "国家人文历史", 1183 | "description": "人民日报社主管主办,原名《文史参考》,“真相、趣味、良知”,为学术界搭建话语平台,为新锐者提供思想阵地,为文史爱好者营造精神家园。", 1184 | "category": "未分类", 1185 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E5%9B%BD%E5%AE%B6%E4%BA%BA%E6%96%87%E5%8E%86%E5%8F%B2", 1186 | "url": "https://plink.anyfeeder.com/weixin/gjrwls", 1187 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1188 | "lastBuildDate": null, 1189 | "qty": 34 1190 | }, 1191 | { 1192 | "title": "地球知识局", 1193 | "description": "人文+地理+设计,全球视野新三观", 1194 | "category": "未分类", 1195 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E5%9C%B0%E7%90%83%E7%9F%A5%E8%AF%86%E5%B1%80", 1196 | "url": "https://plink.anyfeeder.com/weixin/diqiuzhishiju", 1197 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1198 | "lastBuildDate": null, 1199 | "qty": 34 1200 | }, 1201 | { 1202 | "title": "澎湃新闻", 1203 | "description": "有内涵的时政新媒体", 1204 | "category": "未分类", 1205 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E6%BE%8E%E6%B9%83%E6%96%B0%E9%97%BB", 1206 | "url": "https://plink.anyfeeder.com/weixin/thepapernews", 1207 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1208 | "lastBuildDate": null, 1209 | "qty": 34 1210 | }, 1211 | { 1212 | "title": "热门文章 - 日榜 - 人人都是产品经理", 1213 | "description": "热门文章 - 日榜 - 人人都是产品经理 ", 1214 | "category": "未分类", 1215 | "htmlUrl": "https://www.woshipm.com/", 1216 | "url": "https://plink.anyfeeder.com/woshipm/popular", 1217 | "icon": "https://image.woshipm.com/favicon.ico", 1218 | "lastBuildDate": "2024/9/18 05:34:47", 1219 | "qty": 34 1220 | }, 1221 | { 1222 | "title": "法广", 1223 | "description": "法广全文RSS。获取更多全文RSS:https://feedx.net", 1224 | "category": "未分类", 1225 | "htmlUrl": "http://rfi.fr", 1226 | "url": "https://plink.anyfeeder.com/rfi/cn", 1227 | "icon": "http://rfi.fr/favicon.ico", 1228 | "lastBuildDate": null, 1229 | "qty": 34 1230 | }, 1231 | { 1232 | "title": "第一财经周刊", 1233 | "description": "这里是《第一财经周刊》读者俱乐部,我们为你发掘精彩的商业价值,也邀请你一起探寻明亮的商业世界。", 1234 | "category": "未分类", 1235 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E7%AC%AC%E4%B8%80%E8%B4%A2%E7%BB%8F%E5%91%A8%E5%88%8A", 1236 | "url": "https://plink.anyfeeder.com/weixin/CBNweekly2008", 1237 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1238 | "lastBuildDate": null, 1239 | "qty": 33 1240 | }, 1241 | { 1242 | "title": "澳大利亚广播公司", 1243 | "description": "澳大利亚广播公司全文RSS。获取更多全文RSS:https://feedx.net", 1244 | "category": "未分类", 1245 | "htmlUrl": "http://www.abc.net.au/", 1246 | "url": "https://plink.anyfeeder.com/abc/cn", 1247 | "icon": "http://www.abc.net.au/core-assets/core/favicon-32x32.png", 1248 | "lastBuildDate": null, 1249 | "qty": 33 1250 | }, 1251 | { 1252 | "title": "张鑫旭-鑫空间-鑫生活", 1253 | "description": "it's my whole life!", 1254 | "category": "博客", 1255 | "htmlUrl": "https://www.zhangxinxu.com/wordpress", 1256 | "url": "https://www.zhangxinxu.com/wordpress/feed/", 1257 | "icon": "https://www.zhangxinxu.com/favicon.ico", 1258 | "lastBuildDate": "2024/9/11 15:18:51", 1259 | "qty": 33 1260 | }, 1261 | { 1262 | "title": "财新网", 1263 | "description": "实时、原创、专业的财经新闻集散地。在信息爆炸的年代,你需要选择", 1264 | "category": "未分类", 1265 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E8%B4%A2%E6%96%B0%E7%BD%91", 1266 | "url": "https://plink.anyfeeder.com/weixin/caixinwang", 1267 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1268 | "lastBuildDate": null, 1269 | "qty": 33 1270 | }, 1271 | { 1272 | "title": "环球时报", 1273 | "description": "报道多元世界 解读复杂中国", 1274 | "category": "未分类", 1275 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E7%8E%AF%E7%90%83%E6%97%B6%E6%8A%A5", 1276 | "url": "https://plink.anyfeeder.com/weixin/hqsbwx", 1277 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1278 | "lastBuildDate": null, 1279 | "qty": 33 1280 | }, 1281 | { 1282 | "title": "新华网", 1283 | "description": "新闻有深度 思想有温度", 1284 | "category": "未分类", 1285 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E6%96%B0%E5%8D%8E%E7%BD%91", 1286 | "url": "https://plink.anyfeeder.com/weixin/newsxinhua", 1287 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1288 | "lastBuildDate": null, 1289 | "qty": 33 1290 | }, 1291 | { 1292 | "title": "雪球", 1293 | "description": "雪球唯一官方账号,炒股,看雪球就够了,关注雪球,做更聪明的投资者。", 1294 | "category": "未分类", 1295 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E9%9B%AA%E7%90%83", 1296 | "url": "https://plink.anyfeeder.com/weixin/xueqiujinghua", 1297 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1298 | "lastBuildDate": null, 1299 | "qty": 33 1300 | }, 1301 | { 1302 | "title": "人物", 1303 | "description": "最好的中文人物报道", 1304 | "category": "未分类", 1305 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E4%BA%BA%E7%89%A9", 1306 | "url": "https://plink.anyfeeder.com/weixin/renwumag1980", 1307 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1308 | "lastBuildDate": null, 1309 | "qty": 33 1310 | }, 1311 | { 1312 | "title": "光明日报", 1313 | "description": "光明日报全文RSS。获取更多全文RSS:https://feedx.net", 1314 | "category": "未分类", 1315 | "htmlUrl": "https://www.gmw.cn/", 1316 | "url": "https://plink.anyfeeder.com/guangmingribao", 1317 | "icon": "https://www.gmw.cn/favicon.ico", 1318 | "lastBuildDate": null, 1319 | "qty": 33 1320 | }, 1321 | { 1322 | "title": "吴晓波频道", 1323 | "description": "“吴晓波频道”是财经作家吴晓波在微信平台上进行内容发布的自媒体,涵盖视频、专栏和测试。视频部分与爱奇艺合作,每周四推出。", 1324 | "category": "未分类", 1325 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E5%90%B4%E6%99%93%E6%B3%A2%E9%A2%91%E9%81%93", 1326 | "url": "https://plink.anyfeeder.com/weixin/wuxiaobopd", 1327 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1328 | "lastBuildDate": null, 1329 | "qty": 32 1330 | }, 1331 | { 1332 | "title": "有书", 1333 | "description": "加入“有书共读行动计划”,和1000万书友一起,每天早晚读书半小时,每周读完1本书,一年读完52本精选好书,成为期待的自己。", 1334 | "category": "未分类", 1335 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E6%9C%89%E4%B9%A6", 1336 | "url": "https://plink.anyfeeder.com/weixin/youshucc", 1337 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1338 | "lastBuildDate": null, 1339 | "qty": 32 1340 | }, 1341 | { 1342 | "title": "果壳网", 1343 | "description": "果壳网(Guokr.com)是开放、多元的泛科技兴趣社区。", 1344 | "category": "未分类", 1345 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E6%9E%9C%E5%A3%B3%E7%BD%91", 1346 | "url": "https://plink.anyfeeder.com/weixin/Guokr42", 1347 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1348 | "lastBuildDate": null, 1349 | "qty": 32 1350 | }, 1351 | { 1352 | "title": "读库小报", 1353 | "description": "来自读库内部的顶级绝密小道消息,绝无虚构。", 1354 | "category": "未分类", 1355 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E8%AF%BB%E5%BA%93%E5%B0%8F%E6%8A%A5", 1356 | "url": "https://plink.anyfeeder.com/weixin/dukuxiaobao", 1357 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1358 | "lastBuildDate": null, 1359 | "qty": 32 1360 | }, 1361 | { 1362 | "title": "利维坦", 1363 | "description": "“利维坦”(微信号liweitan2014),也就是我本人(写诗的时候叫“二十月”)的订阅号,纯粹个人兴趣——神经基础研究、脑科学、诗歌、小说、哲学……乱七八糟的什么都有。", 1364 | "category": "未分类", 1365 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E5%88%A9%E7%BB%B4%E5%9D%A6", 1366 | "url": "https://plink.anyfeeder.com/weixin/liweitan2014", 1367 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1368 | "lastBuildDate": null, 1369 | "qty": 32 1370 | }, 1371 | { 1372 | "title": "CSDN", 1373 | "description": "CSDN精彩内容每日推荐。我们关注IT产品研发背后的那些人、技术和故事。", 1374 | "category": "未分类", 1375 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=CSDN", 1376 | "url": "https://plink.anyfeeder.com/weixin/CSDNnews", 1377 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1378 | "lastBuildDate": null, 1379 | "qty": 32 1380 | }, 1381 | { 1382 | "title": "微软研究院AI头条", 1383 | "description": "专注科研18年,盛产黑科技", 1384 | "category": "未分类", 1385 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E5%BE%AE%E8%BD%AF%E7%A0%94%E7%A9%B6%E9%99%A2AI%E5%A4%B4%E6%9D%A1", 1386 | "url": "https://plink.anyfeeder.com/weixin/MSRAsia", 1387 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1388 | "lastBuildDate": null, 1389 | "qty": 32 1390 | }, 1391 | { 1392 | "title": "棱镜", 1393 | "description": "解密财经,透视真相。为您传递第一手新鲜财经深度报道。", 1394 | "category": "未分类", 1395 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E6%A3%B1%E9%95%9C", 1396 | "url": "https://plink.anyfeeder.com/weixin/lengjing_qqfinance", 1397 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1398 | "lastBuildDate": null, 1399 | "qty": 32 1400 | }, 1401 | { 1402 | "title": "南方周末-新闻", 1403 | "description": "南方周末-新闻 ", 1404 | "category": "未分类", 1405 | "htmlUrl": "http://www.infzm.com/contents?term_id=2", 1406 | "url": "https://plink.anyfeeder.com/infzm/news", 1407 | "icon": "http://www.infzm.com/favicon.ico", 1408 | "lastBuildDate": "2024/9/25 22:23:57", 1409 | "qty": 32 1410 | }, 1411 | { 1412 | "title": "槽边往事", 1413 | "description": "和菜头的微信Blog,用于分享各种新鲜资讯", 1414 | "category": "未分类", 1415 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E6%A7%BD%E8%BE%B9%E5%BE%80%E4%BA%8B", 1416 | "url": "https://plink.anyfeeder.com/weixin/bitsea", 1417 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1418 | "lastBuildDate": null, 1419 | "qty": 32 1420 | }, 1421 | { 1422 | "title": "新京报书评周刊", 1423 | "description": "新京报书评周刊2003年创刊,每周六出版发行,口号是“阅读需要主张”。书评周刊气质是严肃而有趣,主要评价国内外出版的大众类优秀图书。", 1424 | "category": "未分类", 1425 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E6%96%B0%E4%BA%AC%E6%8A%A5%E4%B9%A6%E8%AF%84%E5%91%A8%E5%88%8A", 1426 | "url": "https://plink.anyfeeder.com/weixin/ibookreview", 1427 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1428 | "lastBuildDate": null, 1429 | "qty": 32 1430 | }, 1431 | { 1432 | "title": "木遥的窗子", 1433 | "description": null, 1434 | "category": "未分类", 1435 | "htmlUrl": "http://blog.farmostwood.net/", 1436 | "url": "http://blog.farmostwood.net/feed", 1437 | "icon": "http://blog.farmostwood.net/favicon.ico", 1438 | "lastBuildDate": "2022/10/10 15:25:45", 1439 | "qty": 32 1440 | }, 1441 | { 1442 | "title": "中国企业家杂志", 1443 | "description": "多年来持续关注企业家阶层的生意与生活。打造最快捷高效的商业资讯交互平台,实现您的商业梦想与精神追求。", 1444 | "category": "未分类", 1445 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E4%B8%AD%E5%9B%BD%E4%BC%81%E4%B8%9A%E5%AE%B6%E6%9D%82%E5%BF%97", 1446 | "url": "https://plink.anyfeeder.com/weixin/iceo-com-cn", 1447 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1448 | "lastBuildDate": null, 1449 | "qty": 32 1450 | }, 1451 | { 1452 | "title": "经济观察报", 1453 | "description": "《经济观察报》官方微信。最具影响力的市场化财经媒体,下辖纸质版、经济观察网、研究院、电子版、音视频、微博、微信等全媒体矩阵,并主办中国最受尊敬企业、中国杰出营销奖、中国蓝筹地产、观察家年会、可持续发展在中国、中国最具创新企业等系列品牌活动。", 1454 | "category": "未分类", 1455 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E7%BB%8F%E6%B5%8E%E8%A7%82%E5%AF%9F%E6%8A%A5", 1456 | "url": "https://plink.anyfeeder.com/weixin/eeo-com-cn", 1457 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1458 | "lastBuildDate": null, 1459 | "qty": 32 1460 | }, 1461 | { 1462 | "title": "煎蛋", 1463 | "description": "地球上没有新鲜事", 1464 | "category": "未分类", 1465 | "htmlUrl": "http://jandan.net/", 1466 | "url": "https://plink.anyfeeder.com/jiandan", 1467 | "icon": "https://cdn.jandan.net/static/img/favicon.ico", 1468 | "lastBuildDate": null, 1469 | "qty": 32 1470 | }, 1471 | { 1472 | "title": "阳志平的网志", 1473 | "description": null, 1474 | "category": "博客", 1475 | "htmlUrl": "https://www.yangzhiping.com/", 1476 | "url": "https://www.yangzhiping.com/feed.xml", 1477 | "icon": "http://www.yangzhiping.com/favicon.ico", 1478 | "lastBuildDate": "2023/9/13 12:06:26", 1479 | "qty": 31 1480 | }, 1481 | { 1482 | "title": "纽约时报中文网 国际纵览", 1483 | "description": "纽约时报中文网 国际纵览", 1484 | "category": "未分类", 1485 | "htmlUrl": "https://cn.nytimes.com", 1486 | "url": "http://cn.nytimes.com/rss/news.xml", 1487 | "icon": "https://static01.nyt.com/favicon.ico", 1488 | "lastBuildDate": "2024/9/26 07:04:55", 1489 | "qty": 31 1490 | }, 1491 | { 1492 | "title": "卡瓦邦噶! » Feed", 1493 | "description": "无法自制的人得不到自由。", 1494 | "category": "未分类", 1495 | "htmlUrl": "https://www.kawabangga.com", 1496 | "url": "https://www.kawabangga.com/feed", 1497 | "icon": "https://www.kawabangga.com/wp-content/uploads/2017/04/favicon.png", 1498 | "lastBuildDate": "2024/9/13 02:06:00", 1499 | "qty": 31 1500 | }, 1501 | { 1502 | "title": "异次元软件世界", 1503 | "description": "软件改变生活", 1504 | "category": "软件", 1505 | "htmlUrl": "https://www.iplaysoft.com", 1506 | "url": "https://feed.iplaysoft.com", 1507 | "icon": "https://cdn.iplaysoft.com/ips/icon/favicon-v1/favicon.ico", 1508 | "lastBuildDate": null, 1509 | "qty": 31 1510 | }, 1511 | { 1512 | "title": "魔宙", 1513 | "description": "魔宙是一个极度个性的订阅号,定期推送半虚构的都市传说——这些大多基于真实的社会新闻,因为除了娱乐我们还想警告你!!! 关注我们后,你只会为一件事骂我们,那就是我们更的慢!!!", 1514 | "category": "未分类", 1515 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E9%AD%94%E5%AE%99", 1516 | "url": "https://plink.anyfeeder.com/weixin/mzmojo", 1517 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1518 | "lastBuildDate": null, 1519 | "qty": 31 1520 | }, 1521 | { 1522 | "title": "观止·每日一文", 1523 | "description": "观止全文RSS。获取更多全文RSS:https://feedx.net", 1524 | "category": "未分类", 1525 | "htmlUrl": "https://meiriyiwen.com/", 1526 | "url": "https://plink.anyfeeder.com/meiriyiwen", 1527 | "icon": "http://yile-static-files.b0.upaiyun.com/meiriyiwen_com_favicon.ico", 1528 | "lastBuildDate": null, 1529 | "qty": 31 1530 | }, 1531 | { 1532 | "title": "离别歌", 1533 | "description": "phith0n的小站,长期存在与分享关于网络安全与各种编程的原创文章。", 1534 | "category": "博客", 1535 | "htmlUrl": "https://www.leavesongs.com/", 1536 | "url": "https://www.leavesongs.com/feed/", 1537 | "icon": "https://www.leavesongs.com/static/cactus/images/favicon.ico", 1538 | "lastBuildDate": "2024/9/25 23:41:56", 1539 | "qty": 31 1540 | }, 1541 | { 1542 | "title": "数字尾巴 - 首页", 1543 | "description": "数字尾巴首页内容 ", 1544 | "category": "科技", 1545 | "htmlUrl": "https://www.dgtle.com/", 1546 | "url": "https://plink.anyfeeder.com/dgtle", 1547 | "icon": "https://www.dgtle.com/favicon.ico", 1548 | "lastBuildDate": "2024/3/1 05:20:17", 1549 | "qty": 31 1550 | }, 1551 | { 1552 | "title": "极客公园", 1553 | "description": "极客公园", 1554 | "category": "未分类", 1555 | "htmlUrl": "http://mainssl.geekpark.net/rss.rss", 1556 | "url": "https://plink.anyfeeder.com/geekpark", 1557 | "icon": "http://mainssl.geekpark.net/favicon.ico", 1558 | "lastBuildDate": null, 1559 | "qty": 31 1560 | }, 1561 | { 1562 | "title": "理想生活实验室", 1563 | "description": "为更理想的生活", 1564 | "category": "未分类", 1565 | "htmlUrl": "http://www.toodaylab.com/", 1566 | "url": "https://plink.anyfeeder.com/toodaylab", 1567 | "icon": "https://static.toodaylab.com/static/favicon.ico", 1568 | "lastBuildDate": "2024/9/25 23:01:43", 1569 | "qty": 31 1570 | }, 1571 | { 1572 | "title": "界面", 1573 | "description": "界面是中国最大的商业新闻和社交平台,只服务于独立思考的人群。", 1574 | "category": "未分类", 1575 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E7%95%8C%E9%9D%A2", 1576 | "url": "https://plink.anyfeeder.com/weixin/wowjiemian", 1577 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1578 | "lastBuildDate": null, 1579 | "qty": 31 1580 | }, 1581 | { 1582 | "title": "Readhub - 每日早报", 1583 | "description": "Readhub - 每日早报 ", 1584 | "category": "未分类", 1585 | "htmlUrl": "https://readhub.cn/topic/daily", 1586 | "url": "https://plink.anyfeeder.com/readhub/daily", 1587 | "icon": null, 1588 | "lastBuildDate": "2023/10/14 14:02:00", 1589 | "qty": 31 1590 | }, 1591 | { 1592 | "title": "X博士", 1593 | "description": "在这里你可以看到各种稀有冷知识、黑历史、酷文化、神人物,从钱学森到摇滚乐,无所不包。这也许会是你看过的最酷的公众号。", 1594 | "category": "未分类", 1595 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=X%E5%8D%9A%E5%A3%AB", 1596 | "url": "https://plink.anyfeeder.com/weixin/doctorx666", 1597 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?nv=1&v=3", 1598 | "lastBuildDate": null, 1599 | "qty": 31 1600 | }, 1601 | { 1602 | "title": "oldj's blog", 1603 | "description": "老杰的博客", 1604 | "category": "博客", 1605 | "htmlUrl": "https://oldj.net", 1606 | "url": "https://oldj.net/feed", 1607 | "icon": "https://oldj.net/favicon.ico", 1608 | "lastBuildDate": "2024/9/26 08:56:01", 1609 | "qty": 31 1610 | }, 1611 | { 1612 | "title": "虎嗅", 1613 | "description": "虎嗅网RSS订阅", 1614 | "category": "未分类", 1615 | "htmlUrl": "https://www.huxiu.com/", 1616 | "url": "https://plink.anyfeeder.com/huxiu", 1617 | "icon": "https://www.huxiu.com/favicon.ico", 1618 | "lastBuildDate": null, 1619 | "qty": 31 1620 | }, 1621 | { 1622 | "title": "简书首页", 1623 | "description": "简书是一个优质的创作社区,在这里,你可以任性地创作,一篇短文、一张照片、一首诗、一幅画……我们相信,每个人都是生活中的艺术家,有着无穷的创造力。 ", 1624 | "category": "未分类", 1625 | "htmlUrl": "https://www.jianshu.com/", 1626 | "url": "https://plink.anyfeeder.com/jianshu/home", 1627 | "icon": "https://cdn2.jianshu.io/assets/favicons/favicon-e743bfb1821442341c3ab15bdbe804f7ad97676bd07a770ccc9483473aa76f06.ico", 1628 | "lastBuildDate": "2024/9/18 05:01:36", 1629 | "qty": 31 1630 | }, 1631 | { 1632 | "title": "cnBeta", 1633 | "description": null, 1634 | "category": "未分类", 1635 | "htmlUrl": "https://www.cnbeta.com/backend.php", 1636 | "url": "https://plink.anyfeeder.com/cnbeta", 1637 | "icon": null, 1638 | "lastBuildDate": "2024/9/25 22:52:51", 1639 | "qty": 31 1640 | }, 1641 | { 1642 | "title": "果壳网 科学人", 1643 | "description": "果壳网 科学人 ", 1644 | "category": "未分类", 1645 | "htmlUrl": "https://www.guokr.com/scientific", 1646 | "url": "https://plink.anyfeeder.com/guokr/scientific", 1647 | "icon": "https://www.guokr.com/favicon.ico", 1648 | "lastBuildDate": "2024/9/11 15:28:54", 1649 | "qty": 31 1650 | }, 1651 | { 1652 | "title": "南方周末-推荐", 1653 | "description": "南方周末-推荐 ", 1654 | "category": "未分类", 1655 | "htmlUrl": "http://www.infzm.com/contents?term_id=1", 1656 | "url": "https://plink.anyfeeder.com/infzm/recommends", 1657 | "icon": "http://www.infzm.com/favicon.ico", 1658 | "lastBuildDate": "2024/9/25 21:21:16", 1659 | "qty": 31 1660 | }, 1661 | { 1662 | "title": "福布斯", 1663 | "description": "《福布斯》中国官方账号。福布斯中文版是福布斯媒体集团在中国所运营的财经商业媒体。", 1664 | "category": "未分类", 1665 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E7%A6%8F%E5%B8%83%E6%96%AF", 1666 | "url": "https://plink.anyfeeder.com/weixin/forbes_china", 1667 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1668 | "lastBuildDate": null, 1669 | "qty": 31 1670 | }, 1671 | { 1672 | "title": "简书", 1673 | "description": "一个优质的创作社区——有志青年聚集地", 1674 | "category": "未分类", 1675 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E7%AE%80%E4%B9%A6", 1676 | "url": "https://plink.anyfeeder.com/weixin/jianshuio", 1677 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1678 | "lastBuildDate": null, 1679 | "qty": 31 1680 | }, 1681 | { 1682 | "title": "刘润", 1683 | "description": "刘润,润米咨询创始人,互联网转型专家,中国最大的私人商学院《刘润 5分钟商学院》创始人,前微软战略合作总监。刘润任多家知名企业(海尔、中远、恒基、百度等)战略顾问,通过培训、咨询、投资等方式,帮助传统企业顺利完成互联网转型,成就再次辉煌。", 1684 | "category": "未分类", 1685 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E5%88%98%E6%B6%A6", 1686 | "url": "https://plink.anyfeeder.com/weixin/runliu-pub", 1687 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1688 | "lastBuildDate": null, 1689 | "qty": 31 1690 | }, 1691 | { 1692 | "title": "MacTalk", 1693 | "description": "MacTalk 开通于2012年末,内容起于 Mac 而不止 Mac,内容覆盖了技术、创业、产品和人文思考。文风有趣,又有一点力量。相关图书《MacTalk·人生元编程》《MacTalk·跨越边界》", 1694 | "category": "未分类", 1695 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=MacTalk", 1696 | "url": "https://plink.anyfeeder.com/weixin/sagacity-mac", 1697 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1698 | "lastBuildDate": null, 1699 | "qty": 31 1700 | }, 1701 | { 1702 | "title": "知乎日报", 1703 | "description": "知乎日报", 1704 | "category": "未分类", 1705 | "htmlUrl": "https://news-at.zhihu.com/api/4/stories/latest?client=0", 1706 | "url": "https://plink.anyfeeder.com/zhihu/daily", 1707 | "icon": null, 1708 | "lastBuildDate": "2024/5/24 05:39:13", 1709 | "qty": 31 1710 | }, 1711 | { 1712 | "title": "半月谈", 1713 | "description": "“中华第一刊”《半月谈》的官微,每天帮你分析时政大事,品读社会人生。您的时事政策顾问,学习生活益友。", 1714 | "category": "未分类", 1715 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E5%8D%8A%E6%9C%88%E8%B0%88", 1716 | "url": "https://plink.anyfeeder.com/weixin/banyuetan-weixin", 1717 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1718 | "lastBuildDate": null, 1719 | "qty": 31 1720 | }, 1721 | { 1722 | "title": "虎嗅网", 1723 | "description": "有视角的商业资讯交流平台", 1724 | "category": "科技", 1725 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E8%99%8E%E5%97%85%E7%BD%91", 1726 | "url": "https://plink.anyfeeder.com/weixin/huxiu_com", 1727 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1728 | "lastBuildDate": null, 1729 | "qty": 31 1730 | }, 1731 | { 1732 | "title": "猫笔刀", 1733 | "description": "没想好,我写什么就凑合看什么吧", 1734 | "category": "未分类", 1735 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E7%8C%AB%E7%AC%94%E5%88%80", 1736 | "url": "https://plink.anyfeeder.com/weixin/maobidao", 1737 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1738 | "lastBuildDate": null, 1739 | "qty": 31 1740 | }, 1741 | { 1742 | "title": "爱范儿", 1743 | "description": "让未来触手可及", 1744 | "category": "未分类", 1745 | "htmlUrl": "https://www.ifanr.com?utm_source=rss&utm_medium=rss&utm_campaign=/", 1746 | "url": "https://plink.anyfeeder.com/ifanr", 1747 | "icon": "https://images.ifanr.cn/wp-content/themes/ifanr-5.0-pc/static/images/favicon.ico", 1748 | "lastBuildDate": "2024/9/25 21:15:32", 1749 | "qty": 31 1750 | }, 1751 | { 1752 | "title": "叶檀财经", 1753 | "description": "聪明人,在一起说人话", 1754 | "category": "未分类", 1755 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E5%8F%B6%E6%AA%80%E8%B4%A2%E7%BB%8F", 1756 | "url": "https://plink.anyfeeder.com/weixin/tancaijing", 1757 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1758 | "lastBuildDate": null, 1759 | "qty": 31 1760 | }, 1761 | { 1762 | "title": "人民日报", 1763 | "description": "参与、沟通、记录时代。", 1764 | "category": "未分类", 1765 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E4%BA%BA%E6%B0%91%E6%97%A5%E6%8A%A5", 1766 | "url": "https://plink.anyfeeder.com/weixin/rmrbwx", 1767 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1768 | "lastBuildDate": null, 1769 | "qty": 31 1770 | }, 1771 | { 1772 | "title": "搬砖小组", 1773 | "description": "资产软,负债硬,现金为王,摸鱼不成,默默搬砖", 1774 | "category": "未分类", 1775 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E6%90%AC%E7%A0%96%E5%B0%8F%E7%BB%84", 1776 | "url": "https://plink.anyfeeder.com/weixin/banzhuanxiaozu", 1777 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1778 | "lastBuildDate": null, 1779 | "qty": 31 1780 | }, 1781 | { 1782 | "title": "央视财经", 1783 | "description": null, 1784 | "category": "未分类", 1785 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E5%A4%AE%E8%A7%86%E8%B4%A2%E7%BB%8F", 1786 | "url": "https://plink.anyfeeder.com/weixin/cctvyscj", 1787 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1788 | "lastBuildDate": null, 1789 | "qty": 30 1790 | }, 1791 | { 1792 | "title": "人民网-国际新闻", 1793 | "description": "国际新闻", 1794 | "category": "未分类", 1795 | "htmlUrl": "http://world.people.cn/", 1796 | "url": "https://plink.anyfeeder.com/people/world", 1797 | "icon": "http://world.people.cn/favicon.ico", 1798 | "lastBuildDate": null, 1799 | "qty": 30 1800 | }, 1801 | { 1802 | "title": "知乎热榜", 1803 | "description": null, 1804 | "category": "未分类", 1805 | "htmlUrl": "https://www.zhihu.com/billboard", 1806 | "url": "https://plink.anyfeeder.com/zhihu/hotlist", 1807 | "icon": null, 1808 | "lastBuildDate": "2023/10/10 03:55:29", 1809 | "qty": 30 1810 | }, 1811 | { 1812 | "title": "张佳玮写字的地方", 1813 | "description": "文学、艺术、体育、历史、旅行等题材的文字源。", 1814 | "category": "未分类", 1815 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E5%BC%A0%E4%BD%B3%E7%8E%AE%E5%86%99%E5%AD%97%E7%9A%84%E5%9C%B0%E6%96%B9", 1816 | "url": "https://plink.anyfeeder.com/weixin/zhangjiawei_1983", 1817 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1818 | "lastBuildDate": null, 1819 | "qty": 30 1820 | }, 1821 | { 1822 | "title": "南方周末", 1823 | "description": "在这里,读懂中国!infzm.com", 1824 | "category": "未分类", 1825 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E5%8D%97%E6%96%B9%E5%91%A8%E6%9C%AB", 1826 | "url": "https://plink.anyfeeder.com/weixin/nanfangzhoumo", 1827 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1828 | "lastBuildDate": null, 1829 | "qty": 30 1830 | }, 1831 | { 1832 | "title": "界面新闻: 新闻", 1833 | "description": null, 1834 | "category": "未分类", 1835 | "htmlUrl": "https://www.jiemian.com/lists/801.html", 1836 | "url": "https://plink.anyfeeder.com/jiemian/news", 1837 | "icon": "https://www.jiemian.com/favicon.ico", 1838 | "lastBuildDate": null, 1839 | "qty": 30 1840 | }, 1841 | { 1842 | "title": "中国日报: 资讯", 1843 | "description": null, 1844 | "category": "未分类", 1845 | "htmlUrl": "http://world.chinadaily.com.cn/5bd55927a3101a87ca8ff614", 1846 | "url": "https://plink.anyfeeder.com/chinadaily/world", 1847 | "icon": "http://world.chinadaily.com.cn/favicon.ico", 1848 | "lastBuildDate": null, 1849 | "qty": 30 1850 | }, 1851 | { 1852 | "title": "虹膜", 1853 | "description": "最专业的电影公众号。", 1854 | "category": "未分类", 1855 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E8%99%B9%E8%86%9C", 1856 | "url": "https://plink.anyfeeder.com/weixin/IrisMagazine", 1857 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1858 | "lastBuildDate": null, 1859 | "qty": 30 1860 | }, 1861 | { 1862 | "title": "南都周刊", 1863 | "description": "《南都周刊》官方微信账号", 1864 | "category": "未分类", 1865 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E5%8D%97%E9%83%BD%E5%91%A8%E5%88%8A", 1866 | "url": "https://plink.anyfeeder.com/weixin/nbweekly", 1867 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1868 | "lastBuildDate": null, 1869 | "qty": 30 1870 | }, 1871 | { 1872 | "title": "科技 - 财富中文网 - FORTUNEChina.com", 1873 | "description": "科技 - 财富中文网 - FORTUNEChina.com ", 1874 | "category": "未分类", 1875 | "htmlUrl": "https://www.fortunechina.com/keji", 1876 | "url": "https://plink.anyfeeder.com/fortunechina/keji", 1877 | "icon": "https://www.fortunechina.com/favicon.ico", 1878 | "lastBuildDate": "2024/9/18 05:32:13", 1879 | "qty": 30 1880 | }, 1881 | { 1882 | "title": "小道消息", 1883 | "description": "小道消息,只有小道消息才能拯救中国互联网;只有小道消息才能拯救中国创业者。不关注小道消息,关注谁?", 1884 | "category": "未分类", 1885 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E5%B0%8F%E9%81%93%E6%B6%88%E6%81%AF", 1886 | "url": "https://plink.anyfeeder.com/weixin/WebNotes", 1887 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1888 | "lastBuildDate": null, 1889 | "qty": 30 1890 | }, 1891 | { 1892 | "title": "反斗限免", 1893 | "description": "反斗软件旗下软件限免资讯网站", 1894 | "category": "未分类", 1895 | "htmlUrl": "http://free.apprcn.com/feed/", 1896 | "url": "http://free.apprcn.com/feed/", 1897 | "icon": "https://free.apprcn.com/favicon.ico", 1898 | "lastBuildDate": "2024/9/25 15:13:11", 1899 | "qty": 30 1900 | }, 1901 | { 1902 | "title": "长安街知事", 1903 | "description": "提供靠谱的政事分析,解读注意不到的新闻细节,脑补有趣有料的政治常识。一群接近核心的小编,给你提供走心的时政新闻。", 1904 | "category": "未分类", 1905 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E9%95%BF%E5%AE%89%E8%A1%97%E7%9F%A5%E4%BA%8B", 1906 | "url": "https://plink.anyfeeder.com/weixin/capitalnews", 1907 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1908 | "lastBuildDate": null, 1909 | "qty": 30 1910 | }, 1911 | { 1912 | "title": "全栈应用开发:精益实践", 1913 | "description": "Blog", 1914 | "category": "博客", 1915 | "htmlUrl": "https://www.phodal.com", 1916 | "url": "https://www.phodal.com/blog/feeds/rss/", 1917 | "icon": "http://www.phodal.com/static/phodal/images/favicon.ico", 1918 | "lastBuildDate": "2024/9/22 07:38:32", 1919 | "qty": 30 1920 | }, 1921 | { 1922 | "title": "饭统戴老板", 1923 | "description": "有趣且深度的硬核财经", 1924 | "category": "未分类", 1925 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E9%A5%AD%E7%BB%9F%E6%88%B4%E8%80%81%E6%9D%BF", 1926 | "url": "https://plink.anyfeeder.com/weixin/worldofboss", 1927 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1928 | "lastBuildDate": null, 1929 | "qty": 30 1930 | }, 1931 | { 1932 | "title": "侠客岛", 1933 | "description": "但凭侠者仁心,拆解时政迷局。", 1934 | "category": "未分类", 1935 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E4%BE%A0%E5%AE%A2%E5%B2%9B", 1936 | "url": "https://plink.anyfeeder.com/weixin/xiake_island", 1937 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1938 | "lastBuildDate": null, 1939 | "qty": 30 1940 | }, 1941 | { 1942 | "title": "人民网-英语新闻", 1943 | "description": "People's Daily Online", 1944 | "category": "未分类", 1945 | "htmlUrl": "http://english.people.com.cn/", 1946 | "url": "https://plink.anyfeeder.com/people/english", 1947 | "icon": "http://english.people.com.cn/favicon.ico", 1948 | "lastBuildDate": null, 1949 | "qty": 30 1950 | }, 1951 | { 1952 | "title": "少数派", 1953 | "description": "少数派致力于更好地运用数字产品或科学方法,帮助用户提升工作效率和生活品质", 1954 | "category": "未分类", 1955 | "htmlUrl": "https://sspai.com/", 1956 | "url": "https://plink.anyfeeder.com/sspai", 1957 | "icon": "https://cdn-static.sspai.com/favicon/sspai.ico", 1958 | "lastBuildDate": null, 1959 | "qty": 30 1960 | }, 1961 | { 1962 | "title": "环球科学", 1963 | "description": "《科学美国人》独家授权中文版—《环球科学》杂志—www.huanqiukexue.com", 1964 | "category": "未分类", 1965 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E7%8E%AF%E7%90%83%E7%A7%91%E5%AD%A6", 1966 | "url": "https://plink.anyfeeder.com/weixin/ScientificAmerican", 1967 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1968 | "lastBuildDate": null, 1969 | "qty": 30 1970 | }, 1971 | { 1972 | "title": "Knowyourself", 1973 | "description": "一个能陪你科学认识自己的公号。人生很长,你不用急,也不用慌。", 1974 | "category": "未分类", 1975 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=Knowyourself", 1976 | "url": "https://plink.anyfeeder.com/weixin/knowyourself2015", 1977 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1978 | "lastBuildDate": null, 1979 | "qty": 29 1980 | }, 1981 | { 1982 | "title": "bboysoul的博客", 1983 | "description": "Recent content on Bboysoul's Blog", 1984 | "category": "博客", 1985 | "htmlUrl": "https://www.bboy.app", 1986 | "url": "https://www.bboy.app/atom.xml", 1987 | "icon": "https://www.bboy.app/oss/head.png", 1988 | "lastBuildDate": "2099/9/24 15:50:00", 1989 | "qty": 29 1990 | }, 1991 | { 1992 | "title": "脑洞故事板", 1993 | "description": "原创者的脑洞风暴,投稿邮箱tougao@gushanwenhua.com", 1994 | "category": "未分类", 1995 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E8%84%91%E6%B4%9E%E6%95%85%E4%BA%8B%E6%9D%BF", 1996 | "url": "https://plink.anyfeeder.com/weixin/ndgs233", 1997 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 1998 | "lastBuildDate": null, 1999 | "qty": 29 2000 | }, 2001 | { 2002 | "title": "科技美学", 2003 | "description": "中国领先的科技新媒体,那岩 每天用语音为你解读前沿科技,更有每期平均100万播放量的数码产品测评视频放送。工作外联 kejimeixue@163.com、官方网站 kjmx.com、官方浪微博 @科技美学", 2004 | "category": "未分类", 2005 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E7%A7%91%E6%8A%80%E7%BE%8E%E5%AD%A6", 2006 | "url": "https://plink.anyfeeder.com/weixin/kejimx", 2007 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2008 | "lastBuildDate": null, 2009 | "qty": 29 2010 | }, 2011 | { 2012 | "title": "软餐 - 新鲜软件资讯", 2013 | "description": "软餐 - 新鲜软件资讯 ", 2014 | "category": "未分类", 2015 | "htmlUrl": "https://www.ruancan.com/", 2016 | "url": "https://plink.anyfeeder.com/ruancan", 2017 | "icon": "https://www.ruancan.com/wp-content/uploads/2021/06/bitbug_favicon.ico", 2018 | "lastBuildDate": "2024/9/18 06:02:02", 2019 | "qty": 29 2020 | }, 2021 | { 2022 | "title": "人民网", 2023 | "description": "人民网官方公众号,每天为您提供最权威、最及时、最好看的新闻报道和热点解读。权威、实力,源自人民。", 2024 | "category": "未分类", 2025 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E4%BA%BA%E6%B0%91%E7%BD%91", 2026 | "url": "https://plink.anyfeeder.com/weixin/people_rmw", 2027 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2028 | "lastBuildDate": null, 2029 | "qty": 29 2030 | }, 2031 | { 2032 | "title": "唐书房", 2033 | "description": "《手把手教你读财报》作者唐朝的投资感悟、公司分析和读书笔记类原创文章。", 2034 | "category": "未分类", 2035 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E5%94%90%E4%B9%A6%E6%88%BF", 2036 | "url": "https://plink.anyfeeder.com/weixin/clouds70", 2037 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2038 | "lastBuildDate": null, 2039 | "qty": 29 2040 | }, 2041 | { 2042 | "title": "界面新闻: 商业", 2043 | "description": null, 2044 | "category": "未分类", 2045 | "htmlUrl": "https://www.jiemian.com/lists/2.html", 2046 | "url": "https://plink.anyfeeder.com/jiemian/business", 2047 | "icon": "https://www.jiemian.com/favicon.ico", 2048 | "lastBuildDate": null, 2049 | "qty": 29 2050 | }, 2051 | { 2052 | "title": "新世相", 2053 | "description": "每天最后一分钟,提供有物质基础的都市生活价值观。我们终将改变潮水的方向。", 2054 | "category": "未分类", 2055 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E6%96%B0%E4%B8%96%E7%9B%B8", 2056 | "url": "https://plink.anyfeeder.com/weixin/thefair2", 2057 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2058 | "lastBuildDate": null, 2059 | "qty": 29 2060 | }, 2061 | { 2062 | "title": "卢昌海的个人主页", 2063 | "description": null, 2064 | "category": "博客", 2065 | "htmlUrl": "https://www.changhai.org/", 2066 | "url": "https://www.changhai.org/feed.xml", 2067 | "icon": "http://www.changhai.org/favicon.ico", 2068 | "lastBuildDate": null, 2069 | "qty": 29 2070 | }, 2071 | { 2072 | "title": "美股研究社", 2073 | "description": "美股研究社,一个专注研究美股的平台,专业的美股投资人都在这。想了解美国股市行情、美股开户、美股资讯、美股公司;想获得一手美股重磅信息;想加入美股交流社群,敬请关注我们吧。", 2074 | "category": "未分类", 2075 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E7%BE%8E%E8%82%A1%E7%A0%94%E7%A9%B6%E7%A4%BE", 2076 | "url": "https://plink.anyfeeder.com/weixin/meigushe", 2077 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2078 | "lastBuildDate": null, 2079 | "qty": 29 2080 | }, 2081 | { 2082 | "title": "阑夕", 2083 | "description": "阑夕,逐鹿网(zhulu.com)创始人,专注于互联网创业、新媒体及亚文化的深度观察和商业评论。", 2084 | "category": "未分类", 2085 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E9%98%91%E5%A4%95", 2086 | "url": "https://plink.anyfeeder.com/weixin/techread", 2087 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2088 | "lastBuildDate": null, 2089 | "qty": 29 2090 | }, 2091 | { 2092 | "title": "维基百科优良条目供稿", 2093 | "description": null, 2094 | "category": "未分类", 2095 | "htmlUrl": "https://zh.wikipedia.org/wiki/Wikipedia:%E9%A6%96%E9%A1%B5", 2096 | "url": "https://zh.wikipedia.org/w/api.php?action=featuredfeed&feed=good&feedformat=atom", 2097 | "icon": null, 2098 | "lastBuildDate": null, 2099 | "qty": 29 2100 | }, 2101 | { 2102 | "title": "雷峰网", 2103 | "description": "雷峰网 - 读懂智能&未来 ", 2104 | "category": "未分类", 2105 | "htmlUrl": "https://www.leiphone.com//", 2106 | "url": "https://plink.anyfeeder.com/leiphone", 2107 | "icon": "https://www.leiphone.com/favicon.ico", 2108 | "lastBuildDate": "2024/9/18 06:40:34", 2109 | "qty": 29 2110 | }, 2111 | { 2112 | "title": "译言", 2113 | "description": "发现、翻译、分享中文之外的互联网精华", 2114 | "category": "未分类", 2115 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E8%AF%91%E8%A8%80", 2116 | "url": "https://plink.anyfeeder.com/weixin/yeeyancom", 2117 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2118 | "lastBuildDate": null, 2119 | "qty": 29 2120 | }, 2121 | { 2122 | "title": "端传媒 - 最新", 2123 | "description": null, 2124 | "category": "未分类", 2125 | "htmlUrl": "https://theinitium.com/channel/latest/", 2126 | "url": "https://plink.anyfeeder.com/initium/latest", 2127 | "icon": null, 2128 | "lastBuildDate": null, 2129 | "qty": 29 2130 | }, 2131 | { 2132 | "title": "caoz的梦呓", 2133 | "description": "caoz的心得与分享,只此一家,别无分号。", 2134 | "category": "未分类", 2135 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=caoz%E7%9A%84%E6%A2%A6%E5%91%93", 2136 | "url": "https://plink.anyfeeder.com/weixin/caozsay", 2137 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2138 | "lastBuildDate": null, 2139 | "qty": 29 2140 | }, 2141 | { 2142 | "title": null, 2143 | "description": "专业的人工智能媒体和产业服务平台", 2144 | "category": "未分类", 2145 | "htmlUrl": null, 2146 | "url": "http://plink.anyfeeder.com/weixin/almosthuman2014", 2147 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2148 | "lastBuildDate": null, 2149 | "qty": 29 2150 | }, 2151 | { 2152 | "title": "21世纪经济报道", 2153 | "description": "21君陪你度过经济、投资里的漫长岁月。", 2154 | "category": "未分类", 2155 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=21%E4%B8%96%E7%BA%AA%E7%BB%8F%E6%B5%8E%E6%8A%A5%E9%81%93", 2156 | "url": "https://plink.anyfeeder.com/weixin/jjbd21", 2157 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2158 | "lastBuildDate": null, 2159 | "qty": 29 2160 | }, 2161 | { 2162 | "title": "糗事百科", 2163 | "description": "糗事百科官方微信号 qiushibaike.com", 2164 | "category": "热榜", 2165 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E7%B3%97%E4%BA%8B%E7%99%BE%E7%A7%91", 2166 | "url": "https://plink.anyfeeder.com/weixin/qiubai2005", 2167 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2168 | "lastBuildDate": null, 2169 | "qty": 29 2170 | }, 2171 | { 2172 | "title": "物种日历", 2173 | "description": "兔狲、龙猫、几维鸟,总有一款毛球打动你;铃兰、桔梗、四照花,植物们也可以萌萌哒~ 跟着日历娘,每天认识一个物种,让你的世界,每天变得更萌一些!", 2174 | "category": "未分类", 2175 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E7%89%A9%E7%A7%8D%E6%97%A5%E5%8E%86", 2176 | "url": "https://plink.anyfeeder.com/weixin/guokrpac", 2177 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2178 | "lastBuildDate": null, 2179 | "qty": 29 2180 | }, 2181 | { 2182 | "title": "三节课", 2183 | "description": "三节课是一所互联网人的在线大学。这里有成体系的线上产品+运营课程,有线下“每年培养300位顶尖互联网人”的3.3计划,以及每日互联网大事的观点汇总。", 2184 | "category": "未分类", 2185 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E4%B8%89%E8%8A%82%E8%AF%BE", 2186 | "url": "https://plink.anyfeeder.com/weixin/sanjieke01", 2187 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2188 | "lastBuildDate": null, 2189 | "qty": 29 2190 | }, 2191 | { 2192 | "title": "机核", 2193 | "description": "不止是游戏", 2194 | "category": "未分类", 2195 | "htmlUrl": "https://www.gcores.com/", 2196 | "url": "https://plink.anyfeeder.com/gcores", 2197 | "icon": "https://www.gcores.com/favicon.ico?v=jw7pQOOwRY", 2198 | "lastBuildDate": "2024/9/26 00:14:33", 2199 | "qty": 29 2200 | }, 2201 | { 2202 | "title": "LinkedIn 领英", 2203 | "description": "LinkedIn (领英) 创建于 2003 年,致力于向全球职场人士提供沟通平台,协助他们事半功倍,发挥所长。作为全球最大的职业社交网站,LinkedIn会员人数在世界范围内超过4亿,每个《财富》世界 500 强公司均有高管加入。", 2204 | "category": "未分类", 2205 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=LinkedIn%20%E9%A2%86%E8%8B%B1", 2206 | "url": "https://plink.anyfeeder.com/weixin/LinkedIn-China", 2207 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2208 | "lastBuildDate": null, 2209 | "qty": 29 2210 | }, 2211 | { 2212 | "title": "连岳", 2213 | "description": "连岳文字", 2214 | "category": "未分类", 2215 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E8%BF%9E%E5%B2%B3", 2216 | "url": "https://plink.anyfeeder.com/weixin/ilianyue", 2217 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2218 | "lastBuildDate": null, 2219 | "qty": 29 2220 | }, 2221 | { 2222 | "title": "品玩", 2223 | "description": "有品好玩的科技,一切与你有关", 2224 | "category": "未分类", 2225 | "htmlUrl": "https://www.pingwest.com/", 2226 | "url": "https://plink.anyfeeder.com/pingwest", 2227 | "icon": "https://cdn.pingwest.com/pw-favicon.png", 2228 | "lastBuildDate": null, 2229 | "qty": 29 2230 | }, 2231 | { 2232 | "title": "丁香妈妈", 2233 | "description": "丁香妈妈是丁香医生旗下的母婴科普平台。医学硕士二宝妈,每天分享科学靠谱的育儿知识。科学育儿,更是轻松育儿。", 2234 | "category": "未分类", 2235 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E4%B8%81%E9%A6%99%E5%A6%88%E5%A6%88", 2236 | "url": "https://plink.anyfeeder.com/weixin/DingXiangMaMi", 2237 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2238 | "lastBuildDate": null, 2239 | "qty": 29 2240 | }, 2241 | { 2242 | "title": "Readhub - 热门话题", 2243 | "description": "Readhub - 热门话题 ", 2244 | "category": "未分类", 2245 | "htmlUrl": "https://readhub.cn/topic/topic", 2246 | "url": "https://plink.anyfeeder.com/readhub/topic", 2247 | "icon": null, 2248 | "lastBuildDate": "2023/10/13 03:43:51", 2249 | "qty": 29 2250 | }, 2251 | { 2252 | "title": "新智元", 2253 | "description": "智能+中国主平台,致力于推动中国从互联网+迈向智能+新纪元。重点关注人工智能、机器人等前沿领域发展,关注人机融合、人工智能和机器人革命对人类社会与文明进化的影响,领航中国新智能时代。", 2254 | "category": "未分类", 2255 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E6%96%B0%E6%99%BA%E5%85%83", 2256 | "url": "https://plink.anyfeeder.com/weixin/AI_era", 2257 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2258 | "lastBuildDate": null, 2259 | "qty": 29 2260 | }, 2261 | { 2262 | "title": "新经济100人", 2263 | "description": "深度报道新经济各行业领导者的科技新媒体。由《创京东》、《九败一胜》作者李志刚和他的小伙伴们打理。", 2264 | "category": "未分类", 2265 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E6%96%B0%E7%BB%8F%E6%B5%8E100%E4%BA%BA", 2266 | "url": "https://plink.anyfeeder.com/weixin/qiyejiagc", 2267 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2268 | "lastBuildDate": null, 2269 | "qty": 29 2270 | }, 2271 | { 2272 | "title": "喷嚏网-财经风云", 2273 | "description": null, 2274 | "category": "未分类", 2275 | "htmlUrl": "https://www.dapenti.com/blog/blog.asp?name=caijing", 2276 | "url": "https://plink.anyfeeder.com/dapenti/caijing", 2277 | "icon": null, 2278 | "lastBuildDate": null, 2279 | "qty": 29 2280 | }, 2281 | { 2282 | "title": "经济观察网", 2283 | "description": null, 2284 | "category": "未分类", 2285 | "htmlUrl": "http://www.eeo.com.cn/", 2286 | "url": "https://plink.anyfeeder.com/eeo", 2287 | "icon": "http://www.eeo.com.cn/favicon.ico", 2288 | "lastBuildDate": null, 2289 | "qty": 28 2290 | }, 2291 | { 2292 | "title": "读小库", 2293 | "description": "我们把书做好,陪伴孩子长大", 2294 | "category": "未分类", 2295 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E8%AF%BB%E5%B0%8F%E5%BA%93", 2296 | "url": "https://plink.anyfeeder.com/weixin/duxiaoku666", 2297 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2298 | "lastBuildDate": null, 2299 | "qty": 28 2300 | }, 2301 | { 2302 | "title": "中国日报: 专栏", 2303 | "description": null, 2304 | "category": "未分类", 2305 | "htmlUrl": "http://column.chinadaily.com.cn/", 2306 | "url": "https://plink.anyfeeder.com/chinadaily/column", 2307 | "icon": null, 2308 | "lastBuildDate": null, 2309 | "qty": 28 2310 | }, 2311 | { 2312 | "title": "头条 - 求是网", 2313 | "description": "头条 - 求是网 ", 2314 | "category": "未分类", 2315 | "htmlUrl": "http://www.qstheory.cn//v9zhuanqu/toutiao/index.htm", 2316 | "url": "https://plink.anyfeeder.com/qstheory", 2317 | "icon": "http://www.qstheory.cn/favicon.ico", 2318 | "lastBuildDate": "2024/3/1 05:54:23", 2319 | "qty": 28 2320 | }, 2321 | { 2322 | "title": "单读", 2323 | "description": "《单读》出版物(前《单向街》杂志书)", 2324 | "category": "未分类", 2325 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E5%8D%95%E8%AF%BB", 2326 | "url": "https://plink.anyfeeder.com/weixin/dandureading", 2327 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2328 | "lastBuildDate": null, 2329 | "qty": 28 2330 | }, 2331 | { 2332 | "title": "新浪体育", 2333 | "description": "体育爱好者聚集地", 2334 | "category": "未分类", 2335 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E6%96%B0%E6%B5%AA%E4%BD%93%E8%82%B2", 2336 | "url": "https://plink.anyfeeder.com/weixin/sports_sina", 2337 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2338 | "lastBuildDate": null, 2339 | "qty": 28 2340 | }, 2341 | { 2342 | "title": "新财富", 2343 | "description": "来自新浪微博认证资料:新财富杂志官方微博 @新财富杂志", 2344 | "category": "未分类", 2345 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E6%96%B0%E8%B4%A2%E5%AF%8C", 2346 | "url": "https://plink.anyfeeder.com/weixin/newfortune", 2347 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2348 | "lastBuildDate": null, 2349 | "qty": 28 2350 | }, 2351 | { 2352 | "title": "经济日报", 2353 | "description": "经济日报全文RSS。获取更多全文RSS:https://feedx.net", 2354 | "category": "未分类", 2355 | "htmlUrl": "http://www.ce.cn/", 2356 | "url": "https://plink.anyfeeder.com/jingjiribao", 2357 | "icon": "http://www.ce.cn/favicon.ico", 2358 | "lastBuildDate": null, 2359 | "qty": 28 2360 | }, 2361 | { 2362 | "title": "研究 - 财富中文网 - FORTUNEChina.com", 2363 | "description": "研究 - 财富中文网 - FORTUNEChina.com ", 2364 | "category": "未分类", 2365 | "htmlUrl": "https://www.fortunechina.com/report", 2366 | "url": "https://plink.anyfeeder.com/fortunechina/report", 2367 | "icon": "https://www.fortunechina.com/favicon.ico", 2368 | "lastBuildDate": "2024/7/13 10:46:40", 2369 | "qty": 28 2370 | }, 2371 | { 2372 | "title": "东哥解读电商", 2373 | "description": "由前企鹅、阿里、京东战略分析师打造。「东哥解读电商」专注泛电商领域专业深度解读,已有10万电商人投资人关注;旗下「京腾汇」最大的京东、企鹅系创业交流合作社群,汇聚数十位京腾系高管,数十位京腾系投资人,数百家优秀创业公司,诚邀京腾系创业者加入", 2374 | "category": "未分类", 2375 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E4%B8%9C%E5%93%A5%E8%A7%A3%E8%AF%BB%E7%94%B5%E5%95%86", 2376 | "url": "https://plink.anyfeeder.com/weixin/dgjdds", 2377 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2378 | "lastBuildDate": null, 2379 | "qty": 28 2380 | }, 2381 | { 2382 | "title": "超能网", 2383 | "description": "超能网", 2384 | "category": "未分类", 2385 | "htmlUrl": "http://www.expreview.com/", 2386 | "url": "https://plink.anyfeeder.com/expreview", 2387 | "icon": "https://cj.expreview.com/favicon.ico", 2388 | "lastBuildDate": "2024/9/6 06:01:48", 2389 | "qty": 28 2390 | }, 2391 | { 2392 | "title": "医学界", 2393 | "description": "《医学界》以有品位、有追求、有爱心、有水平的医务工作者为受众,以“服务医生,改善医疗”为宗旨,让行医更幸福是我们的使命,为用户提供可靠、有用、有价值观的资讯是我们的存在方式。", 2394 | "category": "未分类", 2395 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E5%8C%BB%E5%AD%A6%E7%95%8C", 2396 | "url": "https://plink.anyfeeder.com/weixin/yixuejiezazhi", 2397 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2398 | "lastBuildDate": null, 2399 | "qty": 28 2400 | }, 2401 | { 2402 | "title": "新京报 - 好新闻,无止境", 2403 | "description": "新京报 - 好新闻,无止境 ", 2404 | "category": "未分类", 2405 | "htmlUrl": "http://www.bjnews.com.cn/realtime", 2406 | "url": "https://plink.anyfeeder.com/bjnews", 2407 | "icon": "http://www.bjnews.com.cn/favicon.ico", 2408 | "lastBuildDate": "2024/3/1 07:04:47", 2409 | "qty": 28 2410 | }, 2411 | { 2412 | "title": "钛媒体:引领未来商业与生活新知", 2413 | "description": "钛媒体致力于成为全球财经科技信息服务平台,形成了“新媒体、全球技术专家网络、科技IP与创意产品服务、科技股数据服务”四大业务板块和“钛媒体国际”业务布局,现已成为国际领先、国内极具影响力的财经信息服务商和新媒体标杆之一。", 2414 | "category": "未分类", 2415 | "htmlUrl": "http://www.tmtpost.com/", 2416 | "url": "https://plink.anyfeeder.com/tmtpost", 2417 | "icon": "https://www.tmtpost.com/favicon.ico", 2418 | "lastBuildDate": "2024/9/26 06:00:04", 2419 | "qty": 28 2420 | }, 2421 | { 2422 | "title": "喷嚏-70", 2423 | "description": "喷嚏-70 ", 2424 | "category": "未分类", 2425 | "htmlUrl": "https://www.dapenti.com/blog/blog.asp?name=xilei&subjectid=70", 2426 | "url": "https://plink.anyfeeder.com/pentitugua", 2427 | "icon": null, 2428 | "lastBuildDate": "2024/9/18 04:15:10", 2429 | "qty": 28 2430 | }, 2431 | { 2432 | "title": "首页头条--人民网", 2433 | "description": "首页头条--人民网 ", 2434 | "category": "未分类", 2435 | "htmlUrl": "http://www.people.com.cn/GB/59476/index.html", 2436 | "url": "https://plink.anyfeeder.com/people", 2437 | "icon": "http://www.people.com.cn/favicon.ico", 2438 | "lastBuildDate": "2024/9/18 04:35:10", 2439 | "qty": 28 2440 | }, 2441 | { 2442 | "title": "中国日报: 财经", 2443 | "description": null, 2444 | "category": "未分类", 2445 | "htmlUrl": "http://caijing.chinadaily.com.cn/finance/", 2446 | "url": "https://plink.anyfeeder.com/chinadaily/caijing", 2447 | "icon": "http://caijing.chinadaily.com.cn/favicon.ico", 2448 | "lastBuildDate": null, 2449 | "qty": 28 2450 | }, 2451 | { 2452 | "title": "喷嚏网-铂程斋", 2453 | "description": null, 2454 | "category": "未分类", 2455 | "htmlUrl": "https://www.dapenti.com/blog/blog.asp?name=xilei", 2456 | "url": "https://plink.anyfeeder.com/dapenti/xilei", 2457 | "icon": null, 2458 | "lastBuildDate": null, 2459 | "qty": 28 2460 | }, 2461 | { 2462 | "title": "笨方法学写作", 2463 | "description": "笨方法学写作|这一次彻底学会写作", 2464 | "category": "博客", 2465 | "htmlUrl": "https://www.cnfeat.com", 2466 | "url": "https://www.cnfeat.com/feed.xml", 2467 | "icon": "img/favicon64.png", 2468 | "lastBuildDate": "2024/2/25 14:15:27", 2469 | "qty": 28 2470 | }, 2471 | { 2472 | "title": "毛有话说", 2473 | "description": "知识改变命运,投资实现自由,我是释老毛,老毛有话说", 2474 | "category": "未分类", 2475 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E6%AF%9B%E6%9C%89%E8%AF%9D%E8%AF%B4", 2476 | "url": "https://plink.anyfeeder.com/weixin/mao-talk", 2477 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2478 | "lastBuildDate": null, 2479 | "qty": 28 2480 | }, 2481 | { 2482 | "title": "36氪", 2483 | "description": "职位名称: 36氪内容中心. 制造业方向. 深度作者 (北京) 职位描述: 1. 负责制造业方向选题挖掘及落地,快速输出中大型深度稿件。 2.能够组织行业沙龙、大会。 职位要求: 1. 具有制造业创投大公司,尤其是家电行业传统大公司高管采访资源优先。 2. 文笔好,能够完成兼具商业分析能力及可传播性的深度稿件,有代表作,3年以上媒体从业时间。 3. 熟悉传统产业,熟悉产业技术演进趋势、产业规律、未来发展趋势。 4.对商业世界抱有好奇。 简历投递: syq@36kr.com", 2484 | "category": "未分类", 2485 | "htmlUrl": "http://36kr.com/", 2486 | "url": "https://plink.anyfeeder.com/36kr", 2487 | "icon": "http://36kr.com/favicon.ico", 2488 | "lastBuildDate": null, 2489 | "qty": 27 2490 | }, 2491 | { 2492 | "title": "今日关注 - 网易新闻", 2493 | "description": "今日关注 - 网易新闻 ", 2494 | "category": "未分类", 2495 | "htmlUrl": "https://wp.m.163.com/163/html/newsapp/todayFocus/index.html", 2496 | "url": "https://plink.anyfeeder.com/netease/today", 2497 | "icon": "https://wp.m.163.com/favicon.ico", 2498 | "lastBuildDate": "2023/2/13 12:32:33", 2499 | "qty": 27 2500 | }, 2501 | { 2502 | "title": "前端之巅", 2503 | "description": "InfoQ大前端技术社群:囊括前端、移动、Node全栈一线技术,紧跟业界发展步伐。", 2504 | "category": "未分类", 2505 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E5%89%8D%E7%AB%AF%E4%B9%8B%E5%B7%85", 2506 | "url": "https://plink.anyfeeder.com/weixin/frontshow", 2507 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2508 | "lastBuildDate": null, 2509 | "qty": 27 2510 | }, 2511 | { 2512 | "title": "刘未鹏 | Mind Hacks", 2513 | "description": "思维改变生活", 2514 | "category": "博客", 2515 | "htmlUrl": "http://mindhacks.cn", 2516 | "url": "http://mindhacks.cn/feed/", 2517 | "icon": "http://mindhacks.cn/wp-content/themes/lavish-pro-child/favicon.ico", 2518 | "lastBuildDate": "2017/10/17 00:43:35", 2519 | "qty": 27 2520 | }, 2521 | { 2522 | "title": "新浪专栏-创事记", 2523 | "description": "新浪专栏-创事记 ", 2524 | "category": "未分类", 2525 | "htmlUrl": "https://tech.sina.com.cn/chuangshiji", 2526 | "url": "https://plink.anyfeeder.com/sina/csj", 2527 | "icon": "https://tech.sina.com.cn/favicon.ico", 2528 | "lastBuildDate": "2024/9/18 04:52:47", 2529 | "qty": 27 2530 | }, 2531 | { 2532 | "title": "ImportNew", 2533 | "description": "伯乐在线旗下账号,专注Java技术分享,包括Java基础技术、进阶技能、架构设计和Java技术领域动态等。", 2534 | "category": "未分类", 2535 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=ImportNew", 2536 | "url": "https://plink.anyfeeder.com/weixin/importnew", 2537 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2538 | "lastBuildDate": null, 2539 | "qty": 27 2540 | }, 2541 | { 2542 | "title": "六神磊磊读金庸", 2543 | "description": "众所周知,我的主业是读金庸", 2544 | "category": "未分类", 2545 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E5%85%AD%E7%A5%9E%E7%A3%8A%E7%A3%8A%E8%AF%BB%E9%87%91%E5%BA%B8", 2546 | "url": "https://plink.anyfeeder.com/weixin/dujinyong6", 2547 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2548 | "lastBuildDate": null, 2549 | "qty": 27 2550 | }, 2551 | { 2552 | "title": "科学松鼠会", 2553 | "description": "剥开科学的坚果,让科学流行起来。科学松鼠会唯一官方账号。", 2554 | "category": "未分类", 2555 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E7%A7%91%E5%AD%A6%E6%9D%BE%E9%BC%A0%E4%BC%9A", 2556 | "url": "https://plink.anyfeeder.com/weixin/SquirrelClub", 2557 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2558 | "lastBuildDate": null, 2559 | "qty": 27 2560 | }, 2561 | { 2562 | "title": "腾讯科技", 2563 | "description": "只供应最有营养的科技大餐!", 2564 | "category": "未分类", 2565 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E8%85%BE%E8%AE%AF%E7%A7%91%E6%8A%80", 2566 | "url": "https://plink.anyfeeder.com/weixin/qqtech", 2567 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2568 | "lastBuildDate": null, 2569 | "qty": 27 2570 | }, 2571 | { 2572 | "title": "豆瓣最受欢迎的书评", 2573 | "description": "豆瓣成员投票选出的最佳书评", 2574 | "category": "未分类", 2575 | "htmlUrl": "https://book.douban.com/review/book_best/", 2576 | "url": "https://plink.anyfeeder.com/douban/review/book", 2577 | "icon": null, 2578 | "lastBuildDate": null, 2579 | "qty": 27 2580 | }, 2581 | { 2582 | "title": "铁血军事", 2583 | "description": "铁血网,基于铁血论坛资讯内容的军事类资讯门户。提供中国军事、世界军事、军事新闻、原创军事评论、军事科技、军事小说、军品装备等全方位的中国军事及世界军事内容。", 2584 | "category": "未分类", 2585 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E9%93%81%E8%A1%80%E5%86%9B%E4%BA%8B", 2586 | "url": "https://plink.anyfeeder.com/weixin/tiexuejunshi", 2587 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2588 | "lastBuildDate": null, 2589 | "qty": 27 2590 | }, 2591 | { 2592 | "title": "德林社", 2593 | "description": "每天一个资本故事,揭秘资本玩家财技。三分钟财经脱口秀,听得懂的财经,看得懂的投资,通俗、有趣、有爆点。在这里,曾揭秘国家牛市、令氏家族坐庄、李嘉诚撤离、股市暴跌、证监会贪腐案……", 2594 | "category": "未分类", 2595 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E5%BE%B7%E6%9E%97%E7%A4%BE", 2596 | "url": "https://plink.anyfeeder.com/weixin/delinshe", 2597 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2598 | "lastBuildDate": null, 2599 | "qty": 27 2600 | }, 2601 | { 2602 | "title": "MOOC", 2603 | "description": "MOOC学院是果壳网旗下产品。为中文MOOC(大规模公开在线课程)学习者打造社会化学习平台。", 2604 | "category": "未分类", 2605 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=MOOC", 2606 | "url": "https://plink.anyfeeder.com/weixin/mooc", 2607 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2608 | "lastBuildDate": null, 2609 | "qty": 27 2610 | }, 2611 | { 2612 | "title": "MiaoTony's Blog", 2613 | "description": null, 2614 | "category": "博客", 2615 | "htmlUrl": "https://miaotony.xyz/", 2616 | "url": "https://miaotony.xyz/atom.xml", 2617 | "icon": null, 2618 | "lastBuildDate": "2024/1/10 20:39:54", 2619 | "qty": 27 2620 | }, 2621 | { 2622 | "title": "人人都是产品经理", 2623 | "description": "产品经理不再是一个单纯的职位,而是一种思维方式,这种思维是所有互联网人必备的,做互联网的人不能不懂产品,关注产品,改变生活。", 2624 | "category": "未分类", 2625 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E4%BA%BA%E4%BA%BA%E9%83%BD%E6%98%AF%E4%BA%A7%E5%93%81%E7%BB%8F%E7%90%86", 2626 | "url": "https://plink.anyfeeder.com/weixin/woshipm", 2627 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2628 | "lastBuildDate": null, 2629 | "qty": 27 2630 | }, 2631 | { 2632 | "title": null, 2633 | "description": "《知识分子》是由饶毅、鲁白、谢宇三位学者创办的移动新媒体平台,致力于关注科学、人文、思想。我们将兼容并包,时刻为渴望知识、独立思考的人努力,共享人类知识、共析现代思想、共建智趣中国。欢迎关注。", 2634 | "category": "未分类", 2635 | "htmlUrl": null, 2636 | "url": "http://plink.anyfeeder.com/weixin/The-Intellectual", 2637 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2638 | "lastBuildDate": null, 2639 | "qty": 27 2640 | }, 2641 | { 2642 | "title": "王登科-DK博客", 2643 | "description": "布洛芬爱好者", 2644 | "category": "博客", 2645 | "htmlUrl": "https://greatdk.com", 2646 | "url": "https://greatdk.com/feed", 2647 | "icon": "favicon.ico", 2648 | "lastBuildDate": "2024/6/26 01:13:02", 2649 | "qty": 27 2650 | }, 2651 | { 2652 | "title": "人人都是产品经理", 2653 | "description": "产品经理、产品爱好者学习交流平台", 2654 | "category": "未分类", 2655 | "htmlUrl": "https://www.woshipm.com", 2656 | "url": "https://www.woshipm.com/feed", 2657 | "icon": "https://image.woshipm.com/favicon.ico", 2658 | "lastBuildDate": "2024/9/25 14:57:44", 2659 | "qty": 27 2660 | }, 2661 | { 2662 | "title": "FreeBuf网络安全行业门户", 2663 | "description": null, 2664 | "category": "未分类", 2665 | "htmlUrl": "https://www.freebuf.com/", 2666 | "url": "https://plink.anyfeeder.com/freebuf", 2667 | "icon": "https://www.freebuf.com/favicon.ico", 2668 | "lastBuildDate": null, 2669 | "qty": 26 2670 | }, 2671 | { 2672 | "title": "人民网-国内新闻", 2673 | "description": "时政新闻", 2674 | "category": "未分类", 2675 | "htmlUrl": "http://politics.people.cn/", 2676 | "url": "https://plink.anyfeeder.com/people/politics", 2677 | "icon": null, 2678 | "lastBuildDate": null, 2679 | "qty": 26 2680 | }, 2681 | { 2682 | "title": "理想岛", 2683 | "description": "人与人之间最大的差别不是智商或财富,而是思考问题的层次和模式。关注理想岛,提升认知维度。", 2684 | "category": "未分类", 2685 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=%E7%90%86%E6%83%B3%E5%B2%9B", 2686 | "url": "https://plink.anyfeeder.com/weixin/lixiangdao002", 2687 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2688 | "lastBuildDate": null, 2689 | "qty": 26 2690 | }, 2691 | { 2692 | "title": "小胡子哥的个人网站", 2693 | "description": "一个有趣的灵魂 —— 想法,随笔,思考,感叹,瞬间,笔记...", 2694 | "category": "博客", 2695 | "htmlUrl": "https://www.barretlee.com", 2696 | "url": "http://www.barretlee.com/rss2.xml", 2697 | "icon": "http://www.barretlee.com/favicon.ico", 2698 | "lastBuildDate": null, 2699 | "qty": 26 2700 | }, 2701 | { 2702 | "title": "IT 之家 - IT 资讯", 2703 | "description": "IT 之家 - IT 资讯 ", 2704 | "category": "未分类", 2705 | "htmlUrl": "https://it.ithome.com/", 2706 | "url": "https://plink.anyfeeder.com/ithome/it", 2707 | "icon": "https://www.ithome.com/favicon.ico", 2708 | "lastBuildDate": "2024/9/18 07:03:03", 2709 | "qty": 26 2710 | }, 2711 | { 2712 | "title": "抽屉新热榜", 2713 | "description": "抽屉新热榜,汇聚每日搞笑段子、热门图片、有趣新闻。它将微博、门户、社区、bbs、社交网站等海量内容聚合在一起,通过用户推荐生成最热榜单。看抽屉新热榜,每日热门、有趣资讯尽收眼底。 ", 2714 | "category": "未分类", 2715 | "htmlUrl": "https://m.chouti.com/all/hot", 2716 | "url": "https://plink.anyfeeder.com/chouti/hot", 2717 | "icon": "https://m.chouti.com/static/image/favicon.png", 2718 | "lastBuildDate": "2024/3/1 04:22:31", 2719 | "qty": 26 2720 | }, 2721 | { 2722 | "title": "简书: 热门", 2723 | "description": null, 2724 | "category": "未分类", 2725 | "htmlUrl": null, 2726 | "url": "https://plink.anyfeeder.com/jianshu/trending/weekly", 2727 | "icon": null, 2728 | "lastBuildDate": null, 2729 | "qty": 26 2730 | }, 2731 | { 2732 | "title": "BIE 别的", 2733 | "description": null, 2734 | "category": "未分类", 2735 | "htmlUrl": "https://www.biede.com", 2736 | "url": "https://www.biede.com/feed/", 2737 | "icon": "https://www.biede.com/wp-content/uploads/2020/01/网站-copy-小.png", 2738 | "lastBuildDate": "2024/5/10 07:40:57", 2739 | "qty": 26 2740 | }, 2741 | { 2742 | "title": "MacTalk-池建强的随想录", 2743 | "description": "让创作成为一种生活方式", 2744 | "category": "博客", 2745 | "htmlUrl": "http://macshuo.com", 2746 | "url": "http://macshuo.com/?feed=rss2", 2747 | "icon": "https://macshuo.com/favicon.ico", 2748 | "lastBuildDate": "2024/5/20 03:01:17", 2749 | "qty": 26 2750 | }, 2751 | { 2752 | "title": "豆瓣最受欢迎的影评", 2753 | "description": "豆瓣成员投票选出的最佳影评", 2754 | "category": "未分类", 2755 | "htmlUrl": "https://movie.douban.com/review/movie_best/", 2756 | "url": "https://plink.anyfeeder.com/douban/review/movie", 2757 | "icon": null, 2758 | "lastBuildDate": null, 2759 | "qty": 26 2760 | }, 2761 | { 2762 | "title": "解放军报", 2763 | "description": null, 2764 | "category": "未分类", 2765 | "htmlUrl": "http://www.81.cn/", 2766 | "url": "https://plink.anyfeeder.com/jiefangjunbao", 2767 | "icon": null, 2768 | "lastBuildDate": null, 2769 | "qty": 26 2770 | }, 2771 | { 2772 | "title": "端传媒 / 深度", 2773 | "description": null, 2774 | "category": "未分类", 2775 | "htmlUrl": null, 2776 | "url": "https://plink.anyfeeder.com/initium/feature", 2777 | "icon": null, 2778 | "lastBuildDate": null, 2779 | "qty": 26 2780 | }, 2781 | { 2782 | "title": "腾讯新闻:国内", 2783 | "description": null, 2784 | "category": "未分类", 2785 | "htmlUrl": "https://news.qq.com/", 2786 | "url": "https://plink.anyfeeder.com/qq/news/china", 2787 | "icon": "https://mat1.gtimg.com/qqcdn/qqindex2021/favicon.ico", 2788 | "lastBuildDate": null, 2789 | "qty": 25 2790 | }, 2791 | { 2792 | "title": "Decohack", 2793 | "description": "独立开发者灵感周刊", 2794 | "category": "未分类", 2795 | "htmlUrl": null, 2796 | "url": "https://www.decohack.com/feed", 2797 | "icon": "https://www.decohack.com/wp-content/uploads/2022/03/13113516251.png", 2798 | "lastBuildDate": "2024/9/25 07:17:14", 2799 | "qty": 25 2800 | }, 2801 | { 2802 | "title": "西秦公子", 2803 | "description": "永远年轻,永远热泪盈眶", 2804 | "category": "博客", 2805 | "htmlUrl": "https://www.ixiqin.com/", 2806 | "url": "https://www.ixiqin.com/feed/", 2807 | "icon": "https://postimg.aliavv.com/wp-content/uploads/2022/01/97f338097179ed8dfa16056386fb4472-32x32.jpeg", 2808 | "lastBuildDate": "2024/9/13 14:21:28", 2809 | "qty": 25 2810 | }, 2811 | { 2812 | "title": "猎云网", 2813 | "description": null, 2814 | "category": "未分类", 2815 | "htmlUrl": null, 2816 | "url": "https://plink.anyfeeder.com/lieyunwang", 2817 | "icon": null, 2818 | "lastBuildDate": null, 2819 | "qty": 25 2820 | }, 2821 | { 2822 | "title": "أخبار - آخر أخبار اليوم | الجزيرة نت", 2823 | "description": "أخبار - آخر أخبار اليوم | الجزيرة نت ", 2824 | "category": "未分类", 2825 | "htmlUrl": "https://www.aljazeera.net/news", 2826 | "url": "https://plink.anyfeeder.com/aljazeera/news", 2827 | "icon": "https://www.aljazeera.net/favicon_aja.ico", 2828 | "lastBuildDate": "2024/9/25 23:00:57", 2829 | "qty": 25 2830 | }, 2831 | { 2832 | "title": "elmagnifico", 2833 | "description": "后端与嵌入式、maya与游戏 | elmagnifico, Back-end engineer & Embedded System Lover | 这里是elmagnifico的个人博客,君子之交淡如水。", 2834 | "category": "博客", 2835 | "htmlUrl": "http://elmagnifico.tech", 2836 | "url": "http://elmagnifico.tech/feed.xml", 2837 | "icon": "http://elmagnifico.tech/img/favicon.ico", 2838 | "lastBuildDate": "2024/9/16 18:14:03", 2839 | "qty": 25 2840 | }, 2841 | { 2842 | "title": "CSS-Tricks", 2843 | "description": "Tips, Tricks, and Techniques on using Cascading Style Sheets.", 2844 | "category": "未分类", 2845 | "htmlUrl": null, 2846 | "url": "https://css-tricks.com/feed/", 2847 | "icon": "https://css-tricks.com/favicon.ico", 2848 | "lastBuildDate": "2024/9/25 14:31:57", 2849 | "qty": 24 2850 | }, 2851 | { 2852 | "title": "腾讯新闻:国际", 2853 | "description": null, 2854 | "category": "未分类", 2855 | "htmlUrl": "https://new.qq.com/ch/world/", 2856 | "url": "https://plink.anyfeeder.com/qq/news/world", 2857 | "icon": "https://mat1.gtimg.com/qqcdn/qqindex2021/favicon.ico", 2858 | "lastBuildDate": null, 2859 | "qty": 24 2860 | }, 2861 | { 2862 | "title": "keso怎么看", 2863 | "description": "科技,互联网,生活及其他", 2864 | "category": "未分类", 2865 | "htmlUrl": "http://weixin.sogou.com/weixin?type=1&s_from=input&query=keso%E6%80%8E%E4%B9%88%E7%9C%8B", 2866 | "url": "https://plink.anyfeeder.com/weixin/kesoview", 2867 | "icon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4", 2868 | "lastBuildDate": null, 2869 | "qty": 24 2870 | }, 2871 | { 2872 | "title": "maxOS", 2873 | "description": null, 2874 | "category": "博客", 2875 | "htmlUrl": "https://maxoxo.me", 2876 | "url": "https://maxoxo.me/rss/", 2877 | "icon": null, 2878 | "lastBuildDate": "2024/9/25 23:15:34", 2879 | "qty": 24 2880 | }, 2881 | { 2882 | "title": "Sukka's Blog", 2883 | "description": null, 2884 | "category": "未分类", 2885 | "htmlUrl": "https://blog.skk.moe/", 2886 | "url": "https://blog.skk.moe/atom.xml", 2887 | "icon": null, 2888 | "lastBuildDate": "2024/9/8 15:14:10", 2889 | "qty": 24 2890 | }, 2891 | { 2892 | "title": "SBS 中文", 2893 | "description": null, 2894 | "category": "未分类", 2895 | "htmlUrl": null, 2896 | "url": "https://plink.anyfeeder.com/sbs/chinese", 2897 | "icon": null, 2898 | "lastBuildDate": null, 2899 | "qty": 24 2900 | }, 2901 | { 2902 | "title": "触乐", 2903 | "description": "高品质、有价值、有趣的移动游戏资讯", 2904 | "category": "未分类", 2905 | "htmlUrl": "http://www.chuapp.com/", 2906 | "url": "http://www.chuapp.com/feed", 2907 | "icon": "https://img.chuapp.com/wp-content/uploads/2013/12/favicon.ico?_15", 2908 | "lastBuildDate": "2024/9/25 02:03:29", 2909 | "qty": 24 2910 | }, 2911 | { 2912 | "title": "见字如面", 2913 | "description": "抽离自我,冷眼旁观", 2914 | "category": "博客", 2915 | "htmlUrl": "https://hiwannz.com", 2916 | "url": "https://hiwannz.com/feed", 2917 | "icon": "https://hiwannz.com/favicon.ico", 2918 | "lastBuildDate": "2024/8/14 01:56:19", 2919 | "qty": 24 2920 | }, 2921 | { 2922 | "title": "贼拉正经的技术博客", 2923 | "description": "@adlered", 2924 | "category": "博客", 2925 | "htmlUrl": "https://www.stackoverflow.wiki/blog/", 2926 | "url": "https://stackoverflow.wiki/blog/rss.xml", 2927 | "icon": "https://www.stackoverflow.wiki/blog/images/favicon.png", 2928 | "lastBuildDate": "2024/9/26 02:11:05", 2929 | "qty": 24 2930 | }, 2931 | { 2932 | "title": "快科技", 2933 | "description": "快科技资讯", 2934 | "category": "未分类", 2935 | "htmlUrl": null, 2936 | "url": "https://plink.anyfeeder.com/mydrivers", 2937 | "icon": "https://news.mydrivers.com/favicon.ico", 2938 | "lastBuildDate": null, 2939 | "qty": 24 2940 | }, 2941 | { 2942 | "title": null, 2943 | "description": "面向信仰编程", 2944 | "category": "未分类", 2945 | "htmlUrl": "https://draveness.me/", 2946 | "url": "https://draveness.me/feed.xml", 2947 | "icon": "https://draveness.me/favicon.ico", 2948 | "lastBuildDate": "2022/3/19 00:00:00", 2949 | "qty": 23 2950 | }, 2951 | { 2952 | "title": "免费白嫖公益代理/羊毛 - Telegram Channel", 2953 | "description": "随手分享免费白嫖公益代理/vpn/机场和羊毛,付费机场:t.me/jichangtj 博客:https://jichangtj.com/%E5%85%8D%E8%B4%B9ssr%E5%92%8Cv2ray%E6%9C%BA%E5%9C%BA.html ", 2954 | "category": "资讯", 2955 | "htmlUrl": "https://t.me/s/yangmaoshare", 2956 | "url": "https://rsshub.app/telegram/channel/yangmaoshare", 2957 | "icon": "https://telegram.org/img/website_icon.svg?4", 2958 | "lastBuildDate": "2024/9/25 23:58:59", 2959 | "qty": 23 2960 | }, 2961 | { 2962 | "title": "罗磊的独立博客", 2963 | "description": "前端工程师,ZUOLUOTV制作人", 2964 | "category": "博客", 2965 | "htmlUrl": "https://luolei.org", 2966 | "url": "http://luolei.org/feed/", 2967 | "icon": "https://static.is26.com/source/common/favicon.png", 2968 | "lastBuildDate": "2024/9/24 15:29:49", 2969 | "qty": 23 2970 | }, 2971 | { 2972 | "title": "轶哥博客", 2973 | "description": "一个全栈程序员的技术博客。", 2974 | "category": "博客", 2975 | "htmlUrl": "https://www.wyr.me/", 2976 | "url": "https://www.wyr.me/rss.xml", 2977 | "icon": "https://www.wyr.me/favicon.ico", 2978 | "lastBuildDate": "2024/9/4 04:23:21", 2979 | "qty": 23 2980 | }, 2981 | { 2982 | "title": "Tmr Blog", 2983 | "description": null, 2984 | "category": "博客", 2985 | "htmlUrl": "https://blog.xlab.app/", 2986 | "url": "https://blog.xlab.app/atom.xml", 2987 | "icon": "https://blog.xlab.app/favicon.ico", 2988 | "lastBuildDate": "2024/7/29 15:21:22", 2989 | "qty": 23 2990 | }, 2991 | { 2992 | "title": "小明明s à domicile", 2993 | "description": null, 2994 | "category": "博客", 2995 | "htmlUrl": "https://www.dongwm.com/", 2996 | "url": "https://www.dongwm.com/atom.xml", 2997 | "icon": "http://www.dongwm.com/favicon.ico", 2998 | "lastBuildDate": "2023/5/18 13:29:05", 2999 | "qty": 23 3000 | }, 3001 | { 3002 | "title": "王子亭的博客", 3003 | "description": null, 3004 | "category": "博客", 3005 | "htmlUrl": "https://jysperm.me", 3006 | "url": "https://jysperm.me/atom.xml", 3007 | "icon": "https://jysperm.me/avatars/v5.png", 3008 | "lastBuildDate": "2024/4/8 13:14:18", 3009 | "qty": 23 3010 | }, 3011 | { 3012 | "title": "Readhub / 区块链快讯", 3013 | "description": null, 3014 | "category": "未分类", 3015 | "htmlUrl": null, 3016 | "url": "https://plink.anyfeeder.com/readhub/blockchain", 3017 | "icon": null, 3018 | "lastBuildDate": null, 3019 | "qty": 22 3020 | }, 3021 | { 3022 | "title": "小众软件", 3023 | "description": "分享免费、小巧、实用、有趣、绿色的软件", 3024 | "category": "未分类", 3025 | "htmlUrl": "https://www.appinn.com", 3026 | "url": "http://feeds.appinn.com/appinns", 3027 | "icon": "https://img3.appinn.net/static/wp-content/uploads/Appinn-icon-32.jpg", 3028 | "lastBuildDate": "2024/9/25 12:46:57", 3029 | "qty": 22 3030 | }, 3031 | { 3032 | "title": "庭说", 3033 | "description": null, 3034 | "category": "博客", 3035 | "htmlUrl": "https://tingtalk.me/", 3036 | "url": "https://tingtalk.me/atom.xml", 3037 | "icon": null, 3038 | "lastBuildDate": "2024/3/29 16:00:00", 3039 | "qty": 22 3040 | }, 3041 | { 3042 | "title": "华尔街日报", 3043 | "description": null, 3044 | "category": "未分类", 3045 | "htmlUrl": "https://cn.wsj.com", 3046 | "url": "https://cn.wsj.com/zh-hans/rss", 3047 | "icon": null, 3048 | "lastBuildDate": "2023/11/7 04:18:59", 3049 | "qty": 22 3050 | }, 3051 | { 3052 | "title": "海德沙龙(HeadSalon)", 3053 | "description": "A Salon for Heads, No Sofa for Ass", 3054 | "category": "未分类", 3055 | "htmlUrl": "http://headsalon.org/", 3056 | "url": "http://headsalon.org/feed", 3057 | "icon": "https://headsalon.org/wordpress/wp-content/themes/Salon/images/head.ico", 3058 | "lastBuildDate": "2024/5/29 12:37:16", 3059 | "qty": 22 3060 | }, 3061 | { 3062 | "title": "涛叔", 3063 | "description": null, 3064 | "category": "博客", 3065 | "htmlUrl": "https://taoshu.in/", 3066 | "url": "https://taoshu.in/feed.xml", 3067 | "icon": "data:image/svg+xml,\n ??\n ", 3068 | "lastBuildDate": "2024/9/25 14:19:28", 3069 | "qty": 22 3070 | }, 3071 | { 3072 | "title": "Matrix67: The Aha Moments", 3073 | "description": null, 3074 | "category": "博客", 3075 | "htmlUrl": "http://www.matrix67.com/blog/", 3076 | "url": "http://www.matrix67.com/blog/feed", 3077 | "icon": null, 3078 | "lastBuildDate": "2023/2/13 01:41:29", 3079 | "qty": 22 3080 | }, 3081 | { 3082 | "title": "水八口记 • 记录当下赠与未来", 3083 | "description": null, 3084 | "category": "未分类", 3085 | "htmlUrl": "https://blog.shuiba.co/", 3086 | "url": "https://blog.shuiba.co/feed", 3087 | "icon": "https://blog.shuiba.co/favicon.ico", 3088 | "lastBuildDate": "2024/9/3 03:37:00", 3089 | "qty": 22 3090 | }, 3091 | { 3092 | "title": "财富中文网 / 领导力", 3093 | "description": null, 3094 | "category": "未分类", 3095 | "htmlUrl": null, 3096 | "url": "https://plink.anyfeeder.com/fortunechina/lindgaoli", 3097 | "icon": null, 3098 | "lastBuildDate": null, 3099 | "qty": 22 3100 | }, 3101 | { 3102 | "title": "Readhub / 开发者资讯", 3103 | "description": null, 3104 | "category": "未分类", 3105 | "htmlUrl": null, 3106 | "url": "https://plink.anyfeeder.com/readhub/technews", 3107 | "icon": null, 3108 | "lastBuildDate": null, 3109 | "qty": 22 3110 | }, 3111 | { 3112 | "title": "Jiajun的编程随想", 3113 | "description": "Jiajun的编程随想", 3114 | "category": "博客", 3115 | "htmlUrl": "https://jiajunhuang.com/", 3116 | "url": "https://jiajunhuang.com/rss", 3117 | "icon": "https://jiajunhuang.com/static/apple-touch-icon.png", 3118 | "lastBuildDate": null, 3119 | "qty": 21 3120 | }, 3121 | { 3122 | "title": "Vulkey_Chen's Blog", 3123 | "description": "Chen's Blog - HACK THE WORLD.", 3124 | "category": "博客", 3125 | "htmlUrl": "https://gh0st.cn/", 3126 | "url": "https://gh0st.cn/feed.xml", 3127 | "icon": "https://gh0st.cn/assets/favicon.png", 3128 | "lastBuildDate": null, 3129 | "qty": 21 3130 | }, 3131 | { 3132 | "title": "LoRexxar's Blog", 3133 | "description": null, 3134 | "category": "博客", 3135 | "htmlUrl": "https://lorexxar.cn/", 3136 | "url": "https://lorexxar.cn/atom.xml", 3137 | "icon": null, 3138 | "lastBuildDate": "2024/6/11 02:02:34", 3139 | "qty": 21 3140 | }, 3141 | { 3142 | "title": "资源分享|慕课网|腾讯课堂|网易云|极客时间|IT教程|黑马编程|远程工作|兼职私活 - Telegram Channel", 3143 | "description": "各种收费资源共享,包括慕课网,腾讯课堂,网易云,极客时间,培训机构IT教程等等,以及一些兼职,远程工作岗位...... ", 3144 | "category": "资源", 3145 | "htmlUrl": "https://t.me/s/res_share", 3146 | "url": "https://rsshub.app/telegram/channel/res_share", 3147 | "icon": "https://telegram.org/img/website_icon.svg?4", 3148 | "lastBuildDate": "2024/9/25 23:08:29", 3149 | "qty": 21 3150 | }, 3151 | { 3152 | "title": "bang's blog", 3153 | "description": "我的世界", 3154 | "category": "博客", 3155 | "htmlUrl": "https://blog.cnbang.net/", 3156 | "url": "http://blog.cnbang.net/feed/", 3157 | "icon": null, 3158 | "lastBuildDate": "2024/8/20 03:32:10", 3159 | "qty": 21 3160 | }, 3161 | { 3162 | "title": "数字移民博客", 3163 | "description": "肉体和精神,总要有一个是自由的。", 3164 | "category": "博客", 3165 | "htmlUrl": "https://blog.shuziyimin.org", 3166 | "url": "https://blog.shuziyimin.org/feed", 3167 | "icon": "https://blog.shuziyimin.org/wp-content/uploads/2021/12/cropped-shuziyimin-icon-120120-32x32.png", 3168 | "lastBuildDate": "2024/6/29 21:48:13", 3169 | "qty": 21 3170 | }, 3171 | { 3172 | "title": "今日话题 - 雪球", 3173 | "description": null, 3174 | "category": "未分类", 3175 | "htmlUrl": "https://xueqiu.com/today", 3176 | "url": "https://plink.anyfeeder.com/xueqiu/today", 3177 | "icon": null, 3178 | "lastBuildDate": "2024/9/18 06:12:33", 3179 | "qty": 20 3180 | }, 3181 | { 3182 | "title": "KAIX.IN", 3183 | "description": null, 3184 | "category": "博客", 3185 | "htmlUrl": "https://kaix.in", 3186 | "url": "https://kaix.in/feed/", 3187 | "icon": "https://kaix.in/favicon.ico", 3188 | "lastBuildDate": "2024/9/14 12:11:46", 3189 | "qty": 20 3190 | }, 3191 | { 3192 | "title": "思圆笔记", 3193 | "description": "促成良性循环", 3194 | "category": "博客", 3195 | "htmlUrl": "https://hintsnet.com/", 3196 | "url": "https://hintsnet.com/pimgeek/feed/", 3197 | "icon": "https://hintsnet.com/pimgeek/wp-content/uploads/2017/06/cropped-pimgeek-avatar-1-32x32.jpg", 3198 | "lastBuildDate": "2022/3/22 14:45:47", 3199 | "qty": 20 3200 | }, 3201 | { 3202 | "title": "Nuclear'Atk(核攻击)网络安全实验室", 3203 | "description": "Recent content on Nuclear'Atk(核攻击)网络安全实验室", 3204 | "category": "博客", 3205 | "htmlUrl": "https://lcx.cc/", 3206 | "url": "https://lcx.cc/index.xml", 3207 | "icon": "https://lcx.cc/favicon.ico", 3208 | "lastBuildDate": "2021/4/26 23:56:40", 3209 | "qty": 20 3210 | }, 3211 | { 3212 | "title": "forecho 的独立博客", 3213 | "description": "Recent content on forecho's Blog", 3214 | "category": "博客", 3215 | "htmlUrl": "https://blog.forecho.com", 3216 | "url": "https://blog.forecho.com/atom.xml", 3217 | "icon": "https://avatars0.githubusercontent.com/u/1725326?s=460&v=4", 3218 | "lastBuildDate": "2024/8/6 12:58:00", 3219 | "qty": 20 3220 | }, 3221 | { 3222 | "title": "新趣集", 3223 | "description": "新趣集是一个产品发现社区,发现最新的网站,移动 App和技术产品", 3224 | "category": "未分类", 3225 | "htmlUrl": "https://xinquji.com", 3226 | "url": "https://xinquji.com/rss", 3227 | "icon": null, 3228 | "lastBuildDate": null, 3229 | "qty": 20 3230 | }, 3231 | { 3232 | "title": "鸟窝", 3233 | "description": null, 3234 | "category": "博客", 3235 | "htmlUrl": "https://colobu.com/", 3236 | "url": "https://colobu.com/atom.xml", 3237 | "icon": "https://colobu.com/favicon.png", 3238 | "lastBuildDate": "2024/8/28 00:32:48", 3239 | "qty": 20 3240 | }, 3241 | { 3242 | "title": "Taiwan 2.0 – 展望一個更美好的台灣", 3243 | "description": "展望一個更美好的台灣", 3244 | "category": "未分类", 3245 | "htmlUrl": "https://taiwan.chtsai.org/", 3246 | "url": "https://taiwan.chtsai.org/feed/", 3247 | "icon": "https://taiwan.chtsai.org/favicon.ico", 3248 | "lastBuildDate": "2024/9/25 05:57:52", 3249 | "qty": 20 3250 | }, 3251 | { 3252 | "title": "Holmesian Blog", 3253 | "description": null, 3254 | "category": "博客", 3255 | "htmlUrl": "https://holmesian.org/", 3256 | "url": "https://holmesian.org/feed", 3257 | "icon": null, 3258 | "lastBuildDate": "2022/2/10 13:49:24", 3259 | "qty": 20 3260 | }, 3261 | { 3262 | "title": "钛媒体:引领未来商业与生活新知", 3263 | "description": "钛媒体致力于成为全球财经科技信息服务平台,形成了“新媒体、全球技术专家网络、科技IP与创意产品服务、科技股数据服务”四大业务板块和“钛媒体国际”业务布局,现已成为国际领先、国内极具影响力的财经信息服务商和新媒体标杆之一。", 3264 | "category": "未分类", 3265 | "htmlUrl": "http://www.tmtpost.com", 3266 | "url": "https://www.tmtpost.com/feed", 3267 | "icon": "https://www.tmtpost.com/favicon.ico", 3268 | "lastBuildDate": "2024/9/26 08:30:41", 3269 | "qty": 20 3270 | }, 3271 | { 3272 | "title": "二丫讲梵", 3273 | "description": "?学习?记录?分享 学无止境是永远前进的基础,跃然纸上是对知识的总结交代,与众分享则是实现价值的最好方式。", 3274 | "category": "博客", 3275 | "htmlUrl": "https://wiki.eryajf.net", 3276 | "url": "https://wiki.eryajf.net/rss.xml", 3277 | "icon": "https://wiki.eryajf.net/img/favicon.ico", 3278 | "lastBuildDate": "2024/9/22 08:41:54", 3279 | "qty": 20 3280 | }, 3281 | { 3282 | "title": "YouTube英语精选 的 bilibili 动态", 3283 | "description": "YouTube英语精选 的 bilibili 动态 ", 3284 | "category": "B站", 3285 | "htmlUrl": "https://space.bilibili.com/483301783/dynamic", 3286 | "url": "https://rsshub.app/bilibili/user/dynamic/483301783", 3287 | "icon": "https://space.bilibili.com/favicon.ico", 3288 | "lastBuildDate": "2024/9/18 04:36:27", 3289 | "qty": 20 3290 | }, 3291 | { 3292 | "title": "吕小荣的网志", 3293 | "description": "一个程序员", 3294 | "category": "博客", 3295 | "htmlUrl": "https://mednoter.com/", 3296 | "url": "https://mednoter.com/feed.xml", 3297 | "icon": "http://mednoter.com/images/fav.png", 3298 | "lastBuildDate": null, 3299 | "qty": 20 3300 | }, 3301 | { 3302 | "title": "EVILCOS", 3303 | "description": "//:alert(/Hacking Symbol/)//余弦", 3304 | "category": "博客", 3305 | "htmlUrl": "https://evilcos.me/", 3306 | "url": "https://evilcos.me/?feed=rss2", 3307 | "icon": null, 3308 | "lastBuildDate": "2018/6/18 05:12:47", 3309 | "qty": 20 3310 | }, 3311 | { 3312 | "title": "FreeBuf网络安全行业门户", 3313 | "description": null, 3314 | "category": "未分类", 3315 | "htmlUrl": "https://www.freebuf.com", 3316 | "url": "https://www.freebuf.com/feed", 3317 | "icon": "https://www.freebuf.com/favicon.ico", 3318 | "lastBuildDate": null, 3319 | "qty": 20 3320 | }, 3321 | { 3322 | "title": "最美应用", 3323 | "description": "一起发现好用、好看、好玩的应用", 3324 | "category": "未分类", 3325 | "htmlUrl": "http://zuimeia.com/?utm_source=rss&utm_campaign=rss&utm_medium=toutiao", 3326 | "url": "http://zuimeia.com/feed/", 3327 | "icon": "http://static.zuimeia.com/product/img/favicon.ico", 3328 | "lastBuildDate": "2023/7/25 12:00:00", 3329 | "qty": 19 3330 | }, 3331 | { 3332 | "title": "[ i D 公 社 ]", 3333 | "description": "发现有意味的设计", 3334 | "category": "未分类", 3335 | "htmlUrl": "https://www.hi-id.com", 3336 | "url": "http://feeds.feedburner.com/ID", 3337 | "icon": "https://www.hi-id.com/favicon.ico", 3338 | "lastBuildDate": "2018/4/18 13:52:15", 3339 | "qty": 19 3340 | }, 3341 | { 3342 | "title": "宇宙的心弦 - 细推物理须行乐 何用浮名绊此身", 3343 | "description": "细推物理须行乐 何用浮名绊此身", 3344 | "category": "未分类", 3345 | "htmlUrl": "https://www.physixfan.com/", 3346 | "url": "https://www.physixfan.com/feed/", 3347 | "icon": "https://www.physixfan.com/wp-content/themes/traction/images/favicon.ico", 3348 | "lastBuildDate": "2024/6/25 17:40:39", 3349 | "qty": 19 3350 | }, 3351 | { 3352 | "title": "今日话题 - 雪球", 3353 | "description": "雪球是一个社交投资网络,「今日话题」是雪球用户每日发布的投资交流精选。", 3354 | "category": "未分类", 3355 | "htmlUrl": "http://xueqiu.com/hots/topic", 3356 | "url": "https://xueqiu.com/hots/topic/rss", 3357 | "icon": "https://xqimg.imedao.com/17af5fe80fb1844b3fd48941.png", 3358 | "lastBuildDate": null, 3359 | "qty": 19 3360 | }, 3361 | { 3362 | "title": "我爱自然语言处理", 3363 | "description": "I Love Natural Language Processing", 3364 | "category": "博客", 3365 | "htmlUrl": "https://www.52nlp.cn/", 3366 | "url": "http://www.52nlp.cn/feed", 3367 | "icon": "https://www.52nlp.cn/favicon.ico", 3368 | "lastBuildDate": "2023/8/1 02:33:22", 3369 | "qty": 19 3370 | }, 3371 | { 3372 | "title": "web.dev", 3373 | "description": null, 3374 | "category": "未分类", 3375 | "htmlUrl": "https://web.dev/", 3376 | "url": "https://web.dev/feed.xml", 3377 | "icon": null, 3378 | "lastBuildDate": "2024/9/17 17:34:51", 3379 | "qty": 19 3380 | }, 3381 | { 3382 | "title": "Bing每日壁纸", 3383 | "description": "Bing每日壁纸 ", 3384 | "category": "影音", 3385 | "htmlUrl": "https://cn.bing.com/", 3386 | "url": "https://rsshub.app/bing", 3387 | "icon": "https://cn.bing.com/sa/simg/favicon-trans-bg-blue-mg.ico", 3388 | "lastBuildDate": "2024/9/26 01:09:37", 3389 | "qty": 19 3390 | }, 3391 | { 3392 | "title": "国光", 3393 | "description": null, 3394 | "category": "未分类", 3395 | "htmlUrl": "https://www.sqlsec.com/atom.xml", 3396 | "url": "https://www.sqlsec.com/atom.xml", 3397 | "icon": null, 3398 | "lastBuildDate": "2024/9/10 00:22:46", 3399 | "qty": 19 3400 | }, 3401 | { 3402 | "title": "优设-UISDC", 3403 | "description": null, 3404 | "category": "未分类", 3405 | "htmlUrl": "http://www.uisdc.com/", 3406 | "url": "http://www.uisdc.com/feed", 3407 | "icon": null, 3408 | "lastBuildDate": null, 3409 | "qty": 19 3410 | }, 3411 | { 3412 | "title": "GeekPlux", 3413 | "description": "Data Visualization & Full-stack programmer, always exploring", 3414 | "category": "未分类", 3415 | "htmlUrl": "https://geekplux.com", 3416 | "url": "https://geekplux.com/feed.xml", 3417 | "icon": "https://geekplux.com/favicon.ico", 3418 | "lastBuildDate": "2024/1/16 08:42:00", 3419 | "qty": 19 3420 | }, 3421 | { 3422 | "title": "Julia Evans", 3423 | "description": null, 3424 | "category": "未分类", 3425 | "htmlUrl": null, 3426 | "url": "https://jvns.ca/atom.xml", 3427 | "icon": "http://jvns.ca/favicon.ico", 3428 | "lastBuildDate": "2024/9/12 15:09:12", 3429 | "qty": 19 3430 | }, 3431 | { 3432 | "title": "Skywind Inside", 3433 | "description": "写自己的代码,让别人猜去吧", 3434 | "category": "博客", 3435 | "htmlUrl": "https://www.skywind.me/blog/", 3436 | "url": "http://www.skywind.me/blog/feed", 3437 | "icon": null, 3438 | "lastBuildDate": "2024/9/13 17:09:36", 3439 | "qty": 19 3440 | }, 3441 | { 3442 | "title": "疯投圈", 3443 | "description": "做中文世界最有意思的商业类播客", 3444 | "category": "播客", 3445 | "htmlUrl": "https://crazy.capital/", 3446 | "url": "https://crazy.capital/feed", 3447 | "icon": "https://crazy.capital/assets/icon-square-mini-dark-cn.svg", 3448 | "lastBuildDate": null, 3449 | "qty": 18 3450 | }, 3451 | { 3452 | "title": "Amicoyuan的高性能计算世界", 3453 | "description": null, 3454 | "category": "博客", 3455 | "htmlUrl": "https://xingyuanjie.top", 3456 | "url": "https://my-rssh-gwb5d33jd-amicoyuan.vercel.app/hexo/fluid/xingyuanjie.top", 3457 | "icon": null, 3458 | "lastBuildDate": "2024/9/25 22:58:08", 3459 | "qty": 18 3460 | }, 3461 | { 3462 | "title": "透明思考", 3463 | "description": null, 3464 | "category": "博客", 3465 | "htmlUrl": "http://gigix.thoughtworkers.org", 3466 | "url": "http://gigix.thoughtworkers.org/atom.xml", 3467 | "icon": "http://gigix.thoughtworkers.org/favicon.png", 3468 | "lastBuildDate": "2019/4/6 12:50:27", 3469 | "qty": 18 3470 | }, 3471 | { 3472 | "title": "This Cute World", 3473 | "description": null, 3474 | "category": "未分类", 3475 | "htmlUrl": "https://thiscute.world/", 3476 | "url": "https://thiscute.world/index.xml", 3477 | "icon": "https://thiscute.world/favicon.ico", 3478 | "lastBuildDate": "2024/8/27 10:10:22", 3479 | "qty": 18 3480 | }, 3481 | { 3482 | "title": "iNote", 3483 | "description": "Seek Truth, Find Value", 3484 | "category": "博客", 3485 | "htmlUrl": "https://inote.xyz", 3486 | "url": "https://inote.xyz/rss", 3487 | "icon": "https://inote.xyz/content/images/size/w256h256/format/png/2022/10/logo.svg", 3488 | "lastBuildDate": "2023/6/8 02:52:40", 3489 | "qty": 18 3490 | }, 3491 | { 3492 | "title": "Owen的博客", 3493 | "description": null, 3494 | "category": "未分类", 3495 | "htmlUrl": "https://www.owenyoung.com/blog/blog-to-book/", 3496 | "url": "https://www.owenyoung.com/atom.xml", 3497 | "icon": "https://www.owenyoung.com/site/images/favicon-32x32.png?h=ca02fcaedf5905bad24cad048d2c0ead87ee7df6ff599938026255c876b644a6", 3498 | "lastBuildDate": "2024/9/22 00:00:00", 3499 | "qty": 18 3500 | }, 3501 | { 3502 | "title": "ZMonster's Blog", 3503 | "description": null, 3504 | "category": "未分类", 3505 | "htmlUrl": "https://www.zmonster.me/", 3506 | "url": "http://www.zmonster.me/atom.xml", 3507 | "icon": "http://www.zmonster.me/assets/img/favicon.ico", 3508 | "lastBuildDate": "2024/5/13 07:53:45", 3509 | "qty": 18 3510 | }, 3511 | { 3512 | "title": null, 3513 | "description": "四季书评", 3514 | "category": "未分类", 3515 | "htmlUrl": "https://www.4sbooks.com", 3516 | "url": "https://www.4sbooks.com/feed", 3517 | "icon": "https://www.4sbooks.com/wp-content/uploads/2019/07/cropped-photo_2019-07-18_11-11-21-32x32.jpg", 3518 | "lastBuildDate": "2023/9/4 01:24:53", 3519 | "qty": 18 3520 | }, 3521 | { 3522 | "title": "月光博客", 3523 | "description": "关注互联网和搜索引擎的IT科技博客", 3524 | "category": "博客", 3525 | "htmlUrl": "http://www.williamlong.info/", 3526 | "url": "http://feed.williamlong.info/", 3527 | "icon": "https://www.williamlong.info/favicon.ico", 3528 | "lastBuildDate": null, 3529 | "qty": 18 3530 | }, 3531 | { 3532 | "title": "格物致知", 3533 | "description": null, 3534 | "category": "博客", 3535 | "htmlUrl": "https://liqiang.io", 3536 | "url": "https://liqiang.io/atom.xml", 3537 | "icon": "https://static.pyer.dev/static/img/favicon.ico", 3538 | "lastBuildDate": "2024/9/26 01:30:23", 3539 | "qty": 18 3540 | }, 3541 | { 3542 | "title": "Jason", 3543 | "description": null, 3544 | "category": "博客", 3545 | "htmlUrl": "https://atjason.com", 3546 | "url": "https://atjason.com/atom.xml", 3547 | "icon": "https://atjason.com/favicon.ico?v=5.1.1", 3548 | "lastBuildDate": "2024/8/4 13:53:15", 3549 | "qty": 18 3550 | }, 3551 | { 3552 | "title": "书格", 3553 | "description": "有品格的数字古籍图书馆", 3554 | "category": "影音", 3555 | "htmlUrl": "https://new.shuge.org", 3556 | "url": "https://new.shuge.org/feed/", 3557 | "icon": "https://new.shuge.org/wp-content/uploads/2018/06/shugeorg-icon.png", 3558 | "lastBuildDate": "2024/8/27 00:38:57", 3559 | "qty": 17 3560 | }, 3561 | { 3562 | "title": "欧雷流", 3563 | "description": null, 3564 | "category": "博客", 3565 | "htmlUrl": "https://ourai.ws/", 3566 | "url": "https://ourai.ws/atom.xml", 3567 | "icon": null, 3568 | "lastBuildDate": "2024/9/26 00:18:11", 3569 | "qty": 17 3570 | }, 3571 | { 3572 | "title": "61's life", 3573 | "description": "Real artists ship.", 3574 | "category": "博客", 3575 | "htmlUrl": "https://61.life/", 3576 | "url": "https://61.life/feed.xml", 3577 | "icon": null, 3578 | "lastBuildDate": null, 3579 | "qty": 17 3580 | }, 3581 | { 3582 | "title": "书伴", 3583 | "description": "你的电子书伴侣", 3584 | "category": "未分类", 3585 | "htmlUrl": "https://bookfere.com", 3586 | "url": "https://feeds.feedburner.com/bookfere", 3587 | "icon": "https://bookfere.com/favicon.ico", 3588 | "lastBuildDate": "2024/9/19 14:39:05", 3589 | "qty": 17 3590 | }, 3591 | { 3592 | "title": "Tinyfool的中文Blog", 3593 | "description": null, 3594 | "category": "博客", 3595 | "htmlUrl": "https://codechina.org/", 3596 | "url": "https://codechina.org/feed/", 3597 | "icon": "https://codechina.org/favicon.ico", 3598 | "lastBuildDate": "2024/8/8 02:17:51", 3599 | "qty": 17 3600 | } 3601 | ] -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /src/components/HelloWorld.vue: -------------------------------------------------------------------------------- 1 | 72 | 73 | 76 | -------------------------------------------------------------------------------- /src/layouts/default/Default.vue: -------------------------------------------------------------------------------- 1 | 62 | 71 | -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- 1 | /** 2 | * main.js 3 | * 4 | * Bootstraps Vuetify and other plugins then mounts the App` 5 | */ 6 | 7 | // Plugins 8 | import { registerPlugins } from '@/plugins' 9 | 10 | // Components 11 | import App from './App.vue' 12 | 13 | // Composables 14 | import { createApp } from 'vue' 15 | 16 | const app = createApp(App) 17 | 18 | registerPlugins(app) 19 | 20 | app.mount('#app') 21 | -------------------------------------------------------------------------------- /src/plugins/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * plugins/index.js 3 | * 4 | * Automatically included in `./src/main.js` 5 | */ 6 | 7 | // Plugins 8 | import vuetify from './vuetify' 9 | import pinia from '../store' 10 | import router from '../router' 11 | 12 | export function registerPlugins (app) { 13 | app 14 | .use(vuetify) 15 | .use(router) 16 | .use(pinia) 17 | } 18 | -------------------------------------------------------------------------------- /src/plugins/vuetify.js: -------------------------------------------------------------------------------- 1 | /** 2 | * plugins/vuetify.js 3 | * 4 | * Framework documentation: https://vuetifyjs.com` 5 | */ 6 | 7 | // Styles 8 | import '@mdi/font/css/materialdesignicons.css' 9 | import 'vuetify/styles' 10 | 11 | // Composables 12 | import { createVuetify } from 'vuetify' 13 | 14 | // https://vuetifyjs.com/en/introduction/why-vuetify/#feature-guides 15 | export default createVuetify({ 16 | theme: { 17 | themes: { 18 | light: { 19 | colors: { 20 | primary: '#1867C0', 21 | secondary: '#5CBBF6', 22 | }, 23 | }, 24 | }, 25 | }, 26 | }) 27 | -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- 1 | // Composables 2 | import { 3 | createRouter, 4 | createWebHistory 5 | } from 'vue-router' 6 | 7 | const routes = [{ 8 | path: '/', 9 | component: () => import('@/layouts/default/Default.vue'), 10 | children: [{ 11 | path: '', 12 | name: 'Home', 13 | // route level code-splitting 14 | // this generates a separate chunk (Home-[hash].js) for this route 15 | // which is lazy-loaded when the route is visited. 16 | component: () => import('@/views/Home.vue'), 17 | }, 18 | { 19 | path: '/account', 20 | name: 'User', 21 | component: () => import('@/views/User.vue'), 22 | }, 23 | ], 24 | }, ] 25 | 26 | const router = createRouter({ 27 | history: createWebHistory(process.env.BASE_URL), 28 | routes, 29 | }) 30 | 31 | export default router 32 | -------------------------------------------------------------------------------- /src/store/app.js: -------------------------------------------------------------------------------- 1 | // Utilities 2 | import { 3 | defineStore 4 | } from 'pinia' 5 | 6 | // feed 数据结构 7 | // { 8 | // title: string, 9 | // url: string, 10 | // htmlUrl: string, 11 | // category: string, 12 | // description: string, 13 | // lastBuildDate: string, 14 | // item: [ 15 | // { 16 | // title: string, 17 | // link: string, 18 | // description: string, 19 | // } 20 | // ] 21 | // } 22 | 23 | 24 | export const useAppStore = defineStore('app', { 25 | state: () => ({ 26 | feeds: [], 27 | loves: JSON.parse(localStorage.getItem('loves')) || [], 28 | }), 29 | actions: { 30 | async fetchFeeds() { 31 | const res = await fetch('/feeds.json') 32 | this.feeds = await res.json() 33 | }, 34 | addLove(feed) { 35 | this.loves.push(feed) 36 | localStorage.setItem('loves', JSON.stringify(this.loves)) 37 | }, 38 | removeLove(feed) { 39 | this.loves = this.loves.filter((item) => item.url !== feed.url) 40 | localStorage.setItem('loves', JSON.stringify(this.loves)) 41 | } 42 | }, 43 | getters: { 44 | cagetories: (state) => { 45 | return [...new Set(state.feeds.map((item) => item.category))] 46 | } 47 | } 48 | 49 | }) 50 | -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- 1 | // Utilities 2 | import { createPinia } from 'pinia' 3 | 4 | export default createPinia() 5 | -------------------------------------------------------------------------------- /src/styles/settings.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * src/styles/settings.scss 3 | * 4 | * Configures SASS variables and Vuetify overwrites 5 | */ 6 | 7 | // https://vuetifyjs.com/features/sass-variables/` 8 | // @use 'vuetify/settings' with ( 9 | // $color-pack: false 10 | // ); 11 | -------------------------------------------------------------------------------- /src/utils/feed2follow.js: -------------------------------------------------------------------------------- 1 | export function feed2follow(feed) { 2 | return 'https://s.webfollow.cc/f/' + feed.url.split('://')[1] 3 | } 4 | -------------------------------------------------------------------------------- /src/utils/opmlUtils.js: -------------------------------------------------------------------------------- 1 | // 将 json 转换为 opml 2 | export function jsonToOpml(json) { 3 | return ` 4 | 5 | 6 | ${json.map((item) => ``).join('\n ')} 7 | 8 | ` 9 | } 10 | 11 | // 将 opml 转换为 json 12 | export function opmlToJson(opml) { 13 | const parser = new DOMParser() 14 | const xml = parser.parseFromString(opml, 'application/xml') 15 | const body = xml.querySelector('body') 16 | const outlines = body.querySelectorAll('outline') 17 | return Array.from(outlines).map((outline) => ({ 18 | title: outline.getAttribute('text'), 19 | url: outline.getAttribute('xmlUrl'), 20 | htmlUrl: outline.getAttribute('htmlUrl'), 21 | category: outline.getAttribute('category'), 22 | })) 23 | } 24 | -------------------------------------------------------------------------------- /src/views/Home.vue: -------------------------------------------------------------------------------- 1 | 96 | 97 | 151 | -------------------------------------------------------------------------------- /src/views/User.vue: -------------------------------------------------------------------------------- 1 | 83 | 84 | 122 | -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- 1 | // Plugins 2 | import vue from '@vitejs/plugin-vue' 3 | import vuetify, { 4 | transformAssetUrls 5 | } from 'vite-plugin-vuetify' 6 | import ViteFonts from 'unplugin-fonts/vite' 7 | 8 | // Utilities 9 | import { 10 | defineConfig 11 | } from 'vite' 12 | import { 13 | fileURLToPath, 14 | URL 15 | } from 'node:url' 16 | 17 | // https://vitejs.dev/config/ 18 | export default defineConfig({ 19 | plugins: [ 20 | vue({ 21 | template: { 22 | transformAssetUrls 23 | } 24 | }), 25 | // https://github.com/vuetifyjs/vuetify-loader/tree/master/packages/vite-plugin#readme 26 | vuetify({ 27 | autoImport: true, 28 | styles: { 29 | configFile: 'src/styles/settings.scss', 30 | }, 31 | }), 32 | ViteFonts({ 33 | google: { 34 | families: [{ 35 | name: 'Roboto', 36 | styles: 'wght@100;300;400;500;700;900', 37 | }], 38 | }, 39 | }), 40 | ], 41 | define: { 42 | 'process.env': {} 43 | }, 44 | resolve: { 45 | alias: { 46 | '@': fileURLToPath(new URL('./src', 47 | import.meta.url)) 48 | }, 49 | extensions: [ 50 | '.js', 51 | '.json', 52 | '.jsx', 53 | '.mjs', 54 | '.ts', 55 | '.tsx', 56 | '.vue', 57 | ], 58 | }, 59 | css: { 60 | preprocessorOptions: { 61 | scss: { 62 | silenceDeprecations: ["legacy-js-api"], 63 | }, 64 | }, 65 | }, 66 | server: { 67 | port: 3000, 68 | }, 69 | }) 70 | --------------------------------------------------------------------------------