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.ilopez.android.troubleshooter; | |
/** | |
* Created by User on 7/20/13. | |
*/ | |
import android.app.Activity; | |
import android.content.Context; | |
import android.content.pm.ActivityInfo; | |
import android.hardware.Camera; | |
import android.hardware.Camera.PreviewCallback; |
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
07-20 13:16:32.412 8733-8733/com.ilopez.android.troubleshooter W/camera: camera view | |
07-20 13:16:32.412 8733-8733/com.ilopez.android.troubleshooter W/RecordActivity: init recorder | |
07-20 13:16:32.412 8733-8733/com.ilopez.android.troubleshooter W/dalvikvm: VFY: unable to find class referenced in signature (Ljava/awt/image/BufferedImage;) | |
07-20 13:16:32.412 8733-8733/com.ilopez.android.troubleshooter W/dalvikvm: VFY: unable to find class referenced in signature (Ljava/awt/image/BufferedImage;) | |
07-20 13:16:32.412 8733-8733/com.ilopez.android.troubleshooter W/dalvikvm: VFY: unable to find class referenced in signature (Ljava/awt/image/BufferedImage;) | |
07-20 13:16:32.412 8733-8733/com.ilopez.android.troubleshooter W/dalvikvm: VFY: unable to find class referenced in signature (Ljava/awt/image/BufferedImage;) | |
07-20 13:16:32.412 8733-8733/com.ilopez.android.troubleshooter W/dalvikvm: VFY: unable to find class referenced in signature (Ljava/awt/image/BufferedImage;) | |
07-20 13:16:32.412 8733-8733/c |
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
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="com.ilopez.android.troubleshooter" | |
android:versionCode="1" | |
android:versionName="1.0" | |
> | |
<uses-permission android:name="android.permission.WAKE_LOCK" /> | |
<uses-permission android:name="android.permission.CAMERA" /> | |
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="SO22141769" pageWidth="612" pageHeight="792" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="5dec3fda-cd33-4882-bba3-15f2a3bd0869"> | |
<property name="ireport.zoom" value="1.0"/> | |
<property name="ireport.x" value="0"/> | |
<property name="ireport.y" value="0"/> | |
<queryString> | |
<![CDATA[select CAST('now' as timestamp) as ts, CAST('127647853.233' as double precision) as num from rdb$database]]> | |
</queryString> | |
<field name="TS" class="java.sql.Timestamp"/> | |
<field name="NUM" class="java.lang.Double"/> |
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
Starting Against Test DB: Z:\temp\TESTDB.FDB sysdba masterkey | |
Enter to Start | |
Dropping Database | |
Creating Database | |
Applying Schema | |
Records Written: 1 | |
Simulating a Close | |
Operation requires an open and available connection. | |
Stopped... Press Enter to Check for Validation. |
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
select | |
part.num, | |
part.description, | |
SUM(tag.qty) as qoh, | |
SUM(tag.qtycommitted) as qtycmtd | |
from part | |
join tag on tag.partid = part.id | |
where part.activeflag = 0 | |
and part.id > 0 | |
group by 1,2 |
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
public class KRestClient : RestClient | |
{ | |
public Int32 RequestRetryCount = 5; // Attempt Types | |
public Int32 BackoffRate = 100; // Milliseconds | |
public KRestClient(string baseUrl) : base(baseUrl) | |
{ | |
} | |
public override IRestResponse<T> Execute<T>(IRestRequest request) |
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
Unirest.setObjectMapper(new ObjectMapper() { | |
private Gson gson = new Gson(); | |
public <T> T readValue(String s, Class<T> aClass) { | |
try{ | |
return gson.fromJson(s, aClass); | |
}catch(Exception e){ | |
throw new RuntimeException(e); | |
} | |
} |
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
#pragma warning disable 1591 | |
//------------------------------------------------------------------------------ | |
// <auto-generated> | |
// This code was generated by a tool. | |
// Runtime Version:4.0.30319.42000 | |
// | |
// Changes to this file may cause incorrect behavior and will be lost if | |
// the code is regenerated. | |
// </auto-generated> | |
//------------------------------------------------------------------------------ |
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
#pragma warning disable 1591 | |
//------------------------------------------------------------------------------ | |
// <auto-generated> | |
// This code was generated by a tool. | |
// Runtime Version:4.0.30319.42000 | |
// | |
// Changes to this file may cause incorrect behavior and will be lost if | |
// the code is regenerated. | |
// </auto-generated> | |
//------------------------------------------------------------------------------ |
OlderNewer