본문 바로가기

분류 전체보기348

728x90
모바일 width100%, viewport scale 안먹을 경우 디바이스 사이즈와 기존 body 사이즈의 스케일을 체크하여 meta 태그 속성을 업데이트 하는 소스입니다. // 내 사전준비 태그 2020. 2. 28.
ionic 5 #remove ion-item activated css event ion-item 태그의 클릭 이벤트 중 배경이 회색처리되는 현상을 지우기 위해 css style 을 직접 부여하였다. 참고사이트 : https://forum.ionicframework.com/t/ionic-4-remove-list-item-default-click-animations/161956 2020. 2. 17.
ionic 5 #이 시스템에서 스크립트를 실행할 수 없으므로... 에러해결 VSCode 의 터미널(Terminal)로 ionic serve 를 실행하려 하였으나 에러가 떴다. PS C:\vscode_workspace\imcha-app> ionic serve ionic : 이 시스템에서 스크립트를 실행할 수 없으므로 C:\Users\MING\AppData\Roaming\npm\ionic.ps1 파일을 로드할 수 없습니다. 자세한 내용은 about_Execution_Polici es(https://go.microsoft.com/fwlink/?LinkID=135170)를 참조하십시오. 위치 줄:1 문자:1 + ionic serve + ~~~~~ + CategoryInfo : 보안 오류: (:) [], PSSecurityException Windows PowerShell 의 보안 정책.. 2020. 1. 24.
Spring boot #서버 포트 바꾸기 스프링 부트 서버 포트 변경 방법 경로 : /src/main/resources/ 파일 : application.properties 8090으로 포트 번호 지정 server.port=8090 랜덤으로 포트 번호 지정 server.port=0 참고 사이트 https://stackoverflow.com/questions/21083170/how-to-configure-port-for-a-spring-boot-application 2020. 1. 22.
Netflix [스포있음] 메시아 후기, 주관적 해석 Netflix 메시아 서론 아무거나 틀다가 우연히 시청한 메시아 1화를 시작으로 하루만에 시즌 1을 모두 보았다. 하루를 메시아로 가득 채운 샘이다. 나름 재밌게 봤던 터라 후기를 남길 생각은 했지만 열흘이 지난 오늘에서야 기억나는대로 후기를 작성한다. 무교인 사람이 바라본 종교 드라마 후기라 단어 선택에 미흡한 부분이 있을 수 있는 점은 양해 부탁드린다. 스포가 가득하고. 드라마를 본 사람들만 이해할 수 있는 해석이다. 감상평 메시아는 매우 현실적인 드라마였다. 중동 전쟁과 위험 인물이 될 우려 인물(메시아)을 감시하는 미국의 CIA 등 메시아라는 민감한 주제를 포함하고도 진지하게 사회를 다루는, 일각에서는 매우 민감하게 반응할만한 드라마였다. 그만큼 담고자 한 내용이 잘 담았다고 생각한다. 해석 초반.. 2020. 1. 22.
Ionic 5 # [Android] Can not add task ': processDebugGoogleServices'as a task with that name already exists 개발환경 : ionic, android FCM 가이드를 따라 추가한 뒤 뜨는 에러 Can not add task ': processDebugGoogleServices'as a task with that name already exists 플러그인이 중복되어 나오는 에러였다. build.gradle 파일의 apply from 중 중복된 fcm 플러그인 소스를 주석처리하여 해결하였다. 참고 사이트 : https://cpoint-lab.co.jp/article/201808/5080/ 【Android】「Cannot add task ‘:processDebugGoogleServices’ as a task with that name already exists.」エラーの対処法 本日遭遇したエラーの対処法です。 状況はという.. 2020. 1. 16.
Java #JSONArray 와 JSONObject로 JSON 생성하기 import org.json.simple.JSONArray; import org.json.simple.JSONObject; ... JSONArray jsonArray = new JSONArray(); JSONObject jsonObject = new JSONObject(); jsonObject.put("key1", "value1"); jsonObject.put("key2", "value1"); jsonArray.add(jsonObject); String jsonString = jsonArray.toJSONString(); //jsonString //=> [{"key1":"value1"}, {"key2":"value2"}] 2020. 1. 14.
ionic 5 #staticInjectorError(AppModule)[UniqueDeviceID] ionic 의 unique-device-id 를 사용하고자 한 ts 파일에 import 하니 나온 에러.. staticInjectorError(AppModule)[UniqueDeviceID] app.module.ts 의 providers 에 추가하여 해결하였다. import { UniqueDeviceID } from '@ionic-native/unique-device-id/ngx'; @NgModule({ ... providers: [ ... UniqueDeviceID ], bootstrap: [AppComponent] }) export class AppModule {} https://ionicframework.com/docs/native/unique-device-id 2020. 1. 14.
Java #원하는 길이의 랜덤숫자 생성 import java.util.concurrent.ThreadLocalRandom; public class HelloWorld{ public static void main(String []args){ System.out.println(getRandomLong(22)); //원하는 길이의 랜덤 숫자 반환 } /** * @description 원하는 길이의 랜덤 숫자 반환 * @param len 반환 받을 숫자의 길이 * @return result 결과 값 */ public static String getRandomLong(int len) { ThreadLocalRandom random = ThreadLocalRandom.current(); String result = ""; for(int i=0; i 2020. 1. 2.
Angular 8 #does not exist on type 'GlobalEventHandlers' in angular 에러 does not exist on type 'GlobalEventHandlers' in angular does not exist on type 'GlobalEventHandlers' in angular 상황 html 파일의 iframe 태그에 ViewChild를 걸고 ts 파일에서 this.receiver.contentWindow 를 작성하였고 화면 출력시에 에러가 발생하였다. @ViewChild('myiframe') myiframe: HTMLElement; 해결 @ViewChild의 HTMLElement를 HTMLFrameElement 로 변경하니 해결되었다. HTML Element 에 따라 정확히 지정해두어야 오류가 나지 않는 것이다. @ViewChild('myiframe') myiframe: H.. 2019. 12. 19.
728x90
728x90