Skip to content

Instantly share code, notes, and snippets.

View ndurell's full-sized avatar
🐢

Noah Durell ndurell

🐢
View GitHub Profile

Keybase proof

I hereby claim:

  • I am ndurell on github.
  • I am ndurell (https://keybase.io/ndurell) on keybase.
  • I have a public key ASD0kOZ-goL-15d8OGtpW-7l2DFasfT6Zbm_yIgd9T4NrQo

To claim this, I am signing this object:

@ndurell
ndurell / github.swift
Created November 27, 2018 03:44
point free caching github api example
let cachingGitHub = CachingGitHub()
struct GitHub {
var latestRepos: () -> [Repo] = { return cachingGitHub.latestRepos }
var fetchRepos: (@escaping (Result<[Repo], APIError>) -> Void) -> Void = cachingGitHub.fetchRepos
}
class CachingGitHub {
var latestRepos = [Repo]()
func fetchRepos(completion: @escaping (Result<[Repo], APIError>) -> Void) {
@ndurell
ndurell / example.swift
Created August 25, 2017 16:44
Weak self example
create(image: image) { [weak self] key, error in
guard let `self` = self else {
return
}
if let error = error {
self.completion?(nil, error)
self.completion = nil
return
}
@ndurell
ndurell / stuff.swift
Created April 26, 2017 18:07
Instructions for reading a file from the bundle
let path : URL = Bundle.main.path(forResource: "scifi-novels", ofType: "json").flatMap {
URL.init(fileURLWithPath: $0)
}!
let data = try! Data(contentsOf: path)
let json = try! JSONSerialization.jsonObject(with: data) as? [String: Any]
@ndurell
ndurell / FLP.md
Last active May 23, 2016 16:30
Gist detail how we use Fused Location Provid

Build google api client:

m_googleApiClient = builder.
        .addConnectionCallbacks(this)
        .addOnConnectionFailedListener(this)
        .addApi(LocationServices.API)
        .build();

The location request looks like this:

@ndurell
ndurell / AppDelegate.m
Last active August 29, 2015 14:00
How to turn on logging.
//
// ExampleAppDelegate.m
// MyApp
//
//
#import "ExampleAppDelegate.h"
#import "SessionM.h"
@implementation ExampleAppDelegate
@ndurell
ndurell / DialogAchievementActivity.java
Last active August 29, 2015 13:56
Below is a sample custom achievement. It uses an alert dialog to display the achievement information. This is meant to illustrate how to make custom achievement API calls and shouldn't be used in a real app.
package test.com.sessionm.app;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.util.Log;
import com.sessionm.api.AchievementData;
import com.sessionm.api.AchievementActivity;
import com.sessionm.api.AchievementActivityIllegalStateException;
import com.sessionm.api.SessionM;
@ndurell
ndurell / SessionM.xml
Created February 18, 2014 15:18
This gist shows the components that need to be included in your <application> tag for SessionM integration.
<receiver android:name="com.sessionm.api.ConnectionReceiver" >
<intent-filter>
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" >
</action>
</intent-filter>
</receiver>
<activity
android:name="com.sessionm.ui.SessionMActivity"
android:configChanges="keyboard|orientation|screenSize"
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
@ndurell
ndurell / AndroidManifest.xml
Last active August 29, 2015 13:56
This shows the permissions that are needed to add to your AndroidManifest.xml for integrating the SessionM SDK.
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="test.com.sessionm"
android:versionCode="15"
android:versionName="1.9.0 Beta" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="19" />
<!-- Begin SessionM -->
@ndurell
ndurell / PresentActivityActivity.java
Last active August 29, 2015 13:55
presentActivity
package ludia.sessionm;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import com.sessionm.api.ActivityListener;
import com.sessionm.api.BaseActivity;
import com.sessionm.api.SessionM;
import org.json.JSONException;
import org.json.JSONObject;