python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Calling printf or puts from MASM64 assembly does nothing, but calling WriteConsoleA works?
I am currently trying to learn assembly programming with MASM64. I have managed to get WriteConsoleA to work, but am stuck trying to use C functions like printf or puts. It should be noted that I am u...
Mikolmisol
Votes: 0
Answers: 1
How to use sshpass without TTY on a Node.JS backend?
I am running the following in a script:
pubkey=$(gpg2 --verbose --export-ssh-key $EXPORT_THIS_ID)
sshpass -p$REMOTE_PASS ssh -o IdentitiesOnly=yes -o StrictHostKeyChecking=no -tt -p $REMOTE_PORT root@...
vaughngx4
Votes: 0
Answers: 1
Is 'std::ios::sync_with_stdio(true);' before 'scanf()' and 'std::ios::sync_with_stdio(false);' after, a good practice?
I haven't found yet an alternative to the scanf function to store an input number (as an unsigned tiny integer, not really as char) into an unsigned char variable, but, reading around Internet (and A ...
thomas
Votes: 0
Answers: 1
How to copy the content of a binary file into an array
I am currently working on a chip-8 emulator and I have a method which loads in the program by copying a binary file into an array called 'memory'. However, it doesn't work as mentioned on the tutorial...
leon4aka
Votes: 0
Answers: 1