I hereby claim:
- I am hallysonh on github.
- I am hallysonh (https://keybase.io/hallysonh) on keybase.
- I have a public key ASA7uvu8xOBsPURO0NLDwCLI5HQ2KcxbrHN1FhbxzKO2sgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| import asyncio | |
| import logging | |
| import redis | |
| return_dict = [] | |
| async def test(): | |
| r = redis.Redis(host='localhost', port=6379, db=0) | |
| p = r.pubsub(ignore_subscribe_messages=True) |
| class $NAME$ extends ImplicitlyAnimatedWidget { | |
| $NAME$() : super(duration: const Duration(milliseconds: 250)); | |
| @override | |
| _$NAME$State createState() => _$NAME$State(); | |
| } | |
| class _$NAME$State extends AnimatedWidgetBaseState<$NAME$> { | |
| Tween<double> _transitionX; |
| <html> | |
| <head> | |
| <title>hello component</title> | |
| <script type="module"> | |
| import {Element as PolymerElement} from "https://polygit.org/polymer+:3.0-preview/components/polymer/polymer-element.js" | |
| const html = String.raw; | |
| const DEFAULT_NAME = 'World'; |
| <html> | |
| <head> | |
| <title>hello component</title> | |
| <script> | |
| const html = String.raw; | |
| const DEFAULT_NAME = 'World'; | |
| const DEFAULT_COLOR = 'blue'; | |
| class Hello extends HTMLElement { | |
| constructor() { |
| // Mock data to generate MOCK array | |
| code = [1, 2, 3] | |
| nomes = ['MARIA', 'CLARA', 'ANTONIA'] | |
| idades = [25, 30, 27] | |
| // Person class properties | |
| class_properties = ['id', 'name', 'age'] | |
| // Match arrays | |
| personArr = _.zip(code, nomes, idades) |
| import { FirebaseService } from './services'; | |
| import { fbStorage } from './components'; | |
| angular.module('myapplication') | |
| .service('myFirebase', FirebaseService) | |
| .directive('fbStorage', fbStorage) |
| import { PhoneFilter, CepFilter, CpfCnpjFilter, DateNumberFilter } from './filters'; | |
| angular.module('myproject') | |
| .filter('phone', PhoneFilter.Factory) | |
| .filter('cep', CepFilter.Factory) | |
| .filter('cpfCnpj', CpfCnpjFilter.Factory) | |
| .filter('dateNumber', DateNumberFilter.Factory); |