This is a guide for aligning images.
See the full Advanced Markdown doc for more tips and tricks
This is a guide for aligning images.
See the full Advanced Markdown doc for more tips and tricks
Not all random values are created equal - for security-related code, you need a specific kind of random value.
A summary of this article, if you don't want to read the entire thing:
Math.random()
. There are extremely few cases where Math.random()
is the right answer. Don't use it, unless you've read this entire article, and determined that it's necessary for your case.crypto.getRandomBytes
directly. While it's a CSPRNG, it's easy to bias the result when 'transforming' it, such that the output becomes more predictable.uuid
, specifically the uuid.v4()
method. Avoid node-uuid
- it's not the same package, and doesn't produce reliably secure random values.random-number-csprng
.You should seriously consider reading the entire article, though - it's
{ | |
"AWSTemplateFormatVersion": "2010-09-09", | |
"Description": "Keep alive functions", | |
"Resources": { | |
"LambdaPolicy": { | |
"Type": "AWS::IAM::ManagedPolicy", | |
"Properties": { | |
"PolicyDocument": { |
--- | |
AWSTemplateFormatVersion: 2010-09-09 | |
Description: > | |
A basic CloudFormation template for an RDS Aurora cluster. | |
Parameters: | |
DatabaseUsername: | |
AllowedPattern: "[a-zA-Z0-9]+" | |
ConstraintDescription: must be between 1 to 16 alphanumeric characters. |
This gist had a far larger impact than I imagined it would, and apparently people are still finding it, so a quick update:
(async main(){...}())
as a substitute for TLA. This completely eliminates the blocking problem (yay!) but it's less powerful, and harder to statically analyse (boo). In other words the lack of TLA is causing real problemsI'll leave the rest of this document unedited, for archaeological
export {} | |
if (typeof Array.prototype.flatMap !== 'function') { | |
// eslint-disable-next-line no-extend-native | |
Object.defineProperty(Array.prototype, 'flatMap', { | |
enumerable: false, | |
// https://bterlson.github.io/proposal-flatMap/#sec-Array.prototype.flatMap | |
value: function flatMap (callback, thisArg = undefined) { | |
const O = toObject(this) | |
const A = arraySpeciesCreate(O, 0) |
/** | |
* Code from: | |
* https://github.com/expressjs/express/pull/2809 | |
* | |
* Target Express version: { "express": "^4.14.0 <5.0.0" } | |
* | |
* This monkey patch allows to return Promises from middleware and route handlers, rejections will be handled automaticaly. | |
* | |
* Please note: | |
* If you return something from `(...) -> void` callbacks - you shoot your own leg. |
<!doctype html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>AWS IoT Pub/Sub Demo</title> | |
</head> | |
<body> | |
<h1>AWS IoT Pub/Sub Demo</h1> | |
<form> | |
<button type="button" id="connect">connect!</button> |
Collection of License badges for your Project's README file.
This list includes the most common open source and open data licenses.
Easily copy and paste the code under the badges into your Markdown files.
Translations: (No guarantee that the translations are up-to-date)
#!/usr/bin/env bash | |
# | |
# Clone Git repositories and download LFS files in parallel | |
# | |
set -e | |
CLEAN_ERROR='push @lines, $_;splice @lines, 0, 7 if /error: external filter failed/;print shift @lines if @lines > 6}{ print @lines;' | |
git -c filter.lfs.smudge= \ | |
-c filter.lfs.required=false \ |