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
<a href="http://www.freepik.com">Designed by Freepik</a> | |
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
// paragraph 내부의 연속 줄바꿈을 지원하도록!! | |
var block = { | |
newline: /^\n+/, | |
code: /^( {4}[^\n]+\n*)+/, | |
fences: noop, | |
hr: /^( *[-*_]){3,} *(?:\n+|$)/, | |
heading: /^ *(#{1,6}) *([^\n]+?) *#* *(?:\n+|$)/, | |
nptable: noop, | |
lheading: /^([^\n]+)\n *(=|-){2,} *(?:\n+|$)/, |
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
window.fbAsyncInit = function() { | |
FB.init({ | |
appId : 'YOUR APP ID', | |
xfbml : true, | |
version : 'v2.4' | |
}); | |
FB.Event.subscribe('comment.create', function(response){ | |
// 여기에 코드 추가 | |
console.log(response); |
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
<script type="text/javascript" src="//connect.facebook.net/ko_KR/all.js"></script> | |
<script type="text/javascript"> | |
window.fbAsyncInit = function() { | |
FB.init({ | |
appId : 'YOUR APP ID', | |
xfbml : true, | |
version : 'v2.4' | |
}); |
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
<script type="text/javascript"> | |
window.fbAsyncInit = function() { | |
FB.init({ | |
appId : 'YOUR APP ID', | |
xfbml : true, | |
version : 'v2.4' | |
}); | |
}; | |
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
<!-- 기본 --> | |
<div id="fb-root"></div> | |
<!-- '좋아요' --> | |
<div class="fb-like" | |
data-href="http://www.your-domain.com/your-page.html" | |
data-layout="standard" | |
data-action="like" | |
data-share="true" | |
data-show-faces="true"> |
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
// internal.js 라인 208 라인 부근 | |
parser.onPartEnd = function() { | |
if (stream !== null) { | |
stream.end(); | |
stream = null; | |
} | |
if (req.buffer_exceeded) |
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
// 원본 - https://github.com/hayageek/jquery-upload-file/ | |
/*! | |
* jQuery Upload File Plugin | |
* version: 4.0.2 | |
* @requires jQuery v1.5 or later & form plugin | |
* Copyright (c) 2013 Ravishanker Kusuma | |
* http://hayageek.com/ | |
*/ |
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
Framework.prototype.compileContent = function(extension, content, filename) { | |
var self = this; | |
// 수정전 | |
// if (filename && (filename.indexOf('.min.') !== -1 || filename.indexOf('-min.') !== -1 )) | |
// 수정후 | |
if (filename && (filename.indexOf('.min.') !== -1 || filename.indexOf('-min.') !== -1 || filename.indexOf('js-min') !== -1 )) | |
return content; |
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
cd /tmp | |
#------------------------------------------------------------------------ | |
# OPENSSL | |
wget http://www.openssl.org/source/openssl-1.0.1i.tar.gz | |
tar zxvf openssl-1.0.1i.tar.gz | |
cd openssl-1.0.1i/ | |
./config --prefix=/usr/local/openssl --openssldir=/usr/local/openssl | |
make; make install |
NewerOlder