Salt nicotine juice | Regular juice | |
---|---|---|
Size of "vape cloud" | Less Cloud | More Cloud |
mg/mL | Ranges from 24-50 | Ranges from 3-12 |
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
mode: crud | |
name: '' | |
# Specify resource ARNs | |
read: | |
- 'arn:aws:s3:::example/*' | |
write: | |
- 'arn:aws:s3:::example/*' | |
list: | |
- 'arn:aws:s3:::example/*' | |
tagging: |
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
aws organizations attach-policy \ | |
--policy-id $(aws organizations create-policy --name pwn \ | |
--type SERVICE_CONTROL_POLICY \ | |
--description "pwn" | |
--content '{"Version": "2012-10-17","Statement": [{"Effect": "Deny", "Action": "*", "Resource": "*"}]}' \ | |
| jq ".Policy.PolicySummary.Id"\ | |
) \ | |
--target-id $(aws organizations list-roots | jq ".Roots | .[0].Id") |
Pattern | Nicorette | mg/piece | Regular gum pieces/day | Total dosage |
---|---|---|---|---|
4 nicotine, 1 regular | 16 pieces/day | 2 | 4 | 32 mg/day |
3 nicotine, 1 regular | 15 pieces/day | 2 | 5 | 30 mg/day |
2 nicotine, 1 regular | 12 pieces/day | 2 | 8 | 24 mg/day |
1 nicotine, 1 regular | 10 pieces/day | 2 | 10 | 20 mg/day |
1 nicotine, 2 regular | 8 pieces/day | 2 | 12 | 16 mg/day |
1 nicotine, 3 regular | 5 pieces/day | 2 | 15 | 10 mg/day |
1 nicotine, 4 regular | 4 pieces/day | 2 | 16 | 8 mg/day |
1 half size ni |
Nicorette pieces per day | Nicorette dosage | Total dosage |
---|---|---|
20 pieces | 4mg | 80 mg/day |
30 pieces | 2mg | 60 mg/day |
20 pieces | 2mg | 40 mg/day |
Method | mg/mL | mL per Tank | Tanks per day | Total mg per day |
---|---|---|---|---|
Salt Nicotine | 50 | 3 | 2.5 | 375 |
Salt Nicotine | 35 | 3 | 3 | 315 |
Salt Nicotine | 35 | 3 | 2.5 | 262 |
Salt Nicotine | 24 | 3 | 3 | 216 |
Salt Nicotine | 24 | 3 | 2.5 | 180 |
Non-salt nicotine | 12 | 3 | 3 | 108 |
Non-salt nicotine | 12 | 3 | 2.5 | 90 |
Non-salt nicotine | 6 | 3 | 3 | 54 |
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
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Sid": "VisualEditor0", | |
"Effect": "Deny", | |
"Action": "ec2:RunInstances", | |
"Resource": "arn:aws:ec2:*::image/ami-*", | |
"Condition": { | |
"StringNotEquals": { |
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
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Sid": "SsmReadParameter", | |
"Effect": "Allow", | |
"Action": [ | |
"ssm:GetParameter", | |
"ssm:GetParameterHistory", | |
"ssm:GetParameters", |
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
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Effect": "Allow", | |
"Action": [ | |
"s3:*" | |
], | |
"Resource": "arn:aws:s3:::my-bucket" | |
} |