- с утра посвизлил - весь день свободен
- украл, посвиззлил - в тюрьму
- волков бояться - в лесу не свиззлить
- не все золото что свиззлит
- свиззлинг - всему голова
- и рыбку съесть, и посвиззлить
- в большой семье свиззлом не щелкают
github "FutureKit/FutureKit" "v3" | |
github "ReSwift/ReSwift" == 3.0.0 | |
github "ReSwift/ReSwiftRouter" == 0.5.1 |
FriendsProvider.shared.getFriendList(){ success in | |
print("users Fetched \(success)") | |
dispatch_async(dispatch_get_main_queue(), { | |
self.delegate?.hideProgressHUD() | |
}) | |
} |
custom control for AR https://developer.xamarin.com/guides/xamarin-forms/custom-renderer/view/ http://www.goxuni.com/whitepapers/how-to-build-a-custom-control-in-xamarin-forms/
hourly calendar widget example https://components.xamarin.com/view/MindFusionScheduling
keychain wrapper plug-in
@interface HPLabRepositoryRealm : NSObject <HPLabModelRepository> | |
- (instancetype)init NS_UNAVAILABLE; | |
+ (instancetype) new NS_UNAVAILABLE; | |
- (instancetype)initWithRealm:(RLMRealmBuilderBlock)realmBuilder | |
operationQueue:(dispatch_queue_t)queue | |
NS_REQUIRES_SUPER | |
NS_DESIGNATED_INITIALIZER | |
__attribute__((nonnull)); |
#!/usr/bin/python | |
lineIndex = 0 | |
result = [] | |
with open ("contributors-raw.txt") as f: | |
for line in f.readlines(): |
https://codemilltech.com/stranger-in-a-strange-land-binding-objective-c-libraries-to-xamarin/ https://codemilltech.com/climbing-gumdrop-mountain-or-how-to-create-xamarin-android-bindings/
https://staging.chipsncookies.com/2016/creating-a-xamarin.ios-binding-project-for-dummies/ http://blog.samikuhmonen.fi/post/2016/08/02/adding-a-framework-to-xamarin-ios-project
1. Картинки drag&drop-ом не кидать - можно только ссылками на облако | |
2. код - pastebin/gist/etc. (разве что очень короткий кусок можно inline) | |
3. не “хантить” (limit в 1 сообщение в день) | |
4. название и иконку чата не менять |
$ fastlane run_unit_tests | |
[13:19:04]: ------------------------------------------------- | |
[13:19:04]: --- Step: Verifying required fastlane version --- | |
[13:19:04]: ------------------------------------------------- | |
[13:19:04]: Your fastlane version 2.19.1 matches the minimum requirement of 2.19.1 ✅ | |
[13:19:04]: ------------------------------ | |
[13:19:04]: --- Step: default_platform --- | |
[13:19:04]: ------------------------------ | |
[13:19:04]: Driving the lane 'ios run_unit_tests' 🚀 | |
[13:19:04]: ------------------ |
import Foundation | |
infix operator +=! { associativity right precedence 90 } // Int32 or Int64 | |
infix operator -=! { associativity right precedence 90 } // Int32 or Int64 | |
postfix operator ++! {} // Int32 or Int64 | |
postfix operator --! {} // Int32 or Int64 | |
infix operator |=! { associativity right precedence 90 } // UInt32 | |
infix operator &=! { associativity right precedence 90 } // UInt32 |