Skip to content

Instantly share code, notes, and snippets.

View vitorpiovezam's full-sized avatar
🎯
Focusing

Vitor Goncalves Piovezam vitorpiovezam

🎯
Focusing
View GitHub Profile
@vitorpiovezam
vitorpiovezam / cli_outputs.txt
Created August 14, 2019 01:26
AULA 2 DE REDES
C2960 Boot Loader (C2960-HBOOT-M) Version 12.2(25r)FX, RELEASE SOFTWARE (fc4)
Cisco WS-C2960-24TT (RC32300) processor (revision C0) with 21039K bytes of memory.
2960-24TT starting...
Base ethernet MAC Address: 00E0.F75A.A5D6
Xmodem file system is available.
Initializing Flash...
flashfs[0]: 1 files, 0 directories
flashfs[0]: 0 orphaned files, 0 orphaned directories
flashfs[0]: Total bytes: 64016384
flashfs[0]: Bytes used: 4414921
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',