Suppose you're opening an issue and there's a lot noisey logs that may be useful.
Rather than wrecking readability, wrap it in a <details>
tag!
<details>
Summary Goes Here
I was drawn to programming, science, technology and science fiction | |
ever since I was a little kid. I can't say it's because I wanted to | |
make the world a better place. Not really. I was simply drawn to it | |
because I was drawn to it. Writing programs was fun. Figuring out how | |
nature works was fascinating. Science fiction felt like a grand | |
adventure. | |
Then I started a software company and poured every ounce of energy | |
into it. It failed. That hurt, but that part is ok. I made a lot of | |
mistakes and learned from them. This experience made me much, much |
int[][] result; | |
float t, c; | |
float ease(float p) { | |
return 3*p*p - 2*p*p*p; | |
} | |
float ease(float p, float g) { | |
if (p < 0.5) | |
return 0.5 * pow(2*p, g); |
int seed = int(random(999999)); | |
void setup() { | |
size(960, 960, P2D); | |
smooth(8); | |
pixelDensity(2); | |
rectMode(CENTER); | |
generate(); |
const outside = {weather: FRIGHTFUL} | |
const inside = {fire: DELIGHTFUL} | |
const go = places => places.some(p=>p>outside.weather))) | |
const snow = () => (outside.weather < inside.fire && !go(places)) { | |
let it = snow() | |
} | |
let it = snow() |
console.log(1); | |
(_ => console.log(2))(); | |
eval('console.log(3);'); | |
console.log.call(null, 4); | |
console.log.apply(null, [5]); | |
new Function('console.log(6)')(); | |
Reflect.apply(console.log, null, [7]) | |
Reflect.construct(function(){console.log(8)}, []); | |
Function.prototype.apply.call(console.log, null, [9]); | |
Function.prototype.call.call(console.log, null, 10); |
RN < 0.50 - watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf node_modules/ && npm cache clean && npm install && npm start -- --reset-cache | |
RN >= 0.50 - watchman watch-del-all && rm -rf $TMPDIR/react-native-packager-cache-* && rm -rf $TMPDIR/metro-bundler-cache-* && rm -rf node_modules/ && npm cache clean && npm install && npm start -- --reset-cache | |
RN >= 0.63 - watchman watch-del-all && rm -rf node_modules && npm install && rm -rf /tmp/metro-* && npm run start --reset-cache | |
npm >= 5 - watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf node_modules/ && npm cache verify && npm install && npm start -- --reset-cache | |
Windows - del %appdata%\Temp\react-native-* & cd android & gradlew clean & cd .. & del node_modules/ & npm cache clean --force & npm install & npm start -- --reset-cache |
const lookup = [0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, | |
987, 1597, 2584, 4181, 6765, 10946, 17711, 28657, 46368, 75025, 121393, | |
196418, 317811, 514229, 832040, 1346269, 2178309, 3524578, 5702887, 9227465, | |
14930352, 24157817, 39088169, 63245986, 102334155, 165580141, 267914296, | |
433494437, 701408733, 1134903170, 1836311903, 2971215073, 4807526976, | |
7778742049, 12586269025, 20365011074, 32951280099, 53316291173, 86267571272, | |
139583862445, 225851433717, 365435296162, 591286729879, 956722026041, | |
1548008755920, 2504730781961, 4052739537881, 6557470319842, 10610209857723, | |
17167680177565, 27777890035288, 44945570212853, 72723460248141, | |
117669030460994, 190392490709135, 308061521170129, 498454011879264, |
const nsTime = (hrtime) => hrtime[0] * 1e9 + hrtime[1]; |