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 type Document = z.infer<typeof Document> | |
| export const Document = z.object({ | |
| id: z.string(), | |
| }) | |
| export type User = z.infer<typeof User> | |
| export const User = Document.extend({ | |
| name: z.string(), | |
| email: z.email(), | |
| }) |
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 Foundation | |
| import CoreBluetooth | |
| class BluetoothScanner: NSObject, CBCentralManagerDelegate { | |
| private var centralManager: CBCentralManager! | |
| override init() { | |
| super.init() | |
| centralManager = CBCentralManager(delegate: self, queue: nil) |
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
| class MainActivity : AppCompatActivity() { | |
| override fun onResume() { | |
| super.onResume() | |
| if (checkGooglePlayServices()) { | |
| startActivity(Intent(this, HomeActivity::class.java)) | |
| } | |
| } | |
| private fun checkGooglePlayServices(): Boolean { |
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
| target 'Equilab' do | |
| platform :ios, '10.0' | |
| use_frameworks! | |
| inhibit_all_warnings! | |
| pod 'Charts' | |
| pod 'FBSDKCoreKit' | |
| pod 'FBSDKLoginKit' | |
| pod 'FBSDKShareKit' | |
| pod 'Realm' |
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
| sdfsdfsdf |
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
| 'use strict'; | |
| var gulp = require('gulp'); | |
| var PUBLIC_PATH = "../parse/public"; | |
| gulp.task('default', ['develop']); | |
| gulp.task('develop', ['testing']); | |
| gulp.task('build', ['testing']); |