Please feel free to correct my English.
The Lemming formerly known as /u/SatyrSack@lemmy.one
Python is by far the fastest to write, cleanest, more maintainable programming language I know
Maintainable? I have not ever had to work with any large Python projects, but from what I have heard, maintenance is a large pain point.
It seems “vanilla” Python is slow, but a JIT implementation like PyPy can speed things up significantly. The major downside seems to be that PyPy does not support Python code that relies on some CPython libraries.
Imagine your toast not popping up because your toaster started updating itself randomly.
I think they mean that the sticker makes it stand out, putting the model/brand into your conscious mind. If a Macbook is displayed normally onscreen, it is just some prop that you might not pay any additional attention to at all. Sure, you unconsciously know that it is an Apple product, but that fact is not at the front of your mind at all. With the Apple logo covered, you still know that it is an Apple product all the same, but you are actually consciously thinking about fact.
Lol I know you meant that as Igor, but I totally ready that as Igor at first
The vultures at the zoo got to it first.
It is a play on this type of meme:
It usually depicts a horse starting out being drawn rather well, then drawn progressively worse. Each segment of the horse is associated with a segment of something like a TV show where the quality changed over time.
This Avatar version is implying that all three segments are actually consistently good.
I agree that using a code block is not the right way to handle quotes, but you can control the syntax highlighting in a markdown code block by adding a language identifier.
```
We never once asked for personal donations specifically in the hopes that if this moment ever came, our userbase would appreciate that we were able to make it this long on passion alone, and trust that your donation will make the best possible impact.
```
We never once asked for personal donations specifically in the hopes that if this moment ever came, our userbase would appreciate that we were able to make it this long on passion alone, and trust that your donation will make the best possible impact.
``` text
We never once asked for personal donations specifically in the hopes that if this moment ever came, our userbase would appreciate that we were able to make it this long on passion alone, and trust that your donation will make the best possible impact.
```
We never once asked for personal donations specifically in the hopes that if this moment ever came, our userbase would appreciate that we were able to make it this long on passion alone, and trust that your donation will make the best possible impact.
``` cpp
bool getBit(int num, int i) {
return ((num & (1<<i)) != 0);
}
```
bool getBit(int num, int i) {
return ((num & (1<<i)) != 0);
}
``` python
def add(a, b):
return a + b
```
def add(a, b):
return a + b
That is not showing correctly for me. You can try this instead:
![](https://static.wikia.nocookie.net/kingofthehill/images/8/83/Khan-souphanousinphone.jpg/revision/latest?cb=20090906184427)
Ghengis Khan, Julius Caesar, etc.
Off-brand “magic wand” sex toy
Lemmy itself allows you to block communities, instances, and users. But it does not support filtering by keyword, e.g. filtering out any post with the word “platypus” in the title regardless of where it was posted or by whom. With help from the comments below, here are some third party Lemmy clients that have their own implementation of keyword filtering:
- Connect
- Eternity
- Interstellar
- Raccoon
- Summit
- Sync
- Tesseract
- Thunder
- Voyager
Do NOT support keyword filtering:
- Alexandrite
- Jerboa
- Lemmy UI
- mlmym
- Next
- Photon
- Quiblr
Comment anything I have missed or mistakes I made
Wow, what kind of lame laundromats have you been visiting?
Literally all of those are still incredibly popular and one of the leaders in their respective space. Sure, they have been “enshittified”, but not killed off by it yet. .
That would probably get incredibly monotonous. Combat is one of Stardew Valley’s weak points, and the cave system is rather limited.
@ptz@dubvee.org Please see the top-level comment in this chain. Any insight? Just curious.
Do you have more info about Tesseract having once been discontinued? It has always seemed to be working for me, and as far as I could tell, been actively developed (there was even a major update just this week). I found this link (below) in your previous meta post on the subject, but other than the anchor link in the URL itself, I see nothing there about development having had ended.
https://github.com/asimons04/Tesseract#1212023-development-of-tesseract-for-lemmy-has-ended
Not sure if it counts (given this community), but the original PS4 immediately became my favorite console design. I am generally a fan of simple, elegant, soulless aesthetics.
On GrapheneOS, it is on by default and set to 18 hours. It makes sense to me to have the default be less than 24 hours.
I do not know Ruby, but Python has a lot of syntactic sugar that, if one becomes used to and proficient with it, makes writing much faster than other languages I know (including JavaScript).