Ein paar Artikel sind von Office Discount günstiger, alle anderen via Amazon Prime (Verkauf und Versand durch Amazon)
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
#!/usr/bin/env bash | |
# MIT © Sindre Sorhus - sindresorhus.com | |
# git hook to run a command after `git pull` if a specified file was changed | |
# Run `chmod +x post-merge` to make it executable then put it into `.git/hooks/`. | |
changed_files="$(git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD)" | |
check_run() { | |
echo "$changed_files" | grep --quiet "$1" && eval "$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
data "aws_iam_policy_document" "acme_crossaccount_administrator" { | |
statement { | |
sid = "acme" | |
actions = ["sts:AssumeRole"] | |
resources = [ | |
"${aws_iam_role.acme_operations_administrator.arn}", | |
] | |
} | |
provider = "aws.acme" |
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
// Configure AWS provider | |
variable "acme_operations" { | |
default = "ACCOUNTID" | |
} | |
provider "aws" { | |
alias = "acme_operations" | |
profile = "acme_operations" | |
region = "${var.aws_default_region}" | |
shared_credentials_file = "./credentials" |
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
{ | |
"Effect": "Allow", | |
"Action": [ | |
"iam:CreatePolicy", | |
"iam:GetPolicy", | |
"iam:GetPolicyVersion", | |
"iam:CreatePolicyVersion", | |
"iam:ListPolicyVersions" | |
], | |
"Resource": [ |
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
variable "aws_default_region" { | |
default = "eu-west-1" | |
} | |
variable "administrator_default_arn" { | |
default = "arn:aws:iam::aws:policy/AdministratorAccess" | |
} | |
variable "developer_default_arn" { | |
default = "arn:aws:iam::aws:policy/PowerUserAccess" |
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
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Effect": "Allow", | |
"Action": [ | |
"iam:CreateAccountAlias", | |
"iam:ListAccountAliases", | |
"iam:DeleteAccountAlias" | |
], |
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
#!/bin/bash | |
# This script will locally construct a merge commit for a pull request on a | |
# github repository, inspect it, sign it and optionally push it. | |
# The following temporary branches are created/overwritten and deleted: | |
# * pull/$PULL/base (the current master we're merging onto) | |
# * pull/$PULL/head (the current state of the remote pull request) | |
# * pull/$PULL/merge (github's merge) | |
# * pull/$PULL/local-merge (our merge) |
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
<% if (!_.isString(slide) && !_.isArray(slide) && _.isObject(slide)) { %> | |
<section <%= _.map(slide.attr, function (val, attr) {return attr + '="' + val + '"'}).join(' ')%> <% if (_.isString(slide.filename)) { %>data-<% if (slide.filename.indexOf('.html') !== -1) { %>html<% } else { %>markdown<% }%>="slides/<%= slide.filename %>"<% } %> | |
<% } %><% if (_.isString(slide)) { %> | |
<section data-<% if (slide.indexOf('.html') !== -1) { %>html<% } else { %>markdown<% }%>="slides/<%= slide %>" | |
<% } %> | |
data-separator="^\n\n\n" | |
data-separator-vertical="^\n\n" | |
data-separator-notes="^Note:" | |
></section> |
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
<?php | |
namespace Client\Bundle\WebsiteBundle\Controller; | |
use Sulu\Bundle\WebsiteBundle\Controller\WebsiteController as BaseWebsiteController; | |
use Sulu\Component\Content\Compat\Structure\PageBridge; | |
use Sulu\Component\Content\Compat\StructureInterface; | |
use Sulu\Component\Util\SortUtils; | |
use Symfony\Component\HttpFoundation\Response; |
NewerOlder