일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- Tomcat
- ua-parser
- JEUS
- Java
- 알고리즘
- Login
- 물리적주소
- Firebase
- TailMe
- WINDOW11
- User-Agent
- mysql
- URLRewirte
- scheduled
- eGov
- 브라우저
- 개발자도구
- 접근장치
- Was
- web server
- programmers
- db
- AES
- FCM
- @Scheduled
- WebtoB
- dbms
- 암호화
- window10
- Oracle
- Today
- Total
목록전체 글 (73)
HD
GOOGLE Oauth 로그인 API를 연동하기위해서는 Google API Console로 가서 계정을 만드시고 왼쪽 메뉴 버튼을 클릭하셔서 사용자 인증 정보로 이동합니다. https://console.cloud.google.com/home/ Google Cloud Platform 하나의 계정으로 모든 Google 서비스를 Google Cloud Platform을 사용하려면 로그인하세요. accounts.google.com 사용자 인증 정보 만들기에서 OAuth 클라이언트 ID를 선택 웹애플리케이션 선택후 URL과 요청을 Redirect 받을 URL을 적어 놓고 생성 클라이언트 ID와 클라이언트 보안비밀 키가 생성이됩니다.
쿼리 실행시 아래와 같은 에러 코드 및 메시지가 발생한경우 Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column To disable safe mode, toggle the option in Preferences -> SQL Queries and reconnect. (해결방법) SET SQL_SAFE_UPDATES=0; -- safe mode 해제 반대로 다시 설정시 SET SQL_SAFE_UPDATES=1; -- safe mode 설정
1.TABLESPACE 생성 - Tablespace의 이름을 HD으로 하고, 그 크기를 50M로 설정하며, 50M 초과시 자동으로 4M 씩 자동 확장 생성 > 2048M(2G) 용량으로 잡아두는 곳이 많긴한데 그렇게 잡아놓으면 해당 서버 용량 차지하는 문제가 있어서 50M으로 생성 AUTOEXTEND때문에 자동으로 용량이 늘어남 - DATAFILE 저장될 경로 /app/oracle/oradata/orcl/hd.dbf CREATE TABLESPACE HD DATAFILE '/app/oracle/oradata/orcl/hd.dbf' SIZE 50M AUTOEXTEND ON NEXT 4M MAXSIZE UNLIMITED LOGGING PERMANENT EXTENT MANAGEMENT LOCAL AUTOALLO..
https://www.addthis.com/ Get more likes, shares and follows with free website tools - AddThis AddThis free website tools include share buttons, targeting tools and content recommendations help you get more likes, shares and followers and keep them coming back. www.addthis.com
최근 프로젝트중에 기존 VIEWER 솔루션을 쓰고 있는 사이트에서 VIEWER 솔루션을 제거해야 해서 나 으로 PDF 파일을 보여주는 방식을 생각을 하고있었다. 문제점은 브라우저마다 호환성 때문에 고생하던중에 mozilla 의 PDF.js를 찾았다. - mozilla PDF.js 주소 https://mozilla.github.io/pdf.js/ 작업중 수정한 파일은 pdfjs-2.2.228-dist/web/viewer.js 파일이다. ※ 로컬 서버에 올려서 테스트를 해야 정상 작동을 볼수있습니다. pdfjs-2.2.228-dist/web/viewer.js PDF VIEWER가 패키지형 모듈 형태라 하나의 기능으로 여러 곳에서 사용할 기능이기 떄문에 fileNm을 변수로 사용해서 가져오는 방식이다. 하지만..
$(document).ready(function(){ var tocken = "액세스 토큰값을 넣어주세요"; var count = "8"; $.ajax({ type: "GET", dataType: "jsonp", cache: false, url : "https://api.instagram.com/v1/users/self/media/recent/?access_token=" + tocken + "&count=" + count, success: function(response) { if(response.data.length > 0){ for(var i = 0; i < response.data.length; i++){ var insta = ''; insta += ""; insta += "
//facebook $(document).ready(function() { var tocken = "액세스 토큰 값 넣으시면 됩니다."; $.ajax({ type: "GET", dataType: "jsonp", cache: false, url : "https://graph.facebook.com/v3.3/me?fields=posts.limit(8)%7Bfull_picture%2Cmessage%2Ccreated_time%2Cpermalink_url%7D&access_token="+tocken, success: function(response) { if(response.posts.data.length > 0){ for(var i = 0; i < response.posts.data.length; i++){ v..
bSize) { bSize = 8; } else { bSize = blogList.size(); } for(int i=0; i < bSize ; i++) { org.jdom.Element el = (org.jdom.Element) blogList.get(i); bLink = el.getChildText("link"); bTitle = el.getChildText("title"); bDescription = el.getChildText("description"); bPubDate = el.getChildText("pubDate"); try { parsedDate = oldFormat.parse(bPubDate.substring(0,bPubDate.indexOf(":")-3)); } catch (ParseE..
사용하기 전에 instafeed.min.js를 다운받아야한다. {{model.created_time}}가 밀리 세컨드로 제공이 되기때문에 filter를 사용해서 ex)2019.01.01 형식으로 변환
1단계 : https://graph.facebook.com/v2.2/oauth/access_token?grant_type=fb_exchange_token&client_id={app_id}&client_secret={app_secret}&fb_exchange_token={short_lived_token} 2단계 : https://graph.facebook.com/v2.2/me?access_token={long_lived_access_token} 3단계 : https://graph.facebook.com/v2.2/{account_id}/accounts?access_token={long_lived_access_token} {account_id}는 2단계에서 나온 Id값을 넣어주면 됨