- 用途:预设工作流的快捷方式,可链式调用(如
/refactor-clean、/tdd、/e2e) - 存储位置:
- Skills:
~/.claude/skills/— 更广泛的工作流定义 - Commands:
~/.claude/commands/— 快速执行的提示词
- Skills:
Use these rapid keyboard shortcuts to control the GitHub Atom text editor on Mac OSX.
- ⌘ : Command key
- ⌃ : Control key
- ⌫ : Delete key
- ← : Left arrow key
- → : Right arrow key
- ↑ : Up arrow key
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl -X "POST" "https://identity.cloud.global.fujitsu.com/v3/groups" \ | |
| -H "Content-Type: application/json" \ | |
| -H "X-Auth-Token: d2d7ab5d9a464c65a27a31ce94e290c4" \ | |
| -H "Accept: application/json" \ | |
| -d $'{"group": {"name": "myTestGroup", "description": "", "domain_id":"631b77056c4c4cc09646dea3e9d9ca1e"}}' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // used in simpledb return values from AWS SDK2 | |
| function array_push_associative(&$arr) { | |
| $args = func_get_args(); | |
| array_unshift($args); // remove &$arr argument | |
| foreach ($args as $arg) { | |
| if (is_array($arg)) { | |
| foreach ($arg as $key => $value) { | |
| $arr[$key] = $value; |