does among us exist for linux
sudo apt install steam
Here is what the above code is Doing:
1. Update the package list
2. Install the Steam package
sudo apt install steam
Here is what the above code is Doing:
1. Update the package list
2. Install the Steam package
//run this Command bin/solr -e cloud Here is what the above code is Doing: 1. It’s creating a collection called “gettingstarted” with a replication factor of 2 and a shard count of 2. 2. It’s adding the “techproducts” example documents to the collection. 3. It’s running the SolrCloud example.
$ wget https://services.gradle.org/distributions/gradle-${VERSION}-bin.zip -P /tmp Here is what the above code is Doing: 1. We’re using the wget command to download the Gradle zip file from the Gradle website. 2. We’re using the -P option to specify the directory where we want to save the file. 3. We’re using the ${VERSION} variable to specify the…
//To find the process id (PID) associated with the port ⇒ lsof -i tcp:3000 COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME node 44475 chen5 31u IPv4 0x8b1721168764e4bf 0t0 TCP *:strexec-s (LISTEN) //Then to kill the process (Use -9 option to make sure the process dies immediately) kill -9 44475 Here is what the…
$ sudo snap install –edge viber-mtd Here is what the above code is Doing: 1. We’re using the snap command to install the Viber snap. 2. We’re using the –edge flag to install the latest version of the snap. 3. We’re using the viber-mtd flag to install the Viber snap. Once the installation is complete,…
# call csvkit (which is a Python tool) to convert json to csv: # https://csvkit.readthedocs.io/en/latest/ in2csv data.json > data.csv Here is what the above code is Doing: 1. We’re using the requests library to make a GET request to the API endpoint. 2. We’re using the json library to parse the JSON response. 3. We’re…
#set retention time to forever with -1 value ./bin/kafka-topics –zookeeper zookeeper:2181 –alter –topic my-topic –config retention.ms=-1 Here is what the above code is Doing: 1. Create a topic called my-topic with a single partition and only one replica: 2. Send some messages 3. Have a consumer consume those messages and print them out 4. Asynchronously…