[-] Ephera@lemmy.ml 2 points 1 hour ago

In regards to there being an abundance of songs, I've also found that this kills off my motivation to make music.

For one, because well, obviously there's musicians out there that produce music at a much higher skill level and production value, so it's easy to just never even try 'competing' with them, even though with a bit of effort, I definitely can create something that a certain niche will enjoy.

But similarly, it also feels like every niche is covered. Any song I'd want to make, I would just need to search long enough and I'd find something similar on the internet.

I myself don't have a real demand for the songs I create. I don't expect to create something that I would find so much better than what everyone else does.
I do get the bonus of writing exactly the songs that ding the neurons in my brain, but those other musicians get the bonus of having more skill and production value and being the proverbial infinite monkeys with typewriters.

At this point, I tend to go back and forth between listening to all the excellent music out there, to try to keep my own creativity up to speed, and then for a few weeks, I'll only listen to relatively mellow songs, so that the songs I'm writing actually sound decent in comparison and I get the motivation to continue working on them.

[-] Ephera@lemmy.ml 23 points 2 hours ago

They really make it too easy to draw the parallels:
Photograph of school kids in 1941 performing what looks like a Hitler salute, except towards a US flag.
https://en.wikipedia.org/wiki/Bellamy_salute

[-] Ephera@lemmy.ml 99 points 3 hours ago

I'm German and learned about this via a friend from the US. When they mentioned it, I thought their teacher was a lunatic. Then they told me that this is normal course of action. Just what in the absolute fuck.

[-] Ephera@lemmy.ml 1 points 3 hours ago

I mean, I really didn't intend to comment on the quality of these razors. For all I know, they could be the best razors in the world. It mainly just didn't instill much confidence in me, when they need to market it so aggressively with this pseudo-manliness horseshit rather than the actual effectiveness when shaving.

And this is also specifically about these traditional razor blades, whereas what you posted seems to be about safety razors...

[-] Ephera@lemmy.ml 2 points 4 hours ago* (last edited 4 hours ago)

I actually didn't do much walking in them. It was a lazy Sunday afternoon/evening, with me mostly seated in an armchair and my legs put up, so the wet shoes didn't soak my furniture.

Personally, I even thought a bit of pressure might have stopped my skin from bloating quite as much.

[-] Ephera@lemmy.ml 2 points 5 hours ago

This is why, in retrospective, I've really fallen out of love with Pokémon. I could have spent that time learning about real-world animals and plants, since it's so arguable, whether Pokémon are even cooler to begin with.

[-] Ephera@lemmy.ml 2 points 6 hours ago

In my opinion, it strongly depends on what you're coding.

Low-level code where you need to initialize array indices to represent certain flags? Absolutely comment the living shit out of that.
High-level code where you're just plumbing different libraries? Hell no, the code is just as easily readable as a comment.

I do also think that, no matter where you lie in this spectrum, there is always merit to improving code to reduce the need for documentation:

  • Rather than typing out the specification, write a unit/integration test.
  • Rather than describing that a function should only be called in a certain way, make it impossible to do it wrongly by modelling this in your type system.
  • Rather than adding a comment to describe what a block of code does, pull it out into a separate function.
  • Rather than explaining how a snippet of code works, try to simplify it, so this becomes obvious.

The thing with documentation is that it merely makes it easier to learn about complexity, whereas a code improvement may eliminate this complexity or the need to know about it, because the compiler/test will remember.

This does not mean you should avoid comments like they're actively bad. As many others said, particularly the "why" is not expressable in code. Sometimes, it is also genuinely not possible to clean up a snippet of code enough that it becomes digestable.
But it is still a good idea, when you feel the need to leave a comment that explains something else than the "why", to consider for a moment, if there's not some code improvement you should be doing instead.

[-] Ephera@lemmy.ml 11 points 8 hours ago

A few months ago, I bought some fake/vegan leather shoes and they didn't quite fit. So, I figured, I'd try the old leather shoe trick, where you fill them with water, put them on and let them dry+shrink to fit your feet.

And it actually kind of worked. But I had decided to just leave them on for basically the rest of the day. And that wasn't a great idea.

