#Minecraft Server Service
Minecraft service and helper scripts for running a vanilla Minecraft server. Greatly inspired/copied by: http://wellsie.net/p/349/
Create a minecraft service user
sudo adduser --system --group --shell /bin/bash minecraft
#Minecraft Server Service
Minecraft service and helper scripts for running a vanilla Minecraft server. Greatly inspired/copied by: http://wellsie.net/p/349/
Create a minecraft service user
sudo adduser --system --group --shell /bin/bash minecraft
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
min=10; #num minutes to split by | |
VERBOSE=false | |
QUIET=false | |
TEST=false | |
while getopts ':vqt:nh' opt; do | |
case $opt in |
""" | |
This is a WSGI script that will take responses from Amazon's Echo/Alexa and hit iCloud's FindMyIPhone. | |
Basically, using the power of pyicloud, you can ask Alexa to find your iPhone. | |
Example of what to say to Alexa: | |
Alexa, tell find my iphone dennis | |
or |
hs.urlevent.bind('reload', function(eventName, params) | |
hs.reload() | |
end) | |
hs.urlevent.bind('currentScreenTag', function(eventName, params) | |
alert(getScreenTag()) | |
end) | |
hs.urlevent.bind("printLayout", function(eventName, params) | |
config = {} |
This document describes how I set up my development environment with a fresh install of Xubuntu 16.04 (Xubuntu is Ubuntu with xfce).
Currently this document describes how to set up:
{ | |
"bip": "192.168.128.5/24", | |
"default-address-pools": [{"base": "192.168.0.0/17", "size": 24}] | |
} |
""" | |
This is an example of how to create a static property using a | |
non-data descriptor. | |
https://docs.python.org/2/howto/descriptor.html | |
This works in python >= 2.3 including 3.x. | |
In this example the __get_default() method is called the first time | |
we need to access Widget.default. The __get_default method clobbers |