반응형
반응형

Visual Studio Code에서 FTP로 remote(원격)서버 연동하기

 

 

Visual Studio Code를 켜고 좌측 메뉴중 제일 밑에있는 확장버턴을 눌러준다. F1키를 눌러서 검색해도 된다.

검색창에 ftp-simple이라고 검색해본다.

 

설치버튼을 클릭하여 설치를 진행한다.

설치가 완료되면 다시 F1키를 눌러 ftp-simple을 검색한다.

[펌] gangnam-americano.tistory.com/26

반응형
반응형

play.google.com/store/apps/details?id=com.NEWmobiAudit

 

MobiAudit - Google Play 앱

The ultimate app for mystery shopping or market research fieldwork, MobiAudit™ allows scheduling, survey and data collection for mobile devices. Data can be collected online or offline for mystery shopping, client intercept surveys, exit surveys, targete

play.google.com

apps.apple.com/us/app/mobiaudit/id390410157

 

‎MobiAudit

‎The ultimate app for mystery shopping or market research fieldwork, MobiAudit™ allows scheduling, survey and data collection for mobile devices. Data can be collected online or offline for mystery shopping, client intercept surveys, exit surveys, targ

apps.apple.com

미스터리 쇼핑 또는 시장 조사 현장에 대한 궁극적 인 응용 프로그램은, MobiAudit ™ 모바일 장치에 대한 일정, 조사하고 데이터를 수집 할 수 있습니다. 데이터는 온라인 또는 미스터리 쇼핑, 고객 절편 설문 조사, 출구 조사, 타겟 마케팅 조사, 내부 감사, 그리고 연구의 많은 다른 종류의 오프라인 수집 할 수 있습니다.

 

MobiAudit ™는 스마트 폰, 태블릿, 넷북, 노트북 및 기타 휴대용 장치에 배포하고, 또한 고객의 경험이 위조되는 정확한 순간에 피드백을 캡처하는 키오스크 및 기타 고객과의 상호 작용 터미널에 설치 될 수 있습니다.

MobiAudit ™는 그들이 더 큰 영역을 커버하고 쉽고 빠르게 정확한 데이터를 수집 할 수 있도록 오프라인으로 자신의 과제를 완료하려면 미스터리 쇼퍼, 감사, 및 다른 분야 근로자 수 있도록 Shopmetrics 플랫폼과 통합합니다.

 

 

 

 

 

반응형
반응형

 

www.w3schools.com/cssref/css_selectors.asp

 

CSS Selectors Reference

CSS Selector Reference CSS Selectors In CSS, selectors are patterns used to select the element(s) you want to style. Use our CSS Selector Tester to demonstrate the different selectors. Selector Example Example description .class .intro Selects all elements

www.w3schools.com

www.w3schools.com/cssref/trysel.asp

 

Try CSS Selector

Welcome to My Homepage My name is Donald Duck. I live in Duckburg I have many friends: Goofy Mickey Daisy Pluto All my friends are great! But I really like Daisy!! Ciao bella We are all animals! My latest discoveries have led me to believe that we are all

www.w3schools.com

CSS Selectors

In CSS, selectors are patterns used to select the element(s) you want to style.

Use our CSS Selector Tester to demonstrate the different selectors.

SelectorExampleExample description

