man - format and display the on-line manual pages
View react-devtools+4.7.0.patch
diff --git a/node_modules/react-devtools/app.html b/node_modules/react-devtools/app.html | |
index 75fc137..bfc3c1b 100644 | |
--- a/node_modules/react-devtools/app.html | |
+++ b/node_modules/react-devtools/app.html | |
@@ -12,7 +12,7 @@ | |
height: 100%; | |
margin: 0; | |
padding: 0; | |
- background-color: #fff; | |
+ background-color: #000; |
View gist:360b6ea0fd5e17e0f01d5d27407ad7e4
https://apps.apple.com/app/macos-catalina/id1466841314?mt=12 | |
https://apps.apple.com/app/macos-mojave/id1398502828?ls=1&mt=12 | |
https://apps.apple.com/app/macos-high-sierra/id1246284741?ls=1&mt=12 | |
https://apps.apple.com/app/macos-sierra/id1127487414?ls=1&mt=12 | |
https://apps.apple.com/app/os-x-el-capitan/id1147835434?mt=12 |
View tsts.ts
type PromiseType<T> = T extends Promise<infer U> ? U : T | |
// const myPromise = new Promise<string>(() => {}) | |
// type MyPromiseType = PromiseType<typeof myPromise> // string |
View code.js
const fs = require('fs') | |
const file = fs.readFileSync('./a_example.in', 'utf8') | |
// const file = fs.readFileSync('./b_small.in', 'utf8') | |
function cloneArray(arr) { | |
return arr.slice(0) | |
} | |
function cloneMatrix(arr) { |
View useStateRef.js
import { useState, useCallback } from 'react'; | |
function useStateRef(initialValue) { | |
const [ref, setState] = useState(initialValue) | |
const callback = useCallback( | |
ref => { | |
setState(ref) | |
}, | |
[ref, setState] |
View droppable.tsx
import * as csx from "csx"; | |
import { types } from "dovetail/graphql"; | |
import { NoteGroupColor } from "dovetail/types"; | |
import { NoteSortDropdownChoice } from "dovetail/ui/dropdown/NoteSortDropdown"; | |
import { OutsideClick } from "dovetail/ui/layout/OutsideClick"; | |
import { NewNoteItem } from "dovetail/ui/note"; | |
import { CreateNoteItem } from "dovetail/ui/note/CreateNoteItem"; | |
import { Cache } from "dovetail/ui/util/Cache"; | |
import { makeStyleSafe } from "dovetail/util/reactBeautifulDnd"; | |
import * as text from "dovetail/util/text"; |
View angularapp.js
const sentry = require('./sentry.js').moduleName; | |
angular.module('app', ['your', 'dependencies', sentry]); |
View TokenList.js
const forEach = Array.prototype.forEach; | |
module.exports = class TokenList { | |
constructor(){ | |
this.tokens = {}; | |
this.add.apply(this, arguments); | |
} | |
add(){ | |
const { tokens } = this; |
View placeholder.js
const placeholder = (function(){ | |
const cache = {}; | |
const canvas = document.createElement(`canvas`); | |
const type = (function(){ | |
canvas.width = canvas.height = 100; | |
const context = canvas.getContext(`2d`); | |
context.rect(0, 0, 100, 100); | |
const webp = { | |
type: `image/webp`, | |
quality: 1 |
NewerOlder