개발
OpenWRT 지원 공유기 목록
ASUS TUF Gaming AX6000240,000원https://openwrt.org/toh/asus/tuf-ax6000https://www.coupang.com/vp/products/8040645350 ASUS RT-AX53U84,000원https://openwrt.org/toh/asus/rt-ax53uhttps://www.coupang.com/vp/products/7337823596 TP-LINK Archer AX2350,000원https://openwrt.org/toh/tp-link/archer_ax23_v1https://www.coupang.com/vp/products/6249383460 TP-LINK Archer C5024,000원https://openwrt.org/toh/tp-link/archer-c50https://www.coupang.com/vp/products/3648197 TP-LINK TL-WR940N23,000원https://openwrt.org/toh/tp-link/tl-wr940nhttps://www.coupang.com/vp/products/25229673
[OpenWRT] "Dumb" Access Point
https://gist.github.com/RustyRouter/3869713d7645608f1f7394812f11e931https://openwrt.org/docs/guide-user/network/wifi/dumbaphttps://qquack.org/openwrt/bridged/
[OpenWRT] "Dumb" Access Point 더 읽기"
[Flutter] 기본 개발환경 구축 + VSCode
출처: https://ksrk.medium.com/install-flutter-without-android-studio-on-window-9d3781172912 ※관련 링크 avdmanager: https://gist.github.com/mrk-han/66ac1a724456cadf1c93f4218c6060ae sdkmanager: https://developer.android.com/tools/sdkmanager 1. JDK 17 설치 (https://javaalmanac.io/bytecode/versions/) Class File Version에 따라 자바 버전을 선택하여 설치 한다. 2. 필요한 도구 다운로드 Command Line Tools 다운로드 https://developer.android.com/studio 아래로 스크롤 해서 “명령줄 도구만” 항목에서 다운로드 진행 Android Emulator 다운로드 https://developer.android.com/studio/emulator_archive flutter 다운로드 https://flutter-ko.dev/get-started/install 3. Command Line
[Flutter] 기본 개발환경 구축 + VSCode 더 읽기"
[Jenkins] 설치
1. Jenkins 다운로드 https://www.jenkins.io/download/ “Generic Java package (.war)” 다운로드 2. apache-tomcat 설치 https://tomcat.apache.org/download-10.cgi apache-tomcat 기동 전 환경변수에 JENKINS_HOME을 추가하여 데이터 디렉토리를 미리 지정한다. 예) -DJENKINS_HOME=D:\jenkins 3. jenkins 접속 http://localhost:8080/jenkins/ 4.Jenkins Plusgin 수동 설치 온라인 상태가 아닐 경우 미리 플러그인을 다운로드 받은 후 아래 메뉴에서 수동으로 설치. Dashboard > Jenkins 관리 > Plugins > Advanced settings
YouTube ReVanced Download
1.MicroG: 구글 로그인 모듈https://github.com/inotia00/VancedMicroG/releases 1.GMS Corehttps://github.com/ReVanced/GmsCore/releases 2.Youtube ReVanced:https://github.com/NoName-exe/revanced/releases 3. SmartTube Next (Google TV용 무료 YouTube)https://smarttubenext.com/
YouTube ReVanced Download 더 읽기"
웹사이트 검색 엔진 쿼리
구글https://www.google.com/search?q=%s 구글이미지http://www.google.com/images?q=%s 구글뉴스https://news.google.com/search?q=%s 유튜브https://www.youtube.com/results?search_query=%s 네이버https://search.naver.com/search.naver?sm=tab_hty.top&where=nexearch&query=%s 네이버쇼핑https://search.shopping.naver.com/search/all?query=%s 네이버뉴스https://search.naver.com/search.naver?query=%s&where=news&ie=utf8&sm=nws_hty 나무위키https://namu.wiki/w/%s 네이버지도https://map.naver.com/v5/search/%s 카카오지도https://map.kakao.com/?from=total&nil_suggest=btn&tab=place&q=%s 다나와https://search.danawa.com/dsearch.php?k1=%s 다음https://search.daum.net/search?w=tot&DA=YZR&t__nil_searchbox=btn&sug=&sugo=&sq=&o=&q=%s ■■테스트■■https://www.google.com/search?q=TESThttps://www.google.com/images?q=TESThttps://news.google.com/search?q=TESThttps://www.youtube.com/results?search_query=TESThttps://search.naver.com/search.naver?sm=tab_hty.top&where=nexearch&query=TESThttps://search.shopping.naver.com/search/all?query=TESThttps://search.naver.com/search.naver?query=TEST&where=news&ie=utf8&sm=nws_htyhttps://namu.wiki/w/TESThttps://map.naver.com/v5/search/TESThttps://map.kakao.com/?from=total&nil_suggest=btn&tab=place&q=TESThttps://search.danawa.com/dsearch.php?k1=TESThttps://search.daum.net/search?w=tot&DA=YZR&t__nil_searchbox=btn&sug=&sugo=&sq=&o=&q=TEST
Dart 기본 문법
출처: https://at0z.tistory.com/155 기본 문법 (티스토리 코드블럭은 Dart를 지원하지 않아 우선 java로 표기합니다) 주석 //주석 /** * 주석 **/ /// 문서주석 문장 명령 단위. 세미콜론 ;으로 끝난다. 변수 data를 담는 상자. 종류는 type, 자료형이라고 함.dart는 int, double, String, bool을 기본 제공.사용자가 직접 타입을 정의할 수 있음. String name; name = “홍길동”; name =
JVM(Java) 메모리 옵션 정리
JVM(Java) 메모리 옵션 정리 1. 최대 성능JAVA_OPTS=”-Djava.awt.headless=true -Dfile.encoding=UTF-8 -server -Xms1G -Xmx16G -Xss4m -XX:NewSize=256m -XX:MaxNewSize=512m -XX:+DisableExplicitGC -XX:-UseGCOverheadLimit” 2. 최대 안정 (for WebInspect)JAVA_OPTS=”-Djava.awt.headless=true -Dfile.encoding=UTF-8 -server -Xms1G -Xmx16G -Xss4m -XX:NewSize=256m -XX:MaxNewSize=512m -XX:+CMSClassUnloadingEnabled -Dsun.rmi.dgc.client.gcInterval=60000 -Dsun.rmi.dgc.server.gcInterval=60000 -XX:-UseGCOverheadLimit” ※ -XX:PermSize=512m -XX:MaxPermSize=512m는 Java 8에서 없어짐. ■ Heap영역 : new 연산자로 생성된 객체와 배열을 저장하는 영역으로 GC 대상이 되는 영역이다. 1.Eden, Survivor, Old로