Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| package com.emil.android.util; | |
| import android.content.Context; | |
| import android.net.ConnectivityManager; | |
| import android.net.NetworkInfo; | |
| import android.telephony.TelephonyManager; | |
| /** | |
| * Check device's network connectivity and speed | |
| * @author emil http://stackoverflow.com/users/220710/emil |
| { | |
| "Products":[ | |
| { | |
| "name": "Grace Digital ECOXGEAR Eco Pod GDI-AQPOD91 Rugged and Waterproof Case", | |
| "price": "10", | |
| "reviews": "4", | |
| "merchant": "Karina Borland", | |
| "merchantThumb": "Karina Borland", | |
| "videoUrl": "http://d1wfs5jdtdt7am.cloudfront.net/buyit/merchant/nearbuy.png", | |
| "thumb": "http://d1wfs5jdtdt7am.cloudfront.net/buyit/merchant/nearbuy/40352404.jpg", |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| { | |
| "name": "Grace Digital", | |
| "price": "1000", | |
| "reviews": ["review1","review2","review3"], | |
| "score":"4", | |
| "merchant": "Karina Borland", | |
| "merchantThumb": "Karina Borland", | |
| "videoUrl": "iphone.mp4", | |
| "thumb": "iphone.jpg", | |
| "album": ["1.jpg","2.jpg","3.jpg"] |
| #import <AFNetworking.h> | |
| @interface UIImageView (AFNetworkingFadeInAdditions) | |
| - (void)setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholderImage fadeInWithDuration:(CGFloat)duration; | |
| @end |
(by @andrestaltz)
So you're curious in learning this new thing called (Functional) Reactive Programming (FRP).
Learning it is hard, even harder by the lack of good material. When I started, I tried looking for tutorials. I found only a handful of practical guides, but they just scratched the surface and never tackled the challenge of building the whole architecture around it. Library documentations often don't help when you're trying to understand some function. I mean, honestly, look at this:
Rx.Observable.prototype.flatMapLatest(selector, [thisArg])
Projects each element of an observable sequence into a new sequence of observable sequences by incorporating the element's index and then transforms an observable sequence of observable sequences into an observable sequence producing values only from the most recent observable sequence.
(by @andrestaltz)
So you're curious in learning this new thing called (Functional) Reactive Programming (FRP).
Learning it is hard, even harder by the lack of good material. When I started, I tried looking for tutorials. I found only a handful of practical guides, but they just scratched the surface and never tackled the challenge of building the whole architecture around it. Library documentations often don't help when you're trying to understand some function. I mean, honestly, look at this:
Rx.Observable.prototype.flatMapLatest(selector, [thisArg])
Projects each element of an observable sequence into a new sequence of observable sequences by incorporating the element's index and then transforms an observable sequence of observable sequences into an observable sequence producing values only from the most recent observable sequence.
| 0xf8ac1d69a70a0148605a697f63097006f41f79e6 |