반응형

이전에 소개한 마우스 제스쳐 프로그램인 StrokeIt, 그리고 High Sign에 이어


또다른 프로그램인 Strokes Plus를 소개 합니다.


다운로드는 여기 에서 할 수 있습니다.


완전 무료 프로그램이며 High sign의 경우 .Net framework를 사용하는 것 같은데


Windows 7인 제 PC 에서 가끔 죽는 현상이 있었습니다.


이 프로그램은 native code만 사용하고 있고 Lua script 엔진이 내장 되어 있다고 하네요.


strokesplus_2.6.3_x86.zip



반응형
반응형

각종 소스코드를 보기 좋게 들여쓰기 해서 가독성을 높혀주는 툴 입니다.


오픈소스 이며, 사이트는 여기 입니다. 최신 버전은 사이트에서 받으세요.


다음 소스는 한줄로 되어 보기가 매우 힘듭니다.


_mf_tag = { "init": function() { var id = 'mf_div'; var div = this.create_element(document, ['div', 'id', id]); if(div) { div.style.display = "none"; var body = document.getElementsByTagName('body')[0].firstChild; if(body) body.parentNode.insertBefore(div, body); var iframe = '<' + 'iframe src="' + window.location.protocol + '//tags.mediaforge.com/pix/1180?type=pos" width="0" height="0">'; this.inner_html(id, iframe); this.set_timeout(3000); } }, "create_element": function(doc, def, parent) { var el = null; if(typeof doc.createElementNS != "undefined") el = doc.createElementNS('http://www.w3.org/1999/xhtml', def[0]); else if(typeof doc.createElement != "undefined") el = doc.createElement(def[0]); if(!el) return false; for(var i = 1; i < def.length; i++) el.setAttribute(def[i++], def[i]); if(parent) parent.appendChild(el); return el; }, "set_timeout": function(t) { this.timeout = setTimeout('timeout_mf()', t ? t : 3000); }, "inner_html": function(id, html) { document.getElementById(id).innerHTML = html; } }; function timeout_mf() { var t = _mf_tag.timeout; if(t) _mf_tag.inner_html('mf_div', ''); } _mf_tag.init();


이를 UniversalIndentGUI 에서 돌리면 다음과 같이 보기 좋게 됩니다.



반응형

+ Recent posts