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
| // Binding data | |
| import { bindable } from 'aurelia-framework'; | |
| import { moment } from 'moment'; | |
| export class OtherComponent{ | |
| //Binding data reference | |
| @bindable data; | |
| //Change handler (not required). | |
| dataChanged(data) { |
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
| <template> | |
| <div> | |
| <header-bar></header-bar> | |
| <main> | |
| <search-bar :submit="search" :term="searchTerm"></search-bar> | |
| <list-data v-for="item in list" :event="item"></list-item> | |
| </main> | |
| <footer-bar></footer-bar> | |
| </div> | |
| </template> |
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
| <template> | |
| <form novalidate @submit.stop.prevent="submit"> | |
| <label>Search term...</label> | |
| <input v-model="term.value"></input> | |
| </form> | |
| </template> | |
| <script> | |
| export default { | |
| name: 'Search', |
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
| db.getCollection('events').aggregate([ | |
| {$group:{"_id":"$name","name":{$first:"$name"},"count":{$sum:1}}}, | |
| {$match:{"count":{$gt:1}}}, | |
| {$project:{"name":1,"_id":0}}, | |
| {$group:{"_id":null,"duplicateNames":{$push:"$name"}}}, | |
| {$project:{"_id":0,"duplicateNames":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
| const SWPrecacheWebpackPlugin = require('sw-precache-webpack-plugin'); | |
| const WebpackPwaManifest = require('webpack-pwa-manifest'); | |
| const PUBLIC_PATH = 'https://www.remelehane.me/'; | |
| module: { | |
| // Snip | |
| plugins: [ | |
| // Snip | |
| new SWPrecacheWebpackPlugin( |
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
| {"lastUpload":"2020-12-15T03:11:23.399Z","extensionVersion":"v3.4.3"} |
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
| export const SEARCH_POST_START = 'SEARCH_POST_START'; | |
| export const searchPostNoResults = data => ({ | |
| type: SEARCH_POST_NO_RESULTS, data, | |
| }); |
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
| 0.0.0.0 mmofreegames.online |
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 'dart:io'; | |
| import 'dart:convert'; | |
| import 'package:cookie_jar/cookie_jar.dart'; | |
| var cj = new CookieJar(); | |
| class Session { | |
| static HttpClient client = new HttpClient() |
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
| pool: | |
| name: Azure Pipelines | |
| demands: xcode | |
| steps: | |
| - script: 'brew install fastlane' | |
| displayName: 'Install fastlane' | |
| - script: | | |
| gem install bundler | |