Posts by TNT • 174 points
5 posts
-
0
votes2
answers86
viewsA: Inserting a string into a list of ints
I have no experience in Python, but I believe the four "append" calls are wrong. Try to change newlist.append(item) ='fizzbuzz' for newlist.append('fizzbuzz')…
-
0
votes2
answers184
viewsA: Open window and automatically click somewhere
Try creating a link on the button to https://www.youtube.com/subscription_center?add_user=USUARIOYOUTUBE, preferably with target="_blank" to open in new tab.
-
1
votes1
answer459
viewsA: Wifi connection problems and to install git in Ubuntu 16.04
For Wifi, try to connect first via network cable, see if it works. It is common for linux not to come with some wifi card and video card drivers, because they are proprietary. Go into configuration,…
-
1
votes2
answers79
viewsA: Doubts about which infra to choose
Could you be more specific? The database you need to host too, or just access external? If the site is "static", that is, only with Javascript and the like, you do not need an EC2 instance to host,…
-
3
votes2
answers723
viewsA: Count black pixels from a region of the image
If I understand correctly, to count only the pixels niggas from the image area, you need to scan each pixel of the area by checking whether it is black or not. To manipulate the image, it needs to…