본문 바로가기

반응형

전체 글

(81)
[RHEL] How to activate your no-cost Red Hat Enterprise Linux subscription developers.redhat.com/blog/2021/02/10/how-to-activate-your-no-cost-red-hat-enterprise-linux-subscription/ How to activate your no-cost Red Hat Enterprise Linux subscription - Red Hat Developer Learn how to register and activate your no-cost Red Hat Enterprise Linux subscription in three easy steps, and what you'll get with your new subscription. developers.redhat.com developers.redhat.com/articl..
[Linux] CentOS 대체 준비 https://almalinux.org/ AlmaLinux - Forever-Free Enterprise-Grade Operating System Stable, production-ready, RHEL-based AlmaLinux is an enterprise-grade server OS, a stable Linux distribution with regular releases that come with long support windows. You can rely on AlmaLinux to run you and your clients’ critical workloads. Fedora-like almalinux.org https://rockylinux.org/ Rocky Linux Rocky Linux..
[WoW] 어둠땅 던전 요약 ##### 죽음의 상흔 ##### ### 역병뼈닥이 ### - 바닥 생성시 드리블 - 구토 시전후 나오는 오물구더기 자폭하기전 반드시 처리(바닥 생성 주의) ### 아미스 ### - 쫄처리(석궁수 최우선): 마법사 시전 차단하면서 탱커와 파티원들 석궁수 쪽으로 모여서 쫄과 아미스 이쁘게 모아서 쫄들부터 반드시 처리 - 괴저 화살 차단 - 브레스 회피 주의 ### 스티치플래시 ### - 피조물 갈고리 유도: 보스 방향, 카운트(화살표 고정)후 이탈 - 주시 대상자 회피 ### 냉기결속사 날토르 ### - 어둠의 추방(내려간 통로끝 적 처치후 복귀, 복귀후 바닥 생성 위치 유의) - 얼어붙은 구속 대상자 아군에게 전이되지 않도록 이탈 주의 : 근접 딜러는 탱커에게서 미리 멀어질 것 : 해제 클래스는 범위안에..
[Java] 키 입력(Scanner) import java.util.Scanner; Scanner sc = new Scanner(System.in); int n = sc.nextInt(); sc.close(); 참고: https://docs.oracle.com/javase/8/docs/api/java/util/Scanner.html Scanner (Java Platform SE 8 ) Scans the next token of the input as a float. This method will throw InputMismatchException if the next token cannot be translated into a valid float value as described below. If the translation is succ..
[Ubuntu 18.04] IDLE Python IDE Installation for Python 3: # sudo apt-get update # sudo apt-get install idle3 for Python 2.7: # sudo apt-get install idle-python2.7 참고: https://www.ubuntu18.com/how-to-install-idle-python-ide-on-ubuntu-18-04/ How to install IDLE Python IDE on Ubuntu 18.04 Learn how to install IDLE for Python 3 and Python 2. IDLE is available for python 3 and python 2 as two separate packages. www.ubuntu18.com https://testtub..
[Ubuntu] GVim Installation # sudo apt-get install vim vim-gnome vim-gui-common
[Java] JDBC Test (ORACLE DB, tnsnames.ora) // Instant Client 설치 및 TNS_ADMIN 환경변수 세팅 후 tnsnames.ora의 TNS_IDENTIFIER 참고하여 Oracle DB에 접근하는 예제 import java.sql.*; public class JDBCTest { public static void main(String[] args) throws Exception { System.setProperty("oracle.net.tns_admin", System.getenv("TNS_ADMIN")); String dbURL = "jdbc:oracle:thin:@MYDB"; Class.forName ("oracle.jdbc.OracleDriver"); Connection conn = null; Statement stmt = nul..
[Ubuntu] MPEG-4 AAC decoder and the H.264 decoder Installation # sudo apt install libdvdnav4 libdvdread4 gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly libdvd-pkg # sudo apt install ubuntu-restricted-extras 참고: https://askubuntu.com/questions/214421/how-to-install-the-mpeg-4-aac-decoder-and-the-h-264-decoder How to install the MPEG-4 AAC decoder and the H.264 decoder? Where do I get the MPEG-4 AAC decoder, and the H.264 decoder. How to install them and ..

반응형