

Yeah there’s literally only a few other programs that might prevent users from moving over now. I can only think of two suites, Office 365 and any sort of photogrammetry software.


Yeah there’s literally only a few other programs that might prevent users from moving over now. I can only think of two suites, Office 365 and any sort of photogrammetry software.


Google maps does the same thing…


It’s not, but they get more business on the apps, even if the apps take a massive cut.


The tizen version is finally close to release. I don’t use a Samsung TV but in-laws do and I don’t like installing the dev version.


If you aren’t interested in more parts of Linux or computers then you are likely not going to be reading this community. For example you made the comment, but you also state you have a home lab. So you’re at least partially interested in more.


Then by definition you are not in that category. You’re interested in more. So you both are interested in more and are in this community.


If you’re in that category you’re probably not in this community.


He didn’t. He wanted to use x11. You are completely incapable of reading. My analogy makes more sense because it’s describing what he did.


Since copy on highlight is default you literally just have to accidentally drag your mouse cursor in a terminal window and boom, you’ve copied empty text. It’s incredibly annoying.


he got hardware that worked with the default setup for the majority of linux DEs at the time… he literally followed your suggestion and has been waiting for support for it in wayland for a decade.
this has to be the dumbest argument I’ve seen in a few months on here. you’re literally telling someone to sell their car because you want them to switch to a different kind of engine that currently isn’t compatible with their car, even though they haven’t wanted to switch to a new engine for a decade.


agreed. and middle click being paste has to be one of the stupidest defaults. I understand people use it, and whatever, everyone has their own workflow, but now middle click to drag doesn’t work and you’ve confused everyone since now it’s different everywhere.


it isn’t if you’ve copied from an empty field by accident, or if your clipboard is empty.
What’s the point then? Why bother with hooks at all?
husky has to be one of the most annoying and outright hostile libraries I’ve seen. Anytime I pull an open source project to get it working on my machine I have to go through and set up an entire development pipeline just to make a code change even if I never intend on upstreaming that change because husky forces formatting on commits. What an idiotic thing to do. The article covers this clearly. It’s just not something that should be done on commit.


I’m not saying I don’t understand them. I’m saying the syntax is terrible. Compare it to Ruby (or any other modern language) and it’s abundantly clear.
python (uses syntax not available in any other top 25 language)
print([j**2 for j in [2, 3, 4, 5]]) # => [4, 9, 16, 25]
ruby (normal chain syntax with map)
puts [2, 3, 4, 5].map{|j| j**2}
even kotlin is more readable, even though you have to convert to a double and back kotlin
val list = listOf(1,2,3,4)
println(list.map{it.toDouble().pow(2.0).toInt()})
For nested cases it’s even more apparent:
python
digits = [1, 2, 3]
chars = ['a', 'b', 'c']
print([str(d)+ch for d in digits for ch in chars if d >= 2 if ch == 'a'])
# => ['2a', '3a']
ruby
digits = [1, 2, 3]
chars = ['a', 'b', 'c']
digits.product(chars).select{ |d, ch| d >= 2 && ch == 'a' }.map(&:join)
kotlin
val digits = listOf(1, 2, 3)
val chars = listOf('a', 'b', 'c')
println(digits.flatMap { d ->
chars.filter { ch -> d >= 2 && ch == 'a' }.map { ch -> "${d}${ch}" }})
just from a base level, you have to read the middle of the comprehension first, then the end, then the beginning. It’s a completely backwards way to write and read code. unlike other languages that use a ‘functional’ approach, where it’s chained methods or pipes, etc. Even Elixir, which does have list comprehensions, reads and writes in the proper order:
elixir
for x <- 0..100, x * x > 3, do: x * 2


It’s not. It’s literally code in an unsafe block. The OP is either trolling or actually ignorant.


List comprehensions are much stranger than tabs vs spaces. There are very very very few languages that use them, and python’s is by far the worst out of the popular ones.
Probably depends on the restaurant if the menu is up to date, but this was the first one I clicked on and it has the menu listed multiple times in multiple places.
The delivery filter is in the scrollbar below the map