See also:
Service | Type | Storage | Limitations |
---|---|---|---|
Amazon DynamoDB | 25 GB | ||
Amazon RDS | |||
Azure SQL Database | MS SQL Server | ||
👉 Clever Cloud | PostgreSQL, MySQL, MongoDB, Redis | 256 MB (PostgreSQL) | Max 5 connections (PostgreSQL) |
#Content is from a csv file which is in the format ID,buy-price,sell-price for items and just the name for a category | |
import csv | |
counter = 0 | |
completed = "" | |
categories = 0 | |
items = 0 | |
filename = input("Enter .csv filename: ") + ".csv" | |
with open(filename) as csvfile: | |
creader = csv.reader(csvfile) |
See also:
Service | Type | Storage | Limitations |
---|---|---|---|
Amazon DynamoDB | 25 GB | ||
Amazon RDS | |||
Azure SQL Database | MS SQL Server | ||
👉 Clever Cloud | PostgreSQL, MySQL, MongoDB, Redis | 256 MB (PostgreSQL) | Max 5 connections (PostgreSQL) |
Download and install a custom version of libvirt/virsh
CUSTOM_ROOT=/home/ajaisingh/n4/nested-vm/
mkdir -p $CUSTOM_ROOT/src
wget https://libvirt.org/sources/libvirt-4.0.0.tar.xz
# Compiling a new version of libvirt (v4.0.0), requires libnl-devel, libnl-route, libyajl-devel, libdevmapper-devel
sudo apt-get install libnl-route-3-dev
#!/bin/bash | |
# | |
# update-submodules | |
# | |
# Updates all submodules of a git project. | |
# by Greg Krsak <[email protected]>, Feb. 4, 2014 | |
# | |
read -r -d '' USAGE << EOF | |
Usage: update-submodules [<options>] |
package com.comphenix.example; | |
import static com.comphenix.protocol.PacketType.Play.Server.*; | |
import java.lang.reflect.InvocationTargetException; | |
import java.util.Arrays; | |
import java.util.Map; | |
import org.bukkit.entity.Entity; | |
import org.bukkit.entity.Player; |