Posts by José Guilherme • 69 points
7 posts
-
-1
votes1
answer320
viewsQ: How can I check the status value on a request using Xios?
index.html <!DOCTYPE html> <html lang="pt-BR"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link…
-
1
votes0
answers102
viewsQ: How do I upload files in GIT that are more than 50MB in commit size?
I’ve tried using Git Large File Storage but ended up not working.…
-
0
votes1
answer304
viewsQ: How can I undo these 3 commits?
$ git status Refresh index: 100% (16/16), done. On branch master Your branch is Ahead of 'origin/master' by 3 commits. (use "git push" to Publish your local commits) Changes not staged for commit:…
-
-1
votes1
answer39
viewsQ: The component for the 'Profile' route needs to be an React type component
App.js import React from 'react'; import { StatusBar } from 'react-native'; // Importação das rotas import Routes from './src/routes'; export default function App() { return ( <> <StatusBar…
-
0
votes1
answer271
viewsQ: How can I show a value in a jTextField when selecting a Jcheckbox at runtime?
private void btCalcularActionPerformed(java.awt.event.ActionEvent evt) { double salario = 0, irrf = 0, inss = 0, valorTotal = 0; FolhaPagamento pagamento = new…
-
0
votes0
answers75
viewsQ: How do I convert Date to String ? (Java Language)
public class Passageiro { public static void main(String[] args) { Viagem passageiro = new Viagem(); passageiro.nomePassageiro = JOptionPane.showInputDialog("Digite o…
-
4
votes1
answer824
viewsQ: How to return 2 objects at the same time in a Java method?
public class Equacao2Grau { int a, b, c; public int CalculoDelta(){ return (int) (Math.pow(b, 2) - 4*a*c); } public int FormulaQuadratica(){ int x1…