Skip to content

Instantly share code, notes, and snippets.

View MoisesValera's full-sized avatar
🏠
Working from home

Moises Valera MoisesValera

🏠
Working from home
View GitHub Profile

Flickr Search Example: Using Controller As syntax and ui-router resolve

Demo of loading images using the Flickr API with IonicFramework

showing ui-router functionality of controller as for cleaner looking code.

A Pen by aaron k saunders on CodePen.

License.

@MoisesValera
MoisesValera / SwipeEvents.java
Created September 24, 2015 21:19 — forked from bmutinda/SwipeEvents.java
Android swipe events detector
package bmutinda.com.androidutils.libs;
import android.view.MotionEvent;
import android.view.View;
/**
* Created by Mutinda Boniface on 7/5/2015.
*/
public class SwipeEvents implements View.OnTouchListener {
private SwipeCallback swipeCallback;
@MoisesValera
MoisesValera / SMSReceiver.java
Created September 24, 2015 21:19 — forked from bmutinda/SMSReceiver.java
SMS Receiver
/**
* Created by Mutinda Boniface on 7/12/2015.
*/
public class SMSReceiver extends BroadcastReceiver {
public static final String TAG = "SMSRelay";
public final String ACTION_SMS_RECEIVED = "android.provider.Telephony.SMS_RECEIVED";
public final String ACTION_PHONE_STATE_CHANGED = "android.intent.action.PHONE_STATE";
@Override