Posts by kodo no kami • 136 points
7 posts
-
1
votes1
answer116
viewsA: How to make a clock / how to make it run in the background?
Voce can use the time function to catch the system time, in case the Sleep one stop on the processor would be like running a loop that does nothing just for delay or to spend machine cycles, on the…
canswered kodo no kami 136 -
1
votes2
answers395
viewsA: How to make CSS hide a PHP routine
If I got it right If I wanted to hide the code generated by the script until it is resized, it would not even be displayed in the source code, would that be it? or php code is being displayed even…
-
2
votes1
answer181
viewsA: Is there a system call to read just one file line on Assembly 8086?
depends on the system, in case the system calls or syscall are usually linked to a particular operating system and not necessarily to an architecture like x86 (sometimes depedendo sim kkk), see for…
assemblyanswered kodo no kami 136 -
3
votes2
answers1785
viewsA: Call cd command in c++ using system()
Voce can use chdir to force this directory change to the system on linux #include <stdio.h> #include <stdlib.h> #include <unistd.h> int main(void){ //apontamos o terminal para /…
-
3
votes1
answer1901
viewsA: MOD in Assembly
has many ways of knowing if the number is even or odd in Assembly, one of them is transferring the number in base2 (binary), when the number is even it in binary ends in 0 and odd in 1, see some…
-
0
votes2
answers1252
viewsA: What is the good solution to replace Alert?
it is possible to create Javascript by php, but it will not necessarily be created by php, because php is not executed on the client machine, but on the server generating the HTML (js and css) code…
-
2
votes2
answers2300
viewsA: How to use command line parameters
There are many ways to do this, you can check each past argument and when a given argument is that specific just take the next parameter and then skip it to not be checked. an example would be if…
canswered kodo no kami 136