And the part where he says people with this mutation are more prone to bacterial infections is not worrying, because…? In a world of more and more antibiotic resistant bacteria, that does not seem like a good trade-off…
HN user
inka
[ my public key: https://keybase.io/paulina; my proof: https://keybase.io/paulina/sigs/idC7tIDYF6_n_1T51ZJTNcWaQkIUEXSfYUiWLkqhY_s ]
This "solution" essentially hides away long polling of the queue behind the scenes and triggers the Lambda when message shows up - and scales the poll sizes as number of messages increase and decrease. It's what you had to previously do yourself with, for example, another Lambda, but handled by AWS and hidden from you. It's not a real event-driven model, like for example triggering Lambda by SNS.
The biggest thing to notice: because your queue gets polled behind the scenes, you will still be charged for the polling requests! Even if your queue is empty most of the time, you will pay for the requests that "check" for new messages.
In other words: by simply creating a Lambda and adding SQS queue as a trigger to it, you're adding a minimal spend to your AWS bill, that it will generate whether you're using it or not.
And because the polling is hidden from you and happens "automagically", you don't have control over how often it happens and how big the polling is, so you don't have control over the bill it will generate.
Same here. Started 14:20 UK time (13:20 UTC).
I can't say on Google certs, but I passed the AWS ones - I wouldn't go for developer and sys ops both - they are the same level certs in the same certification path, so it seems like a waste of money to get them both really :)
Quick note, it's "solutions architect" not "system architect".
AWS certs are very focused on AWS products, so may not be helpful for Google Cloud. The developer/sysops -> devops path may be a bit better of the two, as it focuses on how to get stuff done, while solutions architect is a bit more higher level knowledge of putting AWS products together.
"Their ad blocker blocker and paywall works, preventing me from reading articles."
Well, Adblocker in Chrome seems to be blocking the ads on the page quite well. Some single requests are being logged after the page loads, but nothing as to what the article mentions.
https://mysteriouscode.io/blog/ - for stuff around AWS but also FreeBSD and general IT security.
Now I'm kicking myself because I did something very similar for one of my clients based on AWS and shared it publicly (https://github.com/pbudzon/aws-image-gateway)! Not sure how it compares cost-wise, though. It's a combination of CloudFront, API Gateway, Lambda and S3. I'm quite sure CloudFront doesn't have limitations on what you can cache, like Cloudflare seems to have.
Like others who commented, I don't get the idea of image-resize-as-a-service, so I remember I laughed at my client when they asked me for this. For some reason I believe it's better for the world if we don't make people think it's ok to throw around gigantic images around the cables when it's completely unnecessary...
This setup has become much easier since gpg-agent is auto-starting now and basically all you have to do is add "enable-ssh-support" to the config.
There's a description on how to get it to work with SSH on MacOS: https://mysteriouscode.io/blog/using-pgp-keys-from-yubikey-a...