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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>peachVolt</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<link rel="stylesheet" src="//normalize-css.googlecode.com/svn/trunk/normalize.css" /> | |
<link href="https://fonts.googleapis.com/css?family=Poiret+One" rel="stylesheet"> | |
<link rel="stylesheet" type="text/css" href="main.css"> | |
<!-- Latest compiled and minified CSS --> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> |
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
private void addOnFirebase(){ | |
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this); | |
EmailPref = prefs.getString("EmailPref", EmailPref); | |
DatabaseReference mFirebaseRef = FirebaseDatabase.getInstance().getReferenceFromUrl(constants.FIREBASE_URL + "rootssahaj/authGplus/users/students/" + EmailPref + "/profile"); | |
DatabaseReference mFirebaseRefHashnamePool = FirebaseDatabase.getInstance().getReferenceFromUrl(constants.FIREBASE_URL + "rootssahaj/authGplus/hashnamePool"); | |
String month=monthSelected; | |
month=month.substring(0,3); | |
Map<String, Object> statusChange = new HashMap<String, Object>(); |
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
function foo() | |
{ | |
if (counter <= 10) | |
return; | |
// it works! | |
} |