Posts by Diego Rangel • 133 points
5 posts
-
1
votes1
answer1875
viewsQ: Web scraping on page with login and password
I am trying to extract source code from an html file with the following style: <div class="both"></div> <div class="st-box" id="source-code"> <h3>SOURCE CODE</h3>…
-
1
votes1
answer123
viewsQ: Text.strip() Python
I am trying to make a code that extracts some information from a page. The file has the following format: <tr class="impar"> <td class="id"> <a…
-
1
votes1
answer129
viewsQ: Error: expected class-name before
I’m developing a project where I have an online class that inherits from an X class, where this X class needs to give a new on an online class object. When I do this error happens due to inheritance…
-
2
votes1
answer59
viewsQ: Singleton implementation static member error
When implementing the Singleton standard the compiler gives the following error: include graphdata. h|21|error: 'constexpr' needed for in-class initialization of Static data Member 'graphdata*…
-
8
votes2
answers112
viewsQ: Abstract methods do not require implementation
I am doing a job and implemented an abstract method, the case makes a class inherit this, but the compiler does not accuse error for the lack of implementation of the methods. I’m doing it wrong?…