반응형
반응형

네이버 클라우드 구인 중

https://recruit.navercorp.com/naver/job/detail/developer/?annoId=20004739&classId=&jobId=

youtu.be/YjuDIOk56FE

 

NAVER Career 모집소식

더 가치있고 새로운 미래를 열어갈 NAVER의 발걸음에, 지금 당신을 초대합니다. [2020 네이버 경력개발자 공개채용]

recruit.navercorp.com

 

youtu.be/PuFS-SBtV3w

 

반응형
반응형

"컨텐츠(contents)" or "컨텐트(content)"?

 

정보화, IT산업, 인터넷과 같은 용어에 못지 않게 최근 몇년 동안 국내의 각종 언론 매체에서 오르내리는 용어가 있다면 바로 "컨텐츠"가 아닐까.

"컨텐츠" 또는 "콘텐츠"는 "content"라는 영어단어에 "s"를 붙인 "contents"의 한글식 표기이다. 그런데 "인터넷 컨텐츠(Internet contents)" 또는 "콘텐츠 프로바이더(contents provider)"와 같이 쓰는 것이 바른 표현인지를 의심해 본 사람은 얼마나 될까.

다음은 영어교육 전문사이트 커런트잉글리쉬(CurrentEnglish.com)의 ELT전문가인 권희섭씨가 전국적으로 잘 못 쓰이고 있는 영어표현 "컨텐츠"을 지적한 사항의 원용문이다.

"contents"와 "content"의 차이는 무엇일까. 이것은 원래 라틴어의 '담는다'는 뜻에서 발전된 것이라 의미는 쉽다. 명사로서 웹사이트의 '내용'을 말하는 content는 '단수형'인 content여야 한다.

contents는 '어떤 물건 안에 들어 있는 것'을 말할 때 쓰는데, 그러나 content는 의미가 아주 다르다. 섞어쓰면 안 된다.

contents는 그런 '(물리적) 내용물'을 말하고 그로부터 table of
contents가 나와서 그냥 contents로만 써도 '차례, 목록'이라는 의미가 있는 것이다. table of contents에 있는 contents는 절대 '추상적인 내용물'이라는 뜻이 아니다.

내용 목록은 table에 있는데 이게 다시 줄어들면서 contents가 '목록'이란 뜻을 가진 것 뿐이다. 웹사이트에서 검색을 해서 contents를 보고 들어가면 '내용'이 아니라 '목록'이 나온다.

그러나 content는 어떤 (책, 웹사이트 등의) 정보 매개물이 있으면 그 안에 담긴 '추상적인 내용물'을 뜻한다. 그래서 content provider라고 하는 게 옳고 아직까지 한 웹사이트의 내용을 contents라고 부르는 용법은 발달되지 않았다.

실제로도 웹에서 찾아보았더니 content가 contents보다 훨씬 많은데 인터넷이나 웹사이트의 '제공정보'를 뜻하는 것은 content이다.
contents로 쓰인 것은 하나같이 '목록, (물리적) 내용물' 이거나 아니면 이 차이를 모르는 사람이 content를 잘못 쓴 것 뿐이다.


지금이라도 유념해서 몇몇 외국 잡지들을 살펴보면 "Internet contents"라고 쓰지 않고 "Internet content"라고 쓴다는 것을 금방 쉽게 알 수 있을 것이다.

영어가 우리나라 말이 아닌 이상, 그 말을 그대로 도입하여 쓸 때는 영미등 종주국에서 쓰고 있는 실례를 신중히 검토하며 사용하는 것이 옳지 않은가. 세계 어떤 영어 사용국에서도 인정해주지 않을 "인터넷 컨텐츠/콘텐츠(Internet contents)"가 거의 무 비판적으로 쓰여지고 있는 무뇌아적 사회, 그 현실이 안타깝다.

그리고 그것의 유포에 소위 "옳바른 언어생활을 선도한다"고 자청하는 언론 매체들이 앞장서고 있다는 사실이 놀라움을 금치 못하게 할 따름이다. 우리 나라는 집단적으로 뭔가 잘못된 것이 아닌가?

반응형
반응형

텍스트로 요소 찾기

 

jQuery: find element by text

Can anyone tell me if it's possible to find an element based on its content rather than by an id or class? I am attempting to find elements that don't have distinct classes or id's. (Then I then n...

stackoverflow.com

ID  클래스가 아닌 내용을 기반으로 요소를 찾을 수 있는지 누구든지 말할 수 있습니까 ?