My foot soles had soaked with water and gotten wrinkles that carved about a centimeter deep. Even after taking the shoes off, I was in pain for a few hours. It felt like the soaked skin was constantly pulling on my flesh, because their shapes didn't fit together anymore.

So, yeah, I imagine, the same would happen, if you bathed for 8 hours. You could somewhat mitigate it, by covering your whole body in vaseline or some other form of fat.
I guess, you could also try bathing in rapeseed oil or such directly...? I'm not actually recommending this, though. 🫠

[-] Ephera@lemmy.ml 12 points 15 hours ago

For a moment, I thought, this was a misprint and they had to officially get out a spray can to complete the word...

[-] Ephera@lemmy.ml 13 points 18 hours ago

Welp, I searched for ant parade GIFs and found the most relevant GIF:

[-] Ephera@lemmy.ml 10 points 18 hours ago

I've often seen NSFW used as basically just "contains nudity". You could have a woman in skimpy clothing shaking her everything in a manner clearly trying to evoke sexual thoughts, but because her nipples and genitalia are technically covered, it would get posted as "SFW".

[-] Ephera@lemmy.ml 21 points 20 hours ago

I've considered buying one of these, and holy fuck, everything is branded so ridiculously manly.

And when I say manly, I mean the opposite of manly, of course. The no self-esteem version. Where a minimum of three animals need to have died for a product. And where you're never quite sure, if you're actually buying a shaving razor, because all the models look like they would never shave their magnificent beard.

Made me bounce off of that pretty damn quickly...

43
submitted 3 weeks ago by Ephera@lemmy.ml to c/askscience@lemmy.world

We often talk about the climate impact based on greenhouse gases, but extracting fuel from the ground and using it in exothermal processes of course also releases energy as heat.

This is mostly¹ in contrast with renewables, which make use of energy that's not long-term contained to begin with, so would end up as heat in our atmosphere anyways.

So, my question is: Does the amount of energy released by non-renewables have any notable impact on our global temperature? Or would it easily radiate into space, if we solved the greenhouse gas problem?


¹) In the case of solar, putting up black surfaces does mean that less sunlight gets reflected, so more heat ultimately gets trapped in our atmosphere. There's probably other such cases, too.

326
submitted 2 months ago by Ephera@lemmy.ml to c/programmerhumor@lemmy.ml
28
submitted 2 months ago by Ephera@lemmy.ml to c/webdev@programming.dev
10
submitted 3 months ago by Ephera@lemmy.ml to c/linux4noobs@lemmy.world

Hi, I just read online that you can apparently run apt --fix-broken install.

I wanted to know, what that really does, but both apt --help and man apt only show a high-level summary of the subcommands and flags. The --fix-broken flag is never mentioned, and presumably many others neither.

Is there some way to access documentation for all subcommands and flags?

137
submitted 3 months ago by Ephera@lemmy.ml to c/programmerhumor@lemmy.ml

Real screenshot from (crappy) personal project...

1
July (reddthat.com)
submitted 4 months ago by Ephera@lemmy.ml to c/youdontsurf@lemmy.world
365
submitted 4 months ago by Ephera@lemmy.ml to c/programmerhumor@lemmy.ml
165
submitted 4 months ago by Ephera@lemmy.ml to c/programmerhumor@lemmy.ml
488
submitted 5 months ago by Ephera@lemmy.ml to c/programmerhumor@lemmy.ml
219
submitted 6 months ago by Ephera@lemmy.ml to c/memes@lemmy.ml
24
submitted 6 months ago by Ephera@lemmy.ml to c/android@lemmy.world

Hi, the default Roboto font is boring me out of my mind and I'd like to change it.

In the past, I've done so by just replacing the font file in the OS, which worked well, but meant that it would reset after every OS update.
I'm considering scripting that with ADB to make it less of a pain, but figured I should ask, if there's a better way.

I'm on LineageOS which has a font styling system, but it only applies to the OS, not the user-installed apps...

198
submitted 6 months ago by Ephera@lemmy.ml to c/programmerhumor@lemmy.ml
view more: next ›

Ephera

joined 4 years ago