Posts by Bob Slavtrievich • 126 points
7 posts
-
1
votes1
answer217
viewsA: How to Make a Simple HTML Form Responsive with Native CSS?
You can use the famous "viewport" to make this improvement, but you can stay the way you don’t want to. Try to define the viewport: <meta name="viewport" content="width=device-width,…
-
2
votes1
answer355
viewsA: Error using socket.recv()
Your code from the socket client, worked normally, could be problems in socket server Server socket: from socket import * s = socket(AF_INET, SOCK_STREAM) s.bind(( "localhost", 5000 )) s.listen(20)…
-
0
votes1
answer41
viewsA: Search for variable value
It can be done as follows: <?php $variavelphp = "<script>document.write(variaveljs)</script>"; echo "$variavelphp"; ?> You will edit only the variaveljs and put your variable! . I…
-
2
votes1
answer81
viewsA: Problems with C socket
You must set everything correctly in the prototype: void sock_send(int sockfd, char * header); char* sock_post(int sockfd, char * post_header); char* sock_recv(int sockfd, int buf_bytes); int…
-
1
votes1
answer133
viewsA: reverse connection in C#
If localhost connects perfectly and dynamic dns does not connect (probably it is configured with your IP), this is because of your network! If the DDNS IP is yours: You must configure your network…
-
1
votes2
answers900
viewsA: How can I export output to a C text file?
If you want to pass the FULL output of the program to the file, you can do as follows: Windows: meuprograma.exe > arquivo.txt Unix/Linux: ./meuprograma > arquivo.txt Note: Only one ">" will…
-
1
votes1
answer181
viewsA: Add opacity between menu and background
From what I understand, you are making a dropdown menu and you want to put an opacity off the menu when you open it. Correct? If this is it, you can use the .active, add it to your file .css:…