Batch 2: Migrate technical references from Job to Resources

- Move 5 technical reference files to 300-resources/Development/
  - curl POST examples → Tools/curl-post-examples.md
  - sudo blocking guide → Linux/sudo-command-blocking.md
  - Gradle cheatsheet → Tools/gradle-cheatsheet.md
  - Filesystem limitations → Linux/filesystem-limitations.md
  - IPA server installation → Linux/ipa-server-installation.md
- Job area now focuses on career development content
- Created Tools/ and Linux/ subdirectories in Development/

(vault changes by Claude Code)
This commit is contained in:
zhiqiang feng
2025-12-29 14:52:46 +08:00
parent de87d42ad0
commit bb94fbf8c7
5 changed files with 0 additions and 0 deletions
@@ -0,0 +1,15 @@
Java parameters references:
[Gradle Java Plugin](https://docs.gradle.org/current/userguide/java_plugin.html)
Running only certain test to debug problems:
```
gradle test --tests org.gradle.SomeTest.someSpecificFeature
gradle test --tests *SomeTest.someSpecificFeature
gradle test --tests *SomeSpecificTest
gradle test --tests all.in.specific.package*
gradle test --tests *IntegTest
gradle test --tests *IntegTest*ui*
gradle test --tests *IntegTest.singleMethod
gradle someTestTask --tests *UiTest someOtherTestTask --tests *WebTest*ui
```