Posts by Henrique La Porta • 56 points
4 posts
-
0
votes1
answer34
viewsA: Background: url() will not
I believe you need to put values in width and height want to allow the image to appear, as in the example I added try to remove the attribute height she goes away. .header { width: 150px; height:…
-
0
votes1
answer98
viewsA: How do I set up a column to be composed in Mysql with Hibernate (Java)?
I believe that its mapping is wrong, if a "plan" can have several "modalities" and "extras" should use the mapping @oneToMany in the "plane" where the mode and the extra would store the id of the…
-
1
votes1
answer842
viewsA: Implementation Dijkstra algorithm in Python
I believe that’s when you perform self.graph.pop(minNode) that is removing the node from the graph, so in the second execution the graph is empty and ends up returning nothing. You can do a test by…
-
0
votes1
answer190
viewsA: Doubt about Hibernate heritage
If I understand correctly, this mapping NAY would have the right sense, because: In Single table with seller and employee would generate a single table: Employee table: containing all information…