WzRESTLobby API V1 Documentation
This document describes the V1 API of WzRESTLobby
/api/v1/login
POST
Login to lobby with the given username and password.
<?php | |
$test_domains = array( | |
"a.webmeisterei.com", | |
"b.webmeisterei.com", | |
"webmeisterei.com", | |
"google.at", | |
"webmeisterei.com1", | |
"twebmeisterei.com", | |
"z.webmeisterei.com", |
import QtQuick 2.9 | |
import QtQuick.Controls 2.2 | |
Column { | |
width: parent.width | |
height: parent.height | |
property alias model: columnRepeater.model | |
ListView { |
This document describes the V1 API of WzRESTLobby
Login to lobby with the given username and password.
# -*- coding: utf-8 -*- | |
''' | |
LXD Cloud Module | |
================ | |
.. versionadded:: unknown | |
`LXD(1)`__ is a container "hypervisor". This execution module provides | |
several functions to help manage it and its containers. |
{ | |
"Lymhurst": { | |
"price_min": "800", | |
"price_max": "1200" | |
}, | |
"Caerleon": { | |
"city": "Caerleon", | |
"price_min": "900", | |
"price_max": "1300" | |
} |
# -*- coding: utf-8 -*- | |
import random | |
def compare(all_read_pks, all_write_pks): | |
"""This function emulates a mathematical problem i try to solve. | |
I have primary keys from a SQL Table A and primary_keys in SQL Table B. | |
This function should compare B with A and sync all primary_keys changes to B. |
package main | |
import ( | |
"github.com/codegangsta/cli" | |
"os" | |
"strings" | |
"github.com/lxc/lxd/shared/i18n" | |
) |
sudo add-apt-repository -y ppa:webupd8team/atom
sudo apt-get update
sudo apt-get -y install atom
One click install/remove/activate and deactivate of the most packages below.
#!/bin/bash | |
# -*- coding: utf-8 -*- | |
# Restarts aiccu if the given $IF is in $AICCU_RESTART_INTERFACES. | |
# The init/upstart/systemd script should check the rest. | |
# | |
# Copyright (c) 2014 by pcdummy <aiccuscript@pc-dummy.net> | |
# | |
# You need an array "AICCU_RESTART_INTERFACES" in /etc/default/aiccu, | |
# with the interfaces you want to restart on. | |
# |