Skip to content

Instantly share code, notes, and snippets.

View bleege's full-sized avatar

Brad Leege bleege

View GitHub Profile
@bleege
bleege / mapbox-gl-native-clean-mason.md
Created November 9, 2015 20:00
Mapbox GL make apackage Clean Mason
Brads-MacBook-Pro:mapbox-gl-android-no-mason-cache brad$ time make apackage
./scripts/flock.py .git/Submodule.lock git submodule update --init .mason
Submodule '.mason' (https://github.com/mapbox/mason.git) registered for path '.mason'
Cloning into '.mason'...
remote: Counting objects: 3321, done.
remote: Compressing objects: 100% (6/6), done.
remote: Total 3321 (delta 2), reused 0 (delta 0), pack-reused 3315
Receiving objects: 100% (3321/3321), 1.30 MiB | 0 bytes/s, done.
Resolving deltas: 100% (1103/1103), done.
@bleege
bleege / stuff_for_android_dev
Created December 10, 2014 00:47
Stuff Needed For Android Development
**Stuff To Download**
* Java Development Kit (JDK) 8 - [Oracle](http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html)
** NOTE: This is not Java Runtime Environment (JRE)
* Android SDK - [Standalone Version](http://developer.android.com/sdk/installing/index.html?pkg=tools)
* Android NDK - [Download](http://developer.android.com/tools/sdk/ndk/index.html)
* Android Studio - [Standalone Version](http://developer.android.com/sdk/installing/index.html?pkg=studio)
**Installation Details**
* Environment Variables
** JAVA_HOME = /Library/Java/JavaVirtualMachines/jdk1.7.0_21.jdk/Contents/Home
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@bleege
bleege / android-resource-loading-models
Created February 1, 2014 22:50
Android Resource Loading Models Comparison
From Marker.java
/**
* Set this marker's icon to a marker from the Maki icon set.
*
* @param makiString the name of a Maki icon symbol
*/
public void fromMaki(String makiString) {
String urlString = "/com/mapbox/" + makiString+"182x";
logger.info("urlString = '" + urlString + "'");
@bleege
bleege / pom.xml
Created May 20, 2013 13:44
shibboleth-filter/pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.eduix.crowd</groupId>
<artifactId>shibboleth-filter</artifactId>
<version>1.0.25</version>