Skip to main content
Advice
5 votes
0 replies
0 views

Which is better - Java or python?

In addition to context (i.e. the kind of applications you are developing), you haven't told us what >your< criteria for "better" are. Do you mean ... better performance? faster to ...
Stephen C's user avatar
  • 724k
Advice
3 votes
0 replies
0 views

Which is better - Java or python?

They are different languages with different strengths and weakenesses. Which is "better" will depend on the individual scenario of what you're trying to develop, and the surrounding ...
ADyson's user avatar
  • 63.2k
Advice
3 votes
0 replies
0 views

Which is better - Java or python?

It's used a lot in finance, sure, but saying it's "mostly" finance is not really accurate. I personally know of lots of other uses for it in other sectors. Plus you can google it and see ...
ADyson's user avatar
  • 63.2k
Best practices
2 votes
0 replies
0 views

How to return the full body from HttpResponse?

The reason some sites return just <div id="root"></div> is not a problem with your code — it's the site being an SPA, as explained above. The full body is being returned — it ...
Richu Andrews's user avatar
Advice
2 votes
0 replies
0 views

Trouble Understanding Interfaces

As a remainder to every reader: those classes are typical textbook examples, showing how you should not design classes. The whole idea of OOP is to avoid redundancy, so don’t create classes having ...
Holger's user avatar
  • 302k
Advice
1 vote
0 replies
0 views

Which is better - Java or python?

If you want a backend using AI, I would suggest going with python. Their libraries the most up to date with the latest AI features.
Simon S.'s user avatar
1 vote

What's the Java equivalent of .net's GC.KeepAlive?

The equivalent is Reference.reachabilityFence(obj). From the documentation: Ensures that the given object remains strongly reachable. [...] Thus, the given object is not reclaimable by garbage ...
ceztko's user avatar
  • 15.4k
Advice
1 vote
0 replies
0 views

Trouble Understanding Interfaces

You always write the Java code into a .java file. So where does the confusion come from?
Holger's user avatar
  • 302k
Advice
1 vote
0 replies
0 views

Which is better - Java or python?

I have worked on both. So here is my opinion. Java is much faster than Python and its more maintainable in the long run. You can do a lot of threading, locking in multicore systems in Java. It is used ...
Albin Paul's user avatar
  • 3,429
1 vote
Accepted

How to remove border of whole recyclerview which was added using xml?

You added the border like this: playerRV.setBackgroundResource(R.drawable.border); So basically that border is not something separate, it is part of the background drawable itself. If you want to ...
Arun Kumar's user avatar

Only top scored, non community-wiki answers of a minimum length are eligible