Posts by Vinicius Gaio • 65 points
3 posts
-
0
votes1
answer355
viewsQ: Configure button to open browser console (Google Chrome)
Good morning guys, my question today is how can I set up a button on a web page to open the console (for example, Chrome uses the Ctrl+Shift+I button combination). This code has to be developed…
-
1
votes1
answer54
viewsQ: Doubt regarding the Python syntax
Good evening guys, my question is about a piece of code I found in a book about Python and Opencv. The author created the function that I will put below: @property def frame(self): if…
-
5
votes2
answers458
viewsQ: Doubt in displacement of bits in C
My question is regarding the following excerpt from a code: #include <stdio.h> int main(void){ int teste = 0, x0 = 0, x1 = 0, x2; x2 = 1; teste = ((x0|x2) | (x1|x2) << 1); printf("Valor…