본문 바로가기

반응형

IT

(137)
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..
es6 var while can be called multiple times, let acts like variable from java, can be called only once if it is declared globally. var acts as global variable all the time while let functions only in the declared block. const is final from java. arrow syntax function is lamba from java. javascript allows for default value
JSON APIs and Ajax document.addEventListener('DOMContentLoaded', function(){ // Add your code below this line // Add your code above this line }); document.getElementsByClassName('')[0].textContent = 'dd'; json apis are sent in bytes, application receives it as string. in order to use it in javascript, it needs to be converted into javascript object. JSON.parse does that for us. document.addEventListener('DOMConte..
Basic Javascript JavaScript provides seven different data types which are undefined, null, boolean, string, symbol, number, and object. When JavaScript variables are declared, they have an initial value of undefined. If you do a mathematical operation on an undefined variable your result will be NaN which means "Not a Number". If you concatenate a string with an undefined variable, you will get a literal string ..
jsp에서 컨트롤러갈때 한글 깨짐현상(02/07/20 cudo notes 5) 해당 apache server.xml에 URIEncoding="UTF-8" 를 추가하자. 이방식은 get만 적용이되니 form태그를 get방식으로 보내야한다.
mysql password change(02/06/20 cudo notes 4) sudo mysqld_safe --skip-grant-tables mysql -u root -p UPDATE mysql.user SET authentication_string=null WHERE User='root'; FLUSH PRIVILEGES; exit; mysql -u root ALTER USER 'root'@'localhost' IDENTIFIED WITH caching_sha2_password BY 'yourpasswd';
Applied Accesbility - groups content - groups related content - groups independent, self-contained content ---- What level ninja are you? Newbie Kitten Developing Student Master display: flex; flex-direction: row or column; example : body { font-family: Arial, sans-serif; } header, footer { display: flex; flex-direction: row; } header .profile-thumbnail { width: 50px; height: 50px; border-radius: 4px; } header .pro..

반응형