자바에서 javax.net.ssl.SSLHandshakeException: Remote host terminated the handshake System.setProperty("https.protocols", "TLSv1.2"); URL url = new URL(imageUrl); try (InputStream in = url.openStream()) { URL url = new URL(imageUrl);로 선언하기 전에 System.setProperty("https.protocols", "TLSv1.2"); ===> 추가하기 프로그래밍/자바 2024.02.08
자바로 RSI 구하기 import java.util.ArrayList; import java.util.Arrays; import java.util.List; public class Marble { // 주어진 기간동안의 종가를 기반으로 상대강도지수(RSI)를 계산함 public static Double calculateRSI(Double[] closingPrices, int period) { // 연속된 종가 간의 가격 변동을 계산함 Double[] priceChanges = calculatePriceChanges(closingPrices); // 상승폭과 하락폭을 각각의 배열로 분리함 List gains = new ArrayList(); List losses = new ArrayList(); for (int i = 1; i.. 프로그래밍/자바 2024.02.06
폼을 안보이게 하기 먼저 작업표시줄에서 숨기기 program unit1; uses Forms, Windows, //추가 Unit1 in 'Unit1.pas' {Form1}; {$R *.res} var ExtendedStyle: Integer; //추가 begin Application.Initialize; // 작업표시줄에 나타나지 않게 ExtendedStyle:=GetWindowLong(application.Handle, GWL_EXSTYLE); SetWindowLong(Application.Handle, GWL_EXSTYLE, ExtendedStyle or WS_EX_TOOLWINDOW and not WS_EX_APPWINDOW); Application.CreateForm(TForm1, Form1); Application.. 프로그래밍/델파이 2024.01.26
자바에서 크롬 웹드라이버 실행 파일을 따로 설치하지 않고 크롤링하기[vscode] 파이썬과 같이 크롬 웹드라이버 실행 파일을 따로 설치하지 않고 아래의 웹드라이버 매니저 JAR 설치 https://jar-download.com/artifact-search/webdrivermanager Download webdrivermanager JAR file with all dependencies io.github.bonigarcia webdrivermanager 5.6.3 compile group: 'io.github.bonigarcia', name: 'webdrivermanager', version: '5.6.3' //Thanks for using https://jar-download.com libraryDependencies += "io.github.bonigarcia" % "webdrive.. 프로그래밍/자바 2024.01.17
안드로이드 스튜디오 wifi 디버깅 세팅하기 1. cd C:\Users\{사용자}\AppData\Local\Android\Sdk\platform-tools> //디버깅 포트 5555로 설정 2. adb tcpip 5555 //디버깅 연결, 안드로이드폰 아이피 지정 3.adb connect 192.168.xxx.xxx:5555 프로그래밍/안드로이드 2023.12.26
java.net.BindException: Address already in use: bind 에러 Internal error. Please refer to https://code.google.com/p/android/issues java.net.BindException: Address already in use: bind at java.base/sun.nio.ch.Net.bind0(Native Method) at java.base/sun.nio.ch.Net.bind(Net.java:555) at java.base/sun.nio.ch.ServerSocketChannelImpl.netBind(ServerSocketChannelImpl.java:337) at java.base/sun.nio.ch.ServerSocketChannelImpl.bind(ServerSocketChannelImpl.java:294).. 프로그래밍/자바 2023.12.26
판다스 기본 사용법 https://dandyrilla.github.io/2017-08-12/pandas-10min/ 판다스(pandas) 기본 사용법 익히기 데이터 분석을 위한 파이썬 라이브러리인 판다스(pandas) 의 기본 사용법을 소개해 놓은 ‘10 Minutes to pandas’ 를 번역해 놓은 글입니다. pandas 의 기본 사용법을 익히시려는 분들에게 실습을 천천히 dandyrilla.github.io 쉽게 정리된 곳이 있어 나중을 위해 요약해봄 - 데이터 선택하기 특정 칼럼 선택할 경우 : df[컬럼명] 특정 행을 전체 선택한 경우 : 인덱스로 해도 되고 이름을 지정해도 됨 df[시작인덱스:끝인덱스+1], df[시작인덱스명:끝인덱스명] *[]안에 ":"없이 단일 이름을 사용하면 컬럼명으로 탐색하게 된다. * .. 프로그래밍/파이썬 2023.11.13
Apps targeting Android 12 and higher 에러 안드로이드 스튜디오를 업데이트만 하고 나면 항상 에러가 생겨서 업데이트를 별로 안하고 싶지만 Galaxy j5를 인식하지 못해서 어쩔수 없이 업데이트하고 나니 아래와 같이 에러가 발생하였다. Manifest merger failed : Apps targeting Android 12 and higher are required to specify an explicit value for `android:exported` when the corresponding component has an intent filter defined. See https://developer.android.com/guide/topics/manifest/activity-element#exported for details. 찾아보니 m.. 프로그래밍/안드로이드 2023.11.12
[ahk]마우스 휠 가속 https://www.autohotkey.com/boards/viewtopic.php?t=86715 Fast Scrolling Script (alternative to Logitech infinite scroll wheel) - AutoHotkey Community Post your working scripts, libraries and tools for AHK v1.1 and older a0l0e0x000 Posts: 14 Joined: 26 Dec 2020, 08:27 @ Quote 09 Feb 2021, 13:23 When holding Right mouse button scrolling with the scroll wheel will be accelerated. If you press the Ri.. 프로그래밍 2023.07.03
가상환경에 파이썬 3.9.7 설치 도커에 우분투 이미지로 리눅스를 돌리고 있으며 기존에 3.8.9가 설치되어 있으나 3.9.7이 필요해서 가상환경으로 설치해봄. 한 10분 정도 소요 되므로 기다리면 됨 pyenv install 3.9.7 Installing Python-3.9.7... patching file Misc/NEWS.d/next/Build/2021-10-11-16-27-38.bpo-45405.iSfdW5.rst patching file configure patching file configure.ac Installed Python-3.9.7 to /root/.pyenv/versions/3.9.7 3.9.7용 가상환경 만들기 pyenv virtualenv 3.9.7 flask397 홈으로 이동해서 만들어 놓은 가상환경을 로컬로 .. 프로그래밍/파이썬 2023.06.03