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
#!/bin/bash | |
if hash tput 2>/dev/null; then | |
red=$(tput setaf 1) | |
green=$(tput setaf 2) | |
reset=$(tput sgr0) | |
fi |
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
#!/bin/bash | |
if hash tput 2>/dev/null; then | |
red=$(tput setaf 1) | |
green=$(tput setaf 2) | |
reset=$(tput sgr0) | |
fi | |
TMPDIR=$(mktemp -d) | |
export PATH=${PATH}:${TMPDIR} | |
#UNAME=${uname-r} | |
function grecho() { |
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
/* | |
Utilities JS file | |
Source: https://gist.github.com/yurisouza/f49edb69ac7dd01d6a3b55956b5f0114#file-lifecycle_utilities-js | |
*/ | |
var isEqualArray = function(arrOne, arrTwo) { | |
return _.isEqual(JSON.stringify(arrOne), JSON.stringify(arrTwo)); | |
} | |
var uuidv4 = function() { |
We can't make this file beautiful and searchable because it's too large.
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
dt,AverageTemperature,AverageTemperatureUncertainty,City,Country,Latitude,Longitude | |
1849-01-01,26.704,1.435,Abidjan,Côte D'Ivoire,5.63N,3.23W | |
1849-02-01,27.434,1.362,Abidjan,Côte D'Ivoire,5.63N,3.23W | |
1849-03-01,28.101,1.612,Abidjan,Côte D'Ivoire,5.63N,3.23W | |
1849-04-01,26.14,1.3869999999999998,Abidjan,Côte D'Ivoire,5.63N,3.23W | |
1849-05-01,25.427,1.2,Abidjan,Côte D'Ivoire,5.63N,3.23W | |
1849-06-01,24.844,1.402,Abidjan,Côte D'Ivoire,5.63N,3.23W | |
1849-07-01,24.058000000000003,1.254,Abidjan,Côte D'Ivoire,5.63N,3.23W | |
1849-08-01,23.576,1.265,Abidjan,Côte D'Ivoire,5.63N,3.23W | |
1849-09-01,23.662,1.226,Abidjan,Côte D'Ivoire,5.63N,3.23W |
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
1569620336.830072 | 43.0 | 55.0 | |
---|---|---|---|
1569620703.651686 | 55.0 | 66.0 | |
1569620706.303265 | 33.0 | 43.0 | |
1569620709.360983 | 53.0 | 60.0 | |
1569620712.419519 | 12.0 | 66.0 | |
1569620715.476428 | 14.0 | 55.0 | |
1569620823.58411 | 22.0 | 16.0 | |
1569620826.182284 | 33.0 | 43.0 | |
1569620829.243385 | 25.0 | 32.0 | |
1569620832.301885 | 26.0 | 71.0 |
We can't make this file beautiful and searchable because it's too large.
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
dt,AverageTemperature,AverageTemperatureUncertainty,City,Country,Latitude,Longitude | |
1849-01-01,26.704,1.435,Abidjan,Côte D'Ivoire,5.63N,3.23W | |
1849-02-01,27.434,1.362,Abidjan,Côte D'Ivoire,5.63N,3.23W | |
1849-03-01,28.101,1.612,Abidjan,Côte D'Ivoire,5.63N,3.23W | |
1849-04-01,26.14,1.3869999999999998,Abidjan,Côte D'Ivoire,5.63N,3.23W | |
1849-05-01,25.427,1.2,Abidjan,Côte D'Ivoire,5.63N,3.23W | |
1849-06-01,24.844,1.402,Abidjan,Côte D'Ivoire,5.63N,3.23W | |
1849-07-01,24.058000000000003,1.254,Abidjan,Côte D'Ivoire,5.63N,3.23W | |
1849-08-01,23.576,1.265,Abidjan,Côte D'Ivoire,5.63N,3.23W | |
1849-09-01,23.662,1.226,Abidjan,Côte D'Ivoire,5.63N,3.23W |
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
version: '2' | |
services: | |
rabbitmq1: | |
image: rabbitmq:3-management | |
container_name: rabbitmq1 | |
hostname: rabbitmq1 | |
ports: | |
- "8080:15672" | |
network_mode: "bridge" | |
volumes: |
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 { Component, Input } from '@angular/core'; | |
import { FormGroup, FormBuilder, Validators } from '@angular/forms'; | |
import { ActivatedRoute, Router } from '@angular/router'; | |
import { EmprestimoService } from '../../services/emprestimo.service'; | |
import { ItemService } from '../../services/item.service'; | |
import { ItemComponent } from '../item/item.component'; | |
import { PessoaComponent } from '../pessoa/pessoa.component'; | |
import { PessoaService } from '../../services/pessoa.service'; | |
import { EmprestimoComponent } from '../emprestimo/emprestimo.component'; | |
import { IMyOptions, IMyDateModel, IMyInputFieldChanged, IMyCalendarViewChanged, IMyInputFocusBlur, IMyMarkedDate, IMyDate } from 'mydatepicker'; |
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 { NgModule } from '@angular/core'; | |
import { UniversalModule } from 'angular2-universal'; | |
import { ItemListagemModule } from './modules/item-listagem.module'; | |
import { FormsModule, ReactiveFormsModule } from '@angular/forms'; | |
import { AppComponent } from './components/app/app.component' | |
import { NavMenuComponent } from './components/navmenu/navmenu.component'; | |
import { HomeComponent } from './components/home/home.component'; | |
import { ItemFormularioComponent } from './components/item/item-formulario.component'; |
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 { NgModule } from '@angular/core'; | |
import { RouterModule } from '@angular/router'; | |
import { UniversalModule } from 'angular2-universal'; | |
import { AppComponent } from './components/app/app.component' | |
import { NavMenuComponent } from './components/navmenu/navmenu.component'; | |
import { HomeComponent } from './components/home/home.component'; | |
//import { ItemListagemComponent } from './components/item/item-listagem.component'; | |
import { ItemModule } from './modules/item.module'; | |
import { ItemListagemModule } from './modules/item-listagem.module'; | |
import { DataTableModule } from "angular2-datatable"; |