Gekkonen

joined 3 years ago
[–] Gekkonen@sopuli.xyz 1 points 1 hour ago

Ah, sorry for the confusion - that server's been out of commission for a few years already.

[–] Gekkonen@sopuli.xyz 10 points 1 hour ago

There's a lot of articles about supply based usage vs demand based energy production on that website. The idea that it turns off every now and then is sort of part of the authors' intention of showing "we can live with some outages".

This article in particular is a good one: https://solar.lowtechmagazine.com/2017/09/how-not-to-run-a-modern-society-on-solar-and-wind-power-alone/

[–] Gekkonen@sopuli.xyz 15 points 3 hours ago (1 children)

I know this is a typo, but I'm sad Guthub isn't a food delivery company.

[–] Gekkonen@sopuli.xyz 10 points 4 hours ago* (last edited 3 hours ago)

I'm sorry. Have this picture of a lime hawk-moth caterpillar I saw the other day.

https://plantmonster.net/pictures/phone/PXL_20260813_122831209.jpg

[–] Gekkonen@sopuli.xyz 1 points 5 hours ago (2 children)

I honestly don't remember now as this was over 10 years ago.

[–] Gekkonen@sopuli.xyz 3 points 5 hours ago (4 children)

I used this, among other things, for my personal Blender renderfarm. Cooling was a must.

[–] Gekkonen@sopuli.xyz 14 points 6 hours ago

To be fair, those things are really tiny!

 

This website made me reconsider if 99.9999% SLA and always online is really that important for lots of websites. I used to self-host my own server in my own apartment, but gave up on that after my internet provider had their first major outage that lasted almost a week. Also I didn't want to worry about the fire hazard, or the server going down when I was traveling etc.

But a solar powered server seems interesting, if the batteries could be made fire safe.

[–] Gekkonen@sopuli.xyz 1 points 6 hours ago

Interesting read. Even though you had only medium amount of trouble, it was enough to once again convince me my earlier decision to not do this is the right one. My Hetzner instance had an extended outage for the first time in its livetime this year, and after that I considered moving to CDN. However, due to the little things you list here and your bottom line of " For a blog my size it’s most likely overkill", I decided to just run a Hetzner instance without CDN.

Reading https://solar.lowtechmagazine.com/about/ made me reconsider if 24/7 uptime with 99.9999% SLA is really that important. It's a poster on the internet. What does it matter if the poster occasionally falls off?

 

The mouse did not survive interrogation.

Also mouse not pictured.

[–] Gekkonen@sopuli.xyz 3 points 3 days ago

Don't learn C++ before C. C++ is a massively more complex language whereas C, once you understand the fundamentals, is quite simple.

If you want to work with projects that use C++, then by all means.

[–] Gekkonen@sopuli.xyz 10 points 4 days ago (2 children)

First: Great that you're motivated to learn this stuff! When it comes to programmers I've worked with, usually the best ones are those who learned programming to do something for FOSS or wanted to create a thing themselves.

Second: If you're planning on university, an IT degree doesn't hurt. You'll learn a lot of stuff that -can- be useful. At the same time you don't need one.

Practically though, start learning a programming language that is relevant to one of the projects you care about. If you want to learn programming in general, start with Python for a very easy introduction to the basics. If you want to learn more about how computer work (you should), learn C. For learning programming, I recommend books instead of websites, especially if you learn a system level language like C.

Once you've learned a bit of programming - apply it! Go through the bugtracker of the software you use, and find a bug someone has already solved. Read what the bug was about, then read what changes were made and understand why that fixed the bug. The most important practical skills for a programmer are reading other people's code (especially for what you want to do) and debugging. Remember that the most common question a programmer asks is not "how do I do this" but "how does this work?" Another common one is: "WHY does this work?"

But you may also be able to contribute without programming. Many of the software you use requires people who understand how the operating system works to configure it, package the software, and help others like you to solve problems. All of this can be done without much understanding of programming if you spend some time to get familiar with the manual of your software and how the software interfaces with your operating system.

Good luck!