as of 2018-01-28
- MD Engine table-stakes features found here
- Blog Post: State of the art in 2014
as of 2018-01-28
{"plugins": [["transform-react-jsx", { "pragma": "h" }]]} |
/** | |
* To get this list go to:https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ask-skill.html | |
* and run this in the console. | |
*/ | |
/* | |
;(async () => { | |
const sleep = N => { | |
return new Promise(resolve => { |
<?xml version="1.0" encoding="UTF-8"?> | |
<opml version="2.0"> | |
<head> | |
<title>Feeds</title> | |
</head> | |
<body> | |
<outline type="rss" title="| Pooya Saeedi" xmlUrl="https://www.saeedi.dev/feed/" text="| Pooya Saeedi" htmlUrl="https://www.saeedi.dev" /> | |
<outline type="rss" title="250bpm" xmlUrl="https://250bpm.com/rss.xml" text="250bpm" htmlUrl="http://250bpm.com" /> | |
<outline text="500ish - Medium" title="500ish - Medium" htmlUrl="https://500ish.com?source=rss----662a29c3b19e---4" xmlUrl="https://500ish.com/feed" type="rss" /> | |
<outline text="andrewchen" title="andrewchen" type="rss" htmlUrl="https://andrewchen.com" xmlUrl="https://andrewchen.com/feed/" /> |
// Type definitions for `hast-util-select` 4.0.1 | |
// Project: https://github.com/syntax-tree/hast-util-select#readme | |
// Definitions by: ericdmoore <https://github.com/ericdmoore> | |
// TypeScript Version: 4.0 | |
// | |
declare module 'hast-util-select'{ | |
import type { Node } from 'unist' | |
export interface HastNode extends Node{ | |
properties: {[key:string]:any} |
/** | |
* ### Date Formatter | |
* @description Given a format string, the formatter does simple replacment for date string tokens. | |
* @param epoch - ISO Epoch Date number | |
* @param fmt - format String | |
* | |
* @token `YYYY`:Year; ex: 2021 | |
* @token `YY`:AbbrevYear; 21 | |
* @token `MM`:Month; 04 | |
* @token `DD`:Date; 01 |
/* using ts-jest */ | |
import { DynamoDB } from 'aws-sdk' | |
import localDynamo from 'local-dynamo' | |
import { appTable, click } from '../src/entities' | |
let dynamoLocal: ChildProcess | |
beforeAll(async () => { | |
// start local Dynamo Svc | |
// and set the internals of the Entity framework to use the locally configured reader/writer |
// vanilla version of TS (from esbiuild) | |
const {isArray} = Array; | |
const isPrim = (i) => { | |
const types = ["string", "number", "boolean", "function", "undefined", "bigint", "symbol"]; | |
return types.some((tStr) => typeof i === tStr); | |
}; | |
const isObject = (i) => { | |
return !isPrim(i) && !isArray(i); | |
}; |
tests | |
@echo "START RUNNING TESTS" | |
list: | |
@echo | |
@echo Available sub-commands... | |
@echo | |
@cat makefile | grep ":" | tail -r | awk 'NR>1{ print }' | tail -r | |
@echo | |
@echo |