Skip to content

Instantly share code, notes, and snippets.

View threadbuilder's full-sized avatar
:octocat:
Focusing

Austin Cho threadbuilder

:octocat:
Focusing
View GitHub Profile
@threadbuilder
threadbuilder / OpenMarket
Created December 10, 2020 02:28
오픈마켓종류
enum OpenmarketKind {
NAVER = "NAVER",
ST11 = "11ST",
CUPANG = "CUPANG",
CAFE24 = "CAFE24",
GODOMALL = "GODOMALL",
GODOMALL5 = "GODOMALL5",
GMARKET = "GMARKET",
AUCTION = "AUCTION",
INTERPARK = "INTERPARK",
enum DELIVERYMETHOD_CODE {
DELIVERY = "DELIVERY" , //택배 , 등기 , 소포
VISIT_RECEIPT = "VISIT_RECEIPT" , //방문수령
DIRECT_DELIVERY = "DIRECT_DELIVERY" , //직접전달
QUICK_SVC = "QUICK_SVC" , //퀵서비스
NOTHING = "NOTHING" , //배송없음
// 반송
RETURN_DESIGNATED = "RETURN_DESIGNATED" , //지정반품 택배
RETURN_DELIVERY = "RETURN_DELIVERY" , //일반 반품 택배
RETURN_INDIVIDUAL = "RETURN_INDIVIDUAL" //직접 반송
enum DELIVERY_COMPANYCODE{
CJGLS ="CJGLS" , KGB ="KGB" , EPOST ="EPOST", REGISTPOST="REGISTPOST", HANJIN ="HANJIN", HYUNDAI ="HYUNDAI", DAESIN ="DAESIN",
ILYANG ="ILYANG", KDEXP ="KDEXP", CHUNIL ="CHUNIL", CH1 ="CH1", HDEXP ="HDEXP", CVSNET ="CVSNET", DHL ="DHL",
FEDEX ="FEDEX", GSMNTON ="GSMNTON", WARPEX ="WARPEX", WIZWA ="WIZWA", EMS ="EMS", DHLDE ="DHLDE", ACIEXPRESS ="ACIEXPRESS",
EZUSA ="EZUSA", PANTOS ="PANTOS", UPS ="UPS", HLCGLOBAL ="HLCGLOBAL", KOREXG ="KOREXG", TNT ="TNT", SWGEXP ="SWGEXP",
DAEWOON ="DAEWOON", USPS ="USPS", IPARCEL ="IPARCEL", KUNYOUNG ="KUNYOUNG", HPL ="HPL", SLX ="SLX", HONAM ="HONAM",
GSIEXPRESS ="GSIEXPRESS", SEBANG="SEBANG", NONGHYUP ="NONGHYUP", CUPARCEL ="CUPARCEL", AIRWAY ="AIRWAY", HOMEPICK ="HOMEPICK",
APEX="APEX", CWAYEXPRESS="CWAYEXPRESS", YONGMA ="YONGMA", EUROPARCEL ="EUROPARCEL", KGSL="KGSL", GOS="GOS" ,GSPOSTBOX="GSPOSTBOX
/**
* Copyright 2018 Google Inc. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
docker pull browserless/chrome
docker run -p 3000:3000 -e "MAX_CONCURRENT_SESSIONS=10"
-e "MAX_QUEUE_LENGTH=0"
-e "PREBOOT_CHROME=true"
-e "TOKEN=MYTOKEN"
-e "ENABLE_DEBUGGER=false"
-e "CONNECTION_TIMEOUT=300000" --restart always browserless/chrome
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
https://developer.mozilla.org/ko/docs/Web/HTTP/Status
http.STATUS_CODES
{ '100': 'Continue',
'101': 'Switching Protocols',
'102': 'Processing',
'200': 'OK',
'201': 'Created',
'202': 'Accepted',
const redis = require("redis")
, subscriber = redis.createClient()
, publisher = redis.createClient();
subscriber.on("message", function(channel, message) {
console.log("Message '" + message + "' on channel '" + channel + "' arrived!")
});
subscriber.subscribe("testchannel");
# Xcode
!**/*.xcodeproj
!**/*.pbxproj
!**/*.xcworkspacedata
!**/*.xcsettings
!**/*.xcscheme
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
package org.apache.spark.examples
import org.apache.spark.SparkContext
import org.apache.spark.SparkContext._
import org.apache.spark.rdd.RDD
import java.util.Random
import scala.collection.mutable
import org.apache.spark.serializer.KryoRegistrator
import com.esotericsoftware.kryo.Kryo