본문 바로가기

web116

STS QuickSearch For Eclipse Ctrl + Shift + L Help - Install New Software 진입 Add Url "http://dist.springsource.com/release/TOOLS/update/e4.3/" 3. install "Eclipse QuickSearch" 2020. 12. 20.
Editplus replace lowercase case with uppercase The following works in Edit Plus 3.70. Enter or check the following in the replace dialog. Find what: (\w+)_([[:lower:]]{1})(\w*) Replace with: \1\U\2\E\3 Case sensitive: unchecked Regular expression: checked Support \U \L \E: checked This works fine for the example given. If you have a variable such as has_three_words then running the replace twice will convert the variable to hasThreeWords. 2020. 11. 6.
async await Promise.resolve https://developers.google.com/web/fundamentals/primers/async-functions?hl=ko async function logFetch(url) { try { const response = await fetch(url); console.log(await response.text()); } catch (err) { console.log('fetch failed', err); } }await하는 것은 전부 Promise.resolve()를 통해 전달되므로, 기본 프라미스가 아닌 프라미스를 안전하게 await할 수 있습니다. // wait ms milliseconds function wait(ms) { return new Promise(r => set.. 2020. 7. 20.
Microsoft Remote Desktop(RDC) 한영 전환 안됨 # Microsoft Remote Desktop(RDC) 한영 전환 안됨 - regedit : 례지스트리 편집기 열기 - HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout 경로 이동 - 새로 만들기 -> DWORD(32비트) IgnoreRemoteKeyboardLayout : 값 > 1 - 컴퓨터 재시작 2020. 6. 24.
머터리얼 디자인 웹 ( Material Design Component For Web ) 참고MDC Web on other frameworksThe Simple Approach: Wrapping MDC Web vanilla componentsMaterial Components for the webGetting Started - Quick Start (CDN) https://codepen.io/abhiomkar/pen/gQWarJMDC Auto Initmaterial-components - githubGetting started with Material Design Components for webhttps://codepen.io/abhiomkar/pen/gQWarJhttps://codepen.io/DiEH/pen/BYgzXr0. Material sitematerial.iogithub-mate.. 2020. 3. 8.
simple padding zero ("000" +"1").slice(-4); // 0001 ("000" +"1").slice(-3); // 001 ("000" +"1").slice(-2); // 01 ("000" +"11").slice(-4); // 0011 ("000" +"11").slice(-3); // 011 ("000" +"11").slice(-2); // 11 2020. 2. 27.