Pegasus Spyware — Is YOUR iPhone at Risk?
This is just one product by one company. There are many more and these companies all say they only sell to the "good” guys.
https://t.co/ksjhtDN8Lf
#cybersec#cybersecurity#hacking#infosec#career
I've just mentioned GOTO Conference, yesterday and here is their new video. It's for beginners from experts.
https://t.co/PcSMXjZ4pF
#programming#code@GOTOcon
TOP 3 Youtube channels to follow as a developer to keep up with the trends
GOTO Conferences
https://t.co/mdDqgdp779
Devoxx
https://t.co/f62xi83g0q
Konfy
https://t.co/svN8xkaZ9T
#Java#programming#coding
I have just finished the Collections lectures. 🙃 And I have already moved on to the next big topic: Functional programming in Java - Lambdas
Meanwhile, The curse is getting closer and closer to 20 hours. 🤓
@janifer The reason why we don't need the +1 is here:
The nextInt(int n) is used to get a random number between 0(inclusive) and the number passed in this argument(n), exclusive.
Sorry for my late response I didn't get any notifications.
@janifer Thank you for letting me know about this issue. It can be fixed the following way:
instead of
int randomBuildingIndex = randomNumberGenerator.nextInt(buildings.length +1);
you'll need:
int randomBuildingIndex = randomNumberGenerator.nextInt(buildings.length);
@janifer@udemy These are very small changes so besides these your code is really good. :)
If you've finished the next practice, please share that one as well!
@janifer@udemy Hey Jenifer, Your code looks great and I'm happy that you managed to use almost all the data types in the practice. And I'm also delighted that you keep doing the practices :)
@janifer@udemy You could use something like MyHeroAcademyCharacter.
Another suggestion is using (int) when you pass the height. That's not needed.
In the upcoming practices feel free to use primitives instead of Objects if they are not necessary.
@janifer@udemy Some small changes I would suggest you do is renaming UAHighStats to something that is easier to read. So instead of the abbreviation(UA), please use the words instead. It's better to have long class names than abbreviations they are not obvious for everyone.
One more lecture to finish the Collections - Lists part of the Advanced level. Few more topics and the Advanced level will be finished, too. If you have some time, check out the new content!
I’m working on the re-recording of the beginner section. After I listened it again, it felt like I was sleepwalking when I first recorded it. 😬 The new version will be much better!! 😉 #java#course@udemy
@janifer@udemy (Without seeing where you get this error) If you can click on New Project, then select Java. And at the top you should see a select menu and there you should click on Add new JDK and select the Corretto folder.
@janifer@udemy If not, then Click on Edit, then a little plus sign at the top of the panel. After that "Add JDk..." option and you need to select the folder where the JDK is installed, and click OK. Most of the times it's in the Program Files, like in the picture.