개발/기타 39

Supabase와 Firebase 차이점과 장단점 비교

백엔드 개발을 간소화해주는 두 가지 인기 있는 BaaS(Backend-as-a-Service) 플랫폼, Supabase와 Firebase를 비교해보려고 한다. 이 두 플랫폼은 모두 애플리케이션 개발을 빠르게 시작할 수 있도록 도와주지만, 그 기반 기술과 접근 방식에서 큰 차이가 있다. 두 플랫폼의 주요 차이점을 살펴보고, 각각의 장점과 단점을 알아보자.---Supabase와 Firebase의 주요 차이점1. 데이터베이스 구조- Firebase: Firebase는 NoSQL 기반의 데이터베이스(Firestore와 Realtime Database)를 사용힌다. 문서(document) 형태로 데이터를 저장하며, 비정형 데이터나 유연한 구조가 필요한 프로젝트에 적합하다. 하지만 복잡한 관계형 쿼리나 조인은 지원..

개발/기타 2025.04.03

Unable to list target platforms. Please make sure the android sdk path is correct. See the Console for more details

Unable to list target platforms. Please make sure the android sdk path is correct. See the Console for more details Android SDK를 업데이트 후에 Unity 에서 위와 같은 오류로 Android 기기로 빌드 오류가 발생했는데업데이트된 SDK 또는 Build Tool 과 Unity간의 문제가 있는것 같다. tools_r25.2.5-macosx.zip 파일을 다운받아서, SDK 폴더의 기존의 Tools 폴더를 이름을 바꾼후 다운받은 폴더를 Tools 폴더에 넣으니 해결이 되었다.

개발/기타 2017.05.03

Prism 를 이용한 코드조각 만들기

정말 오랜만에 글하나 올리네요. Prism 를 이용해서 Code snippet 을 blog에 게시하는 방법을 몇자 적어 봅니다.http://prismjs.com/ 에서 Download 를 눌러서 다운로드 페이지로 이동합니다.필요한 테마와 언어를 선택하고 JS 와 CSS 파일을 다운로드 합니다.그런다음...블로그에 두개의 파일을 업로드 하고헤더에body 맨 아래// Use this for initialization void Start () { LeanTween.move(this.gameObject, this.gameObject.transform.position + new Vector3(0, 4, 0), 2f).setDelay(1f); } // Update is called once per frame voi..

개발/기타 2017.03.23

Kendo grid에서 Textarea Editor를

Kendo grid에서 Textarea Editor를 사용해 보자 kendo grid 기본 텍스트에디터는 Textbox 다. 이때 Textarea 가 필요할때가 있는데editor를 생성해보자 // 컬럼 설정{ field: "Comment", title: "비고 (textarea)", width: 140, filterable: false, editor: textareaEditor} // textarea를 생성해줄 editor 함수function textareaEditor(container, options) { $('') .appendTo(container);}; 이렇게 설정하면 Textarea 에디터를 사용할 수 있다.

개발/기타 2014.05.14