namingthingsiseasy

joined 2 years ago
[–] namingthingsiseasy 2 points 1 day ago

You're right! But I see this as a perversion of education. Education should not be a job training programme. It should teach you how to think and learn. It should be a place where you "learn how to learn" to put it more accurately.

So if you learn how to use LibreOffice in schools, you should be able to adapt when you arrive in the workplace and use MS Office instead - especially if you are still young.

And in my opinion, having experience with two office suites makes you more productive in the end anyway. I think it helps teach you how to translate capabilities from one product to another and makes you more knowledgeable about how each of them works. At least that's what happens to me in my experience when I learn two analogous pieces of software.

[–] namingthingsiseasy 20 points 2 days ago

Indeed. For the Finns, the hardest part of the coronavirus pandemic was adjusting to 2m of social distancing, down from their preferred distance of 5m.

[–] namingthingsiseasy 39 points 3 days ago (2 children)

There may still be lawsuits, however. There are still many ways that he could lose a lot of what he gained.

[–] namingthingsiseasy 3 points 4 days ago* (last edited 4 days ago) (1 children)

I prefer eating fresh food, which means that I usually have to go to the store roughly every other day. If I buy more than a couple days of food, it just means more crap in the fridge and more spoilage.

And if my food did last longer than a few days without spoiling, then I'd really start to question what it was made of....

Editing to add that this is easily possible because I have several stores within a short walk or ride on the transit, as it was also pointed out in a sibling comment.

[–] namingthingsiseasy 4 points 4 days ago

Why just 90%? Make it 99%! 100%! 150%!

[–] namingthingsiseasy 2 points 4 days ago

It's also important to note that Putin intentionally keeps all other leaders in Russia as weak as possible to maintain his iron grip. Unless he has a very good succession plan, things could become quite a clusterfuck before the dust settles.

[–] namingthingsiseasy 15 points 4 days ago

I've never had the chance to use a functional language in my work, but I have tried to use principles like these.

Once I had a particularly badly written Python codebase. It had all kinds of duplicated logic and data all over the place. I was asked to add an algorithm to it. So I just found the point where my algorithm had to go, figured out what input data I needed and what output data I had to return, and then wrote all the algorithm's logic in one clean, side effect-free module. All the complicated processing and logic was performed internally without side effects, and it did not have to interact at all with the larger codebase as a whole. It made understanding what I had to do much easier and relieved the burden of having to know what was going on outside.

These are the things functional languages teach you to do: to define boundaries, and do sane things inside those boundaries. Everything else that's going on outside is someone else's problem.

I'm not saying that functional programming is the only way you can learn something like this, but what made it click for me is understanding how Haskell provides the IO monad, but recommends that you keep that functionality at as high of a level as possible while keeping the lower level internals pure and functional.

[–] namingthingsiseasy 16 points 5 days ago (2 children)

In my opinion, it's most important for kids to learn to use these tools above all. Schools need to take the charge on using products like these instead of corporate offerings. Once that takes place, I think (hope) the floodgates will open and that we'll finally start breaking free of the shackles of these kinds of corporate software.

[–] namingthingsiseasy 2 points 5 days ago (1 children)

Sad to see that Ecosia and Qwant don't seem to work without Javascript. I'll stick with DDG, and may consider using Mojeek more in the future. The fact that DDG doesn't have its own index does bother me a bit.

[–] namingthingsiseasy 4 points 5 days ago* (last edited 5 days ago)

It's a review of the Tuxedo Computers Infinity Book Pro 14 (Gen 9), for those who didn't want to click the link to find out.

https://www.tuxedocomputers.com/en/TUXEDO-InfinityBook-Pro-14-Gen9-Infinitely-portable-and-still-lightning-fast.tuxedo

[–] namingthingsiseasy 10 points 2 weeks ago

Sounds like a great deal... TORILLE!!!

[–] namingthingsiseasy 6 points 2 weeks ago

Agreed, but on the other hand, maybe this could push them to be better involved in the collective defense of Europe, not just for new arms but older ones as well. The more countries that contribute to Europe's collective defense, the better.

 

"Wherever I go, I find myself confronted with the accusations of double standards," said EU foreign policy chief Josep Borrell at Oxford University in May. At last year's Munich Security Conference (MSC), French President Emmanuel Macron said: "I am struck by how much we are losing the trust of the Global South."

Eisentraut makes this clear in her brief: The criticism of Western double standards is often justified. For example, countries from the Global South point out that the US and other Western states insist on the principle of the territorial integrity in Ukraine, but did not respect this principle during the US-led invasion of Iraq in 2003. Western states have often disregarded human rights by carrying out illegal detentions as part of their war on terror. And the Europeans have made common cause with North African autocrats in order to prevent migration to Europe.

However, Eisentraut also points out that critics from countries such as China and Russia often use their accusations to relativize their own violations. Or they use them to justify an approach to foreign policy that is no longer based on moral principles at all, but only on their own interests. The result is that the value of universal rules is being questioned around the world.

 

A great introduction to what traces and spans are, how they work, and the OpenTelemetry Protocol

 

“We seem to have lost our belief in a market economy somewhat and our trust that letting go can lead to something great,” he said. “The government does not have to subsidise and compensate for everything. People flourish in freedom, as does innovation. And that is what we need to drive up productivity.”

Separate article with more details on the proposed budget.

 

The researchers found sweeping changes in overall brain neuroanatomy which unfolded week by week during the pregnancy.

Inside Chrastil's brain, grey matter volume, cortical thickness, white matter microstructure, and ventricle volume all changed.

The changes were all over the brain too — "over 80% of my brain regions showed reductions in grey matter volume," Chrastil said.

Neuroanatomical changes observed over the course of a human pregnancy. Published by Pritschet, L., Taylor, C.M., Cossio, D. et al. in Nature Neuroscience (September 2024). https://doi.org/10.1038/s41593-024-01741-0

8
submitted 8 months ago* (last edited 8 months ago) by namingthingsiseasy to c/privacy
 

I'm getting IP-banned using yt-dlp. It seems that this is a known issue. Have any of you run into this, and if so, what has been your solution?

I currently use a VPN via a VPS. I am able to view youtube via the web client and use youtube-dl without VPN, but I am only unable to get through using the CLI on the VPN. I have also tried fiddling with some CLI args (like --extractor-args "youtube:player_client=web") but that is also unsuccessful.

My next step is to try signing up for mullvad to see if I can get around it that way, but would like to hear if this is affecting existing mullvad users.

Open to hearing other solutions as well. Thanks!

 

This is a very easy-to-read book on the implementation of xv6, which is a basic unix-like operating system written for educational purposes. xv6 itself is a very simple and straightforward kernel and the source code can be found here.

I've been reading it casually over the past few weeks and found that it helped me get a better understanding of many basic operating system concepts. I've also enjoyed reading the source code to understand what a basic implementation of common system calls could look like.

134
submitted 1 year ago* (last edited 1 year ago) by namingthingsiseasy to c/programming
 

I've used a US-QWERTY keyboard layout my entire life. I've seen other layouts that do things like reduce the size of the enter/backspace keys, move the pipe operator (|) and can't wrap my head around how I would code on those.

What are your experiences? Are there any layouts that you prefer for coding over US English? Are there any symbols that you have a hard time reaching ($ for example)?

 

We are sad to announce @saksadota will be taking an extended break due to health reasons and will not be on our active roster. We wish him all the healing and success possible. Thank you, Martin, for playing a pivotal role in our TI victory. You’ll forever be a part of our legacy and the Tribe.

Maybe they should sign Fata to take his place?

view more: next ›