Displaying 2 results from an estimated 2 matches for "smallstep".
2011 Apr 07
0
python for game menus needing mouse but with mwo=force
..."typeof mouse x " , type(mouse['x'])
print "typeof mouse y " , type(mouse['y'])
# custom keys to control mouse
key_up = 80
key_down = 88
key_left = 83
key_right = 85
key_click = 84
key_exit = 104
keys = [key_up,key_down,key_left,key_right,key_click,key_exit]
smallstep = 5
def pointerLeft():
mouse['x'] = mouse['x'] - smallstep
def pointerRight():
mouse['x'] = mouse['x'] + smallstep
def pointerUp():
mouse['y'] = mouse['y'] - smallstep
def pointerDown():
mouse['y'] = mouse['y'] + sm...
2023 Dec 17
3
AD-level Certificate Authorities with samba?
Hi!
What's the way to have a domain-based certificate authority so that
various TLS services can be enabled within a domain, including
LDAPS and other similar services?
The whole CA thing is already complex enough, microsoft has tools to
do all this on their domain management collection (Active Directory
Certificate Services). What's the way to do all this in/with samba-
based AD?