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 FirebaseRemoteConfig mRemoteConfig = FirebaseRemoteConfig.getInstance(); | |
| // cache expiration in seconds | |
| long cacheExpiration = 3600; //1 hour | |
| //Settings | |
| FirebaseRemoteConfigSettings remoteConfigSettings = new FirebaseRemoteConfigSettings.Builder() | |
| .setDeveloperModeEnabled(true) | |
| .build(); | |
| mRemoteConfig.setConfigSettings(remoteConfigSettings); |
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 UIKit | |
| import AVFoundation | |
| class ViewController: UIViewController { | |
| @IBOutlet weak var txtFieldText: UITextField! | |
| @IBOutlet weak var labelMessage: UILabel! | |
| let synth = AVSpeechSynthesizer() | |
| var myUtterance = AVSpeechUtterance(string: "") | |
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 concat = require('gulp-concat'); | |
| var uglify = require('gulp-uglify'); | |
| var sass = require('gulp-sass'); | |
| var cssminify = require('gulp-clean-css'); | |
| var imagemin = require('gulp-imagemin'); | |
| var connect = require('gulp-connect'); | |
| var livereload = require('gulp-livereload'); |
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
| Set WshShell = CreateObject("WScript.Shell") | |
| MsgBox ConvertToKey(WshShell.RegRead("HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DigitalProductId")) | |
| Function ConvertToKey(Key) | |
| Const KeyOffset = 52 | |
| i = 28 | |
| Chars = "BCDFGHJKMPQRTVWXY2346789" | |
| Do | |
| Cur = 0 |
OlderNewer