- Prerequisites
- ubuntu
- java 1.7
- likely want openjdk-7-jre-headless openjdk-7-jre-lib openjdk-7-jdk
Question,Answer | |
How does Covid-19 spread?,"The virus is thought to spread mainly from person-to-person. Between people who are in close contact with one another (within about 6 feet). Through respiratory droplets produced when an infected person coughs or sneezes. These droplets can land in the mouths or noses of people who are nearby or possibly be inhaled into the lungs." | |
What is Covid-19?,"It's a pandemic and disease" | |
"How does COVID19, Coronavirus spread from person to person?","The virus is thought to spread mainly from person-to-person. Between people who are in close contact with one another (within about 6 feet). Through respiratory droplets produced when an infected person coughs or sneezes. These droplets can land in the mouths or noses of people who are nearby or possibly be inhaled into the lungs." | |
Can someone spread the virus without being sick?,"People are thought to be most contagious when they are most symptomatic (the sickest).Some spread might be possible before people show symptoms; there h |
"Question" "Answer" "What is Covid-19?" "Disease mofo" |
import time | |
from threading import Thread | |
try: | |
import socketserver as SocketServer | |
import http.server as SimpleHTTPServer | |
except ImportError: | |
import SocketServer | |
import SimpleHTTPServer | |
#!/bin/bash | |
# ------------------------------------- | |
# Quick and dirty to set up cassandra | |
# CCM with alias'ed ethernet addresses | |
# ------------------------------------- | |
# | |
# ===== # | |
# ARGS # |
description "Kafka Broker" | |
start on runlevel [2345] | |
stop on starting rc RUNLEVEL=[016] | |
respawn | |
respawn limit 2 5 | |
env CONFIG_HOME="/etc/kafka" | |
env KAFKA_HOME="/usr/lib/kafka" |
<?php | |
$server = "localhost"; | |
$port = 11211; | |
/** | |
* Taken directly from memcache PECL source | |
* | |
* http://pecl.php.net/package/memcache | |
* | |
*/ |
<?php | |
/** | |
* This script gets EC2 metadata and saves it to an ini file. It should be run | |
* on boot before starting application stuff, such as php-fpm or video | |
* processing. | |
*/ | |
// path to put file | |
$path = '/usr/local/viafoura'; |
mysql -e "show processlist" | grep -v Rows | grep -v Sleep | grep -oP -A1 "(SELECT|UPDATE|INSERT).*FROM \w+" | sort -h | uniq -c | sort -n |
#!/bin/bash | |
### | |
# | |
# Find out which ami to use on http://www.alestic.com | |
# | |
# at the time of this writing, Ubuntu 12.04 (Precise) was ami-23d9a94a | |
# with EBS boot | |
# | |
# In order for this to work, tuned your firewall for the following: |