본문 바로가기 메뉴 바로가기

0co.in

프로필사진
  • 글쓰기
  • 관리
  • 태그
  • 방명록
  • RSS

0co.in

검색하기 폼
  • 분류 전체보기 (235)
    • 뉴스 (19)
    • 법 (5)
    • 프로그래밍 (20)
    • 자랑 (4)
    • 지식 (78)
    • 서버관리 (2)
    • 비밀 (0)
    • 코인위드 : 비트코인 뉴스 (1)
    • 세상살이 (50)
  • 방명록

프로그래밍 (20)
[Unity] 최적화되지 않은 APK 경고

빌드 셋팅을 다음과 같이 Build App Budle(Google Play)를 체크합니다.

프로그래밍 2020. 3. 23. 11:14
도메인 가격 비교 사이트

https://tld-list.com Compare Prices of All Top-Level Domains | TLD List 3,085 Top-Level Domains Every domain extension, up to date registration prices, and the best value for your money. Prices Updated an hour ago tld-list.com 최근 도메인 종류가 많지요. 가격도 도메인 등록 사이트별로 제각각입니다. 좀 유용한 사이트가 있어서 여러분께 알려드립니다. 이 사이트는 최초 등록 가격, 연장 등록 가격, 이전 등록 가격 등의 카테고리 별로 최저가 도메인 등록 사이트를 알려줍니다. 도메인 등록할때 참고하시면 돈을 많이 절약 할 수 있습니다..

프로그래밍 2019. 7. 23. 23:08
유니티3d에 너무 익숙해지다 보니 스크립트 언어 사용하는데만 실력이 늘어 나느거 같다.

예전에는 네이티브 코드를 이용해서 많이 만들었는데 요즘은 스크립트 언에 많이 익숙해진기분이다. 나 같은 1인 개발자한테는 아무래도 유리한 측면이 많아서 좋긴한데 뭔가 이 툴에 한정되어 져 가는듯한 느낌이 있다. 이제 유니티 3d를 벗어나면 나는 무엇을 할 수 있을가? 차라리 안드로이드 java 코틀린을 파는게 더 좋은거 같다. 왜냐면 어차피 네이티브를 개발할때는 안드로이드 아이폰 개발이 불리가 되니깐 말이다. 괜히 유니티만 파서 씁씁핟.

프로그래밍 2019. 6. 26. 14:24
맥에서 개발할때 프로젝트 폴더 경로가 좀 중요하다 퍼미션 관련 에러를 예방하

맥에서 개발할때 프로젝트 폴더 경로가 좀 중요하다 퍼미션 관련 에러를 예방하기 위해서 유저 자기 아디기 그 아래 프로젝트 파일을 만드는 것이 좋다. 그럼 이만.

프로그래밍 2019. 3. 4. 06:29
해결법 #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'TYPE=MyISAM AUTO_INCREMENT=111087'

#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'TYPE=MyISAM AUTO_INCREMENT=111087' ) Engine=MyISAM AUTO_INCREMENT=1 ; 마지막 라인을 위와 같이 수정해주면 된다.

프로그래밍 2019. 3. 2. 17:44
iOS 셋팅 열기 유니티