고유 한 클래스 나 ID가없는 요소를 찾으려고합니다. (그런 다음 해당 요소의 부모를 찾아야합니다.)

 

Therefore it is not enough that you use :contains() selector, you also need to check if the text you search for is the direct content of the element you are targeting for, something like that:

따라서 :contains() selector 를 사용하는 것으로는 충분하지 않습니다. 검색하는 텍스트 가 대상 요소  직접 콘텐츠 인지 확인해야 합니다.

 

 

 Element에 포함된 텍스트(Text)로 객체를 찾아라!

function findElementByText(text) {
    var jSpot = $("b:contains(" + text + ")")
                .filter(function() { return $(this).children().length === 0;})
                .parent();  // because you asked the parent of that element

    return jSpot;
}

 * 아래 DIV   p-1 class 중에 텍스트가 3인 것을 찾아라. 

<div class="" id="pagenation" style="white-space: nowrap; overflow-x: hidden; width: 231px;">
<div class="p-1 paging-item border rounded text-center d-inline-block position-relative" style="width:33px;height:33px;">1</div>
<div class="p-1 paging-item border rounded text-center d-inline-block position-relative" style="width:33px;height:33px;">2</div>
<div class="p-1 paging-item border rounded text-center d-inline-block position-relative  style="width:33px;height:33px;">3</div>
<div class="p-1 paging-item border rounded text-center d-inline-block position-relative" style="width:33px;height:33px;">4</div>
<div class="p-1 paging-item border rounded text-center d-inline-block position-relative" style="width:33px;height:33px;">5</div><div class="p-1 paging-item border rounded text-center d-inline-block position-relative" style="width:33px;height:33px;">6</div><div class="p-1 paging-item border rounded text-center d-inline-block position-relative" style="width:33px;height:33px;">7</div>
</div>


$(".p-1:contains('3')")
반응형
반응형

Node.js 웹서버로 만들기   http://localhost:3000

 

var http = require('http');
var fs = require('fs');
var app = http.createServer(function(request,response){
    var url = request.url;
    if(request.url == '/'){
      url = '/index.html';
    }
    if(request.url == '/favicon.ico'){
      //return response.writeHead(404);
      response.writeHead(404);
      response.end();
      return;
    }
    response.writeHead(200);
    console.log(__dirname + url);
    response.end(fs.readFileSync(__dirname + url));

});
app.listen(3000);

 

https://youtu.be/VGZTn1diz_I

 

opentutorials.org/course/3332/21032

 

Node.js - 웹서버 만들기 - 생활코딩

수업소개 Node.js는 웹서버 기능을 가지고 있습니다. 이런 특성을 이용해서 컨텐츠를 프로그래밍적으로 생산할 수 있게 됩니다. 여기서는 Node.js를 웹서버로 구동하는 방법을 살펴보겠습니다.  강

opentutorials.org

소스 : github.com/web-n/web1_html_internet

 

web-n/web1_html_internet

Contribute to web-n/web1_html_internet development by creating an account on GitHub.

github.com

 

반응형
반응형

nodejs.org/ko/들어가서 다운로드 후 설치.

 

설치 후 CMD 뛰워서 아래와 같이 버전 및 실행 테스트. 

 

C:\Users\HWKim>node -v
v14.15.1

C:\Users\HWKim>node
Welcome to Node.js v14.15.1.
Type ".help" for more information.
> console.log(1+1)
2
undefined
> console.log(1+1);
2
undefined
>
(To exit, press Ctrl+C again or Ctrl+D or type .exit)
>

C:\Users\HWKim>

강의 리스트 : opentutorials.org/course/3332

 

WEB2 - Node.js - 생활코딩

수업소개 이 수업은 JavaScript를 이용해서 Node.js를 제어해 동적으로 HTML 코드를 생성하는 웹애플리케이션을 만드는 방법에 대한 수업입니다.  수업대상 예를들어 1억개의 페이지로 이루어진 웹사

opentutorials.org

유튜브 재생목록 : www.youtube.com/playlist?list=PLuHgQVnccGMA9QQX5wqj6ThK7t2tsGxjm

 

WEB2 - Node.js

 

www.youtube.com

 

반응형
반응형

TCP SCHOOL 소개

www.tcpschool.com/

 

코딩교육 티씨피스쿨

4차산업혁명, 코딩교육, 소프트웨어교육, 코딩기초, SW코딩, 기초코딩부터 자바 파이썬 등

tcpschool.com

 

반응형

+ Recent posts