Posts
 
Reputation
Joined
Last Seen
Ranked #5
Strength to Increase Rep
+16
Strength to Decrease Rep
-4
96% Quality Score
Upvotes Received
4K
Posts with Upvotes
3K
Upvoting Members
889
Downvotes Received
120
Posts with Downvotes
114
Downvoting Members
56
735 Commented Posts
~5.19M People Reached
Favorite Tags
java x 13.3K
c++ x 197
gui x 165
swing x 133
images x 122
Member Avatar for SoniyaJonas

I used https://apps.apple.com/us/app/photos-duplicate-cleaner/id592704001?mt=12 Worked well for me.

Member Avatar for simhakidsden
4
330
Member Avatar for Dani
Member Avatar for samaru
Member Avatar for Reverend Jim

I watch almost everything via a recording, so I can always skip the ads, but I still have to put with "coming after the break " followed by a preview of the best bits to come, and then after the break a complete resume of the segment that just finished. …

Member Avatar for KomalBhatt
9
3K
Member Avatar for Mr.M

> Basically these kind of Apps allow you to access internet even if you don't have data at all I believe you are mistaken about this. VPNs and tunnels still need to transmit your bytes over your internet connection. What makes you think otherwise?

Member Avatar for hazeeq
-1
749
Member Avatar for techlifelk

It looks like your files are in the wrong place. As used in your code, getResource will look for the files in same folder (or package if you are runnng from a jar) that the current class was loaded from. I don't see any class files in that directory. It …

Member Avatar for Dani
0
31K
Member Avatar for kukuruku

Yes. Just make sure that the new Object is has all its variables in a decent state regardless of which conditional paths are executed.

Member Avatar for Washington AM
0
8K
Member Avatar for Apoorva_K
Member Avatar for rproffitt
Member Avatar for blud

We may have had our disagreements in the past, but this is one thing I wouldn’t wish on my worst enemy. With all my heart I wish you the strength to endure what must be endured. And, who knows, modern medicine is improving exponentially. There’s always hope. James

Member Avatar for SCBWV
2
157
Member Avatar for abhishek_s_n

TCP. UDP messages are sent, but there is no check or guarantee whether they arrive or not. Also if you send multiple UDP packets there's no guarantee that they will arrive in the same order as they were sent.

Member Avatar for Sofiia
0
1K
Member Avatar for Juniormi_01

Don’t know if this helps but… If your compiler has `__STDC_NO_VLA__` = 1 then it doesn’t support variable length arrays (C++ 11)

Member Avatar for Gulshan_6
0
332
Member Avatar for Mindmade

> What are the 2 main types of software? Software with known bugs, and software with bugs we don’t know about.

Member Avatar for Reverend Jim
-1
414
Member Avatar for epsilonb

Just FYI the “standard” way to code this (saving duplicated reads and tests) is simply while ((String line = br.readLine()) != null) { // process line }

Member Avatar for JamesCherrill
0
173
Member Avatar for richards125
Member Avatar for Akira350lth
-2
18
Member Avatar for darwin.scribe

I’m no Python expert, but my understanding is that __del__ is called when and if the object is deleted by the garbage collecter. This may be some time after the last reference is released by obj = None, definitely *not* “as soon as you do obj = None”. Maybe the …

Member Avatar for Reverend Jim
0
210
Member Avatar for j_834

Place the database jar somewhere in your CLASSPATH, and`import` the classes you need in the other projects do you can use them directly.

Member Avatar for JamesCherrill
0
62
Member Avatar for Sky_

> How can I get this source code? It's a learning assignment. You get the source code by writing it yourself - that's how you learn. If you are trying to write it, and you're stuck, explain what you have done so far and what's blocking you. Someone will help.

Member Avatar for dwellfox
0
146
Member Avatar for Sam_417
Member Avatar for JamesCherrill
0
24
Member Avatar for Saboor880

Some countries including France where I live use a . between thousands and a , before the decimals. Java localisation will automatically default to display numbers in the correct format for the users locale. You can override this by setting an explicit locale in your program if you want to …

Member Avatar for Стас_1
0
87
Member Avatar for Destini_1

I think you mean decrypt. 10 seconds with google tells us that rot13 is simply a ceaser cypher that replaces each letter with the letter 13 after it in the alphabet. Very easy in any programming language.

Member Avatar for hes8
0
113
Member Avatar for vegaseat

My favourite Zen proverb: "the grandfather dies, the father dies, the son dies" Sounds very depressing at first sight, but when you think about it you see that it is perfect - anything else is a lot worse.

Member Avatar for Reverend Jim
15
13K
Member Avatar for fouad_4

Be realistic. Your tutor expects this to take weeks of work for a team of 2. There’s no possibility of doing anything by ‘tomorrow’. Spend your time thinking about plan B.

Member Avatar for JamesCherrill
0
52
Member Avatar for Justin_44

Is it possible that the panel becomes visible before the tile class is fully initialised?

Member Avatar for JamesCherrill
0
71
Member Avatar for dlh6213

I doubt that you will find an off-the-shelf solution, nor will you find an easy one. You need to traverse a tree with nodes for each value x1, x2, x3 etc. Looks like a recursive algorithm. How much do you really want a solution?

Member Avatar for JamesCherrill
0
229
Member Avatar for riccardo.farabi

Just out of curiosity, what are you modelling that needs an accuracy like 1 part in 10^20?

Member Avatar for riccardo.farabi
0
163
Member Avatar for sachitha_1
Re: java

You write a Java program as specified in the assignment. Have you even tried to start writing?

Member Avatar for JamesCherrill
0
310
Member Avatar for cyrennex

Ok. You have started, so that’s good. How far did you get and what’s stopping you from progressing further?

Member Avatar for JamesCherrill
0
95
Member Avatar for ___150

> It's not good practice to short circuit the page by calling exit; in the middle of an if-else block. So you call a separate method that calls exit for you? All you have done is make the code more obscure by hiding the exit. try/catch would be much clearer.

Member Avatar for Reverend Jim
0
138
Member Avatar for Gerica

Any `true` on the top/right/bottom/left edge is an entry or exit, so you just need to loop round those locations looking for two `true` values

Member Avatar for JamesCherrill
0
16