- ์ปดํจํฐ ์์คํ
๊ฐ์ ๋ฏธ๋ฆฌ ์ ํ ๊ท์ฝ์ผ๋ก ๋ฌธ์๋ฅผ ํํํ๋ค.
- ์ฝ๋๋ฅผ ๋ฐ์ ์ปดํจํฐ๋ ๋ณํ ํ๋ก๊ทธ๋จ์ ํตํด ์ฝ๋์ ํด๋นํ๋ ๋ฌธ์๋ฅผ ์์ฑํ๋ค.
- ASCII : American Standard Code for Information Interchange / ์ ๋ณด๊ตํ์ ์ํ ๋ฏธ๊ตญ ํ์ค์ฝ๋
- ๋ฌธ์๋ฅผ 7๋นํธ๋ก ํํ - 2^7 : 128 ๊ฐ์ ๋ฌธ์๋ฅผ ํํํ ์ ์๋ค.
- Extended ASCII : 8๋นํธ๋ฅผ ์ฌ์ฉํ๋ ์ฝ๋ ์ฒด๊ณ
- ์ ๋์ฝ๋(Unicode)
- ํ ๋ฌธ์๋ฅผ 16๋นํธ๋ก ํํํจ, ์์คํค์ฝ๋๋ฅผ ํฌํจ
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
๐ Morning 125 commits โโโโโโโโโโโโโโโโโโโโโ 8.1% | |
๐ Daytime 535 commits โโโโโโโโโโโโโโโโโโโโโ 34.7% | |
๐ Evening 574 commits โโโโโโโโโโโโโโโโโโโโโ 37.2% | |
๐ Night 309 commits โโโโโโโโโโโโโโโโโโโโโ 20.0% |
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
let hello = "hi" |
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
from IPython.display import clear_output, Image, display, HTML | |
import numpy as np | |
def strip_consts(graph_def, max_const_size=32): | |
"""Strip large constant values from graph_def.""" | |
strip_def = tf.GraphDef() | |
for n0 in graph_def.node: | |
n = strip_def.node.add() | |
n.MergeFrom(n0) | |
if n.op == 'Const': |
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
package sungjunyoung.github.io; | |
import org.apache.beam.sdk.Pipeline; | |
import org.apache.beam.sdk.coders.TextualIntegerCoder; | |
import org.apache.beam.sdk.io.TextIO; | |
import org.apache.beam.sdk.options.PipelineOptions; | |
import org.apache.beam.sdk.options.PipelineOptionsFactory; | |
import org.apache.beam.sdk.transforms.Create; | |
import org.apache.beam.sdk.transforms.DoFn; | |
import org.apache.beam.sdk.transforms.ParDo; |
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
exports.handler = (event, context, callback) => { | |
// TODO implement | |
var returnObj = { | |
type : "buttons", | |
"buttons": ["Very","Sorry","Line"] | |
} | |
callback(null, returnObj); | |
return; |
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
var errorResponse = function (statusCode, errorCode, detailMessage) { | |
var messageMap = { | |
400: 'Bad Request', | |
401: 'Unauthonized', | |
403: 'Forbidden', | |
404: 'Not Found', | |
405: 'Method Not Allowd', | |
406: 'Not Acceptable', | |
409: 'Conflict', | |
500: 'Internal Server Error' |