Ullallulloo

joined 1 year ago
[–] [email protected] 2 points 2 weeks ago

Really, really pessimistic hope though lol

[–] [email protected] 0 points 2 weeks ago

So he's just completely delusional?

[–] [email protected] 3 points 2 weeks ago (6 children)

Their last attack killed a single Palestinian and Israel just destroyed their air defense with planes in response. There is no scenario where Iran comes out ahead in this. Does the Supreme Leader think he has a chance, does he think he has to do this to save face to retain power, or is it just suicidal hatred of Jews and the West?

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

The 25th is a Wednesday, not a Tuesday like he was wanting. Tuesday is nice because you get a four-day weekend without using any days off. (Though, usually you'd get the next off if it was a Monday or Sunday or whatever.) I think the best is Friday or Monday because then New Year's gives you a three-day weekend too.

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

It will copy to the clipboard if possible. You can probably get it working with a bit of tinkering: https://github.com/zyedidia/micro/blob/master/runtime/help/copypaste.md

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

people don't read books any more only text messages and social media and sometimes subtitles so this is a more natural way of speaking that saves you from having to go to the other page of keys thats way to much work anyway ykwim

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

Israel definitely did its part, but I'm just saying Gaza was way better off even just on October 6th before Hamas started the war.

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

Mass murderers objectively have a pretty low value of human life. But there's also the fact that he started an organization to send people to their deaths, brought unprecedented war to Gaza, stole humanitarian aid, stole millions of dollars, and has adamantly rejected any peace talks.

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

Here's a pretty in-depth article on him.

He was literally convicted in 1989 of murdering 12 Palestinians. He only got out of prison because Israel cured his cancer and traded him for some hostages. He also killed 15 fellow Palestinians while in prison. Not to mention the whole founding Hamas thing which has done nothing but made the tragedy in Gaza ten times worse. He tanked any effort towards a two-state solution and insisted that an Arab-only ethnostate was the only acceptable solution, and he was willing to kill as many young men as required to try to make that happen.

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

The Butcher of Khan Younis? He's arguably the one person on earth who cared the least for his people. Throughout his life, he killed and tortured Palestinians as pawns to inflame as much hatred as possible. He was a martyr for pure evil and is undeniably in hell. His people and Israelis alike are better for his death.

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

Killing terrorists isn't genocide. Plenty of violent groups have been stopped by arresting or killing their members. That doesn't mean their race, culture, or nation was destroyed though. The only "culture" that distinguishes them from those around them is a philosophy predicated on killing as many civilians as possible. Often people within their own culture stop them with violence since they often target their own.

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

They're delaying AC: Shadows.

 
 
 

Possibly a stupid question, but how do I add functionality to the back button in Android without reimplementing the back button entirely nowadays?

Prior to last year, I would just call onBackPressed() and then simply override it:

override fun onBackPressed() {
	super.onBackPressed()

	doMyStuff()
}

It looks like this is now deprecated, and it's recommended to use OnBackPressedCallback objects. It's simple enough to replace onBackPressed() with onBackPressedDispatcher.onBackPressed(), but I can't figure out how to recreate the override.

I can replace the functionality easy enough:

override fun onCreate(savedInstanceState: Bundle?) {
	super.onCreate(savedInstanceState)
	…
	onBackPressedDispatcher.addCallback(this, object : OnBackPressedCallback(true) {
		doMyStuff()
	})
}

However, this replaces all back button behavior. It doesn't just add to it, despite the function name. I still want the back button to go back, but don't want to have to try to reinvent the wheel. Is there some equivalent to super.onBackPressed() with this new API or another way to achieve this?

 
view more: next ›