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
locals { | |
a = {for i in fileset(".", "*.txt"): i => file(i)} | |
} | |
resource "local_file" "test1" { | |
for_each = local.a | |
filename = "test1out/${each.key}" | |
content = "Who are you? ${each.value}" | |
} |
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
import docker | |
import mysql.connector | |
import time | |
from multiprocessing import Pool | |
import sys | |
import random | |
create_table_statement = ''' | |
CREATE TABLE test.`data` ( | |
`id` int(10) NOT NULL AUTO_INCREMENT, |
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
# ===================================================================== | |
# Copyright 2017 - Present Chocolatey Software, Inc, and the | |
# original authors/contributors from ChocolateyGallery | |
# Copyright 2011 - 2017 RealDimensions Software, LLC, and the | |
# original authors/contributors from ChocolateyGallery | |
# at https://github.com/chocolatey/chocolatey.org | |
# | |
# Licensed 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 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
#!/usr/bin/env python | |
from __future__ import unicode_literals | |
import sys, os, random | |
from PyQt4 import QtGui, QtCore | |
from time import sleep | |
from numpy import arange, sin, pi, array, append, loadtxt | |
from matplotlib.backends.backend_qt4agg import FigureCanvasQTAgg as FigureCanvas | |
from matplotlib.figure import Figure | |
from matplotlib.patches import Rectangle |
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
deb http://10.5.19.220/ubuntu/ precise main restricted | |
deb http://10.5.19.220/ubuntu/ precise-updates main restricted | |
deb http://10.5.19.220/ubuntu/ precise universe | |
deb http://10.5.19.220/ubuntu/ precise-updates universe | |
deb http://10.5.19.220/ubuntu/ precise multiverse | |
deb http://10.5.19.220/ubuntu/ precise-updates multiverse | |
deb http://10.5.19.220/ubuntu/ precise-backports main restricted universe multiverse | |
deb http://10.5.19.220/ubuntu precise-security main restricted | |
deb http://10.5.19.220/ubuntu precise-security universe | |
deb http://10.5.19.220/ubuntu precise-security multiverse |