This file contains 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
/* | |
* Handles Gingerbread crash due to implementation change | |
*/ | |
private static Point getDisplaySize(final Display display) { | |
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) { | |
return APIv11.getDisplaySize(display); | |
} else { | |
final Point point = new Point(); | |
point.x = display.getWidth(); |
This file contains 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
@SuppressWarnings("deprecation") | |
public class Settings extends PreferenceActivity { | |
public void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
if(Build.VERSION.SDK_INT < Build.VERSION_CODES.HONEYCOMB ) | |
addPreferencesFromResource(R.xml.settings); | |
else | |
addPreferencesAPIv11(); |
This file contains 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
keytool -exportcert -alias androiddebugkey -keystore ~/.android/debug.keystore -v -list |
This file contains 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
/// <SUMMARY> | |
/// Takes a string that represents an enum member | |
/// and returns the enum member | |
/// </SUMMARY> | |
/// <TYPEPARAM name="T">An Enum</TYPEPARAM> | |
/// <PARAM name="input">The string that is the enum member name, case does not matter</PARAM> | |
/// <PARAM name="returnValue">The value from the enum that matches the string, or the first value of the enum</PARAM> | |
/// <RETURNS>True when there is a match, false when not </RETURNS> | |
/// <REMARKS> | |
/// - When no match the first item in the enum is returned |
This file contains 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
org.hsqldb.util.DatabaseManagerSwing.main(new String[] { | |
"--url", "jdbc:hsqldb:mem:testdb", "--noexit" | |
}); | |
This file contains 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.truxall.demo; | |
import com.sun.jersey.api.client.WebResource; | |
import com.sun.jersey.spi.container.servlet.ServletContainer; | |
import com.sun.jersey.test.framework.AppDescriptor; | |
import com.sun.jersey.test.framework.JerseyTest; | |
import com.sun.jersey.test.framework.WebAppDescriptor; | |
import com.sun.jersey.test.framework.spi.container.TestContainerFactory; | |
import com.sun.jersey.test.framework.spi.container.grizzly2.web.GrizzlyWebTestContainerFactory; | |
import org.junit.Assert; |
This file contains 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
apply plugin: 'java' | |
apply plugin: 'war' | |
sourceCompatibility = JavaVersion.VERSION_1_7 | |
targetCompatibility = JavaVersion.VERSION_1_7 | |
version = '1.0' | |
repositories { | |
mavenCentral() |
This file contains 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.demo.test.rest; | |
import com.google.inject.Guice; | |
import com.google.inject.Injector; | |
import com.google.inject.servlet.GuiceServletContextListener; | |
import com.demo.DemoRestService; | |
import com.demo.BasicAuthFilter; | |
import com.sun.jersey.guice.JerseyServletModule; |
This file contains 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
adb shell setprop log.tag.SQLiteLog V | |
adb shell setprop log.tag.SQLiteStatements V | |
adb shell stop | |
adb shell start |
This file contains 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
alias ll="ls -lahL" | |
alias con="tail -40 -f /var/log/system.log" | |
bind '"\e[A":history-search-backward' | |
bind '"\e[B":history-search-forward' |
OlderNewer