Posts by Byte Universe • 156 points
9 posts
-
1
votes3
answers13799
viewsA: Delete a particular repository from github
Go to the repository you want to delete, then click on the tab Settings Then scroll to the bottom on the screen and find where it is marked in red and written Danger Zone Click on the last option:…
-
1
votes2
answers49
viewsA: Problem with floating point comparison
Your question is not so clear, but if what you need is to get the numbers between 0.8 and 1.2 including the 0.8 and the 1.2 you just use the operator OR ( || ), follows the code: float h; do{…
canswered Byte Universe 156 -
0
votes2
answers30
viewsA: Java programmed calculator code error
It was probably a typo of yours, the correct method is getText(); and you used gettext(); lower-case.
javaanswered Byte Universe 156 -
2
votes3
answers50
viewsA: Show div only after checking 3 radio Buttons
You can modify your code so that the if be as follows: if(document.getElementById('id-radio-1').checked && document.getElementById('id-radio-2').checked &&…
-
0
votes2
answers60
viewsA: How do I turn a site that is already ready into responsive? In the two codes below is just a page of the site to take as an example
Your question has become very broad, next time try to be more specific. But I’ll still try to at least give you an idea of where to start. As most of your code is measured in absolute terms px ideal…
-
0
votes1
answer113
viewsA: Click a button that is not yet on the screen
Try to make that code: confirm = wait.until(EC.visibility_of_element_located((By.ID, "confirm"))) confirm.click() probably your code didn’t work because your element "confirm" was not allocated, ie…
-
2
votes3
answers274
viewsA: How to manipulate the DOM of a page before it finishes loading?
Try to manipulate the src of tags <img> before these are loaded into the user’s browser is like trying to manipulate something that does not exist. I believe that the best strategy for your…
-
0
votes1
answer67
viewsA: citation of the same work by the same author and different years
Your question was not very clear, but apparently what you intend to do is quote two editions different from the same work. If so, you should create two entries in your file .bib changing only the…
-
1
votes2
answers44
viewsA: Tags With Different Sizes
When you open Devtools the browser adjusts the page to the mobile device version. What you need to do is use the meta tag viewport within the tag <head> of your html document. <meta…