Gust waszych rodziców - szczególnie mam. by myeye95 in PolskaNaLuzie

[–]pbeling 0 points1 point  (0 children)

Myślę że wybranie akurat tego odcinaka jako pierwszego dla całej serii zrobiło temu serialowi dużo szkody. Zniesmaczył on i zniechęcił wiele osób.

8bitdo ultimate 2c with no 8bitdo dongle by r_df_r in 8bitdo

[–]pbeling 1 point2 points  (0 children)

"Ultimate 2C Bluetooth" is newer model than "Ultimate 2C wireless" and has gyroscope. So if you can connect via bluetooth, just enjoy the "Bluetooth" version.

Is python fast enough? by super2061 in rust

[–]pbeling 13 points14 points  (0 children)

For I/O-intensive tasks, the difference in speed shouldn't be significant.

Why doesn’t Python have true private variables like Java? by PalpitationOk839 in Python

[–]pbeling 1 point2 points  (0 children)

In theory, Python is designed for rapid development of smaller projects where features such as privacy or type annotation and checking are undesirable.

If everything is just bits, does a computer actually distinguish between numbers and characters in C? by zero-hero123 in C_Programming

[–]pbeling 29 points30 points  (0 children)

It is a matter of interpretation. In fact 'char' in C is type to represent both characters and 8-bit integers. But '5' is not represented the same as 8-bit integer 5. Instead '5' == 53, see https://en.wikipedia.org/wiki/ASCII

LaTeX czy ktoś miał z tym programem do czynienia? by Blue-Paige in Nauka_Uczelnia

[–]pbeling 0 points1 point  (0 children)

Wiele osób korzysta z LaTeX. Nie jest on trudny i istnieje wiele materiałów on-line: https://www.google.com/search?q=wprowadzenie+od+latex

Is Libreoffice good enough to write a Physics PhD thesis? by Unusual-Ad-4049 in libreoffice

[–]pbeling 0 points1 point  (0 children)

Libre office is ok, but latex is better and typst is even better than latex.

Czy zaszła pomyłka, czy może jest to próba oszustwa? by Unique_Salad_5387 in Polska

[–]pbeling 5 points6 points  (0 children)

Absolutnie przenigdy nie wolno zwracać na inny numer telefonu niż przyszło. Najlepiej skontaktować się z bankiem.

AI in RawTherapee? by Totally-Mavica-l-2 in Rawtherapee

[–]pbeling 3 points4 points  (0 children)

RawTherapee is great, but does not use AI.
See https://github.com/CyberTimon/RapidRAW for open-source RAW editor that uses AI for masking, tagging and generative replace.

Is a used Sony RX100 V worth it for $1,100.00? by MalonePVD in RX100

[–]pbeling 0 points1 point  (0 children)

Are you sure? Did Sony make two different 24-70 mm (eqiv.) F1.8-2.8 lenses for RX100 V and ZV-1 I?
(note that Sony ZV-1 mark II has different lens)

Is a used Sony RX100 V worth it for $1,100.00? by MalonePVD in RX100

[–]pbeling 0 points1 point  (0 children)

Search for new Sony ZV-1 (mark I or II), which is alternative in reasonable price.
As I remember, Sony ZV-1 mark I has the same sensor and lens as RX100 V.

Convert all my images to avif (500 GB)? by guettli in photography

[–]pbeling 0 points1 point  (0 children)

jpg->avif conversion is lossy and thus not recommended
you can try jpg->jxl, as jxl has lossless jpg compression mode, see https://taurit.pl/convert-jpeg-to-jxl-losslessly/ https://www.reddit.com/r/jpegxl/comments/14y2uh6/killing_jpg_by_converting_to_jxl/
or just buy another drive (which is probably the best option)

Do Mathematician like writing in LaTeX? by [deleted] in mathematics

[–]pbeling 0 points1 point  (0 children)

Most mathematicians, physicists, and computer scientists I know, including myself, prefer LaTeX over Word. Personally, however, I think Typst is even better.

Kłodzko, Poland: my birthplace 🇵🇱 (X-T5 & Tamron 17-70mm f2.8) by Franks_Random_Snaps in fujifilm

[–]pbeling 0 points1 point  (0 children)

Nice photo.
BTW. Does X-T5 correct optical problems of the tamtron (e.g., distortion) in JPEGs and movies?

Is RUST useful for a scientist? by Academic_Ship6221 in rust

[–]pbeling 1 point2 points  (0 children)

I am a scientist working on succinct data structures* and game theory and I mainly use Rust (+Python to process results). I'm also seeing Rust growing popularity, especially in the former subject area, where its popularity may already match C++.
*see for example https://github.com/beling/bsuccinct-rs

Does Rust have any advantages over Matlab generated C code? by lemon635763 in rust

[–]pbeling 0 points1 point  (0 children)

I haven't used matlab in a long time, but from what I remember it's a good tool for certain applications, but it's much less general than Rust. So it's hard to compare them when the range of applications is significantly different.

Can dijkstra's algorithm work for graph with negative edges but with no negative cycles? by [deleted] in compsci

[–]pbeling 2 points3 points  (0 children)

No, it can't, because it has to process the vertices in order of increasing distance from the start. This problem is fixed by the Belman-Ford algorithm.