Posts by Tim • 231 points
4 posts
-
5
votes2
answers2111
viewsA: Use of pthread library in windows environment
How do you say here, that I find a very correct statement for the clarification of this doubt: Pthreads is part of POSIX and Windows is not a system POSIX. Anyway there is only one implementation of…
-
1
votes1
answer846
viewsA: Redirect any URL html extension to a specific page
For this redirection it is necessary to have the module mod_rewrite connected. To turn it on, use this command: sudo a2enmod rewrite sudo service apache2 restart # para reiniciar o servidor Inserts…
-
2
votes1
answer186
viewsA: Permissions system
I suggest a simpler and faster model to pursue the goal. We assume we have a table like this: CREATE TABLE usuarios ( id int unsigned not null AUTO_INCREMENT, /* numero de usuário */ username…
-
2
votes3
answers1117
viewsA: Read Remote Server log.txt on Real-Time Local Server
If both servers use Linux as OS, a good option is to use SSHFS. This allows you to have a remote folder mounted as a partition on your local system and you don’t need any complicated configuration -…