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
| .DS_Store | |
| /local.properties | |
| # IDEA/Android Studio project files, because | |
| # the project can be imported from settings.gradle | |
| .idea | |
| *.iml | |
| # Old-style IDEA project files | |
| *.ipr |
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
| [user] | |
| name = Alex Korovyansky | |
| email = alexkorovyansky@gmail.com | |
| [core] | |
| excludesfile = /Users/akorovyansky/.gitignore_global | |
| editor = mcedit | |
| autocrlf = input | |
| [push] |
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
| if [ -f `brew --prefix`/etc/bash_completion ]; then | |
| . `brew --prefix`/etc/bash_completion | |
| fi | |
| export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home | |
| export ANDROID_HOME="$HOME/Library/Android/sdk" | |
| export ANDROID_HOME_PLATFORM_TOOLS="$ANDROID_HOME/platform-tools" | |
| export FASTLANE_HOME="$HOME/.fastlane/bin" |
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
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
| <gpx> | |
| <!--Created from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/CoreLocation.framework/Support/SimulationScenarios/City Run.plist--> | |
| <trk> | |
| <trkseg> | |
| <trkpt lat="37.33182081" lon="-122.03038642"></trkpt> | |
| <trkpt lat="37.33181965" lon="-122.03043332"></trkpt> | |
| <trkpt lat="37.33181512" lon="-122.03048154"></trkpt> | |
| <trkpt lat="37.33180957" lon="-122.03053391"></trkpt> | |
| <trkpt lat="37.33180031" lon="-122.03058102"></trkpt> |
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:cloud_firestore/cloud_firestore.dart'; | |
| import 'package:flutter/foundation.dart'; | |
| import 'package:flutter/material.dart'; | |
| import 'package:firebase_database/firebase_database.dart'; | |
| import 'package:flutter/rendering.dart'; | |
| import 'package:rxdart/rxdart.dart'; | |
| import 'dart:async'; | |
| void main() { |
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
| final _credentials = new ServiceAccountCredentials.fromJson(r''' | |
| { | |
| "private_key_id": "***", | |
| "private_key": "***", | |
| "client_email": "***", | |
| "client_id": "***", | |
| "type": "***" | |
| } | |
| '''); |
OlderNewer