sudo apt update
sudo apt install openjdk-8-jdk-headless
People
![]() :bowtie: |
😄 :smile: |
😆 :laughing: |
---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
Install, build and debug a react native app in WSL2 (Windows Subsystem for Linux) and Ubuntu.
Valor | Tempo |
---|---|
0 | não precisa ser feita |
1 | menos de 1h |
2 | uma manhã |
3 | uma tarde |
5 | um dia |
8 | 2 ou 3 dias |
13 | 5 dias |
20 | quebrar a tarefa |
import React from "react"; | |
import { Link } from "react-router-dom"; | |
export function createResource(getPromise) { | |
let cache = {}; | |
let inflight = {}; | |
let errors = {}; | |
function load(key) { | |
inflight[key] = getPromise(key) |
From:
Code:
Protocol: NEC1
Device: 2
SubDevice: 160
Func. OBC HEX EFC
const cp = require('child_process') | |
/** | |
* A function that spawns a new process using the given command, logging the stdout and stderr. | |
* | |
* @param {String} command | |
* @param {Array} args | |
* @return {Promise} | |
* @example | |
* |
// While I claim this is a drop-in replacement, it is a little bit slower. | |
// If you have hundreds of links, you might spend a few more milliseconds rendering the page on transitions. | |
// KNOWN ISSUES WITH THIS APPROACH: | |
// * This doesn't work great if you animate route changes with <TransitionGroup> | |
// because the links are going to get updated immediately during the animation. | |
// * This might still not update the <Link> correctly for async routes, | |
// as explained in https://github.com/reactjs/react-router/issues/470#issuecomment-217010985. |