23년 12월 15일 20시30분 경 쿠팡 플레이 튕김 서버 불안정 기록
서버 다운..됐나..?
23년 12월 15일 20시30분 경 쿠팡 플레이 튕김 서버 불안정 기록
서버 다운..됐나..?
맥북 M1은 AVD 지원을 하지 않는다.
https://github.com/741g/android-emulator-m1-preview/releases/tag/0.2
Release Initial Preview v2 · 741g/android-emulator-m1-preview
This fixes an issue with file chooser dialogs freezing (Issue #3). Sound/screenshots should also be working now. It is based on build (https://ci.android.com/builds/branches/aosp-emu-master-dev/gri...
github.com
JAVA 설치된 경우
1.안드로이드 스튜디오 실행 > Configure > Preferences > System Settings > Android SDK > SDK Tools
2.Android SDK Command-Line Tools 설치
3.
터미널에서 새로 열어서 실행
flutter doctor --android-licenses
[Flutter Error] Could not start AVD (1) | 2021.07.31 |
---|
VS Code 실행 시킨 후 (Cmd+Shift+P) 단축키 입력
shell command 검색 후 설치
terminal 에서 code 입력하면 vs code 실행!
끝!!
AWS 무료 티어로 사용하다 가끔 깜박하고 서비스를 내리지 않고 사용핟다보면 비용이 청구될 수 있습니다.
이를 방지하기 위해 비용 발생시 알람을 설정해두거나 사용량 제한을 하는 방법이 있습니다.
청구된 금액 및 사용량 Billing 페이지에서 할 수 있습니다.
https://console.aws.amazon.com/billing/home
https://console.aws.amazon.com/billing/home
console.aws.amazon.com
1.AWS 메인 페이지 > 서비스 검색란에 Billing 검색
2.Billing 서비스 선택
3.청구 금액 및 소비 확인
4.사용량별 프리 티서 서비스 확인
원인 : Spring boot 플로그인 Gradle 버전이 낮아서 발생한 경우.
해결 방법 :
프로젝트 폴더 > gradle > gradle-wrapper.properties
버전을 올려준다.
스프링 프레임워크의 주요 모듈 (0) | 2018.01.18 |
---|
public class round {
private static int[][] solution(int[][] matrix, int r) {
int count = r%4; //1=90도, 2=180도 , 3=270도 , 4=360도, 5->1, 6->2, 7->3 8->4
//count 만큼 회전 시키기 위한 반복문
for (int d = 0; d < count; d++) {
//rotate() 회전시키는 기능을 담당하는 기능
matrix = rotate(matrix);
}
return matrix;
}
//90도 회전 기능
public static int[][] rotate(int[][] matrix){
int m = matrix[0].length; //col
int n = matrix.length; //row
//2차원 배열 생성
int[][] arry = new int[m][n];
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
arry[j][n - 1 - i] = matrix[i][j];
}
}
return arry;
}
//출력 기능
static void print(int[][] arr) {
for (int i=0; i<arr.length; i++) {
for (int j=0; j<arr[i].length; j++) {
System.out.print(arr[i][j] + " ");
}
System.out.println("");
}
}
public static void main(String[] args) {
int[][] matrix = {{1,2}, {3,4},{5,6}};
int[][] result;
int degree = 1; //회전 횟수 입력
result = solution(matrix, 1);
print(result);
}
}
Cannot find reference 'ext' in '__init__.py' 오류 발생시,
$ python -m telegram
$ pip install --upgrade ipython
Solution for those who receives "cannot import 'TelegramError'" while using IPython
https://github.com/python-telegram-bot/python-telegram-bot/issues/1139
Solution for those who receives "cannot import 'TelegramError'" while using IPython · Issue #1139 · python-telegram-bot/python-t
Steps to reproduce pip install python-telegram-bot from telegram.ext import Updater ImportError: cannot import name 'TelegramError' Expected behaviour Classes must be imported Actual behavi...
github.com