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
{ | |
"headers": { | |
"Access-Control-Allow-Origin": "*", | |
"Access-Control-Allow-Methods": "GET,POST,OPTIONS", | |
"Access-Control-Allow-Headers": "Content-Type, Authorization" | |
}, | |
"data": { | |
"agreeTermType": "AGREE_TERM", | |
"adult": false, | |
"persona": { |
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
alert(document.cookie); | |
console.log('cookie') |
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
[ | |
{ | |
"id": null, | |
"name": null, | |
"username": "Bret", | |
"email": "[email protected]", | |
"address": { | |
"street": "Kulas Light", | |
"suite": "Apt. 556", | |
"city": "Gwenborough", |
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
# Version key/value should be on his own line | |
PACKAGE_VERSION=$(cat package.json \ | |
| grep version \ | |
| head -1 \ | |
| awk -F: '{ print $2 }' \ | |
| sed 's/[",]//g') | |
echo $PACKAGE_VERSION |
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
// ======================= | |
// Derived from the work done by @makenai on the | |
// SumoBot Jr | |
// ======================= | |
var five = require("johnny-five"); | |
var keypress = require('keypress'); | |
var RSTOPVAL = 93; | |
var LSTOPVAL = 90; |
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
class Recipes: | |
""" | |
์ฌ๋ฃ๋ฅผ ํ์ฉํด ์กฐ๋ฆฌ๋ฒ์ ๋ง๊ฒ ์๋ฆฌ๋ฅผ ๋ง๋ค์ | |
""" | |
description = '๋ ์ํผ๋ฅผ ํ์ฉํด ์์์ ๋ง๋ค์' | |
prepare = '์์ ๊นจ๋์ด ์ผ์ด์' | |
display = '์ํ ์ ์์ ๋ด์๊ฒ๋๋ค' | |
def __init__(self, ingredient, food): | |
self.__ingredient = ingredient |
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
class Pokemon: | |
def __init__(self, mon_type, level, name): | |
''' | |
ํฌ์ผ๋ชฌ ์ด๊ธฐํ ํจ์์ ๋๋ค. ๋น์ ์ ํฌ์ผ๋ชฌ์ ๊ธฐ๋ณธ์ ์ธ ์ ๋ณด๋ฅผ ์ค์ ํฉ๋๋ค. | |
:param mon_type: ํฌ์ผ๋ชฌ์ ์์ฑ | |
:param level: ํฌ์ผ๋ชฌ์ ์ฒ์ ๋ ๋ฒจ | |
:param name: ํฌ์ผ๋ชฌ์ ์ด๋ฆ | |
''' | |
self.mon_type = mon_type |