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
data "aws_region" "current" {} | |
data "aws_dynamodb_table" "table" { | |
for_each = toset(var.tables) | |
name = each.key | |
} | |
data "aws_iam_policy_document" "dynamodb_table_actions" { | |
statement { |
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
<xml xmlns="https://developers.google.com/blockly/xml"> | |
<variables> | |
<variable id="^RFIIWgteWtbGGe5k/;*">list_name</variable> | |
<variable id="58Pb!?g`JBb3u!XRMB{?">items</variable> | |
<variable id="%lP.Y9;X[.,_9|Gebbc)">item_name</variable> | |
<variable id="!6RW*Qn`q]34Mmq#6Z.d">existing_list</variable> | |
<variable id="}Fkl[-=0t(YCPUO%0NJr">item_index</variable> | |
<variable id="5S+flii$$yaW~Gl2~q8|">utterance</variable> | |
<variable id="];Tr3QzsRbN+JsV/0tW.">utterance_remainder</variable> | |
</variables> |
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
<xml xmlns="https://developers.google.com/blockly/xml"> | |
<variables> | |
<variable id="9|t#QO2zA=*4IWswdkeK">song_name</variable> | |
<variable id="2-q?U_#:3)N]Gp8T#.5n">song_data</variable> | |
<variable id="5OLs)=knY`zB7E;2)e1)">result</variable> | |
<variable id="_q8cHm$C0!{jYnL-7fVE">song_dict</variable> | |
<variable id=",fR2ZFq6oHdtdqkKlbAr">utterance_remainder</variable> | |
</variables> | |
<block type="adaptv2" id="xQ~9n8Mu[}wCgNCb%634" x="47" y="-200"> | |
<mutation xmlns="http://www.w3.org/1999/xhtml" items="2"></mutation> |
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
module.exports = function loader(source) { | |
if (this.cacheable) this.cacheable(); | |
let value = typeof source === 'string' ? JSON.parse(source) : source; | |
// Filter out smartling metadata. | |
const metadata = value.smartling; | |
if (metadata !== undefined) { | |
const path = metadata.translate_paths.path.split('/')[1]; |
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
Verifying my Blockstack ID is secured with the address 1QD3SoHuwDFn6ZkQvvSPUCHum3iGtSBDda https://explorer.blockstack.org/address/1QD3SoHuwDFn6ZkQvvSPUCHum3iGtSBDda |
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
### Keybase proof | |
I hereby claim: | |
* I am explorigin on github. | |
* I am explorigin (https://keybase.io/explorigin) on keybase. | |
* I have a public key ASAr7Qb_DMCi2a87HSZTGN6OfQSussX4l9tqxRwEnFGWFgo | |
To claim this, I am signing this object: |
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
package project; | |
abstract JSObjectStringMap({}) { | |
public inline function new(?i:{}) { | |
this = if (i == null) {} else i; | |
} | |
} |