helmet91

joined 1 year ago
[–] [email protected] 2 points 6 days ago (1 children)

They say, nowadays nearly any laptop you could get is garbage due to insufficient cooling. Maybe they look promising at first, but you cannot use them for longer than 2-3 years, because the components simply get cooked inside. The only ones worthy of spending money on are the business-grade laptops, but they're crazy expensive (for a good reason). Therefore you should probably look for a used one, maybe from a company dealing with refurbished devices. Sometimes it's possible to get one that had been used for like 6 months, and you still have a number of years of warranty on it.

My personal favorite is the ThinkPad T, P or X series. Those are quality products, and there are official video guides, spare parts for self repair. I've also read about bad experiences about a T580 (I think) here, on lemmy, but the circumstances were unclear to me. They wrote about a bending motherboard issue, when you pick up the laptop holding only at the corner.

Framework laptops are also recommended a lot, but I've never gotten my hands on one, I don't know their build quality.

[–] [email protected] 3 points 3 weeks ago

Do you remember 9gag? Some of you certainly do. Anyway, during those times they created another app called 9chat, later renamed it to Cookie, and later renamed it back to 9chat again.

Well, we met there, on 9chat/Cookie.

There weren't an insanely huge amount of people there, and there was a section for newcomers to upload their selfie and/or introduce themselves. And I found this gorgeous girl there, started to text her, and to my surprise, she actually replied and didn't even ghost me.

We had a nice conversation there, and we continued on WhatsApp, and three months later we met in real life too. This was 7 years ago, and sadly we're still in LDR, but the most important thing is, we have each other.

[–] [email protected] 18 points 3 weeks ago (1 children)

What could be the best possible way for Malaysia to commemorate the tragic event of MH17 on its 10th anniversary? Joining the terrorists who shot it down, right?

[–] [email protected] 4 points 1 month ago

Everyone should invest that time.

[–] [email protected] 7 points 1 month ago (1 children)

You can do just that. Before you begin the quiz, there's a link to skip the quiz and directly enter your preferences.

[–] [email protected] 21 points 1 month ago (11 children)

I'm not from the US, so I don't know how accurate this is, and I also don't know if this thing has ever been updated (I found it a long time ago), but there's this tool that might help with deciding: https://www.whereshouldilive.co/

[–] [email protected] 7 points 2 months ago

I mean, if the words "Israel" and "interrogation" are in it, it pretty clearly conveys what you just described.

[–] [email protected] 7 points 2 months ago (1 children)

I'm using Qwant. Works better for me than DuckDuckGo.

[–] [email protected] 9 points 3 months ago

The amount of people not knowing what a "web app" is, is seriously concerning.

Anyway, I tried "old" and Alexandrite, but I just ended up sticking with the default. I find "old" ugly, and on Alexandrite, I couldn't find my saved posts. Maybe it has been fixed since, but the default one works for me best.

[–] [email protected] 4 points 3 months ago (1 children)

I've switched to Gboard on Android back in the days, when it was the only one with proper multilingual features, and been using it ever since.

I've experienced the opposite: I actually found it rather more helpful than not, despite the occasional errors like you mentioned. But nowadays it's quite rare that it "mispredicts" a word. And what I've found extremely helpful is, that nowadays it doesn't only correct individual words, but it picks up other grammatical errors as well in the sentence. So it's working for me.

[–] [email protected] 22 points 4 months ago (8 children)

Oh there's a lot.

  • When I was a kid, parents and teachers used to teach, if you have sore muscles a day after an extensive workout, you need to work out even more in order to reduce the soreness. In fact, however, you need to rest those muscles.
  • I thought, pepperoni was pepper. (Like bell pepper, just smaller; similar to chilli). Then my girlfriend enlightened me after a confusing conversation, that pepperoni was a kind of salami. And then recently, at a company event before ordering pizza and after a very confusing discussion of what toppings we order, it turned out pepperoni was actually a kind of a salami, but not everyone agreed. So by now I've learned that pepperoni is neither of them. It doesn't exist. It's listed on pizza menus, and when you order it, you'll get something for sure, but you won't know in advance what it would be.
  • This isn't new, the realization was several years ago, but fits this list nicely: I thought, perfume was something for women. It turned out, there was perfume for men too.
  • Parents used to teach, if you read in the dark (on paper, not on a screen, I must add), you're ruining your eyes. But if you think about it: wtf does low light do to your eyes? By that logic, you're constantly ruining your eyes while sleeping.
  • For some reason I used to think, you could simply delete related entities bound by foreign key constraints in postgres, if you ran the query in a transaction. Once when I finally needed to do this, I learned the hard way I was wrong.

There's a lot more than this, probably I'll update this comment in the future. Or not.

[–] [email protected] 2 points 4 months ago

I find it weird to look at my thumbnail video, so I almost never do that.

  1. If I have the chance, I don't even enable my webcam. It depends on the workplace...
  2. Generally, I always look at my notes, because I'm unable to keep all the necessary things in my mind while talking.
  3. If no notes are needed for whatever reason, I just look at others in the meeting.

If I look at myself, that happens maybe at the very beginning to check what's in the picture, but I always hate looking at myself.

 

Scrum is an agile framework that, if applied properly, can boost the efficiency of teamwork. It is known to be versatile enough, so it could be applied in basically any sort of productive teamwork, even beyond IT (e.g. bakeries, government organizations, etc.)

However, I've never ever seen it being used anywhere else other than in software development, therefore I've always been curious if Scrum is actually being used outside of IT somewhere.

 

Hi everyone,

As I've been developing my Android app, I've quickly found myself in a situation, where all my @Composable functions are quite hectic, not really maintainable.

I am wondering, is there any guide for best practices regarding @Composable functions?

Thinking in Compose is a straightforward article, and it all makes sense - until I want to build something other than Hello World. Something more complex, I mean.

What I understand from the article is, that I should keep the logic out of these functions as much as possible, and pass only primitive types as parameters. Behavior should be kept in callback functions. This is very nice and clean, I like it, but then what should I do, when I have quite a lot of functions nested?

For example, on MainActivity I have a Scaffold, within that a NavHost with four different tabs, each with completely different content, some of them with a BottomSheet, which are also completely different for each tab (that has one), and some of the BottomSheets can call a Dialog, which again, has a form in it, and so on. So the hierarchy has quite a level of nesting. And if I understand the recommendation correctly from the article mentioned above, then I am supposed to keep the states and callback function definitions somewhere in MainActivity (or ViewModel), and pass everything through the entire hierarchy. Everything. The value of every single Text (those that cannot be hardcoded), all the list items to DropdownMenus, all the list items for Lists, literally everything. And then, according to the article, the renderer is smart enough to only recompose those elements that really changed.

To me this sounds tedious. I've also seen recommendations to just pass the ViewModel itself in order to reduce the number of parameters. But if I do that, then how would I make a @Preview out of it? Probably it's possible, but it wouldn't be convenient at all.

So what's a clean approach for designing a good @Composable function hierarchy?

view more: next ›