This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
miao.put('ProcessedReports', req.filename, JSON.stringify(report)) | |
.then(function (result) { | |
console.log("Added a report "+result); | |
return next(); | |
}) | |
.fail(function (err) { | |
console.log("There was an error:"+JSON.stringify(err)); | |
return next(); | |
}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
callback = function (body, next) { | |
var b = body; | |
var res = b.split("\r\n"); | |
var line1 = res[0].split("\t"); | |
var collection = []; | |
for(var i=1;i<res.length;i++){ | |
var local = res[i].split("\t"); | |
var object = new Object(); | |
for(var i2=0;i2<line1.length;i2++){ | |
var test = local[i2]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.gleason.banks.resource; | |
import java.net.Authenticator; | |
import java.net.MalformedURLException; | |
import java.net.PasswordAuthentication; | |
import java.rmi.RemoteException; | |
import javax.ws.rs.GET; | |
import javax.ws.rs.Path; | |
import javax.xml.rpc.ServiceException; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... build-aux/install-sh -c -d | |
checking for gawk... no | |
checking for mawk... no | |
checking for nawk... no | |
checking for awk... awk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether UID '501' is supported by ustar format... yes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
activation-1.1.jar | |
antisamy-1.4.3.jar | |
antlr-2.7.6.jar | |
aopalliance-1.0.jar | |
asm-3.3.1.jar | |
aspectjrt-1.6.11.jar | |
aspectjweaver-1.6.11.jar | |
backbase.com.2012.components-5.4.1.2.jar | |
backbase.com.2012.darts-5.4.1.2.jar | |
backbase.com.2012.nexus-5.4.1.2.jar |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Undefined symbols for architecture x86_64: | |
"std::__1::locale::use_facet(std::__1::locale::id&) const", referenced from: | |
std::__1::basic_ostream<char, std::__1::char_traits<char> >& std::__1::operator<<<std::__1::char_traits<char> >(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, char const*) in test-bxzgLv.o | |
std::__1::basic_ostream<char, std::__1::char_traits<char> >& std::__1::endl<char, std::__1::char_traits<char> >(std::__1::basic_ostream<char, std::__1::char_traits<char> >&) in test-bxzgLv.o | |
"std::__1::ios_base::getloc() const", referenced from: | |
std::__1::basic_ostream<char, std::__1::char_traits<char> >& std::__1::operator<<<std::__1::char_traits<char> >(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, char const*) in test-bxzgLv.o | |
std::__1::basic_ostream<char, std::__1::char_traits<char> >& std::__1::endl<char, std::__1::char_traits<char> >(std::__1::basic_ostream<char, std::__1::char_traits<char> >&) in test-bxzgLv.o | |
"std::__1::basic_string<char, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <jni.h> | |
#include <errno.h> | |
#include <EGL/egl.h> | |
#include <GLES/gl.h> | |
#include <android/sensor.h> | |
#include <android/log.h> | |
#include <android_native_app_glue.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.gleason.gl.nat; | |
public class Native { | |
static | |
{ | |
System.loadLibrary("box2D"); | |
System.loadLibrary("testand"); | |
} | |
public static native void init(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "game-gl.h" | |
#include <jni.h> | |
#include "box2d.hpp" | |
JNIEXPORT void JNICALL Java_com_gleason_gl_nat_Native_init(JNIEnv* env, jclass class) | |
{ | |
InitializeOpenGL(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
LOCAL_PATH := $(call my-dir) | |
include $(CLEAR_VARS) | |
LOCAL_MODULE := SDL-prebuilt | |
LOCAL_SRC_FILES := $(LOCAL_PATH)/ext/SDL/$(TARGET_ARCH_ABI)/libSDL.so | |
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/ext/include | |
include $(PREBUILT_SHARED_LIBRARY) | |
include $(CLEAR_VARS) | |
LOCAL_MODULE := SDL-NET | |
LOCAL_C_INCLUDES := $(LOCAL_PATH) $(LOCAL_PATH)/include |