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
package main | |
import ( | |
"fmt" | |
"sort" | |
) | |
type Meeting struct { | |
StartTime int | |
EndTime int |
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 users = [ | |
{ id: 1, name: 'luke', age: 67, bestFriend: 'R2', pay: '', isOldest: undefined}, | |
{ id: 2, name: 'han', age: 76, bestFriend: 'Chewie', pay: '', isOldest: undefined}, | |
{ id: 3, name: 'chewie', age: 74, bestFriend: 'Han', pay: '', isOldest: undefined}, | |
{ id: 4, name: 'rey', age: 26, bestFriend: 'Finn', pay: '', isOldest: undefined}, | |
{ id: 5, name: 'kylo', age: 35, bestFriend: 'Kylo', pay: '', isOldest: undefined}, | |
] | |
// ====================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
import 'package:flutter/material.dart'; | |
import 'package:flutter_bloc/flutter_bloc.dart'; | |
import 'package:stackoverflow/home/index.dart'; | |
import 'package:pk_skeleton/pk_skeleton.dart'; | |
class HomeScreen extends StatefulWidget { | |
const HomeScreen({ | |
Key key, | |
@required HomeBloc homeBloc, | |
}) : _homeBloc = homeBloc, |
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 * as firebase from 'firebase/app'; | |
import 'firebase/firestore'; | |
var firebaseConfig = { | |
// your firebase credentials | |
}; | |
// Initialize Firebase | |
firebase.initializeApp(firebaseConfig); |
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
package main | |
import ( | |
"log" | |
"os" | |
"fmt" | |
"bufio" | |
"strings" | |
) |