Posts by Bruno Paulino • 111 points
2 posts
-
1
votes6
answers690
viewsA: How do I make a page not bug when the browser is resized?
Have you seen the Twitter Bootstrap? is a set of CSS classes that you can use to make your website responsive, that is, you can use it in various dimensions and it will adapt the resolution of the…
-
-1
votes3
answers2230
viewsA: Java shows "Type Safety: Unchecked cast from Object to Hashmap"
Eclipse launches this warning because you are casting without testing the type of the object. to avoid this, you could do the following: if(test.get("test_map") instanceof HashMap<String,…