반응형
반응형

SVN - Previous operation has not finished; run 'cleanup' if it was interrupted 에러일때.

 

clean up 하려면

"Cleanup failed to process the following paths:

Previous operation has not finished; run 'cleanup' if it was interrupted

Please execute the 'Cleanup' command. "  이런 에러 나고. 

 

http://www.sqlite.org/download.html  에서  sqlite 다운로드

sqlite-tools-win32-x86-3360000.zip
(1.82 MiB)

 

CMD 창으로 해당 .svn 폴더있는 곳으로 들어가서

sqlite3 .svn/wc.db "select * from work_queue"

select 되는게 있으면 삭제

sqlite3 .svn/wc.db "delete from work_queue"


//-- 폴더가 lock 되어있으면   

sqlite3 .svn/wc.db "delete from wc_lock"

 

반응형
반응형

SQLlite  download

https://www.sqlite.org/download.html

반응형
반응형

image full screen css - How TO - Full Page Image

 

https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_full_page 

 

Tryit Editor v3.6

body, html { height: 100%; margin: 0; } .bg { /* The image used */ background-image: url("img_girl.jpg"); /* Full height */ height: 100%; /* Center and scale the image nicely */ background-position: center; background-repeat: no-repeat; background-size: co

www.w3schools.com

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body, html {
  height: 100%;
  margin: 0;
}

.bg {
  /* The image used */
  background-image: url("img_girl.jpg");

  /* Full height */
  height: 100%; 

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
</style>
</head>
<body>

<div class="bg"></div>

<p>This example creates a full page background image. Try to resize the browser window to see how it always will cover the full screen (when scrolled to top), and that it scales nicely on all screen sizes.</p>

</body>
</html>

반응형
반응형

The creators of TinyMCE - open source and deployed in just 6 lines of code 

 

WYSIWYG editor 

 

https://www.tiny.cloud/docs/demo/basic-example/

 

TinyMCE | Basic example

This example contains the plugins needed for the most common use cases.

www.tiny.cloud

반응형
반응형

원격 접속 - RDP-Wrapper 포트 변경하기

 

원격테스트탑의 기본 포트는 3389 이다. 

 

window + R  누르고  regedit  입력하고 레지스트리편집기에서 편집. 

 

(컴퓨터\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp\PortNumber) 포트를 8000 번으로 변경. 

 

재부팅!!!

 

윈도우 방화벽에서 인바운드 규칙.  들어가면 원격 데스크탑 있는데 사용안함으로 변경. 

 

"새 규칙" 등록해서 TCP 로 특정 로컬 포트 선택하고  8000 포트를 추가해준다. 

 


RDP Wrapper Configuration에서  

 

Authentication Mode는   Default RDP Authentication 으로 선택되어 있어야 합니다. 

반응형
반응형

Node.js | split() function

function splitStr(str) {
     
    // Function to split string
    var string = str.split("*");
     
    console.log(string);
}
 
// Initialize string
var str = "Welcome*to*GeeksforGeeks";
 
// Function call
splitStr(str);
반응형

+ Recent posts