The intent is to define terse, standards-supported names for AWS regions.
This file contains 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; |
This file contains 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"}}' |
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