https://review.opendev.org/#/dashboard/
?foreach=(
project:openstack/barbican OR
project:openstack/python-barbicanclient OR
project:openstack/castellan OR
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### | |
# This is a first draft on a final goal to have warmahordes models described | |
# in YAML files. The plan is that we can start with just a couple of fields | |
# and be able, with time, to represent the entire model in a file. | |
--- | |
# name of the card at cards.privateerpress.com | |
name: Aurum Adeptus Syvestro |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import abc | |
class ConfigurableMixin(metaclass=abc.ABCMeta): | |
@classmethod | |
@abc.abstractmethod | |
def from_config(cls, conf): | |
pass | |
@classmethod |
I hereby claim:
- I am moisesguimaraes on github.
- I am moisesguimaraes (https://keybase.io/moisesguimaraes) on keybase.
- I have a public key ASDrSQeyLM6OiWBil1EFNmUR0AIbk1wnmCh5KGioYWYO8Qo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
class Elemento: | |
def __init__(self, dado, proximo=None): | |
self.dado = dado | |
self.proximo = proximo | |
def __iter__(self): | |
elemento = self |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import sys | |
import random | |
import string | |
chars = string.ascii_letters + string.digits + string.punctuation | |
def genpwd(length): |