- μ»΄ν¨ν° μμ€ν
κ°μ 미리 μ ν κ·μ½μΌλ‘ λ¬Έμλ₯Ό νννλ€.
- μ½λλ₯Ό λ°μ μ»΄ν¨ν°λ λ³ν νλ‘κ·Έλ¨μ ν΅ν΄ μ½λμ ν΄λΉνλ λ¬Έμλ₯Ό μμ±νλ€.
- 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
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' |
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
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
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
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
π Morning 125 commits βββββββββββββββββββββ 8.1% | |
π Daytime 535 commits βββββββββββββββββββββ 34.7% | |
π Evening 574 commits βββββββββββββββββββββ 37.2% | |
π Night 309 commits βββββββββββββββββββββ 20.0% |