Skip to content

Instantly share code, notes, and snippets.

View vitorpiovezam's full-sized avatar
🎯
Focusing

Vitor Goncalves Piovezam vitorpiovezam

🎯
Focusing
View GitHub Profile
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { ApolloModule } from 'apollo-angular';
import { ApolloConfigModule } from './apollo-config.module';
@NgModule({
declarations: [
AppComponent
import { Component } from '@angular/core';
import { Apollo } from 'apollo-angular'
import gql from 'graphql-tag'
/*
Apollo is needed to bring Apollo class to the constructor
gql is a lib to create larger strings - our queries - and permit
vscode syntax-highlight
*/
import { Component } from '@angular/core';
import { Apollo } from 'apollo-angular'
import gql from 'graphql-tag'
/*
Apollo is needed to bring Apollo class to the constructor
gql is a lib to create larger strings - our queries - and permit
vscode syntax-highlight
*/
import { NgModule } from '@angular/core';
import { ApolloModule, Apollo } from 'apollo-angular';
import { HttpClientModule } from '@angular/common/http';
import { HttpLinkModule, HttpLink } from 'apollo-angular-link-http';
import { InMemoryCache } from 'apollo-cache-inmemory';
@NgModule({
imports:[
HttpClientModule,
ApolloModule,
$("a").on("click", function(event) {
if (this.hash !== "") {
event.preventDefault();
var hash = this.hash;
$("html, body").animate(
{
scrollTop: $(hash).offset().top
},
this[temp + 'GridData'] = _.clone(this[temp + 'FilterArray']);
if (getTerm !== null && getTerm !== '') {
for (let i = 0; i < this[temp + 'GridData'].length; i++) {
if (this[temp + 'GridData'][i].Name.toLowerCase().indexOf(getTerm.toLowerCase()) !== -1) {
tempArray.push(this[temp + 'GridData'][i]);
}
if (this.isByChain && this[temp + 'GridData'][i]['PropertyName']) {
if (this[temp + 'GridData'][i]['PropertyName'].toLowerCase().indexOf(getTerm.toLowerCase()) !== -1) {
module.exports = {
username: "morcegos",
password: "morcegos123"
}
.container{
width: 100%;
}
.foo{
width: auto;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%) !important;
@vitorpiovezam
vitorpiovezam / .hyper.js
Created May 8, 2019 12:50
My hyper console settings
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: 'stable',
@vitorpiovezam
vitorpiovezam / sql.cs
Created April 16, 2019 01:09
Xamarin
using System;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using System.Windows.Input;
using Xamarin.Forms;
namespace FiapCoin.ViewModel
{
public class LoginViewModel : INotifyPropertyChanged
{