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
| package com.mycompany.app; | |
| import software.amazon.awssdk.auth.credentials.DefaultCredentialsProvider; | |
| import software.amazon.awssdk.auth.credentials.AwsCredentials; | |
| import software.amazon.awssdk.auth.signer.Aws4Signer; | |
| import software.amazon.awssdk.auth.signer.params.Aws4SignerParams; | |
| import software.amazon.awssdk.http.SdkHttpFullRequest; | |
| import software.amazon.awssdk.http.SdkHttpMethod; | |
| import software.amazon.awssdk.regions.providers.DefaultAwsRegionProviderChain; | |
| import software.amazon.awssdk.regions.Region; |
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
| FROM alpine:3.11 | |
| RUN apk update \ | |
| && apk upgrade \ | |
| && apk add git npm | |
| # Go | |
| RUN apk add go \ | |
| && go get golang.org/x/tools/gopls | |
| ENV PATH="${PATH}:/root/go/bin" |
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
| #include <iostream> | |
| template <class Func> struct WrappedFunc { | |
| Func function; | |
| }; | |
| template <class T> | |
| struct wrapped { | |
| T val; | |
| }; |
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
| /* | |
| * (C) Copyright 2012 Stephen Warren | |
| * | |
| * See file CREDITS for list of people who contributed to this | |
| * project. | |
| * | |
| * This program is free software; you can redistribute it and/or | |
| * modify it under the terms of the GNU General Public License | |
| * version 2 as published by the Free Software Foundation. | |
| * |