Posts by Israel Rodrigues • 74 points
6 posts
-
-1
votes2
answers42
viewsA: Compare the data of an Arraylist not to let register in duplicity - Java
In the stretch if(prodList.get(0).getNome() == prodList.get(i).getNome()) { You are always comparing the first item of prodList with each item of the same prodList. I imagine you’d have to compare…
-
0
votes1
answer19
viewsA: When and how to use @Value Spring Boot?
Each of these annotations has a different function, for example @Autowired is used by spring to create and inject instances of classes you have noted with @Service, @Component, @Repository or @Bean.…
-
0
votes2
answers932
viewsA: How to merge images and text with PHP
I’ve had to do something similar to generate email signatures for the company I work for. The solution I found was to position the elements with css and use a library that takes a screenshot of the…
-
0
votes2
answers2507
viewsA: How to put part of a text in bold in Tkinter?
I got a nice response from a user in Ggoogle, the idea was the following: You can take a look at the "tag_config" and "mark_set" functions of the Tkinter.Text component (here). In case you would…
-
1
votes1
answer1008
viewsQ: How to run a module in Python?
have a question. A few days ago I am creating an application with GUI interface to show movie schedules. It was built in modules, for example, a module takes care of the images, searches the web and…
-
5
votes2
answers2507
viewsQ: How to put part of a text in bold in Tkinter?
I need to display a text in a GUI interface made with Tkinter, however, I would like only one word in the middle of this text to be in bold. I’m using it this way: texto = Label(Frame, text="Texto…