반응형
반응형

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);
반응형
반응형

jQuery  id like  찾기  

<script>
    //id가 testid로 시작하는 엘리먼트들 접근
    $("[id^='testid']")
    
    //id가 testid로 끝나는 엘리먼트들 접근
    $("[id$='testid']")
</script>
반응형

+ Recent posts