I hereby claim:
- I am kinghat on github.
- I am k1nghat (https://keybase.io/k1nghat) on keybase.
- I have a public key ASAyEwOJcNK6nUf2gyNSXrFs2aJ-2Arm2h_UyKtuE5mzjQo
To claim this, I am signing this object:
| import { LitElement, html } from "lit"; | |
| import { customElement, state, property, query } from "lit/decorators.js"; | |
| import { HomeAssistant, fireEvent, LovelaceConfig } from "custom-card-helpers"; | |
| import { BoilerplateCardConfig } from "./types"; | |
| @customElement("tabbed-card-editor") | |
| export class TabbedCardEditor extends LitElement { | |
| @property() public hass!: HomeAssistant; | |
| @property() public lovelace!: LovelaceConfig; |
I hereby claim:
To claim this, I am signing this object:
| import sopel.module | |
| import time | |
| nicklist = {} | |
| paylist = {} | |
| @sopel.module.event('JOIN') | |
| @sopel.module.rule('.*') | |
| def greeting(bot, trigger): | |
| if trigger.sender == '#monero-pools' and trigger.nick != bot.nick: |
| new_list = [do_something_with(x) for x in old_list] | |
| # is basically short for | |
| new_list = [] | |
| for x in old_list: | |
| new_list.append(do_something_with(x)) |