Eggplant mash
1 eggplant
1 tomato
2 spoons of thick tomato sauce
1-2 onions
2 pieces of garlic
salt
pepper
spices
// print compileClasspath before compiling the code | |
compileJava.doFirst { | |
sourceSets.main.compileClasspath.each { println it } | |
} | |
// include classes from main into other sourceset, e.g. for integration tests, etc. | |
sourceSets { | |
anotherSet { |
1 eggplant
1 tomato
2 spoons of thick tomato sauce
1-2 onions
2 pieces of garlic
salt
pepper
spices
> cat anonymous_access.json | |
{ | |
"Statement": [ | |
{ | |
"Effect": "Allow", | |
"Principal": "*", | |
"Action": [ | |
"s3:GetObject", | |
"s3:ListBucket" | |
], |
#include <ESP8266WiFi.h> | |
#include <WiFiClient.h> | |
#include <ESP8266WebServer.h> | |
// Settings | |
const char* ssid= "WHATSHEORDER"; | |
const char* password = "xxx"; | |
IPAddress ip(192,168,178,128); | |
IPAddress subnet(255,255,255,0); | |
IPAddress gateway(192,168,178,1); |
s3: | |
accesskey: xxx | |
secretkey: xxxx | |
region: us-east-1 | |
regionendpoint: https://s3.company.com:8082 | |
bucket: my-docker-registry | |
encrypt: false | |
secure: true | |
v4auth: true | |
chunksize: 5242880 |
# Take the offical registry image in version 2.6 | |
FROM registry:2.6 | |
# Copy over the StorageGRID self-signed certificate and Root CA, then update them | |
COPY root-ca.pem sgws-cert.pem /usr/local/share/ca-certificates/ | |
RUN update-ca-certificates | |
EXPOSE 5000 5001 | |
ENTRYPOINT ["registry"] |
<ReplicationConfiguration> | |
<Rule> | |
<Status>Enabled</Status> | |
<Prefix></Prefix> | |
<Destination> | |
<Bucket>arn:aws:s3:::sgws11-rocks</Bucket> | |
</Destination> | |
</Rule> | |
</ReplicationConfiguration> |
var restify = require('restify'); | |
var builder = require('botbuilder'); | |
var botbuilder_azure = require("botbuilder-azure"); | |
// Setup Restify Server | |
var server = restify.createServer(); | |
server.listen(process.env.port || process.env.PORT || 3978, function () { | |
console.log('%s listening to %s', server.name, server.url); | |
}); | |
bot.dialog('/', [ | |
function (session) { | |
var msg = new builder.Message(session) | |
.text("Hello, I can help you with:") | |
.suggestedActions( | |
builder.SuggestedActions.create( | |
session, [ | |
builder.CardAction.imBack(session, "Option 1", "Something 1"), | |
builder.CardAction.imBack(session, "Option 2", "Something 2"), | |
builder.CardAction.imBack(session, "Option 3", "Something 3")] |
apiVersion: apps/v1beta1 | |
kind: Deployment | |
metadata: | |
name: azure-vote-back | |
spec: | |
replicas: 1 | |
template: | |
metadata: | |
labels: | |
app: azure-vote-back |