Skip to content

Instantly share code, notes, and snippets.

# 키움 REST API 문서
*총 526 페이지*
---
## 페이지 1
키움 REST API 목차
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<div id="page">
<div class="logo"></div>
<ul id="navigation">
<li><a href=""></a></li>
<li><a href=""></a></li>
<li><a href=""></a></li>
<li><a href=""></a></li>
<li><a href=""></a></li>
</ul>
</div>
@yms9654
yms9654 / git_search.rb
Last active August 29, 2015 14:14
git repository 전체에서 키워드 검색
regex = "excel"
puts regex
filetype = "*.java"
grep = " -G'#{regex}'"
command = "git --no-pager log --since='1 month ago' -i#{grep} -- '#{filetype}'"
#puts "command: #{command}"
Dir["*/"].each do |ns|
Dir["#{ns}*/"].each do |prj|
if !prj.include?(".wiki.")
@yms9654
yms9654 / router.js
Created January 29, 2015 00:45
meteor add javascript library2
Router.map( function () {
this.route(‘codeEditor’,{
waitOn: function(){
return [IRLibLoader.load(‘https://some-external.com/javascript.js'), IRLibLoader.load(“smthels.js”)]
}
});
});
@yms9654
yms9654 / main.js
Last active August 29, 2015 14:14
meteor add javascript library
Template.body.rendered = function() {
Meteor.Loader.loadJs("{js_path}");
}