邓超

Results 99 comments of 邓超

已经更新到 5.13.6 了。:tada:

建议参考 https://sakai-nuxt.vercel.app/ 进行改进.

Any updates on this ? It prevents me from migrating an old static site to nuxt content based project, as I cannot access `/index.html` anymore after added `@nuxt/content` into the...

> How about the official blog: https://blog.vuejs.org/? And with tags & pagination 🌟 I come from `@vuepress/theme-blog` and I think it is good enough for a basic blog theme.

> Do Maven repositories support that? [Maven central repository](https://search.maven.org/) support HTTP range header: `curl "https://repo1.maven.org/maven2/org/springframework/spring-core/6.1.12/spring-core-6.1.12.jar" -o spring-core-6.1.12.jar -H "Range: bytes=0-100"` ![image](https://github.com/user-attachments/assets/41332dce-7c80-47d5-82be-a5f7d228bd1f) Some organizations use [Sonatype nexus maven repository](https://www.sonatype.com/products/sonatype-nexus-repository) to setup...

IntelliJ IDEA repository support HTTP range header: `curl "https://www.jetbrains.com/intellij-repository/snapshots/com/jetbrains/intellij/idea/ideaIU/LATEST-EAP-SNAPSHOT/ideaIU-LATEST-EAP-SNAPSHOT.zip" -o ideaIU-LATEST-EAP-SNAPSHOT.zip -H "Range: bytes=0-100" -L` ![image](https://github.com/user-attachments/assets/72bd590c-82d3-46f0-b3d6-81322eaec7be)

There is a straightforward work flow design: ```mermaid flowchart TD A((Start)) --> B{Does repository support range request ?} B --> |Not support| B1C[Download as usual] B --> |support|B2C[(Record downloaded progress...

> the location of the partially downloaded files and how this location will be cleaned What about the user's temp folder for windows user? It usually located at `%userprofile%\AppData\Local\Temp`, eg:...

There is more description of how to operate temp file in Java: https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/io/File.html#createTempFile(java.lang.String,java.lang.String,java.io.File)

What about put the partially downloaded files to the folder where they finally goes to ? Then all you need to do is add a `.part` suffix when creating the...