I hereby claim:
- I am sirgalleto on github.
- I am sirgalleto (https://keybase.io/sirgalleto) on keybase.
- I have a public key whose fingerprint is 4B78 4602 3D15 BE95 AAEC 06AF 6255 1ACF D6E1 8B27
To claim this, I am signing this object:
| let dictionary = { | |
| es: { | |
| welcome: 'Bienvenido!' | |
| }, | |
| en: { | |
| welcome: 'Welcome!' | |
| } | |
| }; | |
| function localize(){ |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Cat clicker</title> | |
| </head> | |
| <body id="body"> | |
| <script src="index.js"></script> | |
| </body> |
I hereby claim:
To claim this, I am signing this object:
| /* tslint:disable */ | |
| export interface EmailInterface { | |
| to: string; | |
| from: string; | |
| subject: string; | |
| text?: string; | |
| html?: string; | |
| id?: number; | |
| } |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title> | |
| Hello | |
| </title> | |
| <style media="screen"> | |
| body { | |
| background-color: #ffb949; |
| # /etc/hosts | |
| 192.30.253.112 http://github.com | |
| 192.30.253.119 http://gist.github.com | |
| 151.101.44.133 http://assets-cdn.github.com |
| import { Dimensions } from 'react-native'; | |
| export const { height, width } = Dimensions.get('window'); | |
| const ratioX = width <= 375 ? (width <= 320 ? 0.75 : 0.875) : 1 ; | |
| const ratioY = height <= 568 ? (height <= 480 ? 0.75 : 0.875) : 1 ; | |
| const base_unit = 16; | |
| const unit = base_unit * ratioX; |
| // Write a function that receives an integer and returns its string representation | |
| // 1 -> Uno | |
| // 12 -> Doce | |
| // 17 -> Diecisiete // Diez y siete | |
| // 23 -> Veintitres | |
| // 57 -> Cincuenta y siete | |
| // 158 -> Ciento cincuenta y ocho | |
| // 2347 -> Dos mil trescientos cuarenta y siete | |
| // 0 < n < 10,000 (1-9999) |
| _uid() { | |
| return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) { | |
| var r = Math.random()*16|0, v = c === 'x' ? r : (r&0x3|0x8); | |
| return v.toString(16); | |
| }); | |
| } |
| import { AsyncStorage } from 'react-native'; | |
| import EventEmmiter from 'EventEmitter'; | |
| import { apiRouter } from './services'; | |
| import { headers, access } from '../constants'; | |
| export class Auth extends EventEmmiter{ | |
| key = '@gos3s1on'; | |
| constructor() { |