Skip to content

Instantly share code, notes, and snippets.

Privacy Policy

Kihwan Park built the Decibel Checker app as an Ad Supported app. This SERVICE is provided by Kihwan Park at no cost and is intended for use as is.

This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service.

If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy.

The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Decibel Checker unless otherwise defined in this Privacy Policy.

public void getData(String data) {
ParseQuery<ParseObject> query = ParseQuery.getQuery("myData");
query.whereEqualTo("myColumn", data);
// Retrieve the most recent ones
query.orderByDescending("createdAt");
// Only retrieve the last ten
query.setLimit(10);
query.findInBackground(new FindCallback<ParseObject>() {
@musart
musart / addData.java
Last active January 1, 2016 23:18
Add data to parse.com
public void addData(String data) {
if(data.equals(""))
// do nothing
return;
ParseObject newData = new ParseObject("myData");
newData.put("myColumn", data);
newData.saveInBackground();
}
@musart
musart / index.html
Created June 10, 2012 12:51
web application for breakout.js client
<!DOCTYPE HTML>
<html>
<head>
<meta name="viewport" content="width=320; user-scalable=no" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>PhoneGap</title>
<style type="text/css">
body {
margin: 15px;
font-family: sans-serif;