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
[sebastian ~/tmp]$ ~/git/sebdah/dynamic-dynamodb/dynamic-dynamodb --config dyndyn-101.conf --dry-run | |
2014-03-19 14:00:07,009 - dynamic-dynamodb - DEBUG - dryrun - Authenticating to SNS using credentials in configuration file | |
2014-03-19 14:00:07,010 - dynamic-dynamodb - DEBUG - dryrun - Connected to SNS in ap-southeast-1 | |
2014-03-19 14:00:07,011 - dynamic-dynamodb - DEBUG - dryrun - Connecting to DynamoDB in ap-southeast-1 | |
2014-03-19 14:00:07,011 - dynamic-dynamodb - DEBUG - dryrun - Authenticating to DynamoDB using credentials in configuration file | |
2014-03-19 14:00:07,012 - dynamic-dynamodb - DEBUG - dryrun - Connected to DynamoDB in ap-southeast-1 | |
2014-03-19 14:00:07,061 - dynamic-dynamodb - DEBUG - dryrun - Authenticating to CloudWatch using credentials in configuration file | |
2014-03-19 14:00:07,062 - dynamic-dynamodb - DEBUG - dryrun - Connected to CloudWatch in ap-southeast-1 | |
2014-03-19 14:00:08,328 - dynamic-dynamodb - DEBUG - dryrun - Table CLIENT_GEN_PRO_002 match with config key ^CLIENT_GEN_PRO_002|CLIE |
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
<!DOCTYPE html> | |
<!-- | |
Licensed to the Apache Software Foundation (ASF) under one | |
or more contributor license agreements. See the NOTICE file | |
distributed with this work for additional information | |
regarding copyright ownership. The ASF licenses this file | |
to you under the Apache License, Version 2.0 (the | |
"License"); you may not use this file except in compliance | |
with the License. You may obtain a copy of the License at |
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
Show hidden characters
{ | |
"globals" : { | |
"describe" : false, | |
"it" : false, | |
"before" : false, | |
"beforeEach" : false, | |
"after" : false, | |
"afterEach" : false | |
}, | |
"camelcase": true, |
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
/** | |
* This function converts '.' and '$' to their unicode equivalents. | |
* | |
* . is converted to U+FF0E | |
* $ is converted to U+FF04 | |
* | |
* More details at: | |
* http://docs.mongodb.org/manual/reference/limits/#Restrictions-on-Field-Names | |
* http://docs.mongodb.org/manual/faq/developers/#faq-dollar-sign-escaping | |
* |
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
[table: ^my_table$] | |
... | |
# | |
# Simple Notification Service configuration | |
# | |
# Topic ARN to publish notifications to | |
# | |
# Example: |
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
<head> | |
<title>Bootstrap3 test</title> | |
</head> | |
<body> | |
{{>menu}} | |
{{>welcome}} | |
</body> | |
<template name="welcome"> |
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
"UserData" : { "Fn::Base64" : { "Fn::Join" : ["", [ | |
"<powershell>\n", | |
"pip install -U cumulus-bundle-handler\n", | |
"# Join the AD domain\n", | |
"$password = \"MyPassW0rd\" | ConvertTo-SecureString -asPlainText -Force\n", | |
"$username = \"example.com\\username\"\n", | |
"$credential = New-Object System.Management.Automation.PSCredential($username,$password)\n", | |
"Add-Computer -domainname example.com -OUPath \"OU=Servers,OU=Resources,OU=ORGANIZATION,DC=example,DC=com\" -Credential $credential -passthru \n", |
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
<template name="garage"> | |
<h1>Garage: </h1> | |
Cars in the garage:<br/> | |
<ul> | |
{{#each cars}} | |
<li>{{registrationNumber}} {{owner}} - <button class="removeCar"></li> | |
{{/each}} | |
</ul> | |
</template> |
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
connection.update_table( | |
table_name='MailPostsExperimet', | |
global_secondary_index_updates=[ | |
{ | |
"Update": { | |
"IndexName": "gsiPosts", | |
"ProvisionedThroughput": { | |
"ReadCapacityUnits": 2, | |
"WriteCapacityUnits": 2 | |
} |
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
Accounts.onCreateUser(function(options, user) { | |
if (options.profile) { | |
user.profile = options.profile; | |
} | |
user.profile.github = {}; | |
user.profile.github.accessToken = user.services.github.accessToken; | |
user.profile.github.email = user.services.github.email; | |
user.profile.github.username = user.services.github.username; |
OlderNewer