./test_all.sh
ENV = AWS_PROFILE env var set
P = PROFILE param in secret
| ENV only (no PROFILE param) | PROFILE param only (no ENV) | ENV + PROFILE param
Version | default | sso | config | env | sso;cfg | default | sso | config | sso;cfg | default | sso | config
--------|---------|-----|--------|-----|---------|---------|-----|--------|---------|---------|-----|-------
1.3.0 | ✅ | ✅ | ❌ | ❌ | ✅ | ❌ | ✅ | ❌ | ✅ | ❌ | ✅ | ❌
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
| use std::error::Error; | |
| #[derive(PartialEq)] | |
| enum MyGameResult { | |
| Win, | |
| Lose, | |
| Tie, | |
| } | |
| #[derive(Debug, PartialEq, Clone, Copy)] |
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
| use std::error::Error; | |
| #[derive(PartialEq)] | |
| enum MyGameResult { | |
| Win, | |
| Lose, | |
| Tie | |
| } | |
| #[derive(Debug, PartialEq, Clone, Copy)] |
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
| use std::fs::File; | |
| use std::error::Error; | |
| use std::io::{ self, BufRead }; | |
| use std::collections::BinaryHeap; | |
| use std::cmp::Reverse; | |
| // https://doc.rust-lang.org/stable/std/collections/struct.BinaryHeap.html#min-heap | |
| struct SortedTopK<T: Ord> { | |
| k: usize, | |
| heap: BinaryHeap<Reverse<T>> |
This is a highly opinionated guide helping you set up the "optimal" Red Alert 3 gaming experience. This install will allow you to:
- Play the game online using C&C:Online (Revora).
- Play the game over LAN using Hamachi VPN (LogMeIn).
- Enable use of a second monitor while playing instead of a black screen.
- Allow Zoom video chat overlay on top of the game.
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
| # Source: https://stackoverflow.com/questions/50003378/automatically-set-listenerrule-priority-in-cloudformation-template | |
| import random | |
| import uuid | |
| import traceback | |
| import boto3 | |
| # Member must have value less than or equal to 50000 | |
| ALB_RULE_PRIORITY_RANGE = 1, 50000 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| Homebrew build logs for pup on Ubuntu 18.04.2 LTS | |
| Build date: 2020-04-13 12:31:39 |
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/osascript -l JavaScript | |
| /* | |
| Usage: ./extract.jxa | |
| Outlook Object Model: https://docs.microsoft.com/en-us/office/vba/api/overview/outlook/object-model | |
| */ | |
| ObjC.import("stdlib"); | |
| SystemEvents = Application("System Events"); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder