다음 방법으로 터미널에서 편집해보시기 바랍니다.
$ plutil -convert xml1 ~/Library/Preferences/org.youknowone.Gureum.plist
편집기로 파일을 열어 다음 줄 추가:
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset=utf-8 /> | |
<title>source</title> | |
</head> | |
<body> | |
<div id="board"> |
<!doctype html> | |
<html lang="kr"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>문제소스</title> | |
</head> | |
<body> | |
<div id="wrap"></div> |
<div | |
adfit-unit-id="${adfitUnitId}" | |
style="overflow: hidden; width: 100%; height: 100%; flexshrink: 0;" | |
adfit-unit-idx="0" | |
adfit-param-cp="${cpId}_mo_${cpInfo}" | |
adfit-param-channel="harmony" | |
> | |
<div class="swipe_ad"> | |
<div class="wrap_ad"> | |
<div class="inner_ad"> |
다음 방법으로 터미널에서 편집해보시기 바랍니다.
$ plutil -convert xml1 ~/Library/Preferences/org.youknowone.Gureum.plist
편집기로 파일을 열어 다음 줄 추가:
git clone --recurse-submodules git@github... | |
git submodule update --init --recursive | |
git submodule update --recursive --remote | |
git pull --recurse-submodules |
export function b64EncodeUnicode(str) { | |
return btoa(encodeURIComponent(str).replace(/%([0-9A-F]{2})/g, function(match, p1) { | |
return String.fromCharCode(parseInt(p1, 16)) | |
})) | |
} | |
export function b64DecodeUnicode(str) { | |
return decodeURIComponent(Array.prototype.map.call(atob(str), function(c) { | |
return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2) | |
}).join('')) |
import React from 'react'; | |
import PropTypes from 'prop-types'; | |
const ArrowhSvg = ({ size, className }) => ( | |
<svg | |
width={size} | |
height={size} | |
viewBox="0 0 1792 1792" | |
xmlns="http://www.w3.org/2000/svg" | |
aria-hidden="true" |
function Welcome(props) { | |
return <h1>Hello, {props.name}</h1>; | |
} | |
ReactDOM.render( | |
<h1>ss <Welcome name="aji" /> </h1>, | |
document.getElementById('root') | |
); |
const choo = require('choo') | |
const app = choo() | |
app.model({ | |
state: { title: 'Set the title' }, | |
reducers: { | |
update: (action, state) => ({ title: action.value }) | |
} | |
}) |