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
java.lang.ClassNotFoundException: com.android.internal.graphics.drawable.AnimationScaleListDrawable | |
at java.net.URLClassLoader.findClass(URLClassLoader.java:381) | |
at java.lang.ClassLoader.loadClass(ClassLoader.java:424) | |
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331) | |
at java.lang.ClassLoader.loadClass(ClassLoader.java:357) | |
at android.graphics.drawable.DrawableInflater.inflateFromClass(DrawableInflater.java:187) | |
at android.graphics.drawable.DrawableInflater.inflateFromXml(DrawableInflater.java:128) | |
at android.graphics.drawable.Drawable.createFromXmlInner(Drawable.java:1227) | |
at android.graphics.drawable.Drawable.createFromXml(Drawable.java:1200) | |
at com.android.layoutlib.bridge.impl.ResourceHelper.getDrawable(ResourceHelper.java:315) |
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
{"version":{"name":"1.8-1.11","protocol":47},"description":{"extra":[{"color":"red","text":"[KamikazeWarServer] サーバーが応答していません。"}],"text":""},"modinfo":{"type":"FML","modList":[]}} |
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
<style name="AppTheme" parent="@android:style/Theme"> | |
<item name="android:windowBackground">@android:color/transparent</item> | |
<item name="android:colorBackgroundCacheHint">@null</item> | |
<item name="android:windowIsTranslucent">true</item> | |
<item name="android:windowNoTitle">true</item> | |
<item name="android:windowContentOverlay">@null</item> | |
</style> |
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
// ref: https://stuncloud.wordpress.com/2010/09/24/0%E3%81%8B%E3%82%89%E4%BB%BB%E6%84%8F%E3%81%AE%E6%95%B0%E3%81%BE%E3%81%A7%E3%81%AB%E3%83%9E%E3%83%83%E3%83%81%E3%81%99%E3%82%8B%E6%AD%A3%E8%A6%8F%E8%A1%A8%E7%8F%BE%E3%83%91%E3%82%BF%E3%83%BC%E3%83%B3/ | |
def num=new InputStreamReader(System.in).readLine() | |
def pattern="" | |
def l=num.length()-1 | |
def n=new int[l+1] | |
for(def i=0;i<=l;i++){ | |
n[i]=new Integer("${num.charAt(i)}") |
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
apt-get update | |
apt-get -y upgrade | |
apt-get install -y python-software-properties debconf-utils software-properties-common | |
add-apt-repository -y ppa:webupd8team/java | |
apt-get update | |
echo "oracle-java8-installer shared/accepted-oracle-license-v1-1 select true" | debconf-set-selections | |
apt-get install -y oracle-java8-installer oracle-java8-set-default |
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
addItemInventory(par1int, par2int, par3int); | |
bl_setMobSkin(par1Object, par2String); | |
bl_spawnMob(par1double, par2double, par3double, par4int, par5String); | |
clientMessage(par1String); | |
explode(par1double, par2double, par3double, par4double, par5boolean); | |
getCarriedItem(); | |
getLevel(); | |
getPitch(par1Object); | |
getPlayerEnt(); | |
getPlayerX(); |
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
3.14159265358979323846264338327950288419716939937510582097494459230781640628620899862803482534211706798214808651328230664709384460955058223172535940812848111745028410270193852110555964462294895493038196442881097566593344612847564823378678316527120190914564856692346034861045432664821339360726024914127372458700660631558817488152092096282925409171536436789259036001133053054882046652138414695194151160943305727036575959195309218611738193261179310511854807446237996274956735188575272489122793818301194912983367336244065664308602139494639522473719070217986094370277053921717629317675238467481846766940513200056812714526356082778577134275778960917363717872146844090122495343014654958537105079227968925892354201995611212902196086403441815981362977477130996051870721134999999837297804995105973173281609631859502445945534690830264252230825334468503526193118817101000313783875288658753320838142061717766914730359825349042875546873115956286388235378759375195778185778053217122680661300192787661119590921642019893809525720106548586327 |
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
def oslData=new URL("https://github.com/nao20010128nao/Wisecraft/raw/master/OPEN_SOURCE_LICENSES.md").text | |
def oslParts=[] | |
def lengthPerParts=100 | |
((int)Math.ceil(oslData.length()/lengthPerParts)).times{ | |
def partial=oslData.substring(it*lengthPerParts,Math.min((it+1)*lengthPerParts-1,oslData.length())) | |
partial=partial.replace('\\','\\\\') | |
partial=partial.replace('"','\\"') | |
partial=partial.replace('\'','\\\'') | |
partial=partial.replace('\t','\\t') | |
partial=partial.replace('\r\n','\n') |
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
#!/bin/bash | |
NAME="-${1}" | |
[ "${#NAME}" == "1" ] && NAME="" | |
gzip >> $(echo "build${NAME}.log.gz") |
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 static <T> Enumeration<T> enumeration(final Collection<T> c) { | |
return new Enumeration<T>() { | |
private final Iterator<T> i = c.iterator(); | |
public boolean hasMoreElements() { | |
return i.hasNext(); | |
} | |
public T nextElement() { | |
return i.next(); |