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 aws_lambda_powertools import Logger, Tracer | |
| from fastapi import FastAPI, Request | |
| import boto3 | |
| import os | |
| logger = Logger() | |
| tracer = Tracer() | |
| s3 = boto3.resource('s3') |
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
| import type { | |
| FirehoseTransformationHandler, | |
| FirehoseTransformationResultRecord, | |
| } from "aws-lambda"; | |
| function base64Encode(str: string): string { | |
| return Buffer.from(str).toString("base64"); | |
| } | |
| function base64Decode(str: string): string { |
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
| // https://mobile.twitter.com/settings/your_twitter_data/twitter_interests | |
| $$('[checked=""]').forEach((x, index) => { setTimeout(() => { x.click(); }, ++index * 1000) }); |
I already had committed the folder before and want to remove the directory in the history as well.
I did the following:
Add folder to .gitignore:
echo Folder_Name/ >> .gitignore
Remove from all commits:
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
| # | |
| # Creates one RDS PostgreSQL instance and RDS Proxy | |
| # with connections allowed in ports 443 and 5432 | |
| # | |
| AWSTemplateFormatVersion: "2010-09-09" | |
| Transform: AWS::Serverless-2016-10-31 | |
| Description: "Database Layer" |
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
| PORT=xxx | |
| COGNITO_USER_POOL_ID=xxx | |
| COGNITO_CLIENT_ID=xxx | |
| COOKIE_SESSION_SECRET=xxx | |
| COOKIE_SESSION_NAME=xxx | |
| AWS_REGION=xxx | |
| AWS_ACCESS_KEY_ID=xxx | |
| AWS_SECRET_ACCESS_KEY=xxx |
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
| $$('[ng-if="vm.isCompleted"]').forEach(el => { el.parentNode.parentNode.parentNode.removeChild(el.parentNode.parentNode) }) |
hello pwa gurus!
we've this app deployed, with https, everything is working as expected, except the manifest in Samsung Internet only,
app link: https://app.zbarista.co.nz/
we are testing in multiple devices and android versions (tablets, oreo, samsung s7, pixel, etc) and it happens every time, only in Sasmsung Internet, even after a fresh install of the app in Android.
any idea what might be happening here?
NewerOlder