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
@media only screen and (max-width: 640px) { | |
.ksu-widget--inner-box {display: none;} | |
} | |
/*KSU Widget fixes.*/ | |
table.ksu-widget th { | |
background-color: inherit; | |
} | |
table.ksu-widget td { |
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
Vagrant.configure("2") do |config| | |
## Choose your base box | |
config.vm.box = "precise64" | |
config.vm.box_url = "http://files.vagrantup.com/precise64.box" | |
# Modify the line below to map to the root of your project folder. | |
config.vm.synced_folder β../projectsβ, β/home/webteam-vm/webdevβ | |
config.vm.network "forwarded_port", guest: 8000, host: 8000 | |
config.vm.network "forwarded_port", guest: 9200, host: 9200 |
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
// | |
// ChatViewController.m | |
// sample-chat | |
// | |
// Created by Andrey Moskvin on 6/9/15. | |
// Copyright (c) 2015 Igor Khomenko. All rights reserved. | |
// | |
#import "ChatViewController.h" | |
#import "DialogInfoTableViewController.h" |
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
- (void) loginForMessaging:(NSString *)username andPassword:(NSString *)password withCompletion:(void (^)(BOOL finished))completion { | |
__weak __typeof(self)weakSelf = self; | |
[QBRequest logInWithUserLogin:username password:password successBlock:^(QBResponse *response, QBUUser *user) { | |
if (user) { | |
__typeof(self) strongSelf = weakSelf; | |
[[QBChat instance] connectWithUser:user completion:^(NSError * _Nullable error) { | |
if (!error) { | |
[strongSelf registerForRemoteNotifications]; | |
completion(true); | |
} else { |
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
2016-05-01 12:24:44.982 Vice Versa[85973:19778253] [ChatService] Doing Chat disconnect... | |
2016-05-01 12:24:44.986 Vice Versa[85973:19778253] [ChatService] Presence SNT: <presence type="unavailable"/> | |
2016-05-01 12:24:44.987 Vice Versa[85973:19778253] [ChatService] Did disconnect | |
2016-05-01 12:24:45.035 Vice Versa[85973:19776719] Snapshotting a view that has not been rendered results in an empty snapshot. Ensure your view has been rendered at least once before snapshotting or snapshot after screen updates. | |
2016-05-01 12:24:54.807 Vice Versa[85973:19778252] [ChatService] Connecting to Chat, host: chat.quickblox.com, user JID: [email protected]/71B85435-7F47-47CB-8356-64F7BB80F533 | |
2016-05-01 12:24:55.204 Vice Versa[85973:19778253] [ChatService] Stream did connect, supportsStartTLS: 1 | |
2016-05-01 12:24:55.205 Vice Versa[85973:19778253] [ChatService] Trying TLS... | |
2016-05-01 12:24:55.440 Vice Versa[85973:19777860] [ChatService] Stream isSecure: YES | |
2016-05-01 12:24:55.493 Vice Versa[85973:19777860] [ |
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
Update all pods | |
Re-creating CocoaPods due to major version update. | |
Updating local specs repositories | |
Performing a deep fetch of the `master` specs repo to improve future performance | |
Analyzing dependencies | |
βββ MARKDOWN TEMPLATE βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
### Command |
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
### Error | |
``` | |
ArgumentError - Malformed version number string >= 1.2.2 | |
/Library/Ruby/Gems/2.0.0/gems/cocoapods-core-0.39.0/lib/cocoapods-core/version.rb:61:in `initialize' | |
/Library/Ruby/Gems/2.0.0/gems/cocoapods-core-0.39.0/lib/cocoapods-core/vendor/version.rb:198:in `new' | |
/Library/Ruby/Gems/2.0.0/gems/cocoapods-core-0.39.0/lib/cocoapods-core/vendor/version.rb:198:in `new' | |
/Library/Ruby/Gems/2.0.0/gems/cocoapods-core-0.39.0/lib/cocoapods-core/specification.rb:133:in `name_and_version_from_string' | |
/Library/Ruby/Gems/2.0.0/gems/cocoapods-core-0.39.0/lib/cocoapods-core/lockfile.rb:191:in `block in generate_pod_names_and_versions' | |
/Library/Ruby/Gems/2.0.0/gems/cocoapods-core-0.39.0/lib/cocoapods-core/lockfile.rb:189:in `each' |
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
PODS: | |
- Bolts (1.6.0): | |
- Bolts/AppLinks (= 1.6.0) | |
- Bolts/Tasks (= 1.6.0) | |
- Bolts/AppLinks (1.6.0): | |
- Bolts/Tasks | |
- Bolts/Tasks (1.6.0) | |
- FBSDKCoreKit (4.10.0): | |
- Bolts (~> 1.5) | |
- FBSDKLoginKit (4.10.0): |
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
2016-05-02 12:36:21.044 Vice Versa[880:290006] Init - QMAuthService service... | |
2016-05-02 12:36:21.045 Vice Versa[880:290006] Init - QMChatService service... | |
2016-05-02 12:36:21.054 Vice Versa[880:290006] Init - QMUsersService service... | |
2016-05-02 12:36:21.067 Vice Versa[880:290060] [QBCore] Request URL:https://api.quickblox.com/login.json | |
2016-05-02 12:36:21.068 Vice Versa[880:290060] [QBCore] Request method: POST | |
2016-05-02 12:36:21.068 Vice Versa[880:290060] [QBCore] Request parameters:{ | |
email = "[email protected]"; | |
password = 12345678; | |
} | |
2016-05-02 12:36:21.068 Vice Versa[880:290060] [QBCore] Request headers: { |
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
name: default | |
version: 1.15.3 | |
providers: | |
appengine: | |
enabled: false | |
accounts: [] | |
aws: | |
enabled: false | |
accounts: [] | |
bakeryDefaults: |
OlderNewer