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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"/> | |
<title>Backbone.js</title> | |
<script src="jquery-1.10.2.js"></script> | |
<script src="underscore.js"></script> | |
<script src="backbone.js"></script> | |
<script> |
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
<?php | |
/** | |
* Mysql database class | |
*/ | |
class Database { | |
private $connection; | |
private $hostname = "hostname"; | |
private $username = "username"; |
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
String url = ""; | |
final StringRequest postRequest = new StringRequest(Request.Method.POST, url, | |
new Response.Listener<String>() { | |
@Override | |
public void onResponse(String response) { | |
} |
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
from package | |
import "fmt" | |
func main() { | |
var a[5] int | |
fmt.Println("emp:", a) | |
fmt.Println("get:", len(a)) | |