0t79JeIfK01RHyzo

joined 1 year ago
[–] 0t79JeIfK01RHyzo@lemmy.ml 7 points 1 month ago (4 children)
[–] 0t79JeIfK01RHyzo@lemmy.ml 2 points 2 months ago (1 children)

I really like the MacBook Air, but I was dissuaded from it because the M4 isn't supported by AsahiLinux yet.

[–] 0t79JeIfK01RHyzo@lemmy.ml 2 points 2 months ago

You can get ten x130e's for $250 too. Why buy 1 when you can get 10?

[–] 0t79JeIfK01RHyzo@lemmy.ml 4 points 2 months ago

There's also multiple T14's with the 8 core AMD variant at the moment on ebay. I recently purchased a similar version myself.

I have both a 2014 MacBook Pro and the listed device. The T14 has a trash tier trackpad and display when compared to a MacBook, but if I was buying it to do any type of programming, I'd choose the T14 everytime if I'm comparing it to a MacBook with 8 GB of ram and a dual core processor. (when compared to a T14 that has the 8 core AMD 4750U)

[–] 0t79JeIfK01RHyzo@lemmy.ml 2 points 3 months ago (1 children)

It arrived earlier today.

I placed it next to an old 2014 13" MacBook Pro for scale.

I think it's in very good condition, I would say lightly used. The smudges from the ebay pictures are only noticeable if it's under certain lighting. It seems to perform really well. I think the value to dollar on it seems really good, and I'm very happy with it. It seems like one of the best purchases I have made for it's price.

[–] 0t79JeIfK01RHyzo@lemmy.ml 7 points 3 months ago (4 children)

It was on ebay. I was actually watching Intel versions sell then noticed the AMD version had 8 cores and was selling for around the same price, so I purchased one.

[–] 0t79JeIfK01RHyzo@lemmy.ml 8 points 3 months ago (1 children)

This was the listing. It seems like the pricing is around $150-$250. There's a 16 GB version with the same processor, but in worse physical condition for $222 right now. Maybe just slightly lucky?

 
[–] 0t79JeIfK01RHyzo@lemmy.ml 4 points 3 months ago* (last edited 3 months ago) (2 children)

I know it’s not KDE Plasma, but Gnome on Ubuntu has Tiling Shell. It also lets you span multiple tiles too.

[–] 0t79JeIfK01RHyzo@lemmy.ml 3 points 10 months ago* (last edited 10 months ago)

~~It does work~~ I know it at least partially works

class add:
     count = 0

     def __init__(self):
             add.count += 1
             self.value = add.count
     def __str__(self):
             if self.value == 1:
                     return "3"
             elif self.value == 2:
                     return "7"
             else:
                     return "32"

result = add()  # 1 2
print(result)
result = add()  # 3 4
print(result)
result = add()  # 3 4 5 20
print(result)

view more: next ›