본문 바로가기
728x90
반응형

분류 전체보기65

Custom Notification 안의 Image에 Glide 적용하기 1. Notification XML 이미지 경로 : res -> drawable 2. JAVA package com.example.mydestinyfouuser.MainActivity; import android.app.Notification; import android.app.NotificationChannel; import android.app.NotificationManager; import android.app.PendingIntent; import android.content.Context; import android.content.Intent; import android.graphics.BitmapFactory; import android.os.Build; import android.os.Bu.. 2020. 11. 11.
JS Custom Select Box 만들기 심심해서 만들어봄ㅎㅎ CSS #select_box1, #select_box2, #select_box3{ float:left; position:relative; width:200px; z-index:3; } #select_box1{ z-index:3; } #select_box2{ z-index:2; } #select_box3{ z-index:1; } .select_absolute{ position:absolute; left:0; top:0; width:calc(100% - 2px); line-height:43px; cursor:pointer; border:solid 1px #D0D2D5; font-weight:400; color:#000000; font-size:14px; background-color:#.. 2020. 11. 5.
Ubuntu 18.04 MongoDB 설치 wget -qO - https://www.mongodb.org/static/pgp/server-4.2.asc | sudo apt-key add - echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu bionic/mongodb-org/4.2 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.2.list sudo apt-get update sudo apt-get install -y mongodb-org sudo service mongod start 2020. 6. 3.
무한스크롤 만들기(ajax) - 쉬움주의 HTML 이 이미지는 1번째 이미지입니다. 이 이미지는 2번째 이미지입니다. 이 이미지는 3번째 이미지입니다. 이 이미지는 4번째 이미지입니다. 이 이미지는 5번째 이미지입니다. CSS body{ padding:0; margin:0; -ms-user-select: none; -moz-user-select: -moz-none; -webkit-user-select: none; -khtml-user-select: none; user-select:none; overflow:auto; } .fadein { -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */ -moz-animation: fadein 2s; /* Firefox < 16 */ -ms.. 2020. 5. 6.
FadeIn 효과 /* FadeIn 효과 ( class에 추가해서 효과를 줄 수 있음 ) */ .image_fadein { -webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */ -moz-animation: fadein 1s; /* Firefox < 16 */ -ms-animation: fadein 1s; /* Internet Explorer */ -o-animation: fadein 1s; /* Opera < 12.1 */ animation: fadein 1s; } @keyframes fadein { from { opacity: 0; } to { opacity: 1; } } /* Firefox < 16 */ @-moz-keyframes fadein { f.. 2020. 5. 6.
Python 에서 MySQL 데이터 가져오기 import pymysql db = pymysql.connect(host='MySQL IP', user='MySQL ID', password='MySQL Password', db='DataBase Name', charset='utf8') curs = db.cursor() #Select Query sql = """select * from TableName""" curs.execute(sql) select = list(curs.fetchall()) db.commit() print(select)#튜플 형태로 반환받는다. #Insert Query sql = "insert into User (id, name) values(%s,%s)" curs.execute(sql,'MyID','MyName') db.commit.. 2020. 5. 4.
728x90
반응형