하버드 음식 피라미드
Posted on 2017. 8. 23. 22:34
Filed Under 잡다구리/정보
[C#] 실전요약
Posted on 2017. 8. 5. 15:04
Filed Under C#
Compile: Shift+Ctrl+B (Section 3, Lecture 17 - Demo: Variables and Constants) Run : Ctrl+F5 Line Delete: Ctrl+X TooltipHelp: Alt+Enter code snippet: cw +Tab -> Console.WriteLine datatype에 마우스 오버 + [Ctrl+Click] : Object Browser
기본 데이터 타입: 닷넷타입 byte, short, integer, long / float, double / char / bool :
[디버깅환경] IE,인터넷익스플로러에서 디버깅불가..Exception in window.onload
Posted on 2017. 7. 9. 20:48
Filed Under Web Programming/개발환경
IE콘솔에러 : Exception in window.onload: Error: An error has occurredJSPlugin.3005
[출처] IE콘솔에러 : Exception in window.onload: Error: An error has occurredJSPlugin.3005|작성자 morning glory
▶ KB3008923 설치
참고: IE콘솔에러 : Exception in window.onload: Error: An error has occurredJSPlugin.3005
위 KB3008923 설치후,
IE11버전에서 Modal창이 정상적으로 작동하지 않는 등 발생하면
▶ KB3025390 설치.
참고: [windows] KB3008923 업데이트 이후 IE11에서 에러증상
MCPTT(Mission Critical Push To Talk) 서비스
Posted on 2017. 5. 31. 14:37
Filed Under 잡다구리/용어
미션 크리티컬 푸시투토크, Mission Critical Push To Talk, MCPTT
공공 안전을 위한 엘티이(LTE) 이동통신망 기반의 푸시투토크(PTT) 서비스.
MCPTT는 공공 안전을 위해 특화된 기능을 제공한다.
주요 기능으로 단말기 간 개별, 그룹 및 비상통화, 원격에 있는 특정 사용자 단말의 주변 소리를 임의로 청취,
긴급 상황 시 운영센터에서 강제적으로 통화를 재발신하는 기능 등이 있다.
2016년 3GPP 릴리즈 13에 처음으로 포함되어 표준화되었다.
[출처]
[신기술동향] 미션 크리티컬 푸시투토크, Mission Critical Push To Talk, MCPTT|
원본: Mission Critical Push To Talk and EPS bearers | January 24, 2016
♣ 약어
UE(User Equipment)
IMEI(International Mobile Equipment Identity): WCDMA(우리가 말하는 3G) 휴대폰에 내장되어 있는 15자리 숫자로 된 번호이며 단말기 고유 일련번호이다. 이 번호는 단말기의 제조사, 모델 등의 정보를 포함하고 있다.
[PostgreSQL] 요약 정리
Posted on 2017. 5. 30. 15:32
Filed Under DB
읽는법: 포스트그레스큐엘, PostgreSQL
pgAdmin III에서 데이타베이스에 접속이 안된다.
원인은 관련 서비스가 시작이 안된건데 UI에서 에러메시지를 안보여줄때
-- 서비스 시작 에러 확인법
cmd> pg_ctl start -D "data경로"
--에러:)
password authentication failed for user 'user01'
--처리:) postgre (admin)로 접속해서 user01 암호 변경
alter user user01 password '1234';
commit;
-- (17/07/04) 에러:) 다른db의 테이블을 SELECT할때 다음 에러 발생
error: permission denied for relation 테이블명
state: 42501
--처리:) 해당Table에 팝업메뉴: Properties > Privileges(영사전;특권,특혜) 탭 - 접근하려는 id에 대해 또는 public으로 권한 추가
>-- 메타데이터 테이블
-- Catalogs > ANSI 아래에 테이블 존재
SELECT * FROM information_schema.tables;
SELECT * FROM information_schema.columns;
-- list of user
select * from pg_shadow;
-- add user
create user user1 password 'pwd';
-- ALTER
http://bloodguy.tistory.com/240
[기본 정보]
현재 PostgreSQL 사용 Port : SELECT inet_server_port();
현재 Database : SELECT current_database();
현재 접속 User : SELECT current_user;
현재 Server IP : SELECT inet_server_addr();
현재 PostgreSQL version : SELECT version();
현재 PostgreSQL 시간 : SELECT current_time;
현재 PostgreSQL 의 UPTIME : SELECT date_trunc('second', current_timestamp - pg_postmaster_start_time()) as uptime;
현재 PostgreSQL 의 시작시간 : SELECT pg_postmaster_start_time();
현재 PostgreSQL 의 UPTIME 상세 : SELECT current_timestamp - pg_postmaster_start_time();
현재 PostgreSQL 에 존재하는 Database : SELECT datname FROM pg_database;
--출처: http://splee75.tistory.com/62 [Study Log]
-- string to timestamp without time zone
SELECT to_timestamp('2017-12-31 23:59:59','YYYY-MM-DD HH24:MI:SS')::timestamp without time zone;
-- timestamp to string
SELECT TO_CHAR(CURRENT_TIMESTAMP, 'YYYY-MM-DD HH24:MI:SS')