본문 바로가기

반응형

IT/ETC

(70)
HLS vs DASH HLS - stable media format, it has been out for more than ten years. - suuports its own DRM only DASH - can deliver low latency - uses templated manifest that can be cached - DASH supports range of encryption solutions
Sites to view later https://coding-factory.tistory.com/411 [Oracle] 오라클 테이블 스페이스 사용법(조회, 생성, 삭제)등 총정리 오라클 테이블 스페이스(Table Space)란 무엇인가? 오라클은 데이터를 관리하는 데이터베이스입니다. 데이터를 어딘가에 저장해놓고 사용하는 시스템이라고 볼 수 있습니다. 그리고 데이터 저장 단위 중 가장 상위.. coding-factory.tistory.com https://m.blog.naver.com/wiseyoun07/220275811188 [Oracle]오라클 잡 스케줄러 생성 DBMS_JOB이란 오라클에서 주기적으로 수행되는 백업작업이나, 쿼리나 프로시져등의 JOB을 시간단... blog.naver.com https://m.blog.naver.co..
Media files note 1 CDN - a content delivery network is a system of geographically distributed servers used to transport media files. The purpose of the CDN is to host live streaming videos to users. CDN works like amazon warehouse. If closest edge server does have resource cached, it will deliver it to the user. If not, it will deliver the media by requesting to another network. (Think of it like globally connecte..
Debugging syntax errors that prevent a program from running runtime errors when code fails to execute or has unexpected behavior semantic (or logical) errors when code doesn't do what it's meant to.
Android Studio notes1(02/13/20 cudo notes) appname/main/java - holds java files appname/main/res/layout - screen layout xmls appname/main/res/values - style xmls Create another screen - New -> Activity -> empty activity Add xmlns:tools="http://schemas.android.com/tools" tools:context=".CheatActivity"> How to start another activity startActivity(intent); Intent는 컴포넌트가 운영체제와 통신하기 위해 사용할 수 있는 객체다. Intent i = new Intent(QuizActivity.this, Ch..
REGEX ExpressionDescription [abc] Find any character between the brackets [^abc] Find any character NOT between the brackets [0-9] Find any character between the brackets (any digit) [^0-9] Find any character NOT between the brackets (any non-digit) (x|y) Find any of the alternatives specified [ㄱ-ㅎㅏ-ㅣ가-힣] = 한글 포함 + = at least one * = zero or more var str = "Hellooo World! Hello W3Schools!"; var patt1 ..
FCM notification send https://medium.com/techsuzu/android-push-notification-using-fcm-firebase-cloud-messaging-c37d165b8320 Android Push notification using FCM (Firebase Cloud Messaging) What is FCM (Firebase Cloud Messaging) ? medium.com Start : https://firebase.google.com/?authuser=0 add the following : classpath 'com.google.gms:google-services:4.0.1' apply plugin: 'com.google.gms.google-services' implementation 'c..
Regular Expressions Regular expressions are used in programming languages to match parts of strings. You create patterns to help you do that matching. QuantifierDescription n+ Matches any string that contains at least one n n* Matches any string that contains zero or more occurrences of n n? Matches any string that contains zero or one occurrences of n n{X} Matches any string that contains a sequence of X n's n{X,Y..

반응형