Script/Example.csusing UnityEngine; public class Example { public void OpenSettings() { #if UNITY_IPHONE string url = MyNativeBindings.GetSettingsURL(); Debug.Log("the settings url is:" + url); Application.OpenURL(url); #endif } }Plugins/MyNativeBindings.cspublic class MyNativeBindings { #if UNITY_IPHONE [DllImport ("__Internal")] public static extern string GetSettingsURL(); [DllImport ("__Inte..

프로그래밍 2019. 2. 28. 17:31
구글 테스트 결제를 할려고 하는데 실제로 결제가 될경우.

우선 알파 버전으로 출시했고 테스트 계정 등록하고 실제 결제 테스트를 하는데 보통 테스트 결제 같은 경우 테스트 주문입니다라는 문구가 떠야 되는데 안뜨더라. 근데 걍 무시하고 결제 헛 그냥 결제되네이유인즉 알파 테스터로만 등록 되어 있고 라이선스 테스트로는 등록안해서 그럼. 주의하자.테스트 주문이라는 문구 안뜨면 결제 하지말자 절차가 귀차나짐.

프로그래밍 2019. 2. 16. 00:58
유니티에서 제공하는 인앱 프로세스를 이용하고 있습니다. Missing method UnityEngine.VR.VRSettings::get_enabled()이런 에러가 나서 좀 고생했네요.

5. You must update the API to fully install the package. (It is recommended to make a backup of your project just in case.) i made a backup을 하니 이전 api와 호환이 되서 작동되는 듯합니다.아마 vr메소드가 xr로 변경되면서 생긴 문제로 사료 됩니다.

프로그래밍 2019. 2. 14. 01:41
java.io.IOException: Cleartext HTTP traffic to"" not permitted 에러 해결법

java.io.IOException: Cleartext HTTP traffic to"" not permitted 에러 해결법위의 문제가 발생해서 인터넷 연결이 안되서 잠시 힘들었다 해결방법은 아래와 같다.Starting with Android 9.0 (API level 28), cleartext support is disabled by default.Option 1 -Create file res/xml/network_security_config.xml - Your URL(ex: 127.0.0.1) AndroidManifest.xml - ... Option 2 -AndroidManifest.xml - ...

프로그래밍 2019. 2. 12. 13:07
DB에서 랜덤 게시물 하나만 가지고 오는 쿼리

Select a random row with MySQL:SELECT column FROM table ORDER BY RAND() LIMIT 1 Select a random row with PostgreSQL:SELECT column FROM table ORDER BY RANDOM() LIMIT 1 Select a random row with Microsoft SQL Server:SELECT TOP 1 column FROM table ORDER BY NEWID() Select a random row with IBM DB2SELECT column, RAND() as IDX FROM table ORDER BY IDX FETCH FIRST 1 ROWS ONLY Select a random record with ..

프로그래밍 2019. 2. 2. 21:14
Error Code: 2006 - MySQL server has gone away 해결방법

[mysqld] max_allowed_packet=16Mmy.ini 항목을 찾아 위와 같이 수정을 해주니 해결이 되었습니다.

프로그래밍 2019. 1. 28. 00:08
아이프레임이나 프레임셋에서 컨텐츠를 불러오는거 거부해놓은 사이트인지 체크하는거.

After further research I found the answer on stackoverflow: Detect X-Frame-Options and Catching "Display forbidden by X-Frame-Options”.PHP Script:$error=false; $urlhere=$_GET["url"]; $ch = curl_init(); $options = array( CURLOPT_URL => $urlhere, CURLOPT_RETURNTRANSFER => true, CURLOPT_HEADER => true, CURLOPT_FOLLOWLOCATION => true, CURLOPT_ENCODING => "", CURLOPT_AUTOREFERER => true, CURLOPT_CONN..

프로그래밍 2017. 11. 22. 20:16
CommandInvokationFailure: Unable to list target platforms. Please make sure the android sdk path is correct. See the Console for more details. 

CommandInvokationFailure: Unable to list target platforms. Please make sure the android sdk path is correct. See the Console for more details. C:/Program Files/Java/jdk1.8.0_121\bin\java.exe -Xmx2048M -Dcom.android.sdkmanager.toolsdir="D:/Android/sdk\tools" -Dfile.encoding=UTF8 -jar "D:\Unity5.4.3\Editor\Data\PlaybackEngines\AndroidPlayer/Tools\sdktools.jar" - Error building Player: CommandInvok..

프로그래밍 2017. 10. 5. 10:18
BAT파일 실행후 도스창 닫기 경로에 공백있는 exe 파일 실행하기

@echo off start /D"C:\Program Files\NATEON\BIN\" NATEON.exe start /D"C:\Program Files\Windows Live\Messenger\" msnmsgr.exe - @echo off 로 명령줄이 화면에 나타나지 않게 합니다. (echo off : echo off 문의 다음 명령문 부터는 화면에 보이지 않음 "echo off" 라는 글자만 보임, @echo off : echo off 라는 글자도 안보이고 명령이 실행) - start 다음의 " /D" 는 경로를 지정하는 옵션입니다. 경로상에 공백이 있기에 다음과 같이 ( "C:\Program Files\NATEON\BIN\" ) 경로를 "" 로 묶어서 입력하였고 뒤에 실행할 파일 이름을 적어주었습니..

프로그래밍 2017. 3. 4. 18:21
C#과 데이터베이스로 누구나 쉽게 주식 자동매매 시스템 만들기

Part 1 주식 자동매매 시스템 구축을 위한 준비 chapter 1 주식 자동매매 시스템의 개요 1.1 자동매매 시스템이란 1.2 자동매매 시스템의 구성 chapter 2 자동매매 시스템 개발환경 구축 2.1 키움증권 가입 2.2 Open API 사용신청 2.3 영웅문3/번개2/Open API 모듈 설치 2.4 자바 설치 2.5 비주얼 스튜디오 설치 2.6 오라클 DBMS 설치 2.7 오라클 접속 라이브러리 설치 2.8 오라클 개발도구 설치 chapter 3 데이터베이스 환경 구축 3.1 데이터베이스 접속 3.2 사용자 계정 생성 3.3 테이블 스페이스 생성 3.4 테이블 생성 Part 2 자동매매 시스템 구축 chapter 4 C# 윈폼 프로젝트 생성 4.1 프로젝트 생성과 설정 4.2 프로젝트 속성..

프로그래밍 2017. 2. 28. 20:40
클라우드 플래어 취약점 발견 언능 비번 바꾸세요. 관련 리스트 사이트는 필히 수정해야 됩니다.

List of Sites possibly affected by Cloudflare's #Cloudbleed HTTPS Traffic LeakThis is a (work-in-progress) list of domains possibly affected by the CloudBleed HTTPS traffic leak. Original vuln thread by Google Project Zero.DISCLAIMER:This list contains all domains that use Cloudflare DNS, not just the Cloudflare proxy (the affected service that leaked data). It's a broad sweeping list that inclu..

프로그래밍 2017. 2. 25. 11:02
Mars is a cross-platform network component developed by WeChat.

Mars is a cross-platform network component developed by WeChat. Mars is a cross-platform infrastructure component developed by WeChat Mobile Team. It is proved to be effective by billions of Wechat users.Cross platform, easy to deploy if you are developing multi-platform or multi-business application.Suitable for small amount data transmissionMobile platform friendly, low power and traffic consu..

프로그래밍 2017. 1. 1. 11:48
유니티에서 앱스토어, 플레이스토어 링크 열기, 웹 페이지 열기

Unity - 앱스토어, 플레이스토어 링크 및 웹 페이지 열기 [iOS 앱 스토어 링크 열기] * 앱 스토어 앱으로 열기 Application.OpenURL("itms-apps://itunes.apple.com/app/id1234567890") [Android 플레이 스토어 링크 열기]* 마켓 앱으로 열기 Application.OpenURL("market://details?id=com.Company.Project"); * 일반 웹 브라우져로 열기 Application.OpenURL("https://play.google.com/store/apps/details?id=com.Company.Project"); [일반 웹 페이지 열기] * 일반 웹 브라우져로 열기 - 일부 Adroid 기기에서는 "http:"를..

프로그래밍 2017. 1. 1. 10:23
CentOS httpd 사용시 자잘한 문제가 생겼을때 간단해결법

I've Solved the problem thank you guysi did runyum update then removed the httpdyum erase httpd then install it againyum install httpd and typedservice httpd start everything is ok and working 위의 명령어를 통해 해결 가능하다. 업데이트 받거나.. 이거도 해결안되면 기존 httpd는 삭제하고 다시 설치한다.

프로그래밍 2016. 12. 26. 23:39
CentOS에서 Cron 사용시 mail을 보내지 않도록 설정하기

you have mail in /var/spool/mail/root 라는 메시지를 본 적이 있을 것이다. cron을 시작하면 메일이 전송됩니다. 예를 들어 1분마다 다양한 cron을 시작하면 아무도 모르는 사이에 무서운 수의 메일 수신으로 인해 디스크 용량이 크게 증가하는 현상을 볼 수 있을 것입니다. 이러한 문제 점을 해결 할 수 있는 방법을 알려드리겠습니다. 방법은 두가지가 있습니다. 첫번째.1234567891011121314151617[root@localhost]# vi /etc/crontabSHELL=/bin/bashPATH=/sbin:/bin:/usr/sbin:/usr/bin#MAILTO=rootMAILTO=""HOME=/ # For details see man 4 crontabs # Examp..

프로그래밍 2016. 12. 26. 23:34
이전 1 다음
이전 다음
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
  • 중독성게임
  • 베스트트레이드
  • 코인 커뮤니티
TAG
  • 로또
  • 남부시장
  • 맛집
  • 목동
  • 연금복권
  • 횟집
  • 나사
  • 윤태호작가폰트
  • 모듬회
  • 로또 인터넷
  • 여자친구
  • 도메인등록
  • 남자친구
  • 도메인
  • 순대국
  • 윤태호폰트
  • 샤오미
  • 공짜도메인
  • 위장약#라니티딘
  • 제주도 맛집
  • 주식회사
  • 산돌미생체
  • 치킨
  • 목동사거리
  • Sandoll미생체
  • 인류 최초
  • 무료도메인
  • 목동역
  • 더피처피티
  • 파워UP포인트
  • coran
  • 새우튀김
  • 제주 맛집
  • 동행복권
  • koran
  • 알릴레오
  • 법인 서식
  • 포코폰
  • Lotto
  • brazil nut
more
«   2025/07   »
일 월 화 수 목 금 토
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31
글 보관함

Blog is powered by Tistory / Designed by Tistory

티스토리툴바