gem install travis
ssh-keygen -t rsa -b 4096 -f 'github_deploy_key' -N ''
cat github_deploy_key.pub | pbcopy
Paste deploy key in https://github.com/<USER>/<REPOSITORY>/settings/keys
gem install travis
ssh-keygen -t rsa -b 4096 -f 'github_deploy_key' -N ''
cat github_deploy_key.pub | pbcopy
Paste deploy key in https://github.com/<USER>/<REPOSITORY>/settings/keys
I hereby claim:
To claim this, I am signing this object:
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; |
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 |
type PromiseType<T> = T extends Promise<infer U> ? U : T | |
// const myPromise = new Promise<string>(() => {}) | |
// type MyPromiseType = PromiseType<typeof myPromise> // string |
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) { |
import { useState, useCallback } from 'react'; | |
function useStateRef(initialValue) { | |
const [ref, setState] = useState(initialValue) | |
const callback = useCallback( | |
ref => { | |
setState(ref) | |
}, | |
[ref, setState] |
const sentry = require('./sentry.js').moduleName; | |
angular.module('app', ['your', 'dependencies', sentry]); |
const forEach = Array.prototype.forEach; | |
module.exports = class TokenList { | |
constructor(){ | |
this.tokens = {}; | |
this.add.apply(this, arguments); | |
} | |
add(){ | |
const { tokens } = this; |