.class .intro Selects all elements with class="intro"
.class1.class2 .name1.name2 Selects all elements with both name1 and name2 set within its class attribute
.class1 .class2 .name1 .name2 Selects all elements with name2 that is a descendant of an element with name1
#id #firstname Selects the element with id="firstname"
* * Selects all elements
element p Selects all <p> elements
element.class p.intro Selects all <p> elements with class="intro"
element,element div, p Selects all <div> elements and all <p> elements
element element div p Selects all <p> elements inside <div> elements
element>element div > p Selects all <p> elements where the parent is a <div> element
element+element div + p Selects all <p> elements that are placed immediately after <div> elements
element1~element2 p ~ ul Selects every <ul> element that are preceded by a <p> element
[attribute] [target] Selects all elements with a target attribute
[attribute=value] [target=_blank] Selects all elements with target="_blank"
[attribute~=value] [title~=flower] Selects all elements with a title attribute containing the word "flower"
[attribute|=value] [lang|=en] Selects all elements with a lang attribute value starting with "en"
[attribute^=value] a[href^="https"] Selects every <a> element whose href attribute value begins with "https"
[attribute$=value] a[href$=".pdf"] Selects every <a> element whose href attribute value ends with ".pdf"
[attribute*=value] a[href*="w3schools"] Selects every <a> element whose href attribute value contains the substring "w3schools"
:active a:active Selects the active link
::after p::after Insert something after the content of each <p> element
::before p::before Insert something before the content of each <p> element
:checked input:checked Selects every checked <input> element
:default input:default Selects the default <input> element
:disabled input:disabled Selects every disabled <input> element
:empty p:empty Selects every <p> element that has no children (including text nodes)
:enabled input:enabled Selects every enabled <input> element
:first-child p:first-child Selects every <p> element that is the first child of its parent
::first-letter p::first-letter Selects the first letter of every <p> element
::first-line p::first-line Selects the first line of every <p> element
:first-of-type p:first-of-type Selects every <p> element that is the first <p> element of its parent
:focus input:focus Selects the input element which has focus
:hover a:hover Selects links on mouse over
:in-range input:in-range Selects input elements with a value within a specified range
:indeterminate input:indeterminate Selects input elements that are in an indeterminate state
:invalid input:invalid Selects all input elements with an invalid value
:lang(language) p:lang(it) Selects every <p> element with a lang attribute equal to "it" (Italian)
:last-child p:last-child Selects every <p> element that is the last child of its parent
:last-of-type p:last-of-type Selects every <p> element that is the last <p> element of its parent
:link a:link Selects all unvisited links
:not(selector) :not(p) Selects every element that is not a <p> element
:nth-child(n) p:nth-child(2) Selects every <p> element that is the second child of its parent
:nth-last-child(n) p:nth-last-child(2) Selects every <p> element that is the second child of its parent, counting from the last child
:nth-last-of-type(n) p:nth-last-of-type(2) Selects every <p> element that is the second <p> element of its parent, counting from the last child
:nth-of-type(n) p:nth-of-type(2) Selects every <p> element that is the second <p> element of its parent
:only-of-type p:only-of-type Selects every <p> element that is the only <p> element of its parent
:only-child p:only-child Selects every <p> element that is the only child of its parent
:optional input:optional Selects input elements with no "required" attribute
:out-of-range input:out-of-range Selects input elements with a value outside a specified range
::placeholder input::placeholder Selects input elements with the "placeholder" attribute specified
:read-only input:read-only Selects input elements with the "readonly" attribute specified
:read-write input:read-write Selects input elements with the "readonly" attribute NOT specified
:required input:required Selects input elements with the "required" attribute specified
:root :root Selects the document's root element
::selection ::selection Selects the portion of an element that is selected by a user
:target #news:target Selects the current active #news element (clicked on a URL containing that anchor name)
:valid input:valid Selects all input elements with a valid value
:visited a:visited Selects all visited links

 

반응형
반응형

알약 수동 업데이트 

 

www.estsecurity.com/public/security-center/download

 

이스트시큐리티 개인 | 다운로드

전용백신 이름 알약 실행이나 윈도우 부팅을 방해하는 악성코드 OS플랫폼 Windows 관련 보안공지 시스템 후킹을 통해 정상적인 알약의 실행을 방해하거나 윈도우 부팅을 방해, 혹은 알약의 강제 ��

www.estsecurity.com

 

자동안되면 수동으로 다운 받아서 한번씩 검사 하시오 ~

반응형
반응형

집코노미 언택트 박람회·콘서트

4~6일…VR·AR 활용해 실감나는 전시장 구현
70개 업체 100여개 프로젝트 클릭만으로 감상

 

https://www.hankyung.com/realestate/article/2020090266751

 

'버추얼 3D 부동산 박람회' 한경이 국내 최초로 엽니다

'버추얼 3D 부동산 박람회' 한경이 국내 최초로 엽니다, 집코노미 언택트 박람회·콘서트 4~6일…VR·AR 활용해 실감나는 전시장 구현 70개 업체 100여개 프로젝트 클릭만으로 감상

www.hankyung.com

신종 코로나바이러스 감염증(코로나19)이 재확산하면서 전국 주요 전시장이 사실상 문을 닫았습니다. 전시업체들은 패닉에 빠졌고 MICE(기업회의·포상관광·컨벤션·전시) 산업의 붕괴를 우려하는 목소리도 높습니다. 올해로 6회째를 맞는 국내 최대 부동산 종합 박람회인 ‘집코노미 박람회’는 온라인에서 돌파구를 찾기로 했습니다.
한국경제신문사는 4~6일 ‘스마트홈·빌딩·시티’를 주제로 국내 최초의 버추얼 전시회인 ‘집코노미 언택트(비대면) 박람회’를 엽니다. 서울 삼성동 코엑스에서 현장 박람회로 열 예정이었지만 코로나19 확산에 따른 사회적 거리두기에 동참하기 위해 온라인 전시회로 전환했습니다.
이번 행사는 가상공간에서 열리는 국내 첫 버추얼 전시회입니다. 가상현실(VR) 증강현실(AR) 등 첨단 실감형 기술로 박람회 부스를 3차원(3D) 가상공간에서 구현합니다. 코로나19 감염은 물론이고 시·공간 제약에서 자유롭습니다. 현장 부스를 설치하기로 했던 70여 개 건설회사 공공기관 부동산개발업체 분양마케팅업체 건축자재업체가 모두 온라인으로 참가합니다. 이들 업체 100여 개 프로젝트의 동영상, 조감도 등을 휴대폰 터치와 노트북 클릭만으로 살펴볼 수 있습니다. 공식 전시 기간이 끝난 뒤에도 1년간 버추얼 박람회를 운영하며 자료를 업데이트하겠습니다.

 

