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.
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.
Factorio is like scrapbooking
On your first day, find the biggest, scariest looking Klingon and beat them up.
I increase the exposure on just about every post I create. TV is just so dark.
The vultures at the zoo got to it first.
You’re prostituting yourself out for cheeseburgers again, aren’t you?
What is happening in panels five/six?
Ice Nine Kills?
Is this what the kids refer to as a soy jack?
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
On Wendysdays, we wear pink!
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.
The classic cocktail: piña anana colada
Yeah, also seeing that other post using the same “animated” Lwaxana really made me think I was missing a layer/reference because I did not know what that came from. So the joke in these posts would have still been exactly the same if you had been able to find a full-length Lwaxana from literally anywhere else. Thanks.
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).