Posts by jorge • 127 points
3 posts
-
1
votes1
answer79
viewsQ: How does the data types after constant work in C?
I’m reading some codes and came across the following code #define foo unsigned int #define i typedef i know how this unsigned and Signed, typedef etc works, but I’m not getting to understand how…
-
-2
votes4
answers1794
viewsA: Node replaces Nginx? Can someone explain this architecture to me?
Nginx does exactly the same thing as apache does, it’s simply an http server that works with the "common gateway interface" CGI protocol that is used in dynamic pages, CGI’s job is to invoke an…
-
7
votes4
answers2279
viewsA: Responsive image
Assuming you want the image to shrink with page resizing by focusing on responsive design, just use % percentages in width. img{ width: 50%; } This way your image will always be at 50% of the main…