Dillinger is a cloud-enabled, mobile-ready, offline-storage compatible, AngularJS-powered HTML5 Markdown editor.
This file contains 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
/* eslint-env serviceworker */ | |
/* eslint-disable no-console */ | |
import localForage from 'localforage' | |
import { matchPrecache, precacheAndRoute } from 'workbox-precaching' | |
import { registerRoute, setCatchHandler } from 'workbox-routing' | |
import { CacheFirst, NetworkFirst } from 'workbox-strategies' | |
self.addEventListener('install', (event) => { | |
self.skipWaiting() |
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
This file contains 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
Best hotels in new york | |
Best hotels in tokyo | |
Bangkok attractions | |
Rolex | |
Gaming laptop | |
Best hiking trails | |
washing machine amazon | |
workout routines | |
Alibaba best product | |
Trending products in thailand |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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 'package:flutter/foundation.dart'; | |
import 'package:firebase_messaging/firebase_messaging.dart'; | |
import 'package:myapp/model/Message.dart'; | |
class CloudMessaging { | |
FirebaseMessaging firebaseMessaging; | |
ValueChanged<Message> onReceived; |
This file contains 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
<pre style="margin-left:30px; margin-bottom:30px;"> | |
_ _ ___ ___ ____ ___ ____ ___ ____ ____ ___ ____ ____ ____ | |
| | |__] | \ |__| | |___ | \ | | |__/ | \ |___ |__/ [__ | |
|__| | |__/ | | | |___ |__/ |__| | \ |__/ |___ | \ ___] | |
</pre> | |
<?php | |
require_once("../wp-load.php"); | |
$totalOrders = array(); | |
$affectedOrders = array(); |
This file contains 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 'package:flutter/material.dart'; | |
import 'package:deshario/components/ScannerOverlay.dart'; | |
import 'package:qr_code_scanner/qr_code_scanner.dart'; | |
class QrDialog extends StatefulWidget { | |
final String dialogTitle; | |
final ValueChanged<String> onGetResult; | |
QrDialog({ |
This file contains 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 'package:flutter/material.dart'; | |
import 'package:store/model/Entry.dart'; | |
class PListView extends StatelessWidget { | |
final List<Entry> dataEntry; | |
final ValueChanged<String> onSelect; | |
PListView({ | |
Key key, |