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
var express = require('express') | |
var app = express() | |
app.get('/', function (req, res) { | |
res.send('Hello World') | |
}) | |
app.get('/user/:id', function (req, res) { | |
res.send('GET ' + req.params.id); | |
}); |
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
<weatherdata> | |
<weather country="한국"> | |
<description>맑음</description> | |
<temp>36</temp> | |
</weather> | |
<weather country="일본"> | |
<description>흐림</description> | |
<temp>33</temp> | |
</weather> | |
<weather country="중국"> |
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
package socket; | |
import java.io.BufferedReader; | |
import java.io.IOException; | |
import java.io.InputStreamReader; | |
import java.io.PrintWriter; | |
import java.net.Socket; | |
/** | |
* 1 대 1 소켓 통신 클라이언트 예제 |
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
[ | |
{ | |
"country": "한국", | |
"weather": "비", | |
"temperature": "20" | |
}, | |
{ | |
"country": "일본", | |
"weather": "맑음", | |
"temperature": "19" |
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
package com.exam.order; | |
import android.content.Context; | |
import android.graphics.Canvas; | |
import android.graphics.Color; | |
import android.graphics.Paint; | |
import android.util.AttributeSet; | |
import android.view.View; | |
/** |
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
03-01 18:01:42.288 17129-17129/com.jsoh.findzipcode W/System.err: at com.inmobi.commons.core.utilities.uid.c.l(UidHelper.java:227) | |
03-01 18:01:42.289 17129-17129/com.jsoh.findzipcode W/System.err: at com.inmobi.commons.core.utilities.uid.c.e(UidHelper.java:92) | |
03-01 18:01:42.289 17129-17129/com.jsoh.findzipcode W/System.err: at com.inmobi.commons.core.utilities.uid.c.b(UidHelper.java:58) | |
03-01 18:01:42.289 17129-17129/com.jsoh.findzipcode W/System.err: at com.inmobi.sdk.InMobiSdk.initComponents(InMobiSdk.java:281) | |
03-01 18:01:42.289 17129-17129/com.jsoh.findzipcode W/System.err: at com.inmobi.sdk.InMobiSdk.init(InMobiSdk.java:202) | |
03-01 18:01:42.289 17129-17129/com.jsoh.findzipcode W/System.err: at test.adlib.project.ads.SubAdlibAdViewInmobi.<init>(SubAdlibAdViewInmobi.java:73) | |
03-01 18:01:42.289 17129-17129/com.jsoh.findzipcode W/System.err: at test.adlib.project.ads.SubAdlibAdViewInmobi.<init>(SubAdlibAdViewInmobi.java:0) | |
03-01 18:01:42.434 17129-18159/com.jsoh.findzipcode W/Syst |
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 class MainActivity extends AppCompatActivity { | |
private static final String TAG = MainActivity.class.getSimpleName(); | |
private final int PRICE_COFFEE = 2500; | |
private final int PRICE_WHIP = 500; | |
private final int PRICE_CHOCOLATE = 300; | |
private int mQuantity = 0; | |
private TextView mPriceTextView; |
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
package com.example.android.listviewexam; | |
import android.content.Context; | |
import android.view.LayoutInflater; | |
import android.view.View; | |
import android.view.ViewGroup; | |
import android.widget.BaseAdapter; | |
import android.widget.ImageView; | |
import android.widget.TextView; |
NewerOlder