https://www.youtube.com/watch?v=pK79qORATKw

 

https://www.hankyung.com/realestate/article/2020090264771

 

'3기 신도시 개발' 도시공사, 주차로봇 도입 등 혁신경쟁

'3기 신도시 개발' 도시공사, 주차로봇 도입 등 혁신경쟁, 집코노미 언택트 박람회 테크노밸리·디지털캠프 등 3기 신도시관·홍보관 운영

www.hankyung.com

 

반응형
반응형

집코노미 언택트 박람회 4~6일 개최‥K-VINA 해외부동산 부스 및 강연

 

http://www.wowtv.co.kr/NewsCenter/News/Read?articleId=A202009010305&t=NN

 

집코노미 언택트 박람회 46일 개최KVINA 해외부동산 부스 및 강연

한국경제 ‘집코노미 박람회’(옛 한경 리얼티 엑스포)가 언택트(비대면) 박람회로 열린다. 최근 재확산하고 있는 코로나19에 대한 정부의 방역 강화 방침에 부응하기 위한 조치다. 당초 박람회�

www.wowtv.co.kr

“역대급 해외부동산 투자 기회 오고 있다”
베트남, 캄보디아, 라오스 투자전략 안내

youtu.be/pK79qORATKw

 

한국경제 ‘집코노미 박람회’(옛 한경 리얼티 엑스포)가 언택트(비대면) 박람회로 열린다.
최근 재확산하고 있는 코로나19에 대한 정부의 방역 강화 방침에 부응하기 위한 조치다.
당초 박람회는 이달(9월) 4~6일 서울 삼성동 코엑스에서 개최할 예정이었으나 현장 박람회를 별도로 열지 않기로 한 것이다.
대신 가상 공간에서 부스를 마련하고 가상현실(VR) 증강현실(AR) 등 실감형 기술을 활용한 온라인 전시회(사진)를 선보인다.
온라인 박람회 참가 희망자는 박람회가 시작되는 4일 이후 ‘집코노미 언택트 박람회’ 홈페이지를 통해 접속하면 된다.
온라인 박람회에 접속하면 실제 전시관에 온 것처럼 전시관 입구에서 개별 전시관을 선택해 구경할 수 있다.
부대행사인 ‘아름다운 우리아파트 사진전’과 ‘새만금 사진전’은 링크로 연결된다.
부대 행사로 열리는 ‘집코노미 언택트 콘서트’는 박람회 기간 온라인으로 생중계된다.
유튜브 채널 집코노미TV 등을 통해 전문가들이 하반기 부동산시장 전망과 투자 전략을 알려준다. 집코노미 콘서트는 ‘컨퍼런스 홀’로 입장할 수 있다.
대형 건설사별로 브랜드와 사업 단지를 소개하는 설명회도 준비돼 있다.
박람회 사무국 관계자는 “코로나19 여파로 3D 실감형 박람회라는 새로운 시도를 하게 됐다”며 “가을 부동산 트렌드와 시장 전망을 살펴볼 수 있는 시간이 될 것”이라고 말했다.

 

이런 가운데 해외투자 진출 원스톱 솔루션인 `한경 K-VINA`는 집코노미 콘서트를 통해 `역대급 해외부동산 투자 기회가 오고 있다`는 주제로 해외투자 전략과 유망 프로젝트를 설명한다.
김현수 한경 K-VINA 수석전문위원(건국대 부동산대학원 겸임교수)은 7일 집코노미TV 유튜브 채널 부동산박람회 콘서트 강연을 통해 20년만에 찾아온 놓칠 수 없는 해외부동산 투자 기회 요인을 상세히 설명할 예정이다.
김 위원은 특히 아세안 국가 가운데 상대적으로 코로나19 방역에 성공하고 경제성장을 지속적으로 이뤄내고 있는 베트남과 캄보디아, 라오스 부동산시장에 주목하라고 조언하다.
김 위원은 코로나19 위기로 유동성 위기를 견디지 못하고 시장에 매물로 나온 유망 부동산 소유 해외기업 M&A 및 호텔, 리조트 매물 등에 대해 투자 전략을 안내한다.
또한 베트남, 캄보디아, 라오스 시장에서 1~2억원대 소액으로도 투자가 가능한 유망 프로젝트도 소개할 예정이다.

 

https://www.youtube.com/channel/UCAVdqlngIAxHtwlCA2hjv3A

 

집코노미TV

한국경제신문과 한경닷컴이 함께하는 부동산 채널 집코노미TV입니다.

www.youtube.com

 

반응형

+ Recent posts