HackerTrans
热门最新趋势评论往期问答秀出招聘

avip

no profile record

评论

avip
·10个月前·讨论
Pls fix title per hn guidelines - inflammatory enough sans your help
avip
·去年·讨论
100%. Thanks for mentioning that.
avip
·去年·讨论
Why would any Arab-speaking country accept 2M Palestinian refugees?
avip
·去年·讨论
Here's the coverage you've asked (opinions my own, I do not pretend to rep. anyone)

Israel stated goals of war:

1. Return the hostages

2. Remove Hamas regime from Gaza

3. (arguably done) bring north-Israel communities safely back home

Unstated goals:

1. Open Egypt-Gaza border. This had failed.

2. Create safe zone on the Gaza-Israeli border. This is mostly done in practice. This goal cannot be stated (though it'll save many lives)

Hamas goals:

Read Hamas chapter, or see interviews with captured Hamas militants post 7/10 attack (if you believe it's not scripted)

Gazan who are not part of Hamas regime goals: survive
avip
·去年·讨论
Wait are you calling me "European"? This is honestly insulting.

Would you please apologize on-record or edit that out? Thanks
avip
·去年·讨论
And assuming the answer to the questioning is that the war is currently required.

Let's say in order to return the hostages (considered popular amongst the Zionists).

Now what is the practical way to execute the war without the abovementioned consequences?
avip
·去年·讨论
Many states were "founded on ethnic cleansing". They are widely considered to posses a right of existence, and even expected to defend their citizens.

(excuse me for ignoring the history trolling)
avip
·去年·讨论
The Hebrew version had also distanced itself from what would be considered Journalism. But with no real field reporting from Gaza, that's the info you can get, and you have to guesstimate the reality from there.
avip
·去年·讨论
Is there a way for IDF to fight Hamas without "inflict war crimes, or terrorism on civilians" though? How would that work in practical terms?
avip
·去年·讨论
Are we talking about the expansion out of Lebanon in 2000 or the expansion out of Gaza in 2005?
avip
·去年·讨论
They are considerably better off than Gazans, though I'd agree "living in piece and prosperity" would not be the first adjective comes to mind.
avip
·去年·讨论
one (used to be two, but one ran away to US)
avip
·去年·讨论
[flagged]
avip
·去年·讨论
[flagged]
avip
·去年·讨论
But what is the opinion based on? Has OP read the filings or something?
avip
·去年·讨论
[flagged]
avip
·去年·讨论
[flagged]
avip
·3年前·讨论
(intersection)
avip
·4年前·讨论
True but the horrifying truth is 95% of our actual problems at work are also in the training set...
avip
·4年前·讨论
Here are the definitive commands that will install a good version of Python, create a virtual environment (venv), install the necessary packages and command line tools, set up the configuration correctly, and allow you to start coding:

Install a good version of Python:

  # Install the latest version of Python 3

  sudo apt update
  sudo apt install python3
Create a virtual environment (venv) for your project:

  # Create a virtual environment for your project
  python3 -m venv my_project

  # Activate the virtual environment
  source my_project/bin/activate
Install the necessary packages and command line tools:

  # Install the necessary packages and command line tools
  pip install --upgrade pip
  pip install setuptools wheel
  pip install flake8 black isort
Set up the configuration for your project:

  # Set up the configuration for your project
  flake8 --install-hook git
  black --install-hook git
  isort --multi-line=3 --trailing-comma --force-grid-wrap=0 --combine-as --line-width 88 --recursive --thirdparty my_project
Start coding:

  # Start coding in your project
  cd my_project
  nano my_project.py
This series of commands will install the latest version of Python 3, create a virtual environment for your project, install the necessary packages and command line tools, set up the configuration for your project, and allow you to start coding. I hope this helps. Let me know if you have any other questions.