Commit Graph

299 Commits

Author SHA1 Message Date
9e1ec04817 doc: Update emoji.md (#915)
now! 2771b42a96
2025-01-10 06:54:20 +00:00
9b19616c41 doc: update README.md 5e773f0696 2025-01-04 07:20:58 +00:00
2740054dcf doc: update c.md document (#913) e7b8958368 2025-01-01 13:36:21 +00:00
0bda67db82 doc: Update README.md eb1157523d 2025-01-01 03:09:08 +00:00
87711087b8 doc: Update README.md #102 0c7e4081a5 2024-12-28 02:06:37 +00:00
cc714f7037 doc: update docs/java.md (#909) 44e775a1ee 2024-12-23 14:11:01 +00:00
20b0c25532 doc: Update linux-command.md (#907)
feat: 新增rsync技巧 ad3c46c009
2024-12-18 01:28:28 +00:00
eff96430f5 doc: Update README.md #102 435cfdf739 2024-12-11 13:51:41 +00:00
ef2f786afe doc: Update README.md #102 4412bf6a01 2024-11-24 12:51:11 +00:00
75f4be33c9 doc: Update README.md #102 5b28ed2caf 2024-11-18 07:00:32 +00:00
d7f6e5ea03 doc: Modify Swift && SwiftUI (#852) 5cb04086b1 2024-11-12 15:43:49 +00:00
d748540c8a doc: update docs/css.md (#849)
* 删除一个错误字符

* Update css.md c63d27edcf
2024-11-09 14:04:54 +00:00
00899bcd2e feat: add sqlite reference (#848) bbd2fa2ebf 2024-11-05 23:18:07 +00:00
df22b0fb56 doc: Update README.md (#847) #102
域名更换: ref.server.wiki 更换为 ref.docflow.cn 416e1ff9fd
2024-11-01 04:15:11 +00:00
d6a86a791a doc: update docs/powershell.md #845 71c4aea9ca 2024-10-29 13:29:16 +00:00
ea4280d2a4 doc: Update README.md #102 02f1d13471 2024-10-28 11:15:08 +00:00
9158d5c4b0 fix: typo in postgres (#842) d41aaa9569 2024-10-18 05:45:39 +00:00
2523c852f9 doc: update docker.md (#839)
统一端口号 612f874723
2024-10-13 06:38:10 +00:00
57103ca884 doc: update docker.md & linux-command.md & nginx.md (#838)
* doc: update linux-command.md

* 增加代理构建

* 删除上次提交多余 e3628fc62d
2024-10-12 09:46:18 +00:00
300ea1b306 doc: update docs/nginx.md (#836) f6fe236778 2024-10-11 08:57:56 +00:00
fe5f075391 doc: update docs/nginx.md (#836) 3749de233c 2024-10-11 08:49:00 +00:00
e10713461e doc: update docs/ffmpeg.md (#835) c249e0e609 2024-09-30 03:48:05 +00:00
7031c98ce4 doc: update docs/vue.md #832 a74c7e2092 2024-09-29 10:30:54 +00:00
1060cb4041 docs: update vue.md (#832)
* doc:update docs/flutter.md

* docs:update docs/flutter.md

* docs:update docs/flutter.md

* docs:update vue.md & flutter.md 5ffc6faf3d
2024-09-25 15:54:29 +00:00
037ee1346d doc: Update README.md #102 93e3166fc5 2024-09-24 06:06:40 +00:00
ace125e977 docs:update /docs/flutter.md (#830)
* doc:update docs/flutter.md

* docs:update docs/flutter.md

* docs:update docs/flutter.md 33683eab41
2024-09-22 15:29:30 +00:00
71946a9f9f doc: Update README.md 0fb45105c9 2024-09-16 17:07:48 +00:00
d87ababdea doc: update docs/minio.md #813 58efbde216 2024-08-19 07:19:19 +00:00
6a18428838 doc: update docs/dart.md (#814)
### Current behavior
The current asynchronous login sample code has the following issues:
1. The `main` function tries to use `await userName()`, but `userName` is a string variable, not a function.
2. the `login` function should be called and `await` should be used to wait for its result.
### Expected behavior
The `main` function should correctly call the `login` function and use `await` to wait for the result, then print out the username.
### Sample code
Here is the corrected code:
```dart
Future<String> login() {
String userName = "Temidjoy";
return Future.delayed(
Duration(seconds: 4), () => userName
).
}
main() async {
print('Authenticating please wait...') The
String result = await login();
String result = await login(); print(result);
} f0da2a3397
2024-08-15 01:10:54 +00:00
e6e406cf4e doc: update dart.md (#806)
* doc: update dart.md

* doc: update dart.md

完善 import 部分内容

* doc: update dart.md

修正翻译错误,将 “地图” 修改为 “映射” d7ea92c019
2024-07-24 16:04:16 +00:00
0d1c226d30 doc: update golang.md (#802)
类型转换中补充了字符串与其他类型相互转换的方法 708329d8f2
2024-07-17 14:46:32 +00:00
baa4877bea doc: Update README.md #102 a05328f389 2024-07-14 14:51:44 +00:00
79ff7f35e3 doc: Update README.md #786 0d7f6653b6 2024-07-08 17:18:48 +00:00
9159d4f54d doc: Update vue.md (#786)
添加 vue3 watch 监听多个值的模板 3cbec70a5e
2024-07-08 17:13:46 +00:00
dd04f91e4f chore: update README.md (#677)
* Feat: 增加国内镜像网站

* chore: 调整网站名称 29c4430e3a
2024-06-26 02:08:55 +00:00
762edcac6d docs(erlang): update docs/erlang.md (#676)
* feat(docs): add Erlang cheat sheet

Create an Erlang备忘清单 in markdown format to document common commands and
operations for Erlang programming, including入门, 代码结构, 常用内置函数 (BIFs),
并发编程, 错误处理, 分布式编程, OTP框架, 和测试.

This cheat sheet aims to provide a quick reference for Erlang developers and
learners, summarizing key points and examples for various aspects of the
language.

* docs(erlang): update links and clean up markdown formatting

- Update Erlang documentation links. 70b561c710
2024-06-25 15:04:47 +00:00
44efd1edb6 doc: update xjs.md #674 99c34277e1 2024-06-25 05:54:17 +00:00
f2f9228668 feat(docs): add Erlang cheat sheet (#673)
Create an Erlang备忘清单 in markdown format to document common commands and
operations for Erlang programming, including入门, 代码结构, 常用内置函数 (BIFs),
并发编程, 错误处理, 分布式编程, OTP框架, 和测试.

This cheat sheet aims to provide a quick reference for Erlang developers and
learners, summarizing key points and examples for various aspects of the
language. 09fd8603cb
2024-06-25 04:35:16 +00:00
84c353def9 feats (docs): add Pinia Memo List (#672)
* feats (docs): add Pinia Memo List

Create a Pinia Memo List to document common commands and actions of the Pinia State Management Library in markdown format. Content includes getting started, creating Pinia instances, defining the Store, using the Store, and more

* docs(pinia): update link to pinia-plugin-persist documentation

Correct the documentation link for pinia-plugin-persist in the Pinia documentation
to point to the official documentation hosted on seb-l.github.io. This ensures
that readers will access the most up-to-date and correct information regarding
the usage of the pinia-plugin-persist library. 60c463b1cb
2024-06-24 21:25:57 +00:00
a59e2bc8a9 doc: Update bun.md #671 aadb7e664b 2024-06-24 21:25:17 +00:00
edf8151a62 docs: add pnpm memo and update README (#670)
Add a new pnpm.md memo in the docs directory and update the README to
include pnpm in the quick reference section. Also, introduce a new
pnpm.svg asset in the assets directory. e657882897
2024-06-24 18:40:53 +00:00
32f3814a8c doc: update docs/chatgpt.md #669 9f7014bc52 2024-06-21 10:12:34 +00:00
3be9cd1157 feat: add springboot (#668) a527cb28a0 2024-06-20 09:33:36 +00:00
dc21c75e5d doc: update README.md #102 (#666) 864da459ef 2024-06-17 14:10:51 +00:00
e71d5888ef doc: update docs/github-actions.md 4b9ff8a35e 2024-06-08 18:45:58 +00:00
5a169b23f4 feat: add docs/vimium.md (#660) 05191c8c2c 2024-06-06 00:32:04 +00:00
a5aa70928f feat: add glances (#659) 29a3787140 2024-06-05 01:45:55 +00:00
b12629e8d4 doc: update docs/docker-compose.md (#656) 861d35482a 2024-05-30 13:51:05 +00:00
034f696354 doc: Update README.md #102 1189c92fd7 2024-05-23 01:58:51 +00:00
9910c6d135 doc(pytorch): update docs/pytorch.md (#649)
Co-authored-by: zhulin.zzz <zhul289@chinaunicom.cn> afbe61aebc
2024-05-13 08:34:45 +00:00