목록Web DEV (35)
ssouf

Git 을 사용하니 이런저런 문제가 발생하였다. 같은 파일을 여러사람이 수정하는경우 .. 브랜치를 확인하고 병합하는 단계가 정말 미치게한다. TFS 같은경우... A개발자가 수정한 한다고 체크아웃을 하면 해당파일을 B라는 개발자가 A개발자가 체크인까지 수정하지 못한다. 잘은 모르겠지만 여러사람이 작업하는경우 이게 더 편해보인다 github.com/Microsoft/team-explorer-everywhere/releases Releases · microsoft/team-explorer-everywhere Team Explorer Everywhere Plugin for Eclipse. Contribute to microsoft/team-explorer-everywhere development by crea..
www.nicesnippets.com/blog/php-dynamic-drag-and-drop-table-rows-using-jquery-ajax-with-mysql Dynamic Drag and Drop table rows Sort PHP - Dynamic Drag and Drop table rows using JQuery Ajax with MySQL sorting table row using jquery drag drop with ajax php mysql, drag drop table rows jquery php example, drag and drop table jquery php, php drag and drop table rows, jquery drag and drop table save to ..
1 . 트리메뉴 www.jstree.com jstree jsTree is jquery plugin, that provides interactive trees. It is absolutely free, open source and distributed under the MIT license. jsTree is easily extendable, themable and configurable, it supports HTML & JSON data sources and AJAX loading. www.jstree.com 2. Fancytree Demo : wwwendt.de/tech/fancytree/demo/ github.com/mar10/fancytree mar10/fancytree JavaScript tre..
var idleTime = 0; $(document).ready(function () { //Increment the idle time counter every minute. var idleInterval = setInterval(timerIncrement, 60000); // 1 minute //일정시간 움직임이 있으면 초기화 $(this).mousemove(function (e) { idleTime = 0; }); $(this).keypress(function (e) { idleTime = 0; }); }); } } function timerIncrement() { idleTime = idleTime + 1; if (idleTime > 19) { // 20 minutes //새로고침 하거나 로그아웃 ..
호스팅 서비스 이용중... An error occurred. Sorry, the page you are looking for is currently unavailable. Please try again later. If you are the system administrator of this resource then you should check theerror log for details. Faithfully yours, nginx. 문제!!! 헉~~ 아무것도 안했는데 $autoload['libraries'] = array('database','session'); autoload.php 에 라이브러리에 session 만 넣었을뿐이다 해결!!! config.php $config['sess_save_pat..