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
<?xml version="1.0" encoding="utf-8"?> | |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
android:id="@+id/activity_main" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:background="#F7F7F7" | |
android:orientation="vertical"> | |
<ImageView | |
android:layout_width="match_parent" |
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
// BluetoothService.java | |
// Line 358 | |
while(mmInStream.available() > 0) { | |
int data = mmInStream.read(); | |
arr_byte.add(data); | |
if(mmInStream.available() == 0) { | |
buffer = new byte[arr_byte.size()]; | |
for (int i = 0; i < arr_byte.size(); i++) { | |
buffer[i] = arr_byte.get(i).byteValue(); |
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
ตอน 1 http://alive.in.th/watch_video.php?v=51155B8NGUMB | |
ตอน 2 http://alive.in.th/watch_video.php?v=9371BYOMD3X6 | |
ตอน 3 http://alive.in.th/watch_video.php?v=89YWN696KXGB | |
ตอน 4 http://alive.in.th/watch_video.php?v=KO376K6BOMMW | |
ตอน 5 http://alive.in.th/watch_video.php?v=1Y6NUNOS651D | |
ตอน 6 http://alive.in.th/watch_video.php?v=H9YWU83G6293 | |
ตอน 7 http://alive.in.th/watch_video.php?v=UKD3UN26K3HU | |
ตอน 8 http://alive.in.th/watch_video.php?v=HX9MYXKG5W9Y | |
ตอน 9 http://alive.in.th/watch_video.php?v=4OBOXYDG5UNS | |
ตอน 10 http://alive.in.th/watch_video.php?v=6M6RNDHAMAMR |
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
SoundPoolManager.getInstance().play(getContext(), R.raw.any_sound); | |
MediaPlayerManager.getInstance().play(getContext(), R.raw.any_sound); |
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
// Successful | |
{ | |
"status": "SUCCESS", | |
"message": "Retrieve the list of beer successfully.", | |
"nextBeerAvailable": true, | |
"nextBeerIndex": 1, | |
"beers": [ | |
{ | |
"id": "0102023", | |
"name": "Hoegaarden", |
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
3" Octocat Figurine | |
จำนวน 1 ตัว | |
https://github.myshopify.com/products/octocat-figurine | |
GitHub Username Shirt | |
Linear/Men's Medium-Indigo | |
จำนวน 1 ชุด | |
https://github.myshopify.com/products/github-username-shirt |
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
const mongoose = require('mongoose'); | |
var deviceSchema = mongoose.Schema({ | |
j_id: String, | |
j_cert_no: String, | |
j_trade_name: String, | |
j_model_code: String | |
}) | |
module.exports.DeviceModel = mongoose.model('DeviceModel', deviceSchema, 'device_list') |
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
open class BaseItem(open var type: Int) : Parcelable { | |
constructor(parcel: Parcel) : this( | |
type = parcel.readInt()) | |
override fun writeToParcel(parcel: Parcel, flags: Int) { | |
with(parcel) { | |
writeInt(type) | |
} | |
} |
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
const requestBody = { | |
name: 'Akexorcist', | |
age: '28', | |
position: 'Android Developer', | |
description: 'birthdate=25-12-1989&favourite=coding%20coding%20and%20coding&company=Nextzy%20Technologies&website=http://www.akexorcist.com/', | |
awesome: true | |
} |
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
const axios = require('axios') | |
/* ... */ | |
const params = new URLSearchParams() | |
params.append('name', 'Akexorcist') | |
params.append('age', '28') | |
params.append('position', 'Android Developer') | |
params.append('description', 'birthdate=25-12-1989&favourite=coding%20coding%20and%20coding&company=Nextzy%20Technologies&website=http://www.akexorcist.com/') | |
params.append('awesome', true) |