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
| https://coinpot.co/mine/dogecoin/?ref=536AA517A49B |
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
| 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 |
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 { 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 |
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 } 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 | |
| */ |
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 } 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 | |
| */ |
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 { 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, |
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
| $("a").on("click", function(event) { | |
| if (this.hash !== "") { | |
| event.preventDefault(); | |
| var hash = this.hash; | |
| $("html, body").animate( | |
| { | |
| scrollTop: $(hash).offset().top | |
| }, |
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
| 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) { |
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
| module.exports = { | |
| username: "morcegos", | |
| password: "morcegos123" | |
| } |
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
| .container{ | |
| width: 100%; | |
| } | |
| .foo{ | |
| width: auto; | |
| position: absolute; | |
| left: 50%; | |
| top: 50%; | |
| transform: translate(-50%,-50%) !important; |