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
import java.awt.image.BufferedImage; | |
import java.io.File; | |
import java.io.FileOutputStream; | |
import java.io.IOException; | |
import java.io.OutputStream; | |
import java.util.Date; | |
import java.util.Iterator; | |
import javax.imageio.IIOImage; |
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
ifconfig en0 | awk '$1 == "inet" {print $2}' |
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 main | |
import ( | |
"database/sql" | |
"fmt" | |
"os" | |
"strings" | |
_ "github.com/go-sql-driver/mysql" | |
) |
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
import android.content.Context; | |
import android.content.res.Resources; | |
public class MResource { | |
private static int getResID(Context context, String resName, String defType) { | |
Resources res = context.getResources(); | |
return res.getIdentifier(resName, defType, context.getPackageName()); | |
} | |
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
/** | |
* Created by a598799539 on 15-7-2. | |
* github: https://github.com/a598799539 | |
*/ | |
public class Test { | |
public static void main(String[] args){ | |
String string1 = "ACAT"; | |
String string2 = "TACA"; | |
isCircleRotation(string1,string2); | |
} |
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
//回车提交 | |
function enterLogin(e){ | |
var e = e || window.event; | |
if(e.keyCode == 13){ | |
... | |
} | |
} | |
<input type="password" id="password" placeholder="输入密码" onkeypress="enterLogin(event)" onkeydown="enterLogin()"/> |