import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:path_provider/path_provider.dart';
import 'package:firebase_crashlytics/firebase_crashlytics.dart';
import 'minlandsby.dart';
import 'package:hive/hive.dart';
void main() async {
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
declare module 'geofire' { | |
type EventType = 'ready' | 'key_entered' | 'key_exited' | 'key_moved'; | |
interface GeoQueryCriteria { | |
center: number[]; | |
radius: number; | |
} | |
interface GeoQueryUpdateCriteria { |
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
var express = require('express'); | |
var fs = require('fs'); | |
var request = require('request'); | |
var cheerio = require('cheerio'); | |
var app = express(); | |
//Home page | |
app.get('/', function(req, res) { | |
res.sendFile(__dirname + "/index.html"); | |
}) |
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
https://stackoverflow.com/questions/36795819/when-should-i-use-curly-braces-for-es6-import/36796281#36796281 |
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
{"timestamp":1545218989930,"data":{"ace":[{"timestamp":1545218989930,"stars":36,"forks":6,"issues":0}],"acrylamid":[{"timestamp":1545218989930,"stars":291,"forks":41,"issues":44}],"adm-dev-kit":[{"timestamp":1545218989930,"stars":29,"forks":4,"issues":11}],"amsf":[{"timestamp":1545218989930,"stars":177,"forks":91,"issues":3}],"anodize":[{"timestamp":1545218989930,"stars":3,"forks":0,"issues":0}],"antwar":[{"timestamp":1545218989930,"stars":431,"forks":32,"issues":8}],"asimov-static":[{"timestamp":1545218989930,"stars":4,"forks":4,"issues":0}],"assemble":[{"timestamp":1545218989930,"stars":3620,"forks":250,"issues":28}],"awestruct":[{"timestamp":1545218989930,"stars":260,"forks":75,"issues":56}],"bake":[{"timestamp":1545218989930,"stars":22,"forks":3,"issues":0}],"bakeit":[{"timestamp":1545218989930,"stars":1,"forks":0,"issues":0}],"baker":[{"timestamp":1545218989930,"stars":40,"forks":7,"issues":1}],"bang":[{"timestamp":1545218989930,"stars":8,"forks":1,"issues":0}],"bashblog":[{"timestamp":1545218989930,"sta |
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
https://stackblitz.com/edit/angular-rgsa51 |
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
class NewsListFollowing extends StatefulWidget { | |
static final PageStorageKey<String> pageKey = | |
PageStorageKey<String>('newsListFollowing'); | |
final scrollcontroller; | |
NewsListFollowing({this.scrollcontroller, Key key}) : super(key: key); | |
@override | |
_NewsListFollowingState createState() => _NewsListFollowingState(); | |
} |
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
firebase functions:config:set env="$(cat env.json)" | |
firebase functions:config:unset env && firebase functions:config:set env="$(cat env.json)" | |
example env.json | |
{ | |
"web": { | |
"id": "value", |
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
#include QMK_KEYBOARD_H | |
#define _BASE 0 | |
#define _RAISE 1 | |
#define _LOWER 2 | |
#define _SHORTC 3 | |
// Fillers to make layering more clear |
OlderNewer