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 test; | |
public class Test { | |
public static void main(String[] args) { | |
test1(); | |
test2(); | |
} | |
private static void test1() { |
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
12-11 12:12:45.100 19153-19153/? D/dalvikvm: Zygote::ForkAndSpecialize : 0 | |
12-11 12:12:45.104 19153-19153/? D/dalvikvm: zygote get new systemTid : 19153 | |
12-11 12:12:45.104 19153-19153/? D/dalvikvm: Late-enabling CheckJNI | |
12-11 12:12:45.105 19153-19158/? D/dalvikvm: threadid=2: interp stack at 0x5be68000 | |
12-11 12:12:45.105 19153-19158/? D/dalvikvm: init ref table | |
12-11 12:12:45.105 19153-19158/? D/dalvikvm: init mutex | |
12-11 12:12:45.106 19153-19159/? D/dalvikvm: threadid=3: interp stack at 0x5bf88000 | |
12-11 12:12:45.106 19153-19159/? D/dalvikvm: init ref table | |
12-11 12:12:45.106 19153-19159/? D/dalvikvm: init mutex | |
12-11 12:12:45.106 19153-19153/? D/jdwp: prepping for JDWP over ADB |
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
buildscript { | |
repositories { | |
maven { url 'https://maven.fabric.io/public' } | |
maven { url "https://jitpack.io" } | |
} | |
} | |
apply plugin: 'com.android.application' | |
repositories { |
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="bz.kakadu.fkdinamo"> | |
<uses-permission android:name="android.permission.INTERNET" /> | |
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | |
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> | |
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" /> | |
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> | |
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> |
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
01-13 12:45:21.233 17409-17452/com.kakadudev.android D/OkHttp: <-- 200 OK http://78.47.112.41/api/object/feed?page=1 (1405ms) | |
01-13 12:45:21.233 17409-17452/com.kakadudev.android D/OkHttp: Date: Wed, 13 Jan 2016 09:45:19 GMT | |
01-13 12:45:21.233 17409-17452/com.kakadudev.android D/OkHttp: Server: Apache/2.4.12 (Ubuntu) | |
01-13 12:45:21.233 17409-17452/com.kakadudev.android D/OkHttp: Keep-Alive: timeout=5, max=100 | |
01-13 12:45:21.233 17409-17452/com.kakadudev.android D/OkHttp: Connection: Keep-Alive | |
01-13 12:45:21.233 17409-17452/com.kakadudev.android D/OkHttp: Transfer-Encoding: chunked | |
01-13 12:45:21.233 17409-17452/com.kakadudev.android D/OkHttp: Content-Type: application/json; charset=UTF-8 | |
01-13 12:45:21.233 17409-17452/com.kakadudev.android D/OkHttp: OkHttp-Sent-Millis: 1452678319875 | |
01-13 12:45:21.233 17409-17452/com.kakadudev.android D/OkHttp: OkHttp-Received-Millis: 1452678321231 | |
01-13 12:45:21.433 17409-17452/com.kakadudev.android D/dalvikvm: GC_FOR_ALLOC freed 198K, 6% free 11301K/11975K, paused 40ms, to |
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
<NotepadPlus> | |
<UserLang name="Gradle" ext="gradle"> | |
<Settings> | |
<Global caseIgnored="yes" /> | |
<TreatAsSymbol comment="yes" commentLine="yes" /> | |
<Prefix words1="no" words2="no" words3="no" words4="no" /> | |
</Settings> | |
<KeywordLists> | |
<Keywords name="Delimiters">"'0"'0</Keywords> | |
<Keywords name="Folder+"></Keywords> |
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
/** | |
* Copyright (c) 2013 Xcellent Creations, Inc. | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining | |
* a copy of this software and associated documentation files (the | |
* "Software"), to deal in the Software without restriction, including | |
* without limitation the rights to use, copy, modify, merge, publish, | |
* distribute, sublicense, and/or sell copies of the Software, and to | |
* permit persons to whom the Software is furnished to do so, subject to | |
* the following conditions: |
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.badlogic.gdx.tools.hiero; | |
import com.badlogic.gdx.ApplicationAdapter; | |
import com.badlogic.gdx.backends.lwjgl.LwjglCanvas; | |
import com.badlogic.gdx.tools.hiero.unicodefont.UnicodeFont; | |
import com.badlogic.gdx.tools.hiero.unicodefont.effects.ColorEffect; | |
import javax.swing.*; | |
import java.awt.*; | |
import java.io.File; |
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
Set<Thread> threads = Thread.getAllStackTraces().keySet(); | |
for (Thread t : threads) { | |
String name = t.getName(); | |
Thread.State state = t.getState(); | |
int priority = t.getPriority(); | |
String type = t.isDaemon() ? "Daemon" : "Normal"; | |
System.out.printf("%-20s \t %s \t %d \t %s\n", name, state, priority, type); | |
} |
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
Contributing | |
We love pull requests from everyone. By participating in this project, you agree to abide by the Arctic code of conduct. | |
Fork, then clone the repo: | |
git clone [email protected]:your-username/arctic.git | |
Make sure the demo project compiles and runs ok. | |
Make your change. Make sure it compiles and works as intended (write tests, use it in the demo, etc.). |
OlderNewer