본문 바로가기
반응형

분류 전체보기239

VSCODE 폰트를 바꿔보자! Victor Mono 장시간 컴퓨터 화면을 통해서 글을 보고 코딩을 하다보면, 눈의 피로를 상당히 느끼게 됩니다. 많은 폰트를 사용해보았지만, 마당히 없어서 포기하고 시간이 지났습니다. 오랜만에 검색을 하여 좋은 폰트가 있어서 이렇게 글로 남겨봅니다.  피로감을 줄여주는 폰트 "Victor Mono" 입니다.  https://rubjo.github.io/victor-mono/ Victor Mono rubjo.github.io  프로그래밍과 장시간 텍스트 작업에 최적화된 모노스페이스 폰트입니다. 간결하면서 시각적으로 편안한 디자인을 가지고 있는 점이 특징입니다.  설치 방법 및 사용 1. 위 사이트에서 다운로드를 받습니다. 압축을 풀고 필자는 맥에서 사용하기 위해 VictorMono-Light.ttf 를 설치 하였습니다. 2... 2024. 6. 23.
android studio Line separator Unix and macOS Flutter 공부를 하다보면 단축어가 빨리 나오지 않아서 여간 불편한 경우가 발생합니다. 이에 기본 세팅에서 line separator를 수정해두면 그런 불편함을 해결할 수 있습니다.  해결방법아래의 스샷으로 이동해서 적용하시면 보다 쾌적하게 코딩을 하실수 있습니다. 끝 2024. 6. 21.
[flutter error] Error retrieving thread information: (os/kern) invalid argument flutter Real deivce iphone test show up error message like as blow "[ERROR:flutter/shell/platform/darwin/ios/framework/Source/profiler_metrics_ios.mm(203)] Error retrieving thread information: (os/kern) invalid argument" how to fix  1. open Xcode flutter project2. Build Settings >  Architectures > Supported Platforms 3. iphoneos change iOS   끝 입니다. 2024. 5. 29.
journey-cloud self-hosted by synology nas 우선 방식은 아래의 방식을 적용 및 부분만 수정을 합니다.https://journey-cloud.github.io/self-hosted-boilerplate/docker-compose-digitalocean/ Deploy using Docker Compose on DigitalOceanWelcome to our tutorial on hosting your Journey Sync Drive using Docker Compose on DigitalOcean. This guide is designed to be easy to follow, with an estimated setup time of just 45 minutes.journey-cloud.github.io docker-compose.yml 내용을 g.. 2024. 5. 27.
Could not download and install iOS 17.0 Simulator runtime with Xcode 15.0 ios17 시뮬레이터 설치 안됨 맥북 에어에서 오랜만에 공부를 하려 simulator를 기동하였는데? 계속해서 "download runtime...."  메시지만 나오고 기동되질 않았습니다.  해결방법을 찾던중 아래의 방법을 찾았습니다.  해결책 1터미널에서 아래의 명령어 실행xcodebuild -downloadPlatform iOS  아래에 ios 17.0 Simulator Done.  명령어를 확인할 수 있습니다. 이후 xcode 로 돌아가면 아래의 리스트를 확인하였습니다.  해결책 2다운로드 사이트에 접속하여 https://developer.apple.com/download/all/ 로그인 - Apple idmsa.apple.com로그인을 해야하는 단점이 있습니다. iOS 17.0 simulator.. 2024. 5. 12.
[Docker] mysql + phpmyadmin + cache using volume on M1 [Docker] mysql + phpmyadmin + cache using volume 디비 연결등을 위해서 한개 만들어보려합니다. 도커에서 이미지를 만들고 아래에서 2개를 사용하기 때문에 2개 만들었습니다. version: "3.3" services: db: image: mysql:5.7 container_name: db-mysql platform: linux/amd64 # M1에서 에러 나기 때문에 지정 volumes: - mysqlwithphpadmin:/var/lib/mysql restart: on-failure:5 environment: MYSQL_ROOT_PASSWORD: [강력한 암호로 변경하세요] MYSQL_DATABASE: db MYSQL_PASSWORD: [강력한 암호로 변경하세요] T.. 2024. 4. 11.
반응형