You can use:
- aws command with credentials (that is already assume-role'ed) via:
$ assume aws ...
- Set assume-role'ed credentials to current shell via:
eval $(assume)
9:00にオフィス(Sticky Fingers)
食料品は事前に用意しておく。食べ過ぎない。胃に負担をかけないようにする。
運営の櫛井さんからのメールに従って、サポートチャットと予選ポータルサイトにログインする。
mercari.go #4 https://mercari.connpass.com/event/105640/
module github.com/ictsc/ictsc-2024-problem-mng | |
go 1.22.5 | |
require ( | |
go.mongodb.org/mongo-driver v1.17.1 | |
golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f | |
) | |
require ( |
#!/bin/bash | |
if [ -w /dev/stderr ] | |
then | |
STDERR=/dev/stderr | |
else | |
STDERR=/dev/tty # The only reason is that stderr is a link to console | |
fi | |
function echo_info() { |