techscrolls.org
Jul 30, 2023
Assuming an IAM role using the Instance MetaData Service
In AWS, one often needs to access certain resources, like S3 or SQS, from an EC2 instance. There are several methods to get the credentials to access those resources one of which is the Instance MetaData Service.
May 18, 2019
Project and application `node_modules`
An *application* node_modules directory may be used to effectively remove relative paths in source files when referencing to the application sub-modules.
Apr 14, 2019
Raw JSON query on Gatsby
The gatsby-transformer-rawjson plugin allows to publish the properties of a JSON node in raw form using the JSON GraphQL scalar type.
Apr 06, 2019
Meteor wrapAsync and this
Calling `wrapAsync` on a function will not propagate the value of `this` from the resulting function to the wrapped function. But the behaviour may be emulated by transforming it into an actual parameter.
Apr 01, 2019
Meteor Settings on the Client-Side
Meteor settings in the public key-space may be computed at run-time during server bootstrap and pushed to the client.