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
/* | |
example of executing a bash script in tf | |
*/ | |
locals { | |
tables = [ | |
aws_dynamodb_table.organization.name | |
] | |
} |
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
// http://stefangabos.ro/jquery/jquery-plugin-boilerplate-revisited/ | |
(function($) { | |
$.pluginName = function(element, options) { | |
var defaults = { | |
foo: 'bar', | |
onFoo: function() {} | |
}; |
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
'use strict'; | |
angular.module('highcharts-ng', []).factory('highchartsNGUtils', function () { | |
return { | |
indexOf: function (arr, find, i) { | |
if (i === undefined) | |
i = 0; | |
if (i < 0) | |
i += arr.length; | |
if (i < 0) | |
i = 0; |
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
CREATE PROC SearchAllTables | |
( | |
@SearchStr nvarchar(100) | |
) | |
AS | |
BEGIN | |
CREATE TABLE #Results (ColumnName nvarchar(370), ColumnValue nvarchar(3630)) | |
SET NOCOUNT ON |