I hereby claim:
- I am masimplo on github.
- I am masimplo (https://keybase.io/masimplo) on keybase.
- I have a public key ASCwfUaTcuNwy8L0Ed6-ZHo55btmYtoQJW2dme2ooNfe9wo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| def getVersionName = { getVersionProps()['appVersionName'] } | |
| def getVersionProps() { | |
| def versionPropsFile = file('gradle.properties') | |
| if (!versionPropsFile.exists()) { | |
| versionPropsFile.createNewFile() | |
| } | |
| def versionProps = new Properties() | |
| versionProps.load(new FileInputStream(versionPropsFile)) | |
| return versionProps |
| <html> | |
| <head></head> | |
| <body> | |
| <a href="https://uat-link.covve.com/news">https://uat-link.covve.com/news</a> | |
| <a href="https://uat-link.covve.com/news?id=e4d5d7b2-bee5-4149-a11b-1c43708b2683">https://uat-link.covve.com/news?id=e4d5d7b2-bee5-4149-a11b-1c43708b2683</a> | |
| <a href="https://uat-link.covve.com/bizcard">https://uat-link.covve.com/bizcard</a> | |
| <a href="https://uat-link.covve.com/tutorialvideos">https://uat-link.covve.com/tutorialvideos</a> | |
| <a href="https://uat-link.covve.com/contacts">https://uat-link.covve.com/contacts</a> | |
| <a href="https://uat-link.covve.com/addcontact">https://uat-link.covve.com/addcontact</a> | |
| <a href="https://uat-link.covve.com/improvements">https://uat-link.covve.com/improvements</a> |
| import React from 'react'; | |
| import Helmet from 'react-helmet'; | |
| import PropTypes from 'prop-types'; | |
| import { useStaticQuery, graphql } from 'gatsby'; | |
| import Facebook from './Facebook'; | |
| import Twitter from './Twitter'; | |
| // Complete tutorial: https://www.gatsbyjs.org/docs/add-seo-component/ | |
| const SEO = ({ title, description, banner, pathname, article, lang, robots, node }) => { |
| import { Observable } from 'rxjs/Observable'; | |
| export function Destroyable() { | |
| return (target) => { | |
| const originalOnDestroy: Function = target.prototype.ngOnDestroy; | |
| // tslint:disable-next-line:only-arrow-functions | |
| target.prototype.ngOnDestroy = function() { | |
| if (!('_componentDestroyed$' in this || !(this._componentDestroyed$ instanceof Observable))) { | |
| throw new Error('Destroyable components must define _componentDestroyed$ property'); |
| { | |
| "created_at": "Mon Mar 05 19:27:40 +0000 2018", | |
| "id": 970742659059986432, | |
| "id_str": "970742659059986432", | |
| "text": "Last week, we saw a safe return for three crew from @Space_Station, a new weather satellite launched into orbit, a… https://t.co/m3XyUdAaJk", | |
| "truncated": true, | |
| "entities": { | |
| "hashtags": [], | |
| "symbols": [], | |
| "user_mentions": [ |
| import { EnvironmentsModule } from '../environment/environment.module'; | |
| @NgModule({ | |
| ... | |
| imports: [ | |
| ... | |
| EnvironmentsModule, | |
| ... | |
| ] | |
| ... |
| const modal = this._modal.create(CommunicationAddNoteModalComponent); | |
| modal.onDidDismiss((data: { note: string }) => { | |
| this.note = data.note; | |
| }); | |
| modal.present(); |