Posts by Brasileiro • 68 points
4 posts
-
2
votes1
answer259
viewsA: Convert . log file to . txt in Bash
I don’t know if it would help but you can use the Unix move command. Examples mv MeuArquivo.log MeuArquivo.txt Or in a specific directory... mv /var/logs/MeuArquivo.log /var/logs/MeuArquivo.txt…
-
1
votes2
answers100
viewsQ: Do you need to use Appcompat and Support Design libraries when the minimum API is 21?
I recently updated an application I am developing to use minimum API 21 (Lollipop), before it was on 19 (Kitkat). In the case of Kitkat I needed to use Appcompat and Support Design to take advantage…
-
2
votes2
answers908
viewsA: Indication of the first negative number of a vector
It is a very simple task, it is not necessary to use a boolean variable for this. Simply fill in the vector and read it again. Try to find and organize your code more and use correct programming…
-
0
votes1
answer305
viewsA: Insert a program into a windows window. h in C
First, you need to define what you want to put in the window. It is recommended that you use some Forms editor (Visual Studio with Win32, Codeblocks with wxwidgets, Qt, etc). In these editors you…