study MacBook과 영어 첫 투고입니다. 첫 게시물에서 프로그램과 관련이 없는 것을 씁니다. 그런데, 기본적인 영어는 기억했지만, Hacker News등에 게재되고 있는 블로그내의 귀찮은 말투나 단어의 의미나 발음을 효율적으로 정보 수집하는 방법이 자신 나름대로 확률되어 좋을 것 같기 때문에 소개합니다. 초학자 전용입니다. 환경: Mac OS X EL Capitan v10.11.2 필요한 것은 Mac뿐입니다. 다른 ... 영어studyHackerNews 자습 환경으로 Raspberry Pi 평상시, 하지 않는 프로그래머로서 어딘가의 회사에 상주해 개발 작업에 근무하고 있습니다. 현재 있는 회사에서는, 인터넷에의 액세스는 가능합니다만, 볼 수 없는 웹사이트, 웹 서비스도 터무니없는 환경입니다. 평일에는 노트북을 가지고 다닐 수도 없기 때문에 Raspberry Pi3에서 공부하고 있습니다. 처음에는 소지의 안드로이드기에 termux라고 하는 터미널 에뮬레이터 어플리를 넣어 보았습니... RaspberryPistudyRaspberrypi3 [HackerRank] Employee Salaries Write a query that prints a list of employee names (i.e.: the name attribute) for employees in Employee having a salary greater than per month who have been employees for less than months. Sort your result by ascending e... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Employee Names Write a query that prints a list of employee names (i.e.: the name attribute) from the Employee table in alphabetical order. Input Format The Employee table containing employee data for a company is described as follows:... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Weather Observation Station 7 Query the list of CITY names ending with vowels (a, e, i, o, u) from STATION. Your result cannot contain duplicates. Input Format The STATION table is described as follows: where LAT_N is the northern latitude and LONG_W... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Higher Than 75 Marks Query the Name of any student in STUDENTS who scored higher than 75 Marks. Order your output by the last three characters of each name. If two or more students both have names ending in the same last three characters (i.... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [2022.04.19] 자바스크립트 this - 생성자 함수와 이벤트리스너에서의 this 18일에 this에 대해 공부하면서 적었던 일반적인 함수나 객체에서의 this가 아닌 오늘은 이벤트리스너와 생성자 함수 안에서의 this를 살펴보기로 했다. new 키워드를 붙여 함수를 생성자로 사용할 때 this는 생성된 그 객체를 가르킨다. 생성자 함수를 정의하고 user1로 아이유를, user2로 은하 인스턴스를 생성하고 출력해보았다. 각 인스턴스별 가르키는 this가 다르다는 것을 확... 생성자함수자바스크립트JavaScript이벤트리스너jsstudy공부thisJavaScript HackerRank] Weather Observation Station 12 Query the list of CITY names from STATION that do not start with vowels and do not end with vowels. Your result cannot contain duplicates. Input Format The STATION table is described as follows: where LAT_N is the northe... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Weather Observation Station 11 Query the list of CITY names from STATION that either do not start with vowels or do not end with vowels. Your result cannot contain duplicates. Input Format The STATION table is described as follows: where LAT_N is the ... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Weather Observation Station 10 Query the list of CITY names from STATION that do not end with vowels. Your result cannot contain duplicates. Input Format The STATION table is described as follows: where LAT_N is the northern latitude and LONG_W is the... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Weather Observation Station 9 Query the list of CITY names from STATION that do not start with vowels. Your result cannot contain duplicates. Input Format The STATION table is described as follows: where LAT_N is the northern latitude and LONG_W is t... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Weather Observation Station 8 Query the list of CITY names from STATION which have vowels (i.e., a, e, i, o, and u) as both their first and last characters. Your result cannot contain duplicates. Input Format The STATION table is described as follows... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Weather Observation Station 6 Query the list of CITY names starting with vowels (i.e., a, e, i, o, or u) from STATION. Your result cannot contain duplicates. Input Format The STATION table is described as follows: where LAT_N is the northern latitude... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Revising Aggregations - The Sum Function Query the total population of all cities in CITY where District is California. Input Format The CITY table is described as follows:... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Revising Aggregations - The Count Function Query a count of the number of cities in CITY having a Population larger than 100,000 Input Format The CITY table is described as follows:... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Occupations Pivot the Occupation column in OCCUPATIONS so that each Name is sorted alphabetically and displayed underneath its corresponding Occupation. The output column headers should be Doctor, Professor, Singer, and Actor, respe... MySQL예제스터디mysqlstudyhackerrankMySQL예제 ☕Java: Exception (1) 예외 클래스, 예외처리 프로그램 실행 시 발생할 수 있는 오류에 대비하는 것으로 프로그램의 비정상종료를 막고 실행 상태를 유지하는 것이다. 예외 (Exception) 예외는 예외처리를 통해서 비정상적인 종류를 예방할 수 있다. 📌 예외 클래스 (UncheckedException / CheckedException) CheckedException은 컴파일러가 실행 전 구현 여부를 체크하고, 구현하지 않았을 시 실행 자... JavastudyJava ☕Java: Exception (2) 사용자정의 예외, 강제 예외발생, 예외의 변환 📌 사용자정의 예외클래스 오류 정보에 필요한 멤버변수를 추가할 수 있다. 애플리케이션에 최적화된 예외를 정의할 수 있다. 애플리케이션에서 발생하는 예외의 종류를 단순화시킬 수 있다. (지정하고자 하는 사용자정의 예외클래스 타입으로 통일시켜 발생시킬 수 있으므로) 예외의 종류를 단순화시킬 수 있기 때문에 최종단계에서 예외에 대한 일괄처리가 단순해진다. 다양한 오류정보를 표현할 수 있다. 오류에... JavastudyJava [HackerRank] Weather Observation Station 1 Query a list of CITY and STATE from the STATION table. The STATION table is described as follows: where LAT_N is the northern latitude and LONG_W is the western longitude.... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Japanese Cities' Names Query the names of all the Japanese cities in the CITY table. The COUNTRYCODE for Japan is JPN. The CITY table is described as follows:... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Japanese Cities' Attributes Query all attributes of every Japanese city in the CITY table. The COUNTRYCODE for Japan is JPN. The CITY table is described as follows:... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Weather Observation Station 5 Query the two cities in STATION with the shortest and longest CITY names, as well as their respective lengths (i.e.: number of characters in the name). If there is more than one smallest or largest city, choose the one t... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Weather Observation Station 4 Find the difference between the total number of CITY entries in the table and the number of distinct CITY entries in the table. The STATION table is described as follows: where LAT_N is the northern latitude and LONG_W i... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Weather Observation Station 3 Query a list of CITY names from STATION for cities that have an even ID number. Print the results in any order, but exclude duplicates from the answer. The STATION table is described as follows: where LAT_N is the northe... MySQL예제스터디mysqlstudyhackerrankMySQL예제 6. 다양한 연관관계 매핑 일대다 연관관계는 항상 다(N)쪽에 외래키가 있으므로, Member.team이 연관관계의 주인이다. 보통 일대다 관계에서 다 쪽에 외래키가 있지만, 여기서는 다 쪽에 외래키를 매핑할 수 있는 참조 필드가 없다. 따라서 일대다 단방향 매핑보다는, 다대일 양방향 매핑을 사용하는 것을 권장한다. 일대다 양방향 매핑은 존재하지 않는데(사실 다대일 양방향이랑 다를게 없기도 하다), 양방향 매핑에서 @... JPASpringstudyJPA [CSS] visibility 속성 특정한 길이 만큼 스크롤이 진행이 되면 스크롤 컨트롤러 버튼이 나타나고 스크롤이 진행되지 않았으면 버튼이 화면에 나타나지 않도록 구현하였다. 처음 사용했던 것은 css의 display 속성을 사용했다. 스크롤이 진행되면 display:block을 해주고 일정 스크롤 이하이면 display:none을 해주는 방식으로 구현을 하였다. 그리고 필자는 이 버튼이 나타나고 사라질 때 마다 opacit... CSSstudyCSS [2022.04.17] Semantic HTML elements (시맨틱한 HTML 태그) 특히 많은 웹 사이트를 둘러보면 컨테이너 역할을 위해 블록 요소인 <div>태그 사용이 빈번한 것을 확인할 수 있다. 의미없는 태그를 대신할 수 있는 시맨틱한 태그들이다. 재사용하여 배포할 수 있는 콘텐츠를 나타낸다. 독립적인 콘텐츠를 표현할 때 사용한다. 페이지 내 주요 컨텐츠를 작성할 때 사용한다. 문서 내에서 다른 페이지 또는 현재 페이지의 링크를 보여줄 때 사용한다. 메뉴, 목차, 색... 시맨틱HTMLhtml태그study공부시맨틱html
MacBook과 영어 첫 투고입니다. 첫 게시물에서 프로그램과 관련이 없는 것을 씁니다. 그런데, 기본적인 영어는 기억했지만, Hacker News등에 게재되고 있는 블로그내의 귀찮은 말투나 단어의 의미나 발음을 효율적으로 정보 수집하는 방법이 자신 나름대로 확률되어 좋을 것 같기 때문에 소개합니다. 초학자 전용입니다. 환경: Mac OS X EL Capitan v10.11.2 필요한 것은 Mac뿐입니다. 다른 ... 영어studyHackerNews 자습 환경으로 Raspberry Pi 평상시, 하지 않는 프로그래머로서 어딘가의 회사에 상주해 개발 작업에 근무하고 있습니다. 현재 있는 회사에서는, 인터넷에의 액세스는 가능합니다만, 볼 수 없는 웹사이트, 웹 서비스도 터무니없는 환경입니다. 평일에는 노트북을 가지고 다닐 수도 없기 때문에 Raspberry Pi3에서 공부하고 있습니다. 처음에는 소지의 안드로이드기에 termux라고 하는 터미널 에뮬레이터 어플리를 넣어 보았습니... RaspberryPistudyRaspberrypi3 [HackerRank] Employee Salaries Write a query that prints a list of employee names (i.e.: the name attribute) for employees in Employee having a salary greater than per month who have been employees for less than months. Sort your result by ascending e... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Employee Names Write a query that prints a list of employee names (i.e.: the name attribute) from the Employee table in alphabetical order. Input Format The Employee table containing employee data for a company is described as follows:... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Weather Observation Station 7 Query the list of CITY names ending with vowels (a, e, i, o, u) from STATION. Your result cannot contain duplicates. Input Format The STATION table is described as follows: where LAT_N is the northern latitude and LONG_W... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Higher Than 75 Marks Query the Name of any student in STUDENTS who scored higher than 75 Marks. Order your output by the last three characters of each name. If two or more students both have names ending in the same last three characters (i.... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [2022.04.19] 자바스크립트 this - 생성자 함수와 이벤트리스너에서의 this 18일에 this에 대해 공부하면서 적었던 일반적인 함수나 객체에서의 this가 아닌 오늘은 이벤트리스너와 생성자 함수 안에서의 this를 살펴보기로 했다. new 키워드를 붙여 함수를 생성자로 사용할 때 this는 생성된 그 객체를 가르킨다. 생성자 함수를 정의하고 user1로 아이유를, user2로 은하 인스턴스를 생성하고 출력해보았다. 각 인스턴스별 가르키는 this가 다르다는 것을 확... 생성자함수자바스크립트JavaScript이벤트리스너jsstudy공부thisJavaScript HackerRank] Weather Observation Station 12 Query the list of CITY names from STATION that do not start with vowels and do not end with vowels. Your result cannot contain duplicates. Input Format The STATION table is described as follows: where LAT_N is the northe... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Weather Observation Station 11 Query the list of CITY names from STATION that either do not start with vowels or do not end with vowels. Your result cannot contain duplicates. Input Format The STATION table is described as follows: where LAT_N is the ... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Weather Observation Station 10 Query the list of CITY names from STATION that do not end with vowels. Your result cannot contain duplicates. Input Format The STATION table is described as follows: where LAT_N is the northern latitude and LONG_W is the... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Weather Observation Station 9 Query the list of CITY names from STATION that do not start with vowels. Your result cannot contain duplicates. Input Format The STATION table is described as follows: where LAT_N is the northern latitude and LONG_W is t... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Weather Observation Station 8 Query the list of CITY names from STATION which have vowels (i.e., a, e, i, o, and u) as both their first and last characters. Your result cannot contain duplicates. Input Format The STATION table is described as follows... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Weather Observation Station 6 Query the list of CITY names starting with vowels (i.e., a, e, i, o, or u) from STATION. Your result cannot contain duplicates. Input Format The STATION table is described as follows: where LAT_N is the northern latitude... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Revising Aggregations - The Sum Function Query the total population of all cities in CITY where District is California. Input Format The CITY table is described as follows:... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Revising Aggregations - The Count Function Query a count of the number of cities in CITY having a Population larger than 100,000 Input Format The CITY table is described as follows:... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Occupations Pivot the Occupation column in OCCUPATIONS so that each Name is sorted alphabetically and displayed underneath its corresponding Occupation. The output column headers should be Doctor, Professor, Singer, and Actor, respe... MySQL예제스터디mysqlstudyhackerrankMySQL예제 ☕Java: Exception (1) 예외 클래스, 예외처리 프로그램 실행 시 발생할 수 있는 오류에 대비하는 것으로 프로그램의 비정상종료를 막고 실행 상태를 유지하는 것이다. 예외 (Exception) 예외는 예외처리를 통해서 비정상적인 종류를 예방할 수 있다. 📌 예외 클래스 (UncheckedException / CheckedException) CheckedException은 컴파일러가 실행 전 구현 여부를 체크하고, 구현하지 않았을 시 실행 자... JavastudyJava ☕Java: Exception (2) 사용자정의 예외, 강제 예외발생, 예외의 변환 📌 사용자정의 예외클래스 오류 정보에 필요한 멤버변수를 추가할 수 있다. 애플리케이션에 최적화된 예외를 정의할 수 있다. 애플리케이션에서 발생하는 예외의 종류를 단순화시킬 수 있다. (지정하고자 하는 사용자정의 예외클래스 타입으로 통일시켜 발생시킬 수 있으므로) 예외의 종류를 단순화시킬 수 있기 때문에 최종단계에서 예외에 대한 일괄처리가 단순해진다. 다양한 오류정보를 표현할 수 있다. 오류에... JavastudyJava [HackerRank] Weather Observation Station 1 Query a list of CITY and STATE from the STATION table. The STATION table is described as follows: where LAT_N is the northern latitude and LONG_W is the western longitude.... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Japanese Cities' Names Query the names of all the Japanese cities in the CITY table. The COUNTRYCODE for Japan is JPN. The CITY table is described as follows:... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Japanese Cities' Attributes Query all attributes of every Japanese city in the CITY table. The COUNTRYCODE for Japan is JPN. The CITY table is described as follows:... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Weather Observation Station 5 Query the two cities in STATION with the shortest and longest CITY names, as well as their respective lengths (i.e.: number of characters in the name). If there is more than one smallest or largest city, choose the one t... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Weather Observation Station 4 Find the difference between the total number of CITY entries in the table and the number of distinct CITY entries in the table. The STATION table is described as follows: where LAT_N is the northern latitude and LONG_W i... MySQL예제스터디mysqlstudyhackerrankMySQL예제 [HackerRank] Weather Observation Station 3 Query a list of CITY names from STATION for cities that have an even ID number. Print the results in any order, but exclude duplicates from the answer. The STATION table is described as follows: where LAT_N is the northe... MySQL예제스터디mysqlstudyhackerrankMySQL예제 6. 다양한 연관관계 매핑 일대다 연관관계는 항상 다(N)쪽에 외래키가 있으므로, Member.team이 연관관계의 주인이다. 보통 일대다 관계에서 다 쪽에 외래키가 있지만, 여기서는 다 쪽에 외래키를 매핑할 수 있는 참조 필드가 없다. 따라서 일대다 단방향 매핑보다는, 다대일 양방향 매핑을 사용하는 것을 권장한다. 일대다 양방향 매핑은 존재하지 않는데(사실 다대일 양방향이랑 다를게 없기도 하다), 양방향 매핑에서 @... JPASpringstudyJPA [CSS] visibility 속성 특정한 길이 만큼 스크롤이 진행이 되면 스크롤 컨트롤러 버튼이 나타나고 스크롤이 진행되지 않았으면 버튼이 화면에 나타나지 않도록 구현하였다. 처음 사용했던 것은 css의 display 속성을 사용했다. 스크롤이 진행되면 display:block을 해주고 일정 스크롤 이하이면 display:none을 해주는 방식으로 구현을 하였다. 그리고 필자는 이 버튼이 나타나고 사라질 때 마다 opacit... CSSstudyCSS [2022.04.17] Semantic HTML elements (시맨틱한 HTML 태그) 특히 많은 웹 사이트를 둘러보면 컨테이너 역할을 위해 블록 요소인 <div>태그 사용이 빈번한 것을 확인할 수 있다. 의미없는 태그를 대신할 수 있는 시맨틱한 태그들이다. 재사용하여 배포할 수 있는 콘텐츠를 나타낸다. 독립적인 콘텐츠를 표현할 때 사용한다. 페이지 내 주요 컨텐츠를 작성할 때 사용한다. 문서 내에서 다른 페이지 또는 현재 페이지의 링크를 보여줄 때 사용한다. 메뉴, 목차, 색... 시맨틱HTMLhtml태그study공부시맨틱html