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
// ==UserScript== | |
// @name designmode-on | |
// @namespace http://127.0.0.1 | |
// @description User Script for designmode-on | |
// @author Heesang Chae | |
// @include * | |
// @require https://cdn.jsdelivr.net/gh/theand/userscript-util@latest/exec.js | |
// @version 2018.01.09 | |
// @grant none | |
// ==/UserScript== |
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
-server | |
-ea | |
-Xmx3072m | |
-Xms1536m | |
-XX:+UseG1GC | |
-XX:-UseParNewGC | |
-XX:-UseConcMarkSweepGC | |
-XX:ReservedCodeCacheSize=240m | |
-XX:+OmitStackTraceInFastThrow | |
-Dsun.io.useCanonCaches=false |
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
## 사용법 : til 디렉토리에서 python build.py 를 실행하면 index.md 파일을 생성합니다. | |
## index.md에는 .md 확장자를 가진 파일들의 목록이 디렉토리별로 들어갑니다. | |
from __future__ import unicode_literals | |
from __future__ import print_function | |
import os |
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
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use File::Fetch; | |
my $url = $ARGV[0]; | |
print "downloading $url\n"; |
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
var array1 = [-1, 3, -1, 5]; | |
var array2 = [-5, -3, -1]; | |
var array3 = [2, 4, -2, -3, 8]; | |
const map1 = array3.map( (e,i,a) => { | |
return a.slice(i).reduce( (a, b) => a+b, 0); | |
}); | |
console.log(Math.max(...map1)); |
- http://blog.gaerae.com/2017/12/gaeraecom-2017.html
- http://dizy64.github.io/life/2017/12/20/retrospection-for-2017.html
- http://minieetea.com/2017/12/archives/5232
- http://nirvana-wiki.appspot.com/2017_%EB%8F%85%EC%84%9C_%ED%9A%8C%EA%B3%A0
- http://ohyecloudy.com/pnotes/archives/retrospection-2017-blogging/
- http://ohyecloudy.com/pnotes/archives/retrospection-2017/
- http://phillyai.github.io/2017-12-25-Look-Back-At-2017/
- http://raccoonyy.github.io/2017-retrospective/
- http://utilforever.github.io/2017/12/30/2017-retrospect/
- http://www.haruair.com/blog/4087
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
// ==UserScript== | |
// @name javadocs-refiner | |
// @namespace http://127.0.0.1 | |
// @description User Script for javadocs - link style, code highlight (docs.spring.io, docs.oracle.com) | |
// @author Heesang Chae | |
// @include /https?://docs.spring.io/ | |
// @include /https?://docs.oracle.com/ | |
// @include /https?://openjdk.java.net/jeps/ | |
// @exclude /https?://docs.spring.io/spring-framework/docs/5/ | |
// @exclude /https?://docs.spring.io/.*/site/xref/ |
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
from email.mime.text import MIMEText | |
def CreateMessage(sender, to, subject, message_text): | |
"""Create a message for an email. | |
Args: | |
sender: Email address of the sender. | |
to: Email address of the receiver. | |
subject: The subject of the email message. |
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
// ==UserScript== | |
// @name docs.spring.io code highlight | |
// @namespace http://127.0.0.1 | |
// @description User Script for docs.spring.io code highlight | |
// @author Heesang Chae | |
// @include http://docs.spring.io/* | |
// @require https://cdn.jsdelivr.net/prism/1.6.0/prism.js | |
// @require https://cdn.jsdelivr.net/prism/1.6.0/components/prism-java.min.js | |
// @require https://cdn.jsdelivr.net/gh/mathiasbynens/[email protected]/he.js | |
// @version 2017.07.18 |
NewerOlder