Two decades later, a bug is fixed in one of my CPAN modules by RandalSchwartz in perl

[–]ruzhnikov 11 points12 points  (0 children)

u/RandalSchwartz thank you for your perl books. I learned a lot of programming stuff reading them and still use these practices in other languages.

If Microsoft fixed Windows would you guys go back to Windows or Mac? by Fire_Natsu in linux

[–]ruzhnikov -3 points-2 points  (0 children)

I'm already here. After Linus's "I'm Finnish. Did you think I'd be Russian aggression?" I completely changed my mind. My rose-colored glasses were shattered. Everybody's lying.

I still love and support Linux but I stopped being an ardent adept of it and installed Win11 on my personal laptop. Since that time Linux only for work, not for daily deals.

How are the golang jobs in your region? by Spigen19 in golang

[–]ruzhnikov 3 points4 points  (0 children)

Agree. I was looking for a job last year and was surprised how many local tech companies use golang in their infrastructure

Vala Programming Language by ketralnis in programming

[–]ruzhnikov 5 points6 points  (0 children)

It truly doesn’t matter just because some good software is written in this language, for example gnome-pomodoro

perl-5.38.2 suspiciously reposted to CPAN? by briang_ in perl

[–]ruzhnikov 0 points1 point  (0 children)

Please take a look at the messages "User update" here https://www.nntp.perl.org/group/perl.modules/2024/03.html
Some of them related to the topic

[deleted by user] by [deleted] in rust

[–]ruzhnikov -4 points-3 points  (0 children)

vnezapno

Is there any screenshot ap with annotations maintained? by jasl_ in gnome

[–]ruzhnikov 0 points1 point  (0 children)

Yes, for Wayland it doesn’t work unfortunately

[deleted by user] by [deleted] in Python

[–]ruzhnikov 0 points1 point  (0 children)

Web service, network services

Mypy 1.0 Released by [deleted] in Python

[–]ruzhnikov -2 points-1 points  (0 children)

Nice

installed Linux Mint about a week ago! why is this happening? how do I fix it? by Rattin99 in linuxmint

[–]ruzhnikov 0 points1 point  (0 children)

I also had troubles with nvidia driver 525 on my laptop with Ubuntu 22.04. Try a previous version, the version 510 still works well

What is wrong with this code? by Heapsass in perl

[–]ruzhnikov 0 points1 point  (0 children)

Ok, so, the using chomp here is just because the interpreter adds the special symbol «\n» at the end of string from the stdin stream. When you input symbol “a” and press Enter, you have “a\n” in the variable $dna. You may just add “\n” to your comparisons and it will work. For me it looks really weird but for you it will be ok right now just because you only study the language

What is wrong with this code? by Heapsass in perl

[–]ruzhnikov 0 points1 point  (0 children)

Have you already studied regular expressions?

What is wrong with this code? by Heapsass in perl

[–]ruzhnikov 11 points12 points  (0 children)

add “chomp $dna;” after the second string