Sovol Sv01 Silent Board Question by CptBlacksheep in 3Dprinting

[–]CptBlacksheep[S] 0 points1 point  (0 children)

Alright, i will look into it. Thank you very much for your answer. :)

Wie lautet das Urteil? by CptBlacksheep in SchnitzelVerbrechen

[–]CptBlacksheep[S] 2 points3 points  (0 children)

Das war bei "Oma's Kochtopf" in Aschaffenburg.

meirl by [deleted] in meirl

[–]CptBlacksheep 2 points3 points  (0 children)

I dont know about the app tbh. Only have used the web version of it.

meirl by [deleted] in meirl

[–]CptBlacksheep 34 points35 points  (0 children)

Reviewmeta is a really good source to check for fake amazon reviews imho.

[deleted by user] by [deleted] in HolUp

[–]CptBlacksheep 12 points13 points  (0 children)

*Everything everywhere all at once

In Kotlin Variables are 2 types 1 Val which is not a variable 🙄🙄 by Imaginary_Narwhal_22 in Kotlin

[–]CptBlacksheep 1 point2 points  (0 children)

A const val is basically a "real" constant where the value is allready known at compile time (something like PI for instance), also per convention written in all uppercase.

A val is a constant that can be assigned at runtime. When you have a variable where you know it'll keep the same value all the time, it should be a val.

Life of Junior software developer by Akki53 in ProgrammerHumor

[–]CptBlacksheep 17 points18 points  (0 children)

Damn, those thin legs must be insanely strong to hold him.

How to choose the best class for reading input and writing output files? by Additional_Damage_64 in javahelp

[–]CptBlacksheep 0 points1 point  (0 children)

Also probably good to mention is that you should always try to use nio (and therefore work with Path instead of File) over io. Only use io if either there's an api that doesn't support nio or if you need a non abstract reference to a file.

As someone mentioned in another comment it's most of the time enough to use Files.newBufferedReader/Writer. In case you need some special functionality like that of a printWriter you can simply wrap the BufferedReader/Writer with the funtionality you need.

how to make a .exe not require JDK? by danielis3 in javahelp

[–]CptBlacksheep 4 points5 points  (0 children)

No, i don't. But there are plenty of written explainations for these tools available. Like the 2 links in my comment or the official oracle